--- branches/development/src/math/SquareMatrix3.hpp 2010/07/09 23:08:25 1465 +++ branches/development/src/math/SquareMatrix3.hpp 2011/08/03 20:20:37 1600 @@ -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();