aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThéo de la Hogue2023-06-20 18:21:38 +0200
committerThéo de la Hogue2023-06-20 18:21:38 +0200
commit5d0a227982a140e54bb8b3e6632fe2d02326e13f (patch)
tree4100fc5664e14644e2abcae89a14ca7524709a15
parent52d5ed70d5c701ed656a19b4a6f856de2684451a (diff)
downloadargaze-5d0a227982a140e54bb8b3e6632fe2d02326e13f.zip
argaze-5d0a227982a140e54bb8b3e6632fe2d02326e13f.tar.gz
argaze-5d0a227982a140e54bb8b3e6632fe2d02326e13f.tar.bz2
argaze-5d0a227982a140e54bb8b3e6632fe2d02326e13f.tar.xz
Removing print.
-rw-r--r--src/argaze/GazeAnalysis/ExploitExploreRatio.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/argaze/GazeAnalysis/ExploitExploreRatio.py b/src/argaze/GazeAnalysis/ExploitExploreRatio.py
index c5d2392..7b6a2a6 100644
--- a/src/argaze/GazeAnalysis/ExploitExploreRatio.py
+++ b/src/argaze/GazeAnalysis/ExploitExploreRatio.py
@@ -60,8 +60,6 @@ class ScanPathAnalyzer(GazeFeatures.ScanPathAnalyzer):
long_fixations_duration = numpy.array(long_fixations_durations).sum()
saccades_duration = numpy.array(saccades_durations).sum()
- print(short_fixations_duration, long_fixations_duration, saccades_duration)
-
assert(saccades_duration + short_fixations_duration > 0)
return long_fixations_duration / (saccades_duration + short_fixations_duration)