mirror of
https://github.com/github/semantic.git
synced 2024-12-26 00:12:29 +03:00
Don’t transpose the coordinate system.
This commit is contained in:
parent
f4a8bcdc90
commit
ee285d79dd
@ -41,8 +41,8 @@ public struct Matrix<A, I: ForwardIndexType> {
|
||||
private func constructRowMajor<A, I: ForwardIndexType>(across: Range<I>, down: Range<I>, @noescape forEach: (I, I) -> A) -> [A] {
|
||||
var values: [A] = []
|
||||
values.reserveCapacity(Int(across.count.toIntMax()) * Int(down.count.toIntMax()))
|
||||
for j in across {
|
||||
for i in down {
|
||||
for j in down {
|
||||
for i in across {
|
||||
values.append(forEach(i, j))
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user