Changeset 17097 for stable/HeuristicLab.Data/3.3/BoolMatrix.cs
- Timestamp:
- 07/07/19 23:40:10 (4 years ago)
- Location:
- stable
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Data
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.Data (added) merged: 16452-16454,16462,16474,16529,16539,16558-16559 /trunk/HeuristicLab.Data merged: 16565,16568
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Data/3.3
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.Data/3.3 (added) merged: 16452-16454,16462,16474,16529,16539,16558-16559 /trunk/HeuristicLab.Data/3.3 merged: 16565,16568
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Data/3.3/BoolMatrix.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 24 24 using HeuristicLab.Common; 25 25 using HeuristicLab.Core; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 namespace HeuristicLab.Data { 29 29 [Item("BoolMatrix", "Represents a matrix of boolean values.")] 30 [Storable Class]30 [StorableType("A6456658-0B85-4C63-A6DA-FA82EB861B70")] 31 31 public class BoolMatrix : ValueTypeMatrix<bool>, IStringConvertibleMatrix { 32 32 [StorableConstructor] 33 protected BoolMatrix( bool deserializing) : base(deserializing) { }33 protected BoolMatrix(StorableConstructorFlag _) : base(_) { } 34 34 protected BoolMatrix(BoolMatrix original, Cloner cloner) 35 35 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.