Changeset 3cc3f6 in git


Ignore:
Timestamp:
Jan 13, 2000, 3:40:24 PM (23 years ago)
Author:
Thomas Siebert <siebert@…>
Branches:
(u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
Children:
ec595fe8a788c2eea6d6510932843091778e510a
Parents:
79f80f93fb1494aff19e2edf427e6a283e99fc45
Message:
Change of Procedure-calls in idLift


git-svn-id: file:///usr/local/Singular/svn/trunk@4083 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
Singular
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Singular/ideals.cc

    r79f80f r3cc3f6  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ideals.cc,v 1.82 2000-01-13 14:18:58 siebert Exp $ */
     4/* $Id: ideals.cc,v 1.83 2000-01-13 14:40:24 siebert Exp $ */
    55/*
    66* ABSTRACT - all basic methods to manipulate ideals
     
    16091609* of mod
    16101610*/
    1611 ideal   idLiftNonStB (ideal  mod, ideal submod,ideal * rest,
    1612              BOOLEAN goodShape,BOOLEAN divide)
     1611ideal   idLiftNonStB (ideal  mod, ideal submod,ideal * rest, BOOLEAN goodShape,
     1612                    BOOLEAN divide,BOOLEAN lift1)
    16131613{
    16141614  return idLift(mod, submod, rest, goodShape, FALSE);
     
    16161616
    16171617
    1618 ideal   idLift (ideal mod, ideal submod,ideal * rest,
    1619              BOOLEAN goodShape, BOOLEAN isSB,BOOLEAN divide)
     1618ideal   idLift (ideal mod, ideal submod,ideal * rest, BOOLEAN goodShape,
     1619               BOOLEAN isSB,BOOLEAN divide,BOOLEAN lift1)
    16201620{
    16211621  int   lsmod =idRankFreeModule(submod), i, j, k;
    1622   int ordSgn=currRing->OrdSgn;
    16231622  int comps_to_add=0;
    16241623  poly p;
     
    16361635#endif
    16371636#ifdef NEW_LIFT
    1638   if (ordSgn==-1)
     1637  if (lift1)
    16391638  {
    16401639    comps_to_add = IDELEMS(submod);
     
    16901689  }
    16911690#ifdef NEW_LIFT
    1692   if (ordSgn==-1)
     1691  if (lift1)
    16931692  {
    16941693    for(j = 0;j<comps_to_add;j++)
  • Singular/ideals.h

    r79f80f r3cc3f6  
    44*  Computer Algebra System SINGULAR     *
    55****************************************/
    6 /* $Id: ideals.h,v 1.18 2000-01-13 14:18:57 siebert Exp $ */
     6/* $Id: ideals.h,v 1.19 2000-01-13 14:40:23 siebert Exp $ */
    77/*
    88* ABSTRACT - all basic methods to manipulate ideals
     
    8989
    9090ideal   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);
    9293ideal   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);
    9496
    9597intvec * idMWLift(ideal mod,intvec * weights);
Note: See TracChangeset for help on using the changeset viewer.