Changeset 643877c in git for dyn_modules


Ignore:
Timestamp:
Feb 12, 2013, 7:30:35 PM (11 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', '5b153614cbc72bfa198d75b1e9e33dab2645d9fe')
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
Message:
Expose function m2_end function

Conflicts:
	Singular/LIB/schreyer.lib
	dyn_modules/syzextra/mod_main.cc
Location:
dyn_modules/syzextra
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • dyn_modules/syzextra/ederc.tst

    r40d23c r643877c  
    135135// x2y*gen(4)+yz3*gen(3)-z2t*gen(4)-x2t2*gen(3)
    136136
    137 $$$
     137exit;
    138138
     139
  • dyn_modules/syzextra/mod_main.cc

    r40d23c r643877c  
    937937}
    938938
     939static 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
    939958END_NAMESPACE
    940959
     
    972991  ADD(psModulFunctions, currPack->libname, "p_Content", FALSE, _p_Content);
    973992
     993  ADD(psModulFunctions, currPack->libname, "m2_end", FALSE, _m2_end);
    974994  //  ADD(psModulFunctions, currPack->libname, "", FALSE, );
    975995#undef ADD 
  • dyn_modules/syzextra/syzextra.tst

    r40d23c r643877c  
    4444def l = res(I, 0); DetailedPrint(l);
    4545
    46 $$$
     46exit;
    4747
     48
  • dyn_modules/syzextra/test_clear_enum.tst

    r40d23c r643877c  
    6161  {
    6262    basering;
    63     ERROR("[TestClearContent -- FAILED]");
    64     $
     63    "ERROR: [TestClearContent -- FAILED]";
     64    m2_end(666);   
    6565  }
    6666  "";
     
    106106  {
    107107    basering;
    108     ERROR("[TestClearDenominators -- FAILED]");
    109     $
     108    "ERROR: [TestClearDenominators -- FAILED]";
     109    m2_end(666);   
    110110  }
    111111  "";
     
    371371TestClearRingX(x);
    372372
    373 // $
    374 
    375373minpoly = a2 + 1;
    376374
     
    431429
    432430
    433 $$$
    434 
     431exit;
     432
     433
Note: See TracChangeset for help on using the changeset viewer.