fix negation bug in robustness
This commit is contained in:
parent
a8e84a3761
commit
6093767772
2 changed files with 5 additions and 3 deletions
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue