Allow negated quantified expressions without parentheses

This commit is contained in:
Patrick Lühne 2019-11-05 15:53:42 -06:00
parent acb6c05eec
commit 9076ecd95d
Signed by: patrick
GPG Key ID: 05F3611E97A70ABF
1 changed files with 2 additions and 2 deletions

View File

@ -518,7 +518,7 @@ fn exists(i: &str) -> IResult<&str, crate::Formula>
tag(","),
variable_declaration
),
formula_precedence_1
formula_precedence_2
)
),
whitespace0
@ -553,7 +553,7 @@ fn for_all(i: &str) -> IResult<&str, crate::Formula>
tag(","),
variable_declaration
),
formula_precedence_1
formula_precedence_2
)
),
whitespace0