]> www.ginac.de Git - ginac.git/blobdiff - ginac/matrix.cpp
Synced to HEAD:
[ginac.git] / ginac / matrix.cpp
index 226a9390c7217e6613ed6dfeba76ea5e3253dfda..eb4c6f50fb1823fa2f8c42e9a137ddc8782c3a96 100644 (file)
@@ -647,12 +647,12 @@ matrix matrix::pow(const ex & expn) const
                        // that this is not entirely optimal but close to optimal and
                        // "better" algorithms are much harder to implement.  (See Knuth,
                        // TAoCP2, section "Evaluation of Powers" for a good discussion.)
-                       while (b!=_num1) {
+                       while (b!=*_num1_p) {
                                if (b.is_odd()) {
                                        C = C.mul(A);
                                        --b;
                                }
-                               b /= _num2;  // still integer.
+                               b /= *_num2_p;  // still integer.
                                A = A.mul(A);
                        }
                        return A.mul(C);