1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2010 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 |
|
---|
22 | using System.Collections.Generic;
|
---|
23 | using System.Text;
|
---|
24 | using HeuristicLab.Common;
|
---|
25 | using HeuristicLab.Core;
|
---|
26 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
27 |
|
---|
28 | namespace HeuristicLab.Data {
|
---|
29 | [Item("BoolMatrix", "Represents a matrix of boolean values.")]
|
---|
30 | [StorableClass]
|
---|
31 | public class BoolMatrix : ValueTypeMatrix<bool>, IStringConvertibleMatrix {
|
---|
32 | public BoolMatrix() : base() { }
|
---|
33 | public BoolMatrix(int rows, int columns) : base(rows, columns) { }
|
---|
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) { }
|
---|
36 | public BoolMatrix(bool[,] elements) : base(elements) { }
|
---|
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) { }
|
---|
39 |
|
---|
40 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
41 | BoolMatrix clone = new BoolMatrix();
|
---|
42 | cloner.RegisterClonedObject(this, clone);
|
---|
43 | clone.matrix = (bool[,])matrix.Clone();
|
---|
44 | clone.columnNames = new List<string>(columnNames);
|
---|
45 | clone.rowNames = new List<string>(rowNames);
|
---|
46 | clone.sortableView = sortableView;
|
---|
47 | clone.readOnly = readOnly;
|
---|
48 | return clone;
|
---|
49 | }
|
---|
50 |
|
---|
51 | protected virtual bool Validate(string value, out string errorMessage) {
|
---|
52 | bool val;
|
---|
53 | bool valid = bool.TryParse(value, out val);
|
---|
54 | errorMessage = string.Empty;
|
---|
55 | if (!valid) {
|
---|
56 | StringBuilder sb = new StringBuilder();
|
---|
57 | sb.Append("Invalid Value (Valid Value Format: \"");
|
---|
58 | sb.Append(FormatPatterns.GetBoolFormatPattern());
|
---|
59 | sb.Append("\")");
|
---|
60 | errorMessage = sb.ToString();
|
---|
61 | }
|
---|
62 | return valid;
|
---|
63 | }
|
---|
64 | protected virtual string GetValue(int rowIndex, int columIndex) {
|
---|
65 | return this[rowIndex, columIndex].ToString();
|
---|
66 | }
|
---|
67 | protected virtual bool SetValue(string value, int rowIndex, int columnIndex) {
|
---|
68 | bool val;
|
---|
69 | if (bool.TryParse(value, out val)) {
|
---|
70 | this[rowIndex, columnIndex] = val;
|
---|
71 | return true;
|
---|
72 | } else {
|
---|
73 | return false;
|
---|
74 | }
|
---|
75 | }
|
---|
76 |
|
---|
77 | #region IStringConvertibleMatrix Members
|
---|
78 | int IStringConvertibleMatrix.Rows {
|
---|
79 | get { return Rows; }
|
---|
80 | set { Rows = value; }
|
---|
81 | }
|
---|
82 | int IStringConvertibleMatrix.Columns {
|
---|
83 | get { return Columns; }
|
---|
84 | set { Columns = value; }
|
---|
85 | }
|
---|
86 | bool IStringConvertibleMatrix.Validate(string value, out string errorMessage) {
|
---|
87 | return Validate(value, out errorMessage);
|
---|
88 | }
|
---|
89 | string IStringConvertibleMatrix.GetValue(int rowIndex, int columIndex) {
|
---|
90 | return GetValue(rowIndex, columIndex);
|
---|
91 | }
|
---|
92 | bool IStringConvertibleMatrix.SetValue(string value, int rowIndex, int columnIndex) {
|
---|
93 | return SetValue(value, rowIndex, columnIndex);
|
---|
94 | }
|
---|
95 | #endregion
|
---|
96 | }
|
---|
97 | }
|
---|