Changeset d76b58 in git for kernel/ideals.cc
- Timestamp:
- Apr 3, 2007, 5:16:39 PM (16 years ago)
- Branches:
- (u'spielwiese', '91fdef05f09f54b8d58d92a472e9c4a43aa4656f')
- Children:
- 9d7c017a79e5d3272ee273750210ac7b1d3b368b
- Parents:
- f07b7f501de2ad2471b3ede6892f65e8bed16c5b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/ideals.cc
rf07b7f5 rd76b58 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: ideals.cc,v 1.4 0 2007-03-02 09:25:56Singular Exp $ */4 /* $Id: ideals.cc,v 1.41 2007-04-03 15:16:39 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT - all basic methods to manipulate ideals … … 2369 2369 if (rIsPluralRing(currRing)) 2370 2370 { 2371 BOOLEAN BAD = FALSE;2371 BOOLEAN bBAD = FALSE; 2372 2372 if ( nc_rComplete(origR, &tmpR) ) 2373 2373 { 2374 2374 Werror("error in nc_rComplete"); 2375 BAD = TRUE;2376 } 2377 if (! BAD)2375 bBAD = TRUE; 2376 } 2377 if (!bBAD) 2378 2378 { 2379 2379 /* tests the admissibility of the new elim. ordering */ … … 2381 2381 { 2382 2382 Werror("no elimination is possible: ordering condition is violated"); 2383 BAD = TRUE;2384 } 2385 } 2386 if ( BAD)2383 bBAD = TRUE; 2384 } 2385 } 2386 if (bBAD) 2387 2387 { 2388 2388 // cleanup
Note: See TracChangeset
for help on using the changeset viewer.