From bb6b375390854ddcd716e49b35c64521d0e909d9 Mon Sep 17 00:00:00 2001 From: jgoppert Date: Thu, 5 Nov 2015 11:25:47 -0500 Subject: [PATCH] Travis fix. --- matrix/SquareMatrix.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matrix/SquareMatrix.hpp b/matrix/SquareMatrix.hpp index 6dd138dda8..a86763465d 100644 --- a/matrix/SquareMatrix.hpp +++ b/matrix/SquareMatrix.hpp @@ -185,7 +185,7 @@ public: size_t k = 1; 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) { break;