Changeset 8ba25b in git for kernel/sca.cc
- Timestamp:
- Mar 2, 2009, 6:04:52 PM (15 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- c91241ed56b5d5415d9557a8844d82dc4c1bd14a
- Parents:
- 90574dea52c09bb4dcd5979af7acceb6048a560a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/sca.cc
r90574d r8ba25b 7 7 * Author: motsak (Oleksandr Motsak) 8 8 * Created: 2006/12/18 9 * Version: $Id: sca.cc,v 1.3 2 2009-02-23 13:50:52 SingularExp $9 * Version: $Id: sca.cc,v 1.33 2009-03-02 17:04:52 motsak Exp $ 10 10 *******************************************************************/ 11 11 … … 2700 2700 ideal id_KillSquares(const ideal id, 2701 2701 const unsigned int iFirstAltVar, const unsigned int iLastAltVar, 2702 const ring r )2702 const ring r, const bool bSkipZeroes) 2703 2703 { 2704 2704 if (id == NULL) return id; // zero ideal … … 2730 2730 temp->m[j] = p_KillSquares(id->m[j], iFirstAltVar, iLastAltVar, r); 2731 2731 2732 idSkipZeroes(temp); 2732 if( bSkipZeroes ) 2733 idSkipZeroes(temp); 2733 2734 2734 2735 #if 0
Note: See TracChangeset
for help on using the changeset viewer.