X-Git-Url: http://source.jalview.org/gitweb/?p=jalview.git;a=blobdiff_plain;f=src%2Fjalview%2Fmath%2FSparseMatrix.java;h=86592a097260bf937e1c1da5dfe1d31e085ac0aa;hp=72f096362f4af13801b49df29f6d4f0de37567b0;hb=f4766a7bbcfae845fc95923b01fa14ff83d589ff;hpb=163ed5b997bbda48e4cdd950e87a8fe01baae7fb diff --git a/src/jalview/math/SparseMatrix.java b/src/jalview/math/SparseMatrix.java index 72f0963..86592a0 100644 --- a/src/jalview/math/SparseMatrix.java +++ b/src/jalview/math/SparseMatrix.java @@ -1,3 +1,23 @@ +/* + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors + * + * This file is part of Jalview. + * + * Jalview is free software: you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * Jalview is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR + * PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. + */ package jalview.math; import jalview.ext.android.SparseDoubleArray; @@ -26,7 +46,8 @@ public class SparseMatrix extends Matrix public SparseMatrix(double[][] v) { rows = v.length; - if (rows > 0) { + if (rows > 0) + { cols = v[0].length; } sparseColumns = new SparseDoubleArray[cols];