Skip to content
Snippets Groups Projects
Commit a71ca7e8 authored by Derval Guillaume's avatar Derval Guillaume
Browse files

Ensure "<-" is matched before "<"

parent 41ecc714
No related branches found
No related tags found
No related merge requests found
......@@ -51,9 +51,10 @@ hyperedge_import: "#HYPEREDGE" ID "=" "import" var_or_param "from" STRING hypere
hyperedge_redefs: "with" definition* | ";"
// VARIABLES
variable_definition: SCOPE [VTYPE] ":" var_or_param ["<-" var_or_param] ";"
variable_definition: SCOPE [VTYPE] ":" var_or_param [_LARROW var_or_param] ";"
SCOPE: "internal" | "external"
VTYPE: "binary" | "continuous" | "integer"
_LARROW.1: "<-"
// CONSTRAINTS
?constraint: constraint_sos | constraint_std
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment