Addressed mishandling of starting time values, Issue #107

This commit is contained in:
jimkapin 2019-09-03 10:07:40 -07:00
parent 4f8e66b52a
commit 7dc1572b5e
2 changed files with 9 additions and 2 deletions

View file

@ -42,7 +42,7 @@ def _neg(exp):
return Neg(exp)
def _eval(exp, trace, time=0, *, dt=0.1, quantitative=True):
def _eval(exp, trace, time=False, *, dt=0.1, quantitative=True):
from mtl import evaluator
return evaluator.pointwise_sat(exp, dt)(trace, time, quantitative)