We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b54be1 commit e0ba897Copy full SHA for e0ba897
src/LUDecomposition.php
@@ -19,8 +19,8 @@
19
*/
20
final class LUDecomposition extends Matrix
21
{
22
- protected $parity = 1; // 1 if the number of row interchanges is even, -1 if it is odd. (used for determinants)
23
- protected $permutations = []; // Stores a vector representation of the row permutations performed on this matrix.
+ private $parity = 1; // 1 if the number of row interchanges is even, -1 if it is odd. (used for determinants)
+ private $permutations = []; // Stores a vector representation of the row permutations performed on this matrix.
24
25
/**
26
* @param array $literal The matrix to decompose.
0 commit comments