slight cleanup
This commit is contained in:
parent
246b045406
commit
3d10668aba
|
|
@ -210,10 +210,6 @@ void multiply_lower_triangular_inplace(std::vector<boost::numeric::ublas::matrix
|
||||||
v.swap(w);
|
v.swap(w);
|
||||||
|
|
||||||
it = it.cycle();
|
it = it.cycle();
|
||||||
|
|
||||||
// for (size_t i = 0; i < v.data.size(); ++i) {
|
|
||||||
// std::cout << v.data[i] << "\n\n";
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -262,10 +258,6 @@ void multiply_upper_triangular_inplace(std::vector<boost::numeric::ublas::matrix
|
||||||
it = it.cycle();
|
it = it.cycle();
|
||||||
|
|
||||||
v.swap(w);
|
v.swap(w);
|
||||||
|
|
||||||
// for (size_t i = 0; i < v.data.size(); ++i) {
|
|
||||||
// std::cout << v.data[i] << "\n\n";
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -17,12 +17,10 @@ limitations under the License.
|
||||||
|
|
||||||
// TODO: refactoring:
|
// TODO: refactoring:
|
||||||
/**
|
/**
|
||||||
* - Interface for MultiDimVector
|
|
||||||
* - Typed interface?
|
|
||||||
* - Tests?
|
* - Tests?
|
||||||
* - More point distributions / Basis functions?
|
* - More point distributions / Basis functions?
|
||||||
* - Forward evaluation?
|
|
||||||
* - Computation of derivatives?
|
* - Computation of derivatives?
|
||||||
|
* - Examples?
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void runFunctions() {
|
void runFunctions() {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue