Changeset 3cc3f6 in git
- Timestamp:
- Jan 13, 2000, 3:40:24 PM (23 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- ec595fe8a788c2eea6d6510932843091778e510a
- Parents:
- 79f80f93fb1494aff19e2edf427e6a283e99fc45
- Location:
- Singular
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/ideals.cc
r79f80f r3cc3f6 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: ideals.cc,v 1.8 2 2000-01-13 14:18:58siebert Exp $ */4 /* $Id: ideals.cc,v 1.83 2000-01-13 14:40:24 siebert Exp $ */ 5 5 /* 6 6 * ABSTRACT - all basic methods to manipulate ideals … … 1609 1609 * of mod 1610 1610 */ 1611 ideal idLiftNonStB (ideal mod, ideal submod,ideal * rest, 1612 BOOLEAN goodShape,BOOLEAN divide)1611 ideal idLiftNonStB (ideal mod, ideal submod,ideal * rest, BOOLEAN goodShape, 1612 BOOLEAN divide,BOOLEAN lift1) 1613 1613 { 1614 1614 return idLift(mod, submod, rest, goodShape, FALSE); … … 1616 1616 1617 1617 1618 ideal idLift (ideal mod, ideal submod,ideal * rest, 1619 BOOLEAN goodShape, BOOLEAN isSB,BOOLEAN divide)1618 ideal idLift (ideal mod, ideal submod,ideal * rest, BOOLEAN goodShape, 1619 BOOLEAN isSB,BOOLEAN divide,BOOLEAN lift1) 1620 1620 { 1621 1621 int lsmod =idRankFreeModule(submod), i, j, k; 1622 int ordSgn=currRing->OrdSgn;1623 1622 int comps_to_add=0; 1624 1623 poly p; … … 1636 1635 #endif 1637 1636 #ifdef NEW_LIFT 1638 if ( ordSgn==-1)1637 if (lift1) 1639 1638 { 1640 1639 comps_to_add = IDELEMS(submod); … … 1690 1689 } 1691 1690 #ifdef NEW_LIFT 1692 if ( ordSgn==-1)1691 if (lift1) 1693 1692 { 1694 1693 for(j = 0;j<comps_to_add;j++) -
Singular/ideals.h
r79f80f r3cc3f6 4 4 * Computer Algebra System SINGULAR * 5 5 ****************************************/ 6 /* $Id: ideals.h,v 1.1 8 2000-01-13 14:18:57siebert Exp $ */6 /* $Id: ideals.h,v 1.19 2000-01-13 14:40:23 siebert Exp $ */ 7 7 /* 8 8 * ABSTRACT - all basic methods to manipulate ideals … … 89 89 90 90 ideal idLift (ideal mod, ideal sumod,ideal * rest=NULL, 91 BOOLEAN goodShape=FALSE, BOOLEAN isSB=TRUE,BOOLEAN divide=FALSE); 91 BOOLEAN goodShape=FALSE, BOOLEAN isSB=TRUE,BOOLEAN divide=FALSE, 92 BOOLEAN lift1=FALSE); 92 93 ideal idLiftNonStB (ideal mod, ideal submod,ideal * rest=NULL, 93 BOOLEAN goodShape=FALSE,BOOLEAN divide=FALSE); 94 BOOLEAN goodShape=FALSE,BOOLEAN divide=FALSE, 95 BOOLEAN lift1=FALSE); 94 96 95 97 intvec * idMWLift(ideal mod,intvec * weights);
Note: See TracChangeset
for help on using the changeset viewer.