Forced function instantiation for coverage testing.

This commit is contained in:
jgoppert
2015-11-12 10:07:09 -05:00
parent 410bbc4c71
commit a334cecfa7
4 changed files with 20 additions and 3 deletions
+8
View File
@@ -5,6 +5,14 @@
using namespace matrix;
// instantiate template to ensure coverage check
template int integrate_rk4<float, 6>(
Vector<float, 6> (*f)(float, Vector<float, 6>),
Vector<float, 6> & y,
float & t,
float h
);
Vector<float, 6> f(float t, Vector<float, 6> y);
Vector<float, 6> f(float t, Vector<float, 6> y) {