]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/math/matrices/matrices-tests.factor
factor: fix some spacing
[factor.git] / basis / math / matrices / matrices-tests.factor
index 6a015b8b4d087ca3994f1de22fd01ead774930ed..0d7c116ebef40b9c854421e6de523fc787e8a185 100644 (file)
@@ -374,13 +374,13 @@ PRIVATE>
 { { 4 3 2 1 } } [ { 1 2 3 4 } <anti-diagonal-matrix> transpose anti-diagonal ] unit-test
 
 { {
- { 1 4 7 }
- { 2 5 8 }
- { 3 6 9 }
 { 1 4 7 }
 { 2 5 8 }
 { 3 6 9 }
 } } [ {
- { 1 2 3 }
- { 4 5 6 }
- { 7 8 9 }
 { 1 2 3 }
 { 4 5 6 }
 { 7 8 9 }
 } transpose ] unit-test
 
 ! anti transposition
@@ -389,13 +389,13 @@ PRIVATE>
 { { 4 3 2 1 } } [ { 1 2 3 4 } <diagonal-matrix> anti-transpose main-diagonal ] unit-test
 
 { {
- { 9 6 3 }
- { 8 5 2 }
- { 7 4 1 }
 { 9 6 3 }
 { 8 5 2 }
 { 7 4 1 }
 } } [ {
- { 1 2 3 }
- { 4 5 6 }
- { 7 8 9 }
 { 1 2 3 }
 { 4 5 6 }
 { 7 8 9 }
 } anti-transpose ] unit-test
 
 <PRIVATE