Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/16/15 18:55:07 (8 years ago)
Author:
pfleck
Message:

#1674

  • Added a SupportScript for the MultiObjectiveExternalEvaluationProblem.
  • Extracted code from the SingleObjectiveOptimizationSupportScript into the OptimizationSupportScript to reuse code for the MultiObjectiveOptimizationSupportScript.
File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.ExternalEvaluation/3.4/Programmable/OptimizationSupportScriptException.cs

    r13166 r13183  
    2525namespace HeuristicLab.Problems.ExternalEvaluation {
    2626  [Serializable]
    27   public class SingleObjectiveOptimizationSupportException : Exception {
    28     public SingleObjectiveOptimizationSupportException() { }
    29     public SingleObjectiveOptimizationSupportException(string message) : base(message) { }
    30     public SingleObjectiveOptimizationSupportException(string message, Exception inner) : base(message, inner) { }
     27  public class OptimizationSupportException : Exception {
     28    public OptimizationSupportException() { }
     29    public OptimizationSupportException(string message) : base(message) { }
     30    public OptimizationSupportException(string message, Exception inner) : base(message, inner) { }
    3131
    32     protected SingleObjectiveOptimizationSupportException(SerializationInfo info, StreamingContext context)
     32    protected OptimizationSupportException(SerializationInfo info, StreamingContext context)
    3333      : base(info, context) { }
    3434  }
Note: See TracChangeset for help on using the changeset viewer.