Changeset e2efe91 in git
- Timestamp:
- Mar 2, 2009, 7:06:54 PM (14 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- fcef59fcd75c37051211c94b3423f0d319602d9d
- Parents:
- c91241ed56b5d5415d9557a8844d82dc4c1bd14a
- Location:
- kernel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/sca.h
rc91241 re2efe91 5 5 * Computer Algebra System SINGULAR * 6 6 ****************************************/ 7 /* $Id: sca.h,v 1.1 5 2009-03-02 17:04:52motsak Exp $ */7 /* $Id: sca.h,v 1.16 2009-03-02 18:06:54 motsak Exp $ */ 8 8 9 9 #include <ring.h> … … 163 163 164 164 // reduce ideal id modulo <y_i^2> , i = iFirstAltVar .. iLastAltVar 165 // optional argument bSkipZeroes allow skipping of zero entries, by 166 // default - no skipping! 165 167 ideal id_KillSquares(const ideal id, 166 168 const unsigned int iFirstAltVar, const unsigned int iLastAltVar, 167 const ring r, const bool bSkipZeroes = true);169 const ring r, const bool bSkipZeroes = false); 168 170 169 171 // for benchmarking -
kernel/syz.cc
rc91241 re2efe91 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: syz.cc,v 1.1 8 2009-01-06 16:53:54 SingularExp $ */4 /* $Id: syz.cc,v 1.19 2009-03-02 18:06:54 motsak Exp $ */ 5 5 6 6 /* … … 632 632 const unsigned int m_iLastAltVar = scaLastAltVar(currRing); 633 633 634 arg = id_KillSquares(arg, m_iFirstAltVar, m_iLastAltVar, currRing ); // kill suares in input!634 arg = id_KillSquares(arg, m_iFirstAltVar, m_iLastAltVar, currRing, false); // kill suares in input! 635 635 } 636 636 #endif
Note: See TracChangeset
for help on using the changeset viewer.