Changeset 34fbd93 in git for Singular/subexpr.cc
- Timestamp:
- Jul 9, 1999, 4:58:30 PM (24 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 6959c49751ce060112fd62dace5b8f7590c72602
- Parents:
- 609ba11e29d4d3c44b5785da0728121bbc8e0065
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/subexpr.cc
r609ba11 r34fbd93 5 5 * ABSTRACT: handling of leftv 6 6 */ 7 /* $Id: subexpr.cc,v 1.5 1 1999-06-15 11:36:41Singular Exp $ */7 /* $Id: subexpr.cc,v 1.52 1999-07-09 14:58:30 Singular Exp $ */ 8 8 9 9 #include <stdlib.h> … … 1211 1211 * utility for grammar and iparith 1212 1212 */ 1213 extern BOOLEAN noringvars;1214 1213 void syMake(leftv v,char * id, idhdl packhdl) 1215 1214 { … … 1333 1332 { 1334 1333 BOOLEAN ok=FALSE; 1335 poly p = (! noringvars) ? pmInit(id,ok) : (poly)NULL;1334 poly p = (!yyInRingConstruction) ? pmInit(id,ok) : (poly)NULL; 1336 1335 if (ok) 1337 1336 { … … 1363 1362 { 1364 1363 BOOLEAN ok=FALSE; 1365 poly p = ((currRingHdl!=NULL)&&(!noringvars)&&(IDLEV(currRingHdl)!=myynest)) 1366 /* ring required */ /* not in decl */ /* already in case 4/6 */ 1364 poly p = ((currRingHdl!=NULL) /* ring required */ 1365 &&(!yyInRingConstruction) /* not in decl */ 1366 &&(IDLEV(currRingHdl)!=myynest)) /* already in case 4/6 */ 1367 1367 ? pmInit(id,ok) : (poly)NULL; 1368 1368 if (ok)
Note: See TracChangeset
for help on using the changeset viewer.