- Timestamp:
- 09/16/19 16:12:21 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Data/3.3/BoolMatrix.cs
r17226 r17253 22 22 using System.Collections.Generic; 23 23 using System.Text; 24 using HEAL.Attic; 24 25 using HeuristicLab.Common; 25 26 using HeuristicLab.Core; 26 using HEAL.Attic;27 27 28 28 namespace HeuristicLab.Data { … … 39 39 public BoolMatrix(int rows, int columns, IEnumerable<string> columnNames) : base(rows, columns, columnNames) { } 40 40 public BoolMatrix(int rows, int columns, IEnumerable<string> columnNames, IEnumerable<string> rowNames) : base(rows, columns, columnNames, rowNames) { } 41 public BoolMatrix(bool[,] elements ) : base(elements) { }42 public BoolMatrix(bool[,] elements, IEnumerable<string> columnNames ) : base(elements, columnNames) { }43 public BoolMatrix(bool[,] elements, IEnumerable<string> columnNames, IEnumerable<string> rowNames ) : base(elements, 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 44 45 45 public override IDeepCloneable Clone(Cloner cloner) { … … 73 73 } 74 74 75 public new BoolMatrix AsReadOnly() { 76 return (BoolMatrix)base.AsReadOnly(); 77 } 78 75 79 #region IStringConvertibleMatrix Members 76 80 int IStringConvertibleMatrix.Rows {
Note: See TracChangeset
for help on using the changeset viewer.