Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2521_ProblemRefactoring/HeuristicLab.Data/3.3/BoolMatrix.cs @ 17253

Last change on this file since 17253 was 17253, checked in by abeham, 5 years ago

#2521: worked on refactoring PTSP

File size: 3.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 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;
23using System.Text;
24using HEAL.Attic;
25using HeuristicLab.Common;
26using HeuristicLab.Core;
27
28namespace HeuristicLab.Data {
29  [Item("BoolMatrix", "Represents a matrix of boolean values.")]
30  [StorableType("A6456658-0B85-4C63-A6DA-FA82EB861B70")]
31  public class BoolMatrix : ValueTypeMatrix<bool>, IStringConvertibleMatrix {
32    [StorableConstructor]
33    protected BoolMatrix(StorableConstructorFlag _) : base(_) { }
34    protected BoolMatrix(BoolMatrix original, Cloner cloner)
35      : base(original, cloner) {
36    }
37    public BoolMatrix() : base() { }
38    public BoolMatrix(int rows, int columns) : base(rows, columns) { }
39    public BoolMatrix(int rows, int columns, IEnumerable<string> columnNames) : base(rows, columns, columnNames) { }
40    public BoolMatrix(int rows, int columns, IEnumerable<string> columnNames, IEnumerable<string> rowNames) : base(rows, columns, columnNames, rowNames) { }
41    public BoolMatrix(bool[,] elements, bool @readonly = false) : base(elements, @readonly) { }
42    public BoolMatrix(bool[,] elements, IEnumerable<string> columnNames, bool @readonly = false) : base(elements, columnNames, @readonly) { }
43    public BoolMatrix(bool[,] elements, IEnumerable<string> columnNames, IEnumerable<string> rowNames, bool @readonly = false) : base(elements, columnNames, rowNames, @readonly) { }
44
45    public override IDeepCloneable Clone(Cloner cloner) {
46      return new BoolMatrix(this, cloner);
47    }
48
49    protected virtual bool Validate(string value, out string errorMessage) {
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    }
62    protected virtual string GetValue(int rowIndex, int columIndex) {
63      return this[rowIndex, columIndex].ToString();
64    }
65    protected virtual bool SetValue(string value, int rowIndex, int columnIndex) {
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    }
74
75    public new BoolMatrix AsReadOnly() {
76      return (BoolMatrix)base.AsReadOnly();
77    }
78
79    #region IStringConvertibleMatrix Members
80    int IStringConvertibleMatrix.Rows {
81      get { return Rows; }
82      set { Rows = value; }
83    }
84    int IStringConvertibleMatrix.Columns {
85      get { return Columns; }
86      set { Columns = value; }
87    }
88    bool IStringConvertibleMatrix.Validate(string value, out string errorMessage) {
89      return Validate(value, out errorMessage);
90    }
91    string IStringConvertibleMatrix.GetValue(int rowIndex, int columIndex) {
92      return GetValue(rowIndex, columIndex);
93    }
94    bool IStringConvertibleMatrix.SetValue(string value, int rowIndex, int columnIndex) {
95      return SetValue(value, rowIndex, columnIndex);
96    }
97    #endregion
98  }
99}
Note: See TracBrowser for help on using the repository browser.