Changeset 5c5638 in git for Singular


Ignore:
Timestamp:
May 6, 2005, 2:39:49 PM (19 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
b07a6d9646920374a6d44fdc59880be8c437d21b
Parents:
4ccf66565739474fdbf94c20bc32b855d2d3e3ae
Message:
*hannes: code cleanup, keyword cleanup


git-svn-id: file:///usr/local/Singular/svn/trunk@8069 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
Singular
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/gmssing.lib

    r4ccf665 r5c5638  
    11///////////////////////////////////////////////////////////////////////////////
    2 version="$Id: gmssing.lib,v 1.6 2005-04-22 16:29:55 Singular Exp $";
     2version="$Id: gmssing.lib,v 1.7 2005-05-06 12:39:49 Singular Exp $";
    33category="Singularities";
    44
     
    122122@end format
    123123NOTE:     gmsbasis is a C[[s]]-basis of H'' and [t,s]=s^2
    124 KEYWORDS: singularities; Gauss-Manin system; Brieskorn lattice
     124KEYWORDS: Gauss-Manin system; Brieskorn lattice
    125125EXAMPLE:  example gmsring; shows examples
    126126"
     
    221221  ideal nf[2];  p==nf[1]+nf[2]
    222222NOTE:     computation can be continued by setting p=nf[2]
    223 KEYWORDS: singularities; Gauss-Manin system; Brieskorn lattice
    224223EXAMPLE:  example gmsnf; shows examples
    225224"
     
    301300@end format
    302301NOTE:     computation can be continued by setting p=l[2]
    303 KEYWORDS: singularities; Gauss-Manin system; Brieskorn lattice
    304302EXAMPLE:  example gmscoeffs; shows examples
    305303"
     
    582580RETURN:   ideal r;  roots of the Bernstein polynomial b excluding the root -1
    583581NOTE:     the roots of b are negative rational numbers and -1 is a root of b
    584 KEYWORDS: singularities; Gauss-Manin system; Brieskorn lattice;
    585           Bernstein polynomial
     582KEYWORDS: Bernstein polynomial
    586583EXAMPLE:  example bernstein; shows examples
    587584"
     
    640637@end format
    641638SEE ALSO: mondromy_lib, linalg_lib
    642 KEYWORDS: singularities; Gauss-Manin system; Brieskorn lattice; monodromy
     639KEYWORDS: monodromy
    643640EXAMPLE:  example monodromy; shows examples
    644641"
     
    686683@end format
    687684SEE ALSO: spectrum_lib
    688 KEYWORDS: singularities; Gauss-Manin system; Brieskorn lattice;
    689           mixed Hodge structure; V-filtration; spectrum
     685KEYWORDS: mixed Hodge structure; V-filtration; spectrum
    690686EXAMPLE:  example spectrum; shows examples
    691687"
     
    717713@end format
    718714SEE ALSO: spectrum_lib
    719 KEYWORDS: singularities; Gauss-Manin system; Brieskorn lattice;
    720           mixed Hodge structure; V-filtration; weight filtration;
     715KEYWORDS: mixed Hodge structure; V-filtration; weight filtration;
    721716          spectrum; spectral pairs
    722717EXAMPLE:  example sppairs; shows examples
     
    751746@end format
    752747SEE ALSO: spectrum_lib
    753 KEYWORDS: singularities; Gauss-Manin system; Brieskorn lattice;
    754           mixed Hodge structure; V-filtration; spectrum
     748KEYWORDS: mixed Hodge structure; V-filtration; spectrum
    755749EXAMPLE:  example vfilt; shows examples
    756750"
     
    786780@end format
    787781SEE ALSO: spectrum_lib
    788 KEYWORDS: singularities; Gauss-Manin system; Brieskorn lattice;
    789           mixed Hodge structure; V-filtration; weight filtration;
     782KEYWORDS: mixed Hodge structure; V-filtration; weight filtration;
    790783          spectrum; spectral pairs
    791784EXAMPLE:  example vwfilt; shows examples
     
    10371030  ideal M;  monomial C-basis of H''/sH''
    10381031@end format
    1039 KEYWORDS: singularities; Gauss-Manin system; Brieskorn lattice;
    1040           mixed Hodge structure; V-filtration; weight filtration;
    1041           monodromy; spectrum; spectral pairs; good basis
     1032KEYWORDS: good basis
    10421033EXAMPLE:  example tmatrix; shows examples
    10431034"
     
    10961087  ideal ev[5];  standard basis of Jacobian ideal
    10971088@end format
    1098 KEYWORDS: singularities; Gauss-Manin system; Brieskorn lattice;
    1099           mixed Hodge structure; V-filtration; endomorphism filtration
     1089KEYWORDS: V-filtration; endomorphism filtration
    11001090EXAMPLE:  example endvfilt; shows examples
    11011091"
  • Singular/ipid.cc

    r4ccf665 r5c5638  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ipid.cc,v 1.70 2005-01-18 15:41:58 Singular Exp $ */
     4/* $Id: ipid.cc,v 1.71 2005-05-06 12:39:46 Singular Exp $ */
    55
    66/*
     
    388388  *root = (*root)->set(s, lev, t, init);
    389389#ifdef HAVE_NS
     390#ifndef NDEBUG
    390391  checkall();
     392#endif
    391393#endif
    392394  return *root;
  • Singular/iplib.cc

    r4ccf665 r5c5638  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: iplib.cc,v 1.109 2005-05-03 17:32:51 Singular Exp $ */
     4/* $Id: iplib.cc,v 1.110 2005-05-06 12:39:47 Singular Exp $ */
    55/*
    66* ABSTRACT: interpreter: LIB and help
     
    323323  err=yyparse();
    324324#ifdef HAVE_NS
     325#ifndef NDEBUG
    325326  checkall();
     327#endif
    326328#endif
    327329  if (sLastPrinted.rtyp!=0)
     
    332334  killlocals(myynest);
    333335#ifdef HAVE_NS
     336#ifndef NDEBUG
    334337  checkall();
     338#endif
    335339#endif
    336340  //Print("end kill locals for %s (%d)\n",IDID(pn),myynest);
  • Singular/ipshell.cc

    r4ccf665 r5c5638  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ipshell.cc,v 1.108 2005-05-05 10:41:59 Singular Exp $ */
     4/* $Id: ipshell.cc,v 1.109 2005-05-06 12:39:47 Singular Exp $ */
    55/*
    66* ABSTRACT:
     
    12341234{
    12351235#ifdef HAVE_NS
     1236#ifndef NDEBUG
    12361237  checkall();
     1238#endif
    12371239#endif
    12381240  BOOLEAN nok=FALSE;
     
    12571259  r->CleanUp();
    12581260#ifdef HAVE_NS
     1261#ifndef NDEBUG
    12591262  checkall();
     1263#endif
    12601264#endif
    12611265  return nok;
     
    12661270BOOLEAN iiExport (leftv v, int toLev, idhdl root)
    12671271{
     1272#ifndef NDEBUG
    12681273  checkall();
     1274#endif
    12691275  //  Print("iiExport1: pack=%s\n",IDID(root));
    12701276  BOOLEAN nok=FALSE;
     
    13071313  }
    13081314  rv->CleanUp();
     1315#ifndef NDEBUG
    13091316  checkall();
     1317#endif
    13101318  return nok;
    13111319}
  • Singular/ipshell.h

    r4ccf665 r5c5638  
    44*  Computer Algebra System SINGULAR     *
    55****************************************/
    6 /* $Id: ipshell.h,v 1.38 2005-05-03 15:41:50 Singular Exp $ */
     6/* $Id: ipshell.h,v 1.39 2005-05-06 12:39:48 Singular Exp $ */
    77/*
    88* ABSTRACT
     
    187187void  singular_example(char *str);
    188188
     189BOOLEAN iiTryLoadLib(leftv v, char *id);
     190
    189191#ifdef HAVE_NS
    190192void listall(int showproc=1);
     193void iiCheckPack(package &p);
     194#ifndef NDEBUG
    191195void checkall();
    192 void iiCheckPack(package &p);
    193196#endif
    194 BOOLEAN iiTryLoadLib(leftv v, char *id);
     197#endif
    195198#endif
    196199
  • Singular/misc.cc

    r4ccf665 r5c5638  
    633633      iiCheckPack(currPack);
    634634}
     635#ifndef NDEBUG
    635636void checkall()
    636637{
     
    661662}
    662663#endif
     664#endif
Note: See TracChangeset for help on using the changeset viewer.