--- trunk/src/math/SquareMatrix3.hpp 2010/05/10 17:28:26 1442 +++ trunk/src/math/SquareMatrix3.hpp 2011/08/12 14:37:25 1610 @@ -417,7 +417,7 @@ namespace OpenMD { Vector3 v_maxI, v_k, v_j; // diagonalize using Jacobi - jacobi(a, w, v); + SquareMatrix3::jacobi(a, w, v); // if all the eigenvalues are the same, return identity matrix if (w[0] == w[1] && w[0] == w[2] ) { v = SquareMatrix3::identity();