flake8 fixes + unregister LinEq in boolean eval

This commit is contained in:
Marcell Vazquez-Chanlatte 2018-09-06 01:28:19 -07:00
parent d2cd678018
commit 5fd66cfd2c
4 changed files with 3 additions and 17 deletions

View file

@ -1,18 +1,14 @@
# -*- coding: utf-8 -*-
# TODO: allow multiplication to be distributive
# TODO: support variables on both sides of ineq
import operator as op
from functools import partialmethod, reduce
from lenses import bind
from parsimonious import Grammar, NodeVisitor
from stl import ast
from stl.utils import iff, implies, xor, timed_until
STL_GRAMMAR = Grammar(u'''
phi = (neg / paren_phi / next / bot / top
/ xor_outer / iff_outer / implies_outer / and_outer / or_outer
/ xor_outer / iff_outer / implies_outer / and_outer / or_outer
/ timed_until / until / g / f / AP)
paren_phi = "(" __ phi __ ")"