Removed unnecessary parentheses after simplification.

This commit is contained in:
2017-06-05 03:58:39 +02:00
parent 3b26580815
commit 7ae0a1f289
3 changed files with 6 additions and 8 deletions

View File

@@ -140,7 +140,7 @@ TEST_CASE("[completion] Rules are completed", "[completion]")
anthem::translate("input", input, context);
CHECK(output.str() ==
"forall V1 (covered(V1) <-> exists U1 (in(V1, U1)))\n"
"forall V1 (covered(V1) <-> exists U1 in(V1, U1))\n"
"forall V2, V3 (in(V2, V3) <-> (V2 in 1..n and V3 in 1..r and in(V2, V3)))\n"
"forall U2 not (U2 in 1..n and not covered(U2))\n"
"forall U3, U4, U5 not (in(U3, U4) and in(U5, U4) and exists X1 (X1 in (U3 + U5) and in(X1, U4)))\n");