Update README.md

This commit is contained in:
Marcell Vazquez-Chanlatte 2018-09-27 22:45:06 -07:00 committed by GitHub
parent df7bb6f3c8
commit 9187d8f05e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,7 +37,7 @@ import mtl
# - Lowercase strings denote atomic predicates. # - Lowercase strings denote atomic predicates.
phi0 = mtl.parse('atomicpred') phi0 = mtl.parse('atomicpred')
# - Binary operators need to be surrounded by parens. # - infix operators need to be surrounded by parens.
phi1 = mtl.parse('((a & b & c) | d | e)') phi1 = mtl.parse('((a & b & c) | d | e)')
phi2 = mtl.parse('(a -> b) & (~a -> c)') phi2 = mtl.parse('(a -> b) & (~a -> c)')
phi3 = mtl.parse('(a -> b -> c)') phi3 = mtl.parse('(a -> b -> c)')