diff python/tests/indicators.txt @ 285:5957aa1d69e1

Integrating Mohamed's changes Changed the indicator interface to access values, so that the generic LCSS implementation can be used
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Sat, 26 Jan 2013 19:02:25 -0500
parents 8f0ed138d373
children 66691c06928c
line wrap: on
line diff
--- a/python/tests/indicators.txt	Fri Dec 21 18:33:36 2012 -0500
+++ b/python/tests/indicators.txt	Sat Jan 26 19:02:25 2013 -0500
@@ -4,17 +4,20 @@
 >>> indic1 = TemporalIndicator('bla', [0,3,-4], TimeInterval(4,6))
 >>> indic1.empty()
 False
->>> indic1[5]
+>>> indic1.valueAtInstant(5)
 3
->>> indic1[3]
+>>> indic1.valueAtInstant(3)
+>>> indic1[1]
+3
+>>> indic1[5]
 >>> [v for v in indic1]
 [0, 3, -4]
 >>> indic1 = TemporalIndicator('bla', {2:0,4:3,5:-5})
->>> indic1[4]
+>>> indic1.valueAtInstant(4)
 3
->>> indic1[3]
->>> [v for v in indic1]
-[0, 3, -5]
+>>> indic1.valueAtInstant(3)
+>>> indic1[2]
+-5
 
 >>> t1 = Trajectory([[0.5,1.5,2.5],[0.5,3.5,6.5]])
 >>> indicatorMap([1,2,3], t1, 1)