Changeset 1eabfc in git
- Timestamp:
- Aug 26, 2018, 11:34:25 AM (5 years ago)
- Branches:
- (u'spielwiese', 'a719bcf0b8dbc648b128303a49777a094b57592c')
- Children:
- 46db0814d770d7de29357aac459e015a60f8df24
- Parents:
- 53238ada2509c5e616157c153594cd6ff9f936be
- Location:
- kernel/GBEngine
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/GBEngine/kspoly.cc
r53238a r1eabfc 59 59 int ret = 0; 60 60 ring tailRing = PR->tailRing; 61 kTest_L(PR );61 kTest_L(PR,tailRing); 62 62 kTest_T(PW); 63 63 … … 192 192 int ret = 0; 193 193 ring tailRing = PR->tailRing; 194 kTest_L(PR );194 kTest_L(PR,tailRing); 195 195 kTest_T(PW); 196 196 … … 336 336 int ret = 0; 337 337 ring tailRing = PR->tailRing; 338 kTest_L(PR );338 kTest_L(PR,tailRing); 339 339 kTest_T(PW); 340 340 … … 473 473 int ret = 0; 474 474 ring tailRing = PR->tailRing; 475 kTest_L(PR );475 kTest_L(PR,tailRing); 476 476 kTest_T(PW); 477 477 … … 671 671 int ret = 0; 672 672 ring tailRing = PR->tailRing; 673 kTest_L(PR );673 kTest_L(PR,tailRing); 674 674 kTest_T(PW); 675 675 … … 909 909 create_count++; 910 910 #endif 911 kTest_L(Pair );911 kTest_L(Pair,tailRing); 912 912 poly p1 = Pair->p1; 913 913 poly p2 = Pair->p2; … … 1027 1027 poly Save = PW->GetLmCurrRing(); 1028 1028 1029 kTest_L(PR );1029 kTest_L(PR,PR->tailRing); 1030 1030 kTest_T(PW); 1031 1031 pAssume(pIsMonomOf(Lp, Current)); … … 1083 1083 poly Save = PW->GetLmCurrRing(); 1084 1084 1085 kTest_L(PR );1085 kTest_L(PR,PR->tailRing); 1086 1086 kTest_T(PW); 1087 1087 pAssume(pIsMonomOf(Lp, Current)); -
kernel/GBEngine/kstd2.cc
r53238a r1eabfc 1439 1439 //if (TEST_OPT_PROT) { PrintS("N"); mflush(); } 1440 1440 //L->Normalize(); // HANNES: should have a test 1441 kTest_L(L );1441 kTest_L(L,strat->tailRing); 1442 1442 return L->GetLmCurrRing(); 1443 1443 } -
kernel/GBEngine/kutil.cc
r53238a r1eabfc 244 244 if (strat->kHEdgeFound) 245 245 { 246 kTest_L(L );246 kTest_L(L,strat->tailRing); 247 247 poly p1; 248 248 poly p = L->GetLmTailRing(); … … 311 311 kBucketDestroy(&bucket); 312 312 } 313 kTest_L(L );313 kTest_L(L,strat->tailRing); 314 314 } 315 315 } … … 7541 7541 //if (TEST_OPT_PROT) { PrintS("N"); mflush(); } 7542 7542 //L->Normalize(); // HANNES: should have a test 7543 kTest_L(L );7543 kTest_L(L,strat->tailRing); 7544 7544 return L->GetLmCurrRing(); 7545 7545 } … … 7656 7656 //if (TEST_OPT_PROT) { PrintS("N"); mflush(); } 7657 7657 //L->Normalize(); // HANNES: should have a test 7658 kTest_L(L );7658 kTest_L(L,strat->tailRing); 7659 7659 return L->GetLmCurrRing(); 7660 7660 } … … 7771 7771 //if (TEST_OPT_PROT) { PrintS("N"); mflush(); } 7772 7772 //L->Normalize(); // HANNES: should have a test 7773 kTest_L(L );7773 kTest_L(L,strat->tailRing); 7774 7774 return L->GetLmCurrRing(); 7775 7775 } … … 12681 12681 } 12682 12682 L->Normalize(); // HANNES: should have a test 12683 kTest_L(L );12683 kTest_L(L,strat->tailRing); 12684 12684 return L->GetLmCurrRing(); 12685 12685 } -
kernel/GBEngine/kutil.h
r53238a r1eabfc 638 638 BOOLEAN kTest_TS(kStrategy strat); 639 639 // test LObject 640 BOOLEAN kTest_L(LObject* L, ring tailRing = NULL,640 BOOLEAN kTest_L(LObject* L, ring tailRing, 641 641 BOOLEAN testp = FALSE, int lpos = -1, 642 642 TSet T = NULL, int tlength = -1); … … 650 650 #define kTest_T(T) (TRUE) 651 651 #define kTest_S(T) (TRUE) 652 #define kTest_L(T )(TRUE)652 #define kTest_L(T,R) (TRUE) 653 653 #endif 654 654
Note: See TracChangeset
for help on using the changeset viewer.