Changeset 33293b6 in git
- Timestamp:
- Jan 19, 2002, 6:11:00 PM (22 years ago)
- Branches:
- (u'spielwiese', 'd1b01e9d51ade4b46b745d3bada5c5f3696be3a8')
- Children:
- e63e2390bd2de7a38f9c6a092970ef10827a89b7
- Parents:
- 15fb305b4c55c461f2146d16b6578117c4a79a7c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/ipshell.cc
r15fb305 r33293b6 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: ipshell.cc,v 1.7 1 2002-01-10 12:33:20 Singular Exp $ */4 /* $Id: ipshell.cc,v 1.72 2002-01-19 17:11:00 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: … … 36 36 #define SI_DONT_HAVE_GLOBAL_VARS 37 37 #include <factory.h> 38 #endif 39 40 // define this if you want to use the fast_map routine for mapping ideals 41 //#define FAST_MAP 42 43 #ifdef FAST_MAP 44 #include "fast_maps.h" 38 45 #endif 39 46 … … 736 743 tmpW.rtyp=IDTYP(w); 737 744 tmpW.data=IDDATA(w); 745 #ifdef FAST_MAP 746 if ((tmpW.rtyp==IDEAL_CMD) && (nMap==nCopy)) 747 { 748 v->rtyp=IDEAL_CMD; 749 v->data=fast_map(IDIDEAL(w), IDRING(r), (ideal)theMap, currRing); 750 } 751 else 752 #endif 738 753 if (maApplyFetch(MAP_CMD,theMap,v,&tmpW,IDRING(r),NULL,NULL,0,nMap)) 739 754 {
Note: See TracChangeset
for help on using the changeset viewer.