Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/04/15 21:38:28 (9 years ago)
Author:
abeham
Message:

#2174:

  • Added possibility to define neighborhood and analyze function for external evaluation problems
Location:
branches/ProgrammableProblem/HeuristicLab.Problems.ExternalEvaluation/3.4
Files:
1 added
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/ProgrammableProblem/HeuristicLab.Problems.ExternalEvaluation/3.4

    • Property svn:ignore
      •  

        old new  
        55*.vs10x
        66Plugin.cs
         7*.DotSettings
  • branches/ProgrammableProblem/HeuristicLab.Problems.ExternalEvaluation/3.4/Programmable/SingleObjectiveOptimizationSupportScriptException.cs

    r11886 r11893  
    1 using System;
    2 using System.Collections.Generic;
    3 using System.Linq;
     1#region License Information
     2/* HeuristicLab
     3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     4 *
     5 * This file is part of HeuristicLab.
     6 *
     7 * HeuristicLab is free software: you can redistribute it and/or modify
     8 * it under the terms of the GNU General Public License as published by
     9 * the Free Software Foundation, either version 3 of the License, or
     10 * (at your option) any later version.
     11 *
     12 * HeuristicLab is distributed in the hope that it will be useful,
     13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     15 * GNU General Public License for more details.
     16 *
     17 * You should have received a copy of the GNU General Public License
     18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
     19 */
     20#endregion
     21
     22using System;
    423using System.Runtime.Serialization;
    5 using System.Text;
    6 using System.Threading.Tasks;
    724
    8 namespace HeuristicLab.Problems.Programmable {
     25namespace HeuristicLab.Problems.ExternalEvaluation {
    926  [Serializable]
    10   public class ProblemDefinitionScriptException : Exception {
    11     public ProblemDefinitionScriptException() { }
    12     public ProblemDefinitionScriptException(string message) : base(message) { }
    13     public ProblemDefinitionScriptException(string message, Exception inner) : base(message, inner) { }
     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) { }
    1431
    15     protected ProblemDefinitionScriptException(SerializationInfo info, StreamingContext context)
     32    protected SingleObjectiveOptimizationSupportException(SerializationInfo info, StreamingContext context)
    1633      : base(info, context) { }
    1734  }
Note: See TracChangeset for help on using the changeset viewer.