Skip to content
Snippets Groups Projects
Commit 8dde155e authored by MichelJuillard's avatar MichelJuillard
Browse files

ms-sbvar: adding missing case for linear restriction

parent 7854b067
No related branches found
No related tags found
No related merge requests found
......@@ -716,6 +716,8 @@ restriction_expression_1 : restriction_elem_expression
restriction_elem_expression : COEFF '(' symbol COMMA INT_NUMBER ')'
{ driver.add_positive_restriction_element($3,$5);}
| PLUS COEFF '(' symbol COMMA INT_NUMBER ')'
{ driver.add_positive_restriction_element($4,$6);}
| MINUS COEFF '(' symbol COMMA INT_NUMBER ')'
{ driver.add_negative_restriction_element($4,$6);}
| expression TIMES COEFF '(' symbol COMMA INT_NUMBER ')'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment