Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Data/3.3/IntMatrix.cs @ 3327

Last change on this file since 3327 was 3317, checked in by swagner, 14 years ago

Implemented ReadOnlyView property for items (#969).

File size: 4.0 KB
RevLine 
[2]1#region License Information
2/* HeuristicLab
[2790]3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[2]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
[3308]22using System.Collections.Generic;
[2]23using System.Text;
24using HeuristicLab.Core;
[1853]25using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
[2]26
27namespace HeuristicLab.Data {
[3048]28  [Item("IntMatrix", "Represents a matrix of integer values.")]
[3017]29  [StorableClass]
[3054]30  public class IntMatrix : ValueTypeMatrix<int>, IStringConvertibleMatrix {
[3048]31    public IntMatrix() : base() { }
32    public IntMatrix(int rows, int columns) : base(rows, columns) { }
[3310]33    public IntMatrix(int rows, int columns, IEnumerable<string> columnNames) : base(rows, columns, columnNames) { }
34    public IntMatrix(int rows, int columns, IEnumerable<string> columnNames,IEnumerable<string> rowNames) : base(rows, columns, columnNames,rowNames) { }
[3048]35    public IntMatrix(int[,] elements) : base(elements) { }
[3310]36    public IntMatrix(int[,] elements, IEnumerable<string> columnNames) : base(elements,columnNames) { }
37    public IntMatrix(int[,] elements, IEnumerable<string> columnNames, IEnumerable<string> rowNames) : base(elements,columnNames,rowNames) { }
[2677]38
39    public override IDeepCloneable Clone(Cloner cloner) {
[3054]40      IntMatrix clone = new IntMatrix(matrix);
[3317]41      cloner.RegisterClonedObject(this, clone);
42      clone.ReadOnlyView = ReadOnlyView;
[3310]43      clone.ColumnNames = new List<string>(ColumnNames);
44      clone.RowNames = new List<string>(RowNames);
[2677]45      return clone;
[2]46    }
47
[3054]48    protected virtual bool Validate(string value, out string errorMessage) {
[2694]49      int val;
50      bool valid = int.TryParse(value, out val);
51      errorMessage = string.Empty;
52      if (!valid) {
53        StringBuilder sb = new StringBuilder();
54        sb.Append("Invalid Value (Valid Value Format: \"");
55        sb.Append(FormatPatterns.GetIntFormatPattern());
56        sb.Append("\")");
57        errorMessage = sb.ToString();
58      }
59      return valid;
[2]60    }
[3054]61    protected virtual string GetValue(int rowIndex, int columIndex) {
[2677]62      return this[rowIndex, columIndex].ToString();
63    }
[3054]64    protected virtual bool SetValue(string value, int rowIndex, int columnIndex) {
[2694]65      int val;
66      if (int.TryParse(value, out val)) {
67        this[rowIndex, columnIndex] = val;
[2677]68        return true;
69      } else {
70        return false;
[2]71      }
72    }
[3054]73
74    #region IStringConvertibleMatrix Members
75    int IStringConvertibleMatrix.Rows {
76      get { return Rows; }
77      set { Rows = value; }
78    }
79    int IStringConvertibleMatrix.Columns {
80      get { return Columns; }
81      set { Columns = value; }
82    }
[3308]83    IEnumerable<string> IStringConvertibleMatrix.ColumnNames {
84      get { return this.ColumnNames; }
85      set { this.ColumnNames = value; }
86    }
[3310]87    IEnumerable<string> IStringConvertibleMatrix.RowNames {
88      get { return this.RowNames; }
89      set { this.RowNames = value; }
90    }
[3054]91    bool IStringConvertibleMatrix.Validate(string value, out string errorMessage) {
92      return Validate(value, out errorMessage);
93    }
94    string IStringConvertibleMatrix.GetValue(int rowIndex, int columIndex) {
95      return GetValue(rowIndex, columIndex);
96    }
97    bool IStringConvertibleMatrix.SetValue(string value, int rowIndex, int columnIndex) {
98      return SetValue(value, rowIndex, columnIndex);
99    }
[2677]100    #endregion
[2]101  }
102}
Note: See TracBrowser for help on using the repository browser.