Browse Source

Travis fix.

master
jgoppert 9 years ago
parent
commit
bb6b375390
  1. 2
      matrix/SquareMatrix.hpp

2
matrix/SquareMatrix.hpp

@ -185,7 +185,7 @@ public:
size_t k = 1; size_t k = 1;
while (k < n) { while (k < n) {
res += A_pow * (Type(pow(dt, k)) / k_fact); res += A_pow * (Type(pow(dt, k)) / Type(k_fact));
if (k == n) { if (k == n) {
break; break;

Loading…
Cancel
Save