Changeset 899741 in git
- Timestamp:
- Sep 10, 2008, 6:41:12 PM (15 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- cab83807bb068e131a3c656b02a316119e75729c
- Parents:
- a5da6f30272bf99d0d44c402d1eb3efcf7d79858
- Location:
- kernel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/kstd1.cc
ra5da6f r899741 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: kstd1.cc,v 1.3 7 2008-07-22 15:15:21Singular Exp $ */4 /* $Id: kstd1.cc,v 1.38 2008-09-10 16:41:12 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: … … 1934 1934 if (strat->M!=NULL) idDelete(&strat->M); 1935 1935 } 1936 else 1937 if (strat->M==NULL) 1936 else if (strat->M==NULL) 1938 1937 { 1939 1938 M=idInit(1,F->rank); … … 1951 1950 if (!oldDegBound) 1952 1951 test &= ~Sy_bit(OPT_DEGBOUND); 1952 } 1953 else 1954 { 1955 if (IDELEMS(M)>IDELEMS(r)) { idDelete(&M); M=idCopy(r); } 1953 1956 } 1954 1957 return r; -
kernel/kstd1.h
ra5da6f r899741 4 4 * Computer Algebra System SINGULAR * 5 5 ****************************************/ 6 /* $Id: kstd1.h,v 1. 4 2008-06-24 08:20:31Singular Exp $ */6 /* $Id: kstd1.h,v 1.5 2008-09-10 16:41:12 Singular Exp $ */ 7 7 /* 8 8 * ABSTRACT … … 10 10 #include "structs.h" 11 11 12 /*213 *input: F: a set (array) of polys with <= Fmax entries (0..Fmax-1)14 * *S: a set (array) of polys with *Smax initialized entries (0..*Smax-1)15 *output:*S: the standard base: a set (array) with <= *Smax+1 entries (0..*Smax)16 */17 12 ideal mora (ideal F, ideal Q,intvec *w,intvec *hilb,kStrategy strat); 18 13
Note: See TracChangeset
for help on using the changeset viewer.