Changeset 2c16b8 in git
- Timestamp:
- Jun 14, 2012, 10:16:48 PM (11 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 14e93b441b4c859a8d51eeeb99f68c2ff924c4bd
- Parents:
- f12f9afa4f10601ec91e93721efb6b1863d06be6
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-06-14 22:16:48+02:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2014-05-07 04:41:45+02:00
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/LIB/schreyer.lib
rf12f9a r2c16b8 139 139 "Sinit::Input"; 140 140 type(M); 141 DetailedPrint(M);141 // DetailedPrint(M); 142 142 attrib(M); 143 143 } … … 185 185 attrib(M); 186 186 attrib(M, "isHomog"); 187 DetailedPrint(M);187 // DetailedPrint(M); 188 188 } 189 189 … … 496 496 } else 497 497 { 498 int @DEBUG = !system("with", "ndebug");498 int @DEBUG = 0; // !system("with", "ndebug"); 499 499 } 500 500 … … 912 912 { 913 913 "SSComputeLeadingSyzygyTerms::Output: "; 914 "SS: "; 915 SS; 914 "SS: "; SS; 916 915 } 917 916 … … 1122 1121 module S2 = Tail(SS); 1123 1122 SS = lead(SS); // (C,lp) on base ring! 1123 1124 if( @SYZCHECK ) 1125 { 1126 if( ncols(SS) != ncols(S2) ) // || size(SS) != ncols(SS) || size(S2) != ncols(S2) 1127 { 1128 "ERROR: SSCompute2LeadingSyzygyTerms: inappropriate S2 / SS: "; 1129 type(SS); 1130 type(S2); 1131 L; 1132 $ 1133 } 1134 } 1124 1135 1125 1136 if( @DEBUG ) … … 1547 1558 } 1548 1559 1549 if( typeof( attrib(basering, "SYZCHECK") ) == "int" ) 1550 { 1551 int @SYZCHECK = attrib(basering, "SYZCHECK"); 1552 } else 1553 { 1554 int @SYZCHECK = @DEBUG; 1555 } 1556 1560 if( typeof( attrib(basering, "KERCHECK") ) == "int" ) 1561 { 1562 int @KERCHECK = attrib(basering, "KERCHECK"); 1563 } else 1564 { 1565 int @KERCHECK = @DEBUG; 1566 } 1557 1567 1558 1568 if( @DEBUG ) -
dyn_modules/syzextra/mod_main.cc
rf12f9a r2c16b8 517 517 newid->m[i] = NULL; 518 518 519 newid->rank = id_RankFreeModule(newid, currRing); 520 519 521 res->data = newid; 520 522 } … … 804 806 805 807 #ifndef NDEBUG 806 const BOOLEAN __DEBUG__ = (BOOLEAN)((long)(atGet(currRingHdl,"DEBUG",INT_CMD, (void*) TRUE)));808 const BOOLEAN __DEBUG__ = (BOOLEAN)((long)(atGet(currRingHdl,"DEBUG",INT_CMD, (void*)FALSE))); 807 809 #else 808 810 const BOOLEAN __DEBUG__ = (BOOLEAN)((long)(atGet(currRingHdl,"DEBUG",INT_CMD, (void*)FALSE))); … … 1431 1433 const BOOLEAN __SYZCHECK__ = (BOOLEAN)((long)(atGet(currRingHdl,"SYZCHECK",INT_CMD, (void*)0))); 1432 1434 1435 const BOOLEAN __HYBRIDNF__ = (BOOLEAN)((long)(atGet(currRingHdl,"HYBRIDNF",INT_CMD, (void*)0))); 1436 1437 assume( __HYBRIDNF__ ); 1438 1433 1439 if ((h==NULL) || (h->Typ() != VECTOR_CMD) || (h->Data() == NULL)) 1434 1440 { … … 1962 1968 ideal FF = id_Copy(F, r); 1963 1969 1970 1971 1964 1972 lists l=(lists)omAllocBin(slists_bin); 1965 1973 l->Init(2);
Note: See TracChangeset
for help on using the changeset viewer.