slight cleanup

This commit is contained in:
David Holzmüller 2019-04-12 09:28:24 +02:00
parent 246b045406
commit 3d10668aba
2 changed files with 1 additions and 11 deletions

View File

@ -210,10 +210,6 @@ void multiply_lower_triangular_inplace(std::vector<boost::numeric::ublas::matrix
v.swap(w);
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();
v.swap(w);
// for (size_t i = 0; i < v.data.size(); ++i) {
// std::cout << v.data[i] << "\n\n";
// }
}
}

View File

@ -17,12 +17,10 @@ limitations under the License.
// TODO: refactoring:
/**
* - Interface for MultiDimVector
* - Typed interface?
* - Tests?
* - More point distributions / Basis functions?
* - Forward evaluation?
* - Computation of derivatives?
* - Examples?
*/
void runFunctions() {