Skip to content

Commit 1907ebe

Browse files
authored
Merge pull request #185 from SergeStinckwich/master
Remove some Dhb prefix
2 parents 13da29e + 0bf6919 commit 1907ebe

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Math-Matrix/PMLUPDecomposition.class.st

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Instance variables
1313
1414
[[[
1515
| s sol1 sol2 |
16-
s := DhbLUPDecomposition equations: #( (3 2 4) (2 -5 -1) (1 -2 2)).
16+
s := PMLUPDecomposition equations: #( (3 2 4) (2 -5 -1) (1 -2 2)).
1717
sol1 := s solve: #(16 6 10).
1818
sol2 := s solve: #(7 10 9).
1919
]]]
@@ -26,7 +26,7 @@ Class {
2626
'permutation',
2727
'parity'
2828
],
29-
#category : 'Math-Matrix'
29+
#category : #'Math-Matrix'
3030
}
3131

3232
{ #category : #creation }

src/Math-Matrix/PMLinearEquationSystem.class.st

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
This class offers Gaussian elimination.
33
44
[[[
5-
(DhbLinearEquationSystem equations: #( (3 2 4)
5+
(PMLinearEquationSystem equations: #( (3 2 4)
66
(2 -5 -1)
77
(1 -2 2))
88
constant: #(16 6 10)
@@ -22,7 +22,7 @@ Class {
2222
'rows',
2323
'solutions'
2424
],
25-
#category : 'Math-Matrix'
25+
#category : #'Math-Matrix'
2626
}
2727

2828
{ #category : #creation }

0 commit comments

Comments
 (0)