Update coding style.
[master-thesis.git] / Parasitemia / Tests / ParasitemiaCore.Tests / KdTree.fs
index 9c9d859..9181c26 100644 (file)
@@ -20,13 +20,13 @@ type KdTreeTests (output : ITestOutputHelper) =
     member this.test () =
         let pts =
             [
-                Point(1.0f, 1.0f)
-                Point(2.0f, 2.0f)
-                Point(1.5f, 3.6f)
-                Point(3.0f, 3.2f)
-                Point(4.0f, 4.0f)
-                Point(3.5f, 1.5f)
-                Point(2.5f, 0.5f)
+                Point (1.0f, 1.0f)
+                Point (2.0f, 2.0f)
+                Point (1.5f, 3.6f)
+                Point (3.0f, 3.2f)
+                Point (4.0f, 4.0f)
+                Point (3.5f, 1.5f)
+                Point (2.5f, 0.5f)
             ]
 
         let tree = Tree.BuildTree pts
@@ -45,9 +45,9 @@ type KdTreeTests (output : ITestOutputHelper) =
     member this.test2 () =
         let pts =
             [
-                Point(1.0f, 1.0f)
-                Point(1.0f, 2.0f)
-                Point(1.0f, 3.0f)
+                Point (1.0f, 1.0f)
+                Point (1.0f, 2.0f)
+                Point (1.0f, 3.0f)
             ]
 
         let tree = Tree.BuildTree pts