syncing builds start moving to hypothesis

This commit is contained in:
Marcell Vazquez-Chanlatte 2017-09-25 23:05:18 -07:00
parent f04f1b3eeb
commit c7e16566a0
12 changed files with 121 additions and 37 deletions

View file

@ -82,6 +82,15 @@ def _(stl):
def _(stl):
return lambda x, t: bitarray(x[str(stl.id)][tau] for tau in t)
@pointwise_satf.register(type(stl.TOP))
def _(_):
return lambda _, t: bitarray([True]*len(t))
@pointwise_satf.register(type(stl.BOT))
def _(_):
return lambda _, t: bitarray([False]*len(t))
@pointwise_satf.register(stl.LinEq)
def _(stl):