Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Data/3.3/BoolMatrix.cs @ 3392

Last change on this file since 3392 was 3376, checked in by swagner, 15 years ago

Moved interfaces and classes for deep cloning from HeuristicLab.Core to HeuristicLab.Common (#975).

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