Changeset c3c413 in git
- Timestamp:
- Jun 9, 1997, 2:21:29 PM (26 years ago)
- Branches:
- (u'spielwiese', '91e5db82acc17434e4062bcfa44e6efa7d41fd30')
- Children:
- 74f19d94b7f4d611715804cf278d0652970e4e90
- Parents:
- e8a30d706fbfe3265065f965770b3285a7e817b1
- Location:
- Singular
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/kstd1.cc
re8a30d rc3c413 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: kstd1.cc,v 1. 6 1997-05-20 08:52:08Singular Exp $ */4 /* $Id: kstd1.cc,v 1.7 1997-06-09 12:21:24 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: … … 134 134 if (pDivisibleBy(strat->T[j].p,(*h).p)) 135 135 { 136 if (strat->interpt) test_int_std(strat->kIdeal);136 //if (strat->interpt) test_int_std(strat->kIdeal); 137 137 if (TEST_OPT_DEBUG) PrintS("+"); 138 138 /*- compute the s-polynomial -*/ … … 260 260 if (pDivisibleBy(strat->T[j].p,(*h).p)) 261 261 { 262 if (strat->interpt) test_int_std(strat->kIdeal);262 //if (strat->interpt) test_int_std(strat->kIdeal); 263 263 if (TEST_OPT_DEBUG) PrintS("+"); 264 264 /*- compute the s-polynomial -*/ … … 429 429 if (pDivisibleBy(strat->T[j].p,(*h).p)) 430 430 { 431 if (strat->interpt) test_int_std(strat->kIdeal);431 //if (strat->interpt) test_int_std(strat->kIdeal); 432 432 if (TEST_OPT_DEBUG) PrintS("+\n"); 433 433 /* … … 532 532 if (pDivisibleBy(strat->T[j].p,(*h).p)) 533 533 { 534 if (strat->interpt) test_int_std(strat->kIdeal);534 //if (strat->interpt) test_int_std(strat->kIdeal); 535 535 if (TEST_OPT_DEBUG) PrintS("+"); 536 536 /*- compute the s-polynomial -*/ … … 706 706 if (pDivisibleBy(strat->T[j].p,H.p)) 707 707 { 708 if (strat->interpt) test_int_std(strat->kIdeal);708 //if (strat->interpt) test_int_std(strat->kIdeal); 709 709 if (TEST_OPT_DEBUG) PrintS("+"); 710 710 /*- remember the found T-poly -*/ … … 1325 1325 { 1326 1326 if (lrmax< strat->Ll) lrmax=strat->Ll; /*stat*/ 1327 test_int_std(strat->kIdeal);1327 //test_int_std(strat->kIdeal); 1328 1328 if (TEST_OPT_DEBUG) messageSets(strat); 1329 1329 if (TEST_OPT_DEGBOUND -
Singular/kstd2.cc
re8a30d rc3c413 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: kstd2.cc,v 1. 4 1997-06-04 19:45:20 obachmanExp $ */4 /* $Id: kstd2.cc,v 1.5 1997-06-09 12:21:25 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT - Kernel: alg. of Buchberger … … 117 117 } 118 118 } 119 if (strat->interpt) test_int_std(strat->kIdeal);119 //if (strat->interpt) test_int_std(strat->kIdeal); 120 120 /*- compute the s-polynomial -*/ 121 121 (*h).p = spSpolyRed(strat->S[j],(*h).p,strat->kNoether); … … 204 204 wrp(strat->S[j]); 205 205 } 206 if (strat->interpt) test_int_std(strat->kIdeal);206 //if (strat->interpt) test_int_std(strat->kIdeal); 207 207 /*- compute the s-polynomial -*/ 208 208 (*h).p = spSpolyRed(strat->S[j],(*h).p,strat->kNoether); … … 267 267 if (pDivisibleBy(strat->T[j].p,(*h).p)) 268 268 { 269 if (strat->interpt) test_int_std(strat->kIdeal);269 //if (strat->interpt) test_int_std(strat->kIdeal); 270 270 if (TEST_OPT_DEBUG) 271 271 { … … 347 347 if (pDivisibleBy(strat->S[j],(*h).p)) 348 348 { 349 if (strat->interpt) test_int_std(strat->kIdeal);349 //if (strat->interpt) test_int_std(strat->kIdeal); 350 350 if (TEST_OPT_DEBUG) 351 351 { … … 644 644 if (pDivisibleBy(strat->T[j].p,(*h).p)) 645 645 { 646 if (strat->interpt) test_int_std(strat->kIdeal);646 //if (strat->interpt) test_int_std(strat->kIdeal); 647 647 /* compute the s-polynomial */ 648 648 if (!TEST_OPT_INTSTRATEGY) pNorm((*h).p); … … 797 797 if (pDivisibleBy(strat->S[j],h)) 798 798 { 799 if (strat->interpt) test_int_std(strat->kIdeal);799 //if (strat->interpt) test_int_std(strat->kIdeal); 800 800 /*- compute the s-polynomial -*/ 801 801 if (TEST_OPT_DEBUG) … … 912 912 if (strat->Ll > lrmax) lrmax =strat->Ll;/*stat.*/ 913 913 if (TEST_OPT_DEBUG) messageSets(strat); 914 test_int_std(strat->kIdeal);914 //test_int_std(strat->kIdeal); 915 915 if (strat->Ll== 0) strat->interpt=TRUE; 916 916 if (TEST_OPT_DEGBOUND -
Singular/kstdfac.cc
re8a30d rc3c413 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: kstdfac.cc,v 1. 5 1997-04-25 15:04:01 obachmanExp $ */4 /* $Id: kstdfac.cc,v 1.6 1997-06-09 12:21:26 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT - Kernel: factorizing alg. of Buchberger … … 224 224 for (si=strat->sl; si>0; si--) 225 225 { 226 if (strat->interpt) test_int_std(strat->kIdeal);226 //if (strat->interpt) test_int_std(strat->kIdeal); 227 227 strat->S[si] = redtailBba(strat->S[si],si-1,strat); 228 228 if (TEST_OPT_INTSTRATEGY) … … 427 427 if (strat->Ll > lrmax) lrmax =strat->Ll;/*stat.*/ 428 428 if (TEST_OPT_DEBUG) messageSets(strat); 429 test_int_std(strat->kIdeal);429 //test_int_std(strat->kIdeal); 430 430 if (strat->Ll== 0) strat->interpt=TRUE; 431 431 if (TEST_OPT_DEGBOUND -
Singular/kutil.cc
re8a30d rc3c413 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: kutil.cc,v 1. 5 1997-05-21 13:05:13 obachmanExp $ */4 /* $Id: kutil.cc,v 1.6 1997-06-09 12:21:27 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: kernel: utils for std … … 3545 3545 for (i=strat->sl; i>0; i--) 3546 3546 { 3547 if (strat->interpt) test_int_std(strat->kIdeal);3547 //if (strat->interpt) test_int_std(strat->kIdeal); 3548 3548 strat->S[i] = redtailBba(strat->S[i],i-1,strat); 3549 3549 if (TEST_OPT_INTSTRATEGY) … … 3561 3561 for (i=strat->sl; i>=0; i--) 3562 3562 { 3563 if (strat->interpt) test_int_std(strat->kIdeal);3563 //if (strat->interpt) test_int_std(strat->kIdeal); 3564 3564 strat->S[i] = redtail(strat->S[i],strat->sl,strat); 3565 3565 if (TEST_OPT_INTSTRATEGY) -
Singular/syz1.cc
re8a30d rc3c413 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: syz1.cc,v 1. 7 1997-05-18 11:13:14Singular Exp $ */4 /* $Id: syz1.cc,v 1.8 1997-06-09 12:21:29 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: resolutions … … 1753 1753 (*index)++; 1754 1754 } 1755 if (TEST_OPT_DEGBOUND && (newdeg > Kstd1_deg)) 1756 return NULL; 1755 1757 if (newdeg>*actdeg) 1756 1758 {
Note: See TracChangeset
for help on using the changeset viewer.