Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.SparseMatrix/3.2/Matrix.cs @ 2325

Last change on this file since 2325 was 2325, checked in by mkommend, 15 years ago

changed SparseMatrix.Matrix and MatrixRow to a generic type (ticket #701)

File size: 1.6 KB
RevLine 
[560]1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System.Collections.Generic;
[2283]23using System.Collections.ObjectModel;
[560]24using HeuristicLab.Core;
25
[2283]26namespace HeuristicLab.SparseMatrix {   
[2325]27  public class Matrix<KeyType,ValueType> : ItemBase {
[2284]28    public Matrix() {
[2325]29      this.rows = new List<MatrixRow<KeyType,ValueType>>();
[1287]30    }
[560]31
[2325]32    public Matrix(IEnumerable<MatrixRow<KeyType,ValueType>> rows)
[2283]33      : this() {
34      this.rows.AddRange(rows);
[1287]35    }
36
[2325]37    private List<MatrixRow<KeyType, ValueType>> rows;
38    public ReadOnlyCollection<MatrixRow<KeyType, ValueType>> GetRows() {
[2283]39      return rows.AsReadOnly();
[2131]40    }
41
[2325]42    public void AddRow(MatrixRow<KeyType, ValueType> row) {
[2283]43      this.rows.Add(row);
[2131]44    }
45
[2325]46    public void RemoveRow(MatrixRow<KeyType, ValueType> row) {
[2283]47      this.rows.Remove(row);
[560]48    }
[2283]49   
[560]50  }
51}
Note: See TracBrowser for help on using the repository browser.