Changeset b9020c3 in git
- Timestamp:
- Jan 19, 2002, 6:20:59 PM (22 years ago)
- Branches:
- (u'spielwiese', 'e7cc1ebecb61be8b9ca6c18016352af89940b21a')
- Children:
- 63d0ae66dd2fa2c9dc02d5a744eb6986ece841d4
- Parents:
- e63e2390bd2de7a38f9c6a092970ef10827a89b7
- Location:
- Singular
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/extra.cc
re63e239 rb9020c3 2 2 * Computer Algebra System SINGULAR * 3 3 *****************************************/ 4 /* $Id: extra.cc,v 1.17 2 2002-01-19 14:48:14obachman Exp $ */4 /* $Id: extra.cc,v 1.173 2002-01-19 17:20:58 obachman Exp $ */ 5 5 /* 6 6 * ABSTRACT: general interface to internals of Singular ("system" command) … … 651 651 652 652 #include "mod_raw.h" 653 #include "fast_maps.cc"653 // #include "fast_maps.cc" 654 654 655 655 static BOOLEAN jjEXTENDED_SYSTEM(leftv res, leftv h) … … 791 791 ring map_r = IDRING(idroot->get(theMap->preimage, myynest)); 792 792 ideal map_id = IDIDEAL(map_r->idroot->get(h->Next()->Name(), myynest)); 793 793 #if 0 794 794 ring src_r, dest_r; 795 795 maMap_CreateRings(map_id, map_r, image_id, image_r, src_r, dest_r); … … 799 799 maMap_CreatePolyIdeal(map_id, map_r, src_r, dest_r, mp, mideal); 800 800 maPoly_Out(mp, src_r); 801 #endif 801 802 return FALSE; 802 803 } -
Singular/fast_maps.cc
re63e239 rb9020c3 7 7 * Author: obachman (Olaf Bachmann) 8 8 * Created: 02/01 9 * Version: $Id: fast_maps.cc,v 1.1 6 2002-01-19 17:11:42obachman Exp $9 * Version: $Id: fast_maps.cc,v 1.17 2002-01-19 17:20:59 obachman Exp $ 10 10 *******************************************************************/ 11 11 #include "mod2.h" … … 24 24 // define if you want to use optimization step 25 25 #define HAVE_MAP_OPTIMIZATION 0 26 27 28 26 29 27 /******************************************************************************* -
Singular/ipshell.cc
re63e239 rb9020c3 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: ipshell.cc,v 1.7 2 2002-01-19 17:11:00 SingularExp $ */4 /* $Id: ipshell.cc,v 1.73 2002-01-19 17:20:59 obachman Exp $ */ 5 5 /* 6 6 * ABSTRACT: … … 39 39 40 40 // define this if you want to use the fast_map routine for mapping ideals 41 //#define FAST_MAP41 #define FAST_MAP 42 42 43 43 #ifdef FAST_MAP -
Singular/ring.cc
re63e239 rb9020c3 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: ring.cc,v 1.17 6 2002-01-19 17:11:42obachman Exp $ */4 /* $Id: ring.cc,v 1.177 2002-01-19 17:20:59 obachman Exp $ */ 5 5 6 6 /* … … 2658 2658 2659 2659 // construct lp ring 2660 ring rModifyRing_Simple(ring r, BOOLEAN ommit_degree, BOOLEAN ommit_comp, intexp_limit)2660 ring rModifyRing_Simple(ring r, BOOLEAN ommit_degree, BOOLEAN ommit_comp, unsigned long exp_limit) 2661 2661 { 2662 2662 if (!rHasSimpleOrder(r))
Note: See TracChangeset
for help on using the changeset viewer.