Changeset 5c5638 in git
- Timestamp:
- May 6, 2005, 2:39:49 PM (18 years ago)
- Branches:
- (u'spielwiese', '91fdef05f09f54b8d58d92a472e9c4a43aa4656f')
- Children:
- b07a6d9646920374a6d44fdc59880be8c437d21b
- Parents:
- 4ccf66565739474fdbf94c20bc32b855d2d3e3ae
- Location:
- Singular
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/LIB/gmssing.lib
r4ccf665 r5c5638 1 1 /////////////////////////////////////////////////////////////////////////////// 2 version="$Id: gmssing.lib,v 1. 6 2005-04-22 16:29:55Singular Exp $";2 version="$Id: gmssing.lib,v 1.7 2005-05-06 12:39:49 Singular Exp $"; 3 3 category="Singularities"; 4 4 … … 122 122 @end format 123 123 NOTE: gmsbasis is a C[[s]]-basis of H'' and [t,s]=s^2 124 KEYWORDS: singularities;Gauss-Manin system; Brieskorn lattice124 KEYWORDS: Gauss-Manin system; Brieskorn lattice 125 125 EXAMPLE: example gmsring; shows examples 126 126 " … … 221 221 ideal nf[2]; p==nf[1]+nf[2] 222 222 NOTE: computation can be continued by setting p=nf[2] 223 KEYWORDS: singularities; Gauss-Manin system; Brieskorn lattice224 223 EXAMPLE: example gmsnf; shows examples 225 224 " … … 301 300 @end format 302 301 NOTE: computation can be continued by setting p=l[2] 303 KEYWORDS: singularities; Gauss-Manin system; Brieskorn lattice304 302 EXAMPLE: example gmscoeffs; shows examples 305 303 " … … 582 580 RETURN: ideal r; roots of the Bernstein polynomial b excluding the root -1 583 581 NOTE: 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 582 KEYWORDS: Bernstein polynomial 586 583 EXAMPLE: example bernstein; shows examples 587 584 " … … 640 637 @end format 641 638 SEE ALSO: mondromy_lib, linalg_lib 642 KEYWORDS: singularities; Gauss-Manin system; Brieskorn lattice;monodromy639 KEYWORDS: monodromy 643 640 EXAMPLE: example monodromy; shows examples 644 641 " … … 686 683 @end format 687 684 SEE ALSO: spectrum_lib 688 KEYWORDS: singularities; Gauss-Manin system; Brieskorn lattice; 689 mixed Hodge structure; V-filtration; spectrum 685 KEYWORDS: mixed Hodge structure; V-filtration; spectrum 690 686 EXAMPLE: example spectrum; shows examples 691 687 " … … 717 713 @end format 718 714 SEE ALSO: spectrum_lib 719 KEYWORDS: singularities; Gauss-Manin system; Brieskorn lattice; 720 mixed Hodge structure; V-filtration; weight filtration; 715 KEYWORDS: mixed Hodge structure; V-filtration; weight filtration; 721 716 spectrum; spectral pairs 722 717 EXAMPLE: example sppairs; shows examples … … 751 746 @end format 752 747 SEE ALSO: spectrum_lib 753 KEYWORDS: singularities; Gauss-Manin system; Brieskorn lattice; 754 mixed Hodge structure; V-filtration; spectrum 748 KEYWORDS: mixed Hodge structure; V-filtration; spectrum 755 749 EXAMPLE: example vfilt; shows examples 756 750 " … … 786 780 @end format 787 781 SEE ALSO: spectrum_lib 788 KEYWORDS: singularities; Gauss-Manin system; Brieskorn lattice; 789 mixed Hodge structure; V-filtration; weight filtration; 782 KEYWORDS: mixed Hodge structure; V-filtration; weight filtration; 790 783 spectrum; spectral pairs 791 784 EXAMPLE: example vwfilt; shows examples … … 1037 1030 ideal M; monomial C-basis of H''/sH'' 1038 1031 @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 1032 KEYWORDS: good basis 1042 1033 EXAMPLE: example tmatrix; shows examples 1043 1034 " … … 1096 1087 ideal ev[5]; standard basis of Jacobian ideal 1097 1088 @end format 1098 KEYWORDS: singularities; Gauss-Manin system; Brieskorn lattice; 1099 mixed Hodge structure; V-filtration; endomorphism filtration 1089 KEYWORDS: V-filtration; endomorphism filtration 1100 1090 EXAMPLE: example endvfilt; shows examples 1101 1091 " -
Singular/ipid.cc
r4ccf665 r5c5638 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: ipid.cc,v 1.7 0 2005-01-18 15:41:58Singular Exp $ */4 /* $Id: ipid.cc,v 1.71 2005-05-06 12:39:46 Singular Exp $ */ 5 5 6 6 /* … … 388 388 *root = (*root)->set(s, lev, t, init); 389 389 #ifdef HAVE_NS 390 #ifndef NDEBUG 390 391 checkall(); 392 #endif 391 393 #endif 392 394 return *root; -
Singular/iplib.cc
r4ccf665 r5c5638 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: iplib.cc,v 1.1 09 2005-05-03 17:32:51Singular Exp $ */4 /* $Id: iplib.cc,v 1.110 2005-05-06 12:39:47 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: interpreter: LIB and help … … 323 323 err=yyparse(); 324 324 #ifdef HAVE_NS 325 #ifndef NDEBUG 325 326 checkall(); 327 #endif 326 328 #endif 327 329 if (sLastPrinted.rtyp!=0) … … 332 334 killlocals(myynest); 333 335 #ifdef HAVE_NS 336 #ifndef NDEBUG 334 337 checkall(); 338 #endif 335 339 #endif 336 340 //Print("end kill locals for %s (%d)\n",IDID(pn),myynest); -
Singular/ipshell.cc
r4ccf665 r5c5638 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: ipshell.cc,v 1.10 8 2005-05-05 10:41:59Singular Exp $ */4 /* $Id: ipshell.cc,v 1.109 2005-05-06 12:39:47 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: … … 1234 1234 { 1235 1235 #ifdef HAVE_NS 1236 #ifndef NDEBUG 1236 1237 checkall(); 1238 #endif 1237 1239 #endif 1238 1240 BOOLEAN nok=FALSE; … … 1257 1259 r->CleanUp(); 1258 1260 #ifdef HAVE_NS 1261 #ifndef NDEBUG 1259 1262 checkall(); 1263 #endif 1260 1264 #endif 1261 1265 return nok; … … 1266 1270 BOOLEAN iiExport (leftv v, int toLev, idhdl root) 1267 1271 { 1272 #ifndef NDEBUG 1268 1273 checkall(); 1274 #endif 1269 1275 // Print("iiExport1: pack=%s\n",IDID(root)); 1270 1276 BOOLEAN nok=FALSE; … … 1307 1313 } 1308 1314 rv->CleanUp(); 1315 #ifndef NDEBUG 1309 1316 checkall(); 1317 #endif 1310 1318 return nok; 1311 1319 } -
Singular/ipshell.h
r4ccf665 r5c5638 4 4 * Computer Algebra System SINGULAR * 5 5 ****************************************/ 6 /* $Id: ipshell.h,v 1.3 8 2005-05-03 15:41:50Singular Exp $ */6 /* $Id: ipshell.h,v 1.39 2005-05-06 12:39:48 Singular Exp $ */ 7 7 /* 8 8 * ABSTRACT … … 187 187 void singular_example(char *str); 188 188 189 BOOLEAN iiTryLoadLib(leftv v, char *id); 190 189 191 #ifdef HAVE_NS 190 192 void listall(int showproc=1); 193 void iiCheckPack(package &p); 194 #ifndef NDEBUG 191 195 void checkall(); 192 void iiCheckPack(package &p);193 196 #endif 194 BOOLEAN iiTryLoadLib(leftv v, char *id); 197 #endif 195 198 #endif 196 199 -
Singular/misc.cc
r4ccf665 r5c5638 633 633 iiCheckPack(currPack); 634 634 } 635 #ifndef NDEBUG 635 636 void checkall() 636 637 { … … 661 662 } 662 663 #endif 664 #endif
Note: See TracChangeset
for help on using the changeset viewer.