[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 |
|
---|
| 22 | using System.Text;
|
---|
| 23 | using HeuristicLab.Core;
|
---|
[1853] | 24 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[2] | 25 |
|
---|
| 26 | namespace HeuristicLab.Data {
|
---|
[3048] | 27 | [Item("IntMatrix", "Represents a matrix of integer values.")]
|
---|
[3017] | 28 | [StorableClass]
|
---|
[3054] | 29 | public class IntMatrix : ValueTypeMatrix<int>, IStringConvertibleMatrix {
|
---|
[3048] | 30 | public IntMatrix() : base() { }
|
---|
| 31 | public IntMatrix(int rows, int columns) : base(rows, columns) { }
|
---|
| 32 | public IntMatrix(int[,] elements) : base(elements) { }
|
---|
[2677] | 33 |
|
---|
| 34 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
[3054] | 35 | IntMatrix clone = new IntMatrix(matrix);
|
---|
[2677] | 36 | cloner.RegisterClonedObject(this, clone);
|
---|
| 37 | return clone;
|
---|
[2] | 38 | }
|
---|
| 39 |
|
---|
[3054] | 40 | protected virtual bool Validate(string value, out string errorMessage) {
|
---|
[2694] | 41 | int val;
|
---|
| 42 | bool valid = int.TryParse(value, out val);
|
---|
| 43 | errorMessage = string.Empty;
|
---|
| 44 | if (!valid) {
|
---|
| 45 | StringBuilder sb = new StringBuilder();
|
---|
| 46 | sb.Append("Invalid Value (Valid Value Format: \"");
|
---|
| 47 | sb.Append(FormatPatterns.GetIntFormatPattern());
|
---|
| 48 | sb.Append("\")");
|
---|
| 49 | errorMessage = sb.ToString();
|
---|
| 50 | }
|
---|
| 51 | return valid;
|
---|
[2] | 52 | }
|
---|
[3054] | 53 | protected virtual string GetValue(int rowIndex, int columIndex) {
|
---|
[2677] | 54 | return this[rowIndex, columIndex].ToString();
|
---|
| 55 | }
|
---|
[3054] | 56 | protected virtual bool SetValue(string value, int rowIndex, int columnIndex) {
|
---|
[2694] | 57 | int val;
|
---|
| 58 | if (int.TryParse(value, out val)) {
|
---|
| 59 | this[rowIndex, columnIndex] = val;
|
---|
[2677] | 60 | return true;
|
---|
| 61 | } else {
|
---|
| 62 | return false;
|
---|
[2] | 63 | }
|
---|
| 64 | }
|
---|
[3054] | 65 |
|
---|
| 66 | #region IStringConvertibleMatrix Members
|
---|
| 67 | int IStringConvertibleMatrix.Rows {
|
---|
| 68 | get { return Rows; }
|
---|
| 69 | set { Rows = value; }
|
---|
| 70 | }
|
---|
| 71 | int IStringConvertibleMatrix.Columns {
|
---|
| 72 | get { return Columns; }
|
---|
| 73 | set { Columns = value; }
|
---|
| 74 | }
|
---|
| 75 | bool IStringConvertibleMatrix.Validate(string value, out string errorMessage) {
|
---|
| 76 | return Validate(value, out errorMessage);
|
---|
| 77 | }
|
---|
| 78 | string IStringConvertibleMatrix.GetValue(int rowIndex, int columIndex) {
|
---|
| 79 | return GetValue(rowIndex, columIndex);
|
---|
| 80 | }
|
---|
| 81 | bool IStringConvertibleMatrix.SetValue(string value, int rowIndex, int columnIndex) {
|
---|
| 82 | return SetValue(value, rowIndex, columnIndex);
|
---|
| 83 | }
|
---|
[2677] | 84 | #endregion
|
---|
[2] | 85 | }
|
---|
| 86 | }
|
---|