fix negation bug in robustness

This commit is contained in:
Marcell Vazquez-Chanlatte 2017-02-28 13:35:01 -08:00
parent a8e84a3761
commit 6093767772
2 changed files with 5 additions and 3 deletions

View file

@ -41,7 +41,7 @@ def _(stl):
@pointwise_robustness.register(stl.Neg)
def _(stl):
return lambda x, t: -pointwise_robustness(arg)(x, t)
return lambda x, t: -pointwise_robustness(stl.arg)(x, t)
op_lookup = {