Changeset 80ca3c in git for kernel/gr_kstd2.cc
- Timestamp:
- Feb 22, 2012, 9:32:50 PM (11 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 64f0ca8d7049bea31d0e107cf5c613e0b6ffa5d3
- Parents:
- 1adae39f1ae788b310c426226af46794834f1fac
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-02-22 21:32:50+01:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-02-23 20:35:08+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/gr_kstd2.cc
r1adae39 r80ca3c 21 21 #include <polys/monomials/ring.h> 22 22 23 #include <polys/nc/gb_hack.h> 23 24 #include <polys/nc/nc.h> 24 25 #include <polys/nc/sca.h> … … 32 33 //#include "cntrlc.h" 33 34 #include <kernel/ratgring.h> 34 35 35 #include <kernel/kutil.h> 36 37 #include <kernel/nc.h> 36 38 37 39 #if 0 … … 1043 1045 #define MYTEST 0 1044 1046 1045 ideal gnc_gr_bba(const ideal F, const ideal Q, const intvec *, const intvec *, kStrategy strat )1047 ideal gnc_gr_bba(const ideal F, const ideal Q, const intvec *, const intvec *, kStrategy strat, const ring _currRing) 1046 1048 { 1049 const ring save = currRing; if( currRing != _currRing ) rChangeCurrRing(_currRing); 1050 1047 1051 #if MYTEST 1048 1052 PrintS("<gnc_gr_bba>\n"); … … 1298 1302 #endif 1299 1303 1304 if( currRing != save ) rChangeCurrRing(save); 1305 1300 1306 return (strat->Shdl); 1301 1307 } 1302 1308 1303 ideal gnc_gr_mora(const ideal , const ideal, const intvec *, const intvec *, kStrategy)1309 ideal gnc_gr_mora(const ideal F, const ideal Q, const intvec *, const intvec *, kStrategy strat, const ring _currRing) 1304 1310 { 1305 PrintS("Sorry, non-commutative mora is not yet implemented!"); 1306 PrintLn(); 1307 1311 #ifndef NDEBUG 1308 1312 // Not yet! 1309 return NULL; 1313 WarnS("Sorry, non-commutative mora is not yet implemented!"); 1314 #endif 1315 1316 return gnc_gr_bba(F, Q, NULL, NULL, strat, _currRing); 1310 1317 } 1311 1318
Note: See TracChangeset
for help on using the changeset viewer.