X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fmath%2FMatrix.java;h=bb7ed37abb89353c55ca4b49f998691bc6a3b070;hb=776d0215fb7a0935b228670f1d2a0e880921128e;hp=7c31f73b8e639a20f02d140bfa4c7cae68cc1da6;hpb=47168f025aefdaa044802bd5f8f510ffe43a4808;p=jalview.git diff --git a/src/jalview/math/Matrix.java b/src/jalview/math/Matrix.java index 7c31f73..bb7ed37 100755 --- a/src/jalview/math/Matrix.java +++ b/src/jalview/math/Matrix.java @@ -1,6 +1,6 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2) - * Copyright (C) 2014 The Jalview Authors + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors * * This file is part of Jalview. * @@ -20,9 +20,10 @@ */ package jalview.math; -import java.io.*; +import jalview.util.Format; +import jalview.util.MessageManager; -import jalview.util.*; +import java.io.PrintStream; /** * DOCUMENT ME! @@ -50,7 +51,7 @@ public class Matrix public double[] e; // off diagonal /** - * maximum number of iterations for tqli + * maximum number of iterations for tqli * */ int maxIter = 45; // fudge - add 15 iterations, just in case @@ -350,7 +351,7 @@ public class Matrix } } } - + /** * DOCUMENT ME! */ @@ -403,7 +404,9 @@ public class Matrix if (iter == maxIter) { - throw new Exception("Too many iterations in tqli ("+maxIter+")"); + throw new Exception(MessageManager.formatMessage( + "exception.matrix_too_many_iteration", new String[] { + "tqli", Integer.valueOf(maxIter).toString() })); } else { @@ -652,7 +655,9 @@ public class Matrix if (iter == maxIter) { - throw new Exception ("Too many iterations in tqli2 (max is "+maxIter+")"); + throw new Exception(MessageManager.formatMessage( + "exception.matrix_too_many_iteration", new String[] { + "tqli2", Integer.valueOf(maxIter).toString() })); } else {