- Timestamp:
- 06/01/17 11:29:49 (8 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.Parameters/3.3
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Parameters/3.3/ConstrainedValueParameter.cs
r14927 r15018 43 43 44 44 [StorableConstructor] 45 protected ConstrainedValueParameter( booldeserializing) : base(deserializing) { }45 protected ConstrainedValueParameter(StorableConstructorFlag deserializing) : base(deserializing) { } 46 46 protected ConstrainedValueParameter(ConstrainedValueParameter<T> original, Cloner cloner) : base(original, cloner) { } 47 47 public ConstrainedValueParameter() : base() { } -
branches/PersistenceReintegration/HeuristicLab.Parameters/3.3/FixedValueParameter.cs
r14927 r15018 41 41 42 42 [StorableConstructor] 43 protected FixedValueParameter( booldeserializing) : base(deserializing) { }43 protected FixedValueParameter(StorableConstructorFlag deserializing) : base(deserializing) { } 44 44 protected FixedValueParameter(FixedValueParameter<T> original, Cloner cloner) : base(original, cloner) { } 45 45 -
branches/PersistenceReintegration/HeuristicLab.Parameters/3.3/LookupParameter.cs
r14927 r15018 78 78 79 79 [StorableConstructor] 80 protected LookupParameter( booldeserializing)80 protected LookupParameter(StorableConstructorFlag deserializing) 81 81 : base(deserializing) { 82 82 cachedActualValues = new Lazy<ThreadLocal<IItem>>(() => { return new ThreadLocal<IItem>(); }, LazyThreadSafetyMode.ExecutionAndPublication); -
branches/PersistenceReintegration/HeuristicLab.Parameters/3.3/OperatorParameter.cs
r14927 r15018 32 32 public class OperatorParameter : OptionalValueParameter<IOperator> { 33 33 [StorableConstructor] 34 protected OperatorParameter( booldeserializing) : base(deserializing) { }34 protected OperatorParameter(StorableConstructorFlag deserializing) : base(deserializing) { } 35 35 protected OperatorParameter(OperatorParameter original, Cloner cloner) : base(original, cloner) { } 36 36 public OperatorParameter() : base("Anonymous") { } -
branches/PersistenceReintegration/HeuristicLab.Parameters/3.3/OptionalConstrainedValueParameter.cs
r14927 r15018 88 88 #region Constructors 89 89 [StorableConstructor] 90 protected OptionalConstrainedValueParameter( booldeserializing) : base(deserializing) { }90 protected OptionalConstrainedValueParameter(StorableConstructorFlag deserializing) : base(deserializing) { } 91 91 protected OptionalConstrainedValueParameter(OptionalConstrainedValueParameter<T> original, Cloner cloner) 92 92 : base(original, cloner) { -
branches/PersistenceReintegration/HeuristicLab.Parameters/3.3/OptionalValueParameter.cs
r14927 r15018 104 104 #region Constructors 105 105 [StorableConstructor] 106 protected OptionalValueParameter( booldeserializing) : base(deserializing) { }106 protected OptionalValueParameter(StorableConstructorFlag deserializing) : base(deserializing) { } 107 107 protected OptionalValueParameter(OptionalValueParameter<T> original, Cloner cloner) 108 108 : base(original, cloner) { -
branches/PersistenceReintegration/HeuristicLab.Parameters/3.3/Parameter.cs
r14927 r15018 72 72 73 73 [StorableConstructor] 74 protected Parameter( booldeserializing)74 protected Parameter(StorableConstructorFlag deserializing) 75 75 : base(deserializing) { 76 76 } -
branches/PersistenceReintegration/HeuristicLab.Parameters/3.3/ScopeParameter.cs
r14927 r15018 39 39 40 40 [StorableConstructor] 41 protected ScopeParameter( booldeserializing) : base(deserializing) { }41 protected ScopeParameter(StorableConstructorFlag deserializing) : base(deserializing) { } 42 42 protected ScopeParameter(ScopeParameter original, Cloner cloner) : base(original, cloner) { } 43 43 public ScopeParameter() -
branches/PersistenceReintegration/HeuristicLab.Parameters/3.3/ScopeTreeLookupParameter.cs
r14927 r15018 48 48 49 49 [StorableConstructor] 50 protected ScopeTreeLookupParameter( booldeserializing) : base(deserializing) { }50 protected ScopeTreeLookupParameter(StorableConstructorFlag deserializing) : base(deserializing) { } 51 51 protected ScopeTreeLookupParameter(ScopeTreeLookupParameter<T> original, Cloner cloner) 52 52 : base(original, cloner) { -
branches/PersistenceReintegration/HeuristicLab.Parameters/3.3/ValueLookupParameter.cs
r14927 r15018 80 80 #region Constructors 81 81 [StorableConstructor] 82 protected ValueLookupParameter( booldeserializing) : base(deserializing) { }82 protected ValueLookupParameter(StorableConstructorFlag deserializing) : base(deserializing) { } 83 83 protected ValueLookupParameter(ValueLookupParameter<T> original, Cloner cloner) 84 84 : base(original, cloner) { -
branches/PersistenceReintegration/HeuristicLab.Parameters/3.3/ValueParameter.cs
r14927 r15018 42 42 43 43 [StorableConstructor] 44 protected ValueParameter( booldeserializing) : base(deserializing) { }44 protected ValueParameter(StorableConstructorFlag deserializing) : base(deserializing) { } 45 45 protected ValueParameter(ValueParameter<T> original, Cloner cloner) : base(original, cloner) { } 46 46
Note: See TracChangeset
for help on using the changeset viewer.