Changeset 16796 for trunk/HeuristicLab.Optimization
- Timestamp:
- 04/16/19 23:12:05 (6 years ago)
- Location:
- trunk/HeuristicLab.Optimization/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/HeuristicLab.Optimization/3.3/MetaOptimizers/BatchRun.cs
r16565 r16796 112 112 // BackwardsCompatibility3.3 113 113 #region Backwards compatible code (remove with 3.4) 114 [Storable( AllowOneWay = true)]114 [Storable(OldName = "algorithm")] 115 115 private IAlgorithm algorithm { 116 116 set { optimizer = value; } -
trunk/HeuristicLab.Optimization/3.3/Problems/Problem.cs
r16565 r16796 84 84 // BackwardsCompatibility3.3 85 85 #region Backwards compatible code, remove with 3.4 86 [Storable( Name = "Operators", AllowOneWay = true)]86 [Storable(OldName = "Operators")] 87 87 private IEnumerable<IOperator> StorableOperators { 88 88 set { -
trunk/HeuristicLab.Optimization/3.3/RunCollection.cs
r16565 r16796 125 125 // BackwardsCompatibility3.3 126 126 #region Backwards compatible code, remove with 3.4 127 [Storable( AllowOneWay = true)]127 [Storable(OldName = "AlgorithmName")] 128 128 private string AlgorithmName { 129 129 set { optimizerName = value; }
Note: See TracChangeset
for help on using the changeset viewer.