Changeset 454cb0 in git
- Timestamp:
- Feb 22, 2009, 12:22:08 PM (14 years ago)
- Branches:
- (u'spielwiese', '8d54773d6c9e2f1d2593a28bc68b7eeab54ed529')
- Children:
- cb2088b08c04fc873962bfeb02cfb4f0674d5dc1
- Parents:
- cce4a2f69a8341c6b8fbb3f1e78b41bf26ed7970
- Location:
- kernel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/gr_kstd2.cc
rcce4a2f r454cb0 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: gr_kstd2.cc,v 1.2 6 2009-02-21 15:25:43 levandovExp $ */4 /* $Id: gr_kstd2.cc,v 1.27 2009-02-22 11:22:08 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT - Kernel: noncomm. alg. of Buchberger … … 1116 1116 pLmFree(strat->P.p); 1117 1117 /* the real one */ 1118 if (ncRingType(currRing)==nc_lie) /* prod crit */1119 if(pHasNotCF(strat->P.p1,strat->P.p2))1120 {1118 // if (ncRingType(currRing)==nc_lie) /* prod crit */ 1119 // if(pHasNotCF(strat->P.p1,strat->P.p2)) 1120 // { 1121 1121 // strat->cp++; 1122 /* prod.crit itself in nc_CreateSpoly */1123 }1122 // /* prod.crit itself in nc_CreateSpoly */ 1123 // } 1124 1124 1125 1125 strat->P.p = nc_CreateSpoly(strat->P.p1,strat->P.p2,currRing); -
kernel/ring.h
rcce4a2f r454cb0 7 7 * ABSTRACT - the interpreter related ring operations 8 8 */ 9 /* $Id: ring.h,v 1.3 8 2009-02-21 17:50:29Singular Exp $ */9 /* $Id: ring.h,v 1.39 2009-02-22 11:22:08 Singular Exp $ */ 10 10 11 11 /* includes */ … … 39 39 nc_struct *n; 40 40 return (r != NULL) && ((n=r->GetNC()) != NULL) /*&& (n->type != nc_error)*/; 41 #else 42 return false; 43 #endif 44 } 45 46 inline bool rIsRatGRing(const ring r) 47 { 48 #ifdef HAVE_PLURAL 49 nc_struct *n; 50 return (r != NULL) && ((n=r->GetNC()) != NULL) 51 && (r->real_var_start>1); 41 52 #else 42 53 return false;
Note: See TracChangeset
for help on using the changeset viewer.