Fixed timed until.
This commit is contained in:
parent
74f6efa314
commit
4287ee857e
1 changed files with 13 additions and 0 deletions
13
mtl/test_eval.py
Normal file
13
mtl/test_eval.py
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
import mtl
|
||||||
|
|
||||||
|
|
||||||
|
def test_eval_regression_smoke1():
|
||||||
|
"""From issue #215"""
|
||||||
|
d2 = {
|
||||||
|
'a': [
|
||||||
|
(0, True), (1, True), (3, True), (4, True), (5, False), (6, True)
|
||||||
|
],
|
||||||
|
'b': [(0, False), (3, True)],
|
||||||
|
}
|
||||||
|
f2 = mtl.parse('(a U[0,3] b)')
|
||||||
|
f2(d2, quantitative=False)
|
||||||
Loading…
Add table
Add a link
Reference in a new issue