From 49c1ff9d73a2ce10fb31a03eeb05a27dc090e1fc Mon Sep 17 00:00:00 2001 From: Alexandr Ruchkin Date: Thu, 1 Jun 2017 17:57:12 +0300 Subject: [PATCH] Fixed type error --- mm/path_inference/learning_traj_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mm/path_inference/learning_traj_test.py b/mm/path_inference/learning_traj_test.py index 685b091..9a3cc2e 100644 --- a/mm/path_inference/learning_traj_test.py +++ b/mm/path_inference/learning_traj_test.py @@ -50,8 +50,8 @@ def simple_traj3(): """ Simple trajectory with large features, breaks non log-based implementations. """ - features = [ [ [0, 200] ], - [ [200, 0], [-100, 0] ], + features = [ [ [0., 200.] ], + [ [200., 0.], [-100., 0.] ], ] connections = [ [ (0, 0), (0, 1) ] ] traj = LearningTrajectory(features, connections)