mirror of
https://github.com/Relintai/pmlpp.git
synced 2024-11-08 13:12:09 +01:00
Fixed clang format warning.
This commit is contained in:
parent
ad34de8409
commit
d4109a2d5b
@ -224,8 +224,9 @@ Ref<MLPPTensor3> MLPPNumericalAnalysis::third_order_tensor(real_t (*function)(co
|
||||
|
||||
for (int i = 0; i < tensor_size.z; i++) { // O(n^3) time complexity :(
|
||||
for (int j = 0; j < tensor_size.y; j++) {
|
||||
for (int k = 0; k < tensor_size.x; k++)
|
||||
for (int k = 0; k < tensor_size.x; k++) {
|
||||
tensor->element_set(i, j, k, num_diff_3v(function, x, i, j, k));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user