- Timestamp:
- 04/30/09 15:26:19 (16 years ago)
- Location:
- trunk/sources
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Core/3.3/OperatorBase.cs
r1667 r1727 93 93 get { return myVariableInfos.Values; } 94 94 } 95 96 [Storable] 95 97 96 private Dictionary<string, IVariable> myVariables; 98 /// <inheritdoc/> 97 /// <inheritdoc/> 99 98 public virtual ICollection<IVariable> Variables { 100 99 get { return myVariables.Values; } 100 } 101 102 [Storable(Name="Variables")] 103 private List<IVariable> VariablePersistence { 104 get { return new List<IVariable>(myVariables.Values); } 105 set { 106 foreach (IVariable var in value) { 107 AddVariable(var); 108 } 109 } 101 110 } 102 111 -
trunk/sources/HeuristicLab.Core/3.3/Scope.cs
r1667 r1727 32 32 public class Scope : ItemBase, IScope { 33 33 34 [Storable] 34 35 private IScope parent; 35 36 … … 42 43 get { return myName; } 43 44 } 44 45 [Storable] 45 46 46 private IDictionary<string, IVariable> myVariables; 47 /// <inheritdoc/> 47 /// <inheritdoc/> 48 48 public ICollection<IVariable> Variables { 49 49 get { return myVariables.Values; } 50 50 } 51 51 52 [Storable(Name="Variables")] 53 private List<IVariable> VariablePersistence { 54 get { return new List<IVariable>(myVariables.Values); } 55 set { 56 foreach (IVariable var in value) { 57 AddVariable(var); 58 } 59 } 60 } 61 52 62 [Storable] 53 63 private IDictionary<string, string> myAliases; -
trunk/sources/HeuristicLab.Operators/3.3/VariableInjector.cs
r1708 r1727 112 112 113 113 [Storable] 114 private KeyValuePair<Dictionary<IVariableInfo, IVariable>, Dictionary<IVariable, IVariableInfo>> MappingPersistence {114 private KeyValuePair<Dictionary<IVariableInfo, IVariable>, Dictionary<IVariable, IVariableInfo>> VariableMappingPersistence { 115 115 get { 116 116 return new KeyValuePair<Dictionary<IVariableInfo, IVariable>, Dictionary<IVariable, IVariableInfo>>(
Note: See TracChangeset
for help on using the changeset viewer.