mirror of
https://github.com/Relintai/MLPP.git
synced 2024-11-12 10:15:01 +01:00
fixed indent
This commit is contained in:
parent
725d82b0d0
commit
31b031bf91
@ -77,13 +77,13 @@ namespace MLPP{
|
|||||||
C[i].resize(B[0].size());
|
C[i].resize(B[0].size());
|
||||||
}
|
}
|
||||||
|
|
||||||
for(int i = 0; i < A.size(); i++){
|
for(int i = 0; i < A.size(); i++){
|
||||||
for(int k = 0; k < B.size(); k++){
|
for(int k = 0; k < B.size(); k++){
|
||||||
for(int j = 0; j < B[0].size(); j++){
|
for(int j = 0; j < B[0].size(); j++){
|
||||||
C[i][j] += A[i][k] * B[k][j];
|
C[i][j] += A[i][k] * B[k][j];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
return C;
|
return C;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user