]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/matrix.hh
Run grand replace for 2015.
[lilypond.git] / flower / include / matrix.hh
index d9b32c2ee47569e9c09470e271707c68f06e438d..a6c13f837cf81c12b465718a4417979f83b403c3 100644 (file)
@@ -1,9 +1,20 @@
 /*
-  matrix.hh -- declare and implement 2d arrays
+  This file is part of LilyPond, the GNU music typesetter.
 
-  source file of the Flower Library
+  Copyright (C) 2006--2015 Joe Neeman <joeneeman@gmail.com>
 
-  (c) 2006--2007 Joe Neeman <joeneeman@gmail.com>
+  LilyPond 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.
+
+  LilyPond 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 LilyPond.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef MATRIX_HH
@@ -11,7 +22,7 @@
 
 #include "std-vector.hh"
 
-template<class T, class A=std::allocator<T> >
+template<class T, class A = std::allocator<T> >
 class Matrix
 {
 public:
@@ -21,7 +32,7 @@ public:
   }
 
   Matrix<T, A> (vsize rows, vsize columns, T const &t)
-  : data_(rows * columns, t)
+    : data_ (rows *columns, t)
   {
     rank_ = rows;
   }
@@ -46,15 +57,15 @@ public:
       data_.resize (rows * columns, t);
     else
       {
-       vector<T,A> new_data;
-       new_data.resize (rows * columns, t);
-       vsize cur_cols = rank_ ? data_.size () / rank_: 0;
-
-       for (vsize i = 0; i < cur_cols; i++)
-         for (vsize j = 0; j < rank_; j++)
-           new_data[i*rows + j] = data_[i*rank_ + j];
-       rank_ = rows;
-       data_ = new_data;
+        vector<T, A> new_data;
+        new_data.resize (rows * columns, t);
+        vsize cur_cols = rank_ ? data_.size () / rank_ : 0;
+
+        for (vsize i = 0; i < cur_cols; i++)
+          for (vsize j = 0; j < rank_; j++)
+            new_data[i * rows + j] = data_[i * rank_ + j];
+        rank_ = rows;
+        data_ = new_data;
       }
   }