Changeset 17097 for stable/HeuristicLab.Data/3.3/TriangularMatrix.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/TriangularMatrix.cs
r17070 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. … … 25 25 using HeuristicLab.Common; 26 26 using HeuristicLab.Core; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 29 29 namespace HeuristicLab.Data { 30 30 [Item("TriangularMatrix", "Represents a lower triangular matrix.")] 31 [Storable Class]31 [StorableType("5C09A4FC-887E-4C40-8926-81325C09FA67")] 32 32 public class TriangularMatrix<T> : ValueTypeMatrix<T>, IStringConvertibleMatrix where T : struct { 33 33 [Storable] … … 48 48 49 49 [StorableConstructor] 50 protected TriangularMatrix( bool deserializing) : base(deserializing) { }50 protected TriangularMatrix(StorableConstructorFlag _) : base(_) { } 51 51 52 52 protected TriangularMatrix(TriangularMatrix<T> original, Cloner cloner) : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.