Test Failed
Pull Request — master (#100)
by Никита
03:42
created
src/Phpml/Clustering/KMeans/Cluster.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -138,8 +138,8 @@
 block discarded – undo
138 138
     }
139 139
     
140 140
     /**
141
-    * @param array $newCoordinates
142
-    */
141
+     * @param array $newCoordinates
142
+     */
143 143
     public function setCoordinates(array $newCoordinates)
144 144
     {
145 145
         $this->coordinates = $newCoordinates;
Please login to merge, or discard this patch.
src/Phpml/DimensionReduction/KernelPCA.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -136,9 +136,9 @@
 block discarded – undo
136 136
         $N_K_N = $N->multiply($K_N);
137 137
 
138 138
         return $K->subtract($N_K)
139
-                 ->subtract($K_N)
140
-                 ->add($N_K_N)
141
-                 ->toArray();
139
+                    ->subtract($K_N)
140
+                    ->add($N_K_N)
141
+                    ->toArray();
142 142
     }
143 143
 
144 144
     /**
Please login to merge, or discard this patch.
src/Phpml/Math/LinearAlgebra/EigenvalueDecomposition.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -58,21 +58,21 @@
 block discarded – undo
58 58
     private $V = [];
59 59
 
60 60
     /**
61
-    *	Array for internal storage of nonsymmetric Hessenberg form.
62
-    *	@var array
63
-    */
61
+     *	Array for internal storage of nonsymmetric Hessenberg form.
62
+     *	@var array
63
+     */
64 64
     private $H = [];
65 65
 
66 66
     /**
67
-    *	Working storage for nonsymmetric algorithm.
68
-    *	@var array
69
-    */
67
+     *	Working storage for nonsymmetric algorithm.
68
+     *	@var array
69
+     */
70 70
     private $ort;
71 71
 
72 72
     /**
73
-    *	Used for complex scalar division.
74
-    *	@var float
75
-    */
73
+     *	Used for complex scalar division.
74
+     *	@var float
75
+     */
76 76
     private $cdivr;
77 77
     private $cdivi;
78 78
 
Please login to merge, or discard this patch.
src/Phpml/Classification/Linear/Perceptron.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@
 block discarded – undo
99 99
         $this->trainByLabel($samples, $targets, $labels);
100 100
     }
101 101
 
102
-   /**
102
+    /**
103 103
      * @param array $samples
104 104
      * @param array $targets
105 105
      * @param array $labels
Please login to merge, or discard this patch.