Changeset 13277 for stable/HeuristicLab.Problems.ExternalEvaluation
- Timestamp:
- 11/19/15 11:29:17 (9 years ago)
- Location:
- stable
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
stable ¶
- Property svn:mergeinfo changed
/trunk/sources merged: 13024,13080,13138,13218
- Property svn:mergeinfo changed
-
TabularUnified stable/HeuristicLab.Problems.ExternalEvaluation/3.4/Programmable/MultiObjectiveOptimizationSupportScript.cs ¶
r13259 r13277 30 30 [StorableClass] 31 31 public sealed class MultiObjectiveOptimizationSupportScript : OptimizationSupportScript<IMultiObjectiveOptimizationSupport>, IMultiObjectiveOptimizationSupport { 32 33 protected override string CodeTemplate {34 get { return Templates.CompiledMultiObjectiveOptimizationSupport; }35 }36 37 32 [StorableConstructor] 38 33 private MultiObjectiveOptimizationSupportScript(bool deserializing) : base(deserializing) { } 39 34 private MultiObjectiveOptimizationSupportScript(MultiObjectiveOptimizationSupportScript original, Cloner cloner) : base(original, cloner) { } 40 public MultiObjectiveOptimizationSupportScript() : base( ) { }35 public MultiObjectiveOptimizationSupportScript() : base(Templates.CompiledMultiObjectiveOptimizationSupport) { } 41 36 42 37 public override IDeepCloneable Clone(Cloner cloner) { -
TabularUnified stable/HeuristicLab.Problems.ExternalEvaluation/3.4/Programmable/OptimizationSupportScript.cs ¶
r13259 r13277 46 46 protected OptimizationSupportScript() 47 47 : base() { 48 variableStore = new VariableStore(); 49 } 50 51 protected OptimizationSupportScript(string code) 52 : base(code) { 48 53 variableStore = new VariableStore(); 49 54 } -
TabularUnified stable/HeuristicLab.Problems.ExternalEvaluation/3.4/Programmable/SingleObjectiveOptimizationSupportScript.cs ¶
r13259 r13277 31 31 [StorableClass] 32 32 public sealed class SingleObjectiveOptimizationSupportScript : OptimizationSupportScript<ISingleObjectiveOptimizationSupport>, ISingleObjectiveOptimizationSupport { 33 34 protected override string CodeTemplate {35 get { return Templates.CompiledSingleObjectiveOptimizationSupport; }36 }37 38 33 [StorableConstructor] 39 34 private SingleObjectiveOptimizationSupportScript(bool deserializing) : base(deserializing) { } 40 35 private SingleObjectiveOptimizationSupportScript(SingleObjectiveOptimizationSupportScript original, Cloner cloner) : base(original, cloner) { } 41 public SingleObjectiveOptimizationSupportScript() : base( ) { }36 public SingleObjectiveOptimizationSupportScript() : base(Templates.CompiledSingleObjectiveOptimizationSupport) { } 42 37 43 38 public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset
for help on using the changeset viewer.