Changeset 4e5fda in git
- Timestamp:
- May 13, 2019, 6:24:37 PM (4 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 2fbb5649d078297d87a8ef7d6969710a97ccdd4b59f0c2b151266af346272ad6c1a729b8294fb6e8ec37c7ec7cfbd57af019e0c0333997d2133876b2
- Parents:
- 1c16bfa4e590c347010af88779f1cacf8d09010f
- Location:
- Singular
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/grammar.cc
r1c16bf r4e5fda 2525 2525 #line 454 "grammar.y" 2526 2526 { 2527 if (currRing==NULL) MYYERROR("no ring active ");2527 if (currRing==NULL) MYYERROR("no ring active (7)"); 2528 2528 syMakeMonom(&(yyval.lv),(yyvsp[(1) - (1)].name)); 2529 2529 ;} … … 2590 2590 #line 489 "grammar.y" 2591 2591 { 2592 if (currRing==NULL) MYYERROR("no ring active ");2592 if (currRing==NULL) MYYERROR("no ring active (8)"); 2593 2593 int j = 0; 2594 2594 memset(&(yyval.lv),0,sizeof(sleftv)); -
Singular/grammar.y
r1c16bf r4e5fda 453 453 MONOM 454 454 { 455 if (currRing==NULL) MYYERROR("no ring active ");455 if (currRing==NULL) MYYERROR("no ring active (7)"); 456 456 syMakeMonom(&$$,$1); 457 457 } … … 488 488 | '[' exprlist ']' 489 489 { 490 if (currRing==NULL) MYYERROR("no ring active ");490 if (currRing==NULL) MYYERROR("no ring active (8)"); 491 491 int j = 0; 492 492 memset(&$$,0,sizeof(sleftv)); -
Singular/iparith.cc
r1c16bf r4e5fda 4769 4769 if (currRing==NULL) 4770 4770 { 4771 WerrorS("no ring active ");4771 WerrorS("no ring active (1)"); 4772 4772 return TRUE; 4773 4773 } … … 5390 5390 if (currRing==NULL) 5391 5391 { 5392 WerrorS("no ring active ");5392 WerrorS("no ring active (2)"); 5393 5393 return TRUE; 5394 5394 } … … 8355 8355 if (RingDependend(dA2[i].res)) 8356 8356 { 8357 WerrorS("no ring active ");8357 WerrorS("no ring active (3)"); 8358 8358 break; 8359 8359 } … … 8399 8399 if (RingDependend(dA2[i].res)) 8400 8400 { 8401 WerrorS("no ring active ");8401 WerrorS("no ring active (4)"); 8402 8402 break; 8403 8403 } … … 8582 8582 if (RingDependend(dA1[i].res)) 8583 8583 { 8584 WerrorS("no ring active ");8584 WerrorS("no ring active (5)"); 8585 8585 break; 8586 8586 } … … 8625 8625 if (RingDependend(dA1[i].res)) 8626 8626 { 8627 WerrorS("no ring active ");8627 WerrorS("no ring active (6)"); 8628 8628 break; 8629 8629 } -
Singular/ipshell.cc
r1c16bf r4e5fda 1503 1503 if (RingDependend(i)) 1504 1504 { 1505 WerrorS("no ring active ");1505 WerrorS("no ring active (9)"); 1506 1506 return TRUE; 1507 1507 }
Note: See TracChangeset
for help on using the changeset viewer.