Changeset 643877c in git
- Timestamp:
- Feb 12, 2013, 7:30:35 PM (11 years ago)
- Branches:
- (u'spielwiese', 'd1b01e9d51ade4b46b745d3bada5c5f3696be3a8')
- Children:
- f63b13007b1f6deb2ebb62306b07b450a2137832
- Parents:
- 40d23c7f77e530a11d3b7573dcfcb5f33ffcaac6
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2013-02-12 19:30:35+01:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2013-02-13 17:13:26+01:00
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/LIB/schreyer.lib
r40d23c r643877c 1429 1429 1430 1430 exportto(Schreyer, Syzextra::Tail); 1431 1432 exportto(Schreyer, Syzextra::m2_end); 1431 1433 } 1432 1434 else … … 1466 1468 exportto(Schreyer, Syzextra_g::Tail); 1467 1469 1470 1471 exportto(Schreyer, Syzextra_g::m2_end); 1468 1472 } 1469 1473 -
dyn_modules/syzextra/ederc.tst
r40d23c r643877c 135 135 // x2y*gen(4)+yz3*gen(3)-z2t*gen(4)-x2t2*gen(3) 136 136 137 $$$ 137 exit; 138 138 139 -
dyn_modules/syzextra/mod_main.cc
r40d23c r643877c 937 937 } 938 938 939 static BOOLEAN _m2_end(leftv res, leftv h) 940 { 941 int ret = 0; 942 943 if ( (h!=NULL) && (h->Typ()!=INT_CMD) ) 944 { 945 WerrorS("`m2_end([<int>])` expected"); 946 return TRUE; 947 } 948 ret = (int)(long)(h->Data()); 949 950 m2_end( ret ); 951 952 NoReturn(res); 953 return FALSE; 954 } 955 956 957 939 958 END_NAMESPACE 940 959 … … 972 991 ADD(psModulFunctions, currPack->libname, "p_Content", FALSE, _p_Content); 973 992 993 ADD(psModulFunctions, currPack->libname, "m2_end", FALSE, _m2_end); 974 994 // ADD(psModulFunctions, currPack->libname, "", FALSE, ); 975 995 #undef ADD -
dyn_modules/syzextra/syzextra.tst
r40d23c r643877c 44 44 def l = res(I, 0); DetailedPrint(l); 45 45 46 $$$ 46 exit; 47 47 48 -
dyn_modules/syzextra/test_clear_enum.tst
r40d23c r643877c 61 61 { 62 62 basering; 63 ERROR("[TestClearContent -- FAILED]");64 $63 "ERROR: [TestClearContent -- FAILED]"; 64 m2_end(666); 65 65 } 66 66 ""; … … 106 106 { 107 107 basering; 108 ERROR("[TestClearDenominators -- FAILED]");109 $108 "ERROR: [TestClearDenominators -- FAILED]"; 109 m2_end(666); 110 110 } 111 111 ""; … … 371 371 TestClearRingX(x); 372 372 373 // $374 375 373 minpoly = a2 + 1; 376 374 … … 431 429 432 430 433 $$$ 434 431 exit; 432 433
Note: See TracChangeset
for help on using the changeset viewer.