- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Encodings.RealVectorEncoding
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Encodings.RealVectorEncoding/3.3/ReflectiveBoundsChecker.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. … … 26 26 using HeuristicLab.Operators; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.Encodings.RealVectorEncoding { … … 34 34 /// </summary> 35 35 [Item("ReflectiveBoundsChecker", "Checks if all elements of a real vector are inside the bounds. If not, elements are mirrored at the bounds.")] 36 [Storable Class]36 [StorableType("9F043D1C-1F6F-4E53-95F5-ECDBD7C7FF90")] 37 37 public class ReflectiveBoundsChecker : SingleSuccessorOperator, IRealVectorBoundsChecker { 38 38 public LookupParameter<RealVector> RealVectorParameter { … … 44 44 45 45 [StorableConstructor] 46 protected ReflectiveBoundsChecker( bool deserializing) : base(deserializing) { }46 protected ReflectiveBoundsChecker(StorableConstructorFlag _) : base(_) { } 47 47 protected ReflectiveBoundsChecker(ReflectiveBoundsChecker original, Cloner cloner) : base(original, cloner) { } 48 48 /// <summary>
Note: See TracChangeset
for help on using the changeset viewer.