From bfe74e984300af3a9a5fba12c1715c0578cbc774 Mon Sep 17 00:00:00 2001 From: Marcell Vazquez-Chanlatte Date: Fri, 6 Jan 2017 22:36:57 -0800 Subject: [PATCH] x' indicates future values --- stl/parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stl/parser.py b/stl/parser.py index 805b523..04c87e2 100644 --- a/stl/parser.py +++ b/stl/parser.py @@ -120,7 +120,7 @@ class STLVisitor(NodeVisitor): return children[3]* children[5] def visit_prime(self, *_): - return ast.t_sym - ast.dt_sym + return ast.t_sym + ast.dt_sym def visit_const(self, const, children): return float(const.text)