Updated globally and conjunction
This commit is contained in:
parent
6f20a4811c
commit
5683a6902f
1 changed files with 3 additions and 3 deletions
|
|
@ -22,10 +22,10 @@ def _(stl):
|
|||
@pointwise_satf.register(stl.And)
|
||||
def _(stl):
|
||||
def sat_comp(x,t):
|
||||
sat = bitarray(len(t))
|
||||
sat = ~bitarray(len(t))
|
||||
for arg in stl.args:
|
||||
sat = ~pointwise_satf(arg)(x, t) | ~sat
|
||||
return ~sat
|
||||
sat = ~(~pointwise_satf(arg)(x, t) | ~sat)
|
||||
return sat
|
||||
return sat_comp
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue