Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/17/18 17:51:26 (6 years ago)
Author:
ddorfmei
Message:

#2931:

  • added all available parameters OR-Tools's linear_solver to LinearProgrammingAlgorithm
    • added necessary parameter enums
  • moved solving logic to Solver
    • created IncrementalSolver, ExternalSolver, ExternalIncrementalSolver
    • added logic for solvers that can be stopped and resumed
  • added SupportsStop property to BasicAlgorithm
  • added quality per time chart for incremental solvers
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2931_OR-Tools_LP_MIP/HeuristicLab.MathematicalOptimization/3.3/LinearProgramming/Problems/ProblemDefinitionScriptException.cs

    r16172 r16233  
    11#region License Information
     2
    23/* HeuristicLab
    34 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    1819 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
    1920 */
    20 #endregion
     21
     22#endregion License Information
    2123
    2224using System;
     
    2426
    2527namespace HeuristicLab.MathematicalOptimization.LinearProgramming.Problems {
     28
    2629  [Serializable]
    2730  public class ProblemDefinitionScriptException : Exception {
    28     public ProblemDefinitionScriptException() { }
    29     public ProblemDefinitionScriptException(string message) : base(message) { }
    30     public ProblemDefinitionScriptException(string message, Exception inner) : base(message, inner) { }
     31
     32    public ProblemDefinitionScriptException() {
     33    }
     34
     35    public ProblemDefinitionScriptException(string message) : base(message) {
     36    }
     37
     38    public ProblemDefinitionScriptException(string message, Exception inner) : base(message, inner) {
     39    }
    3140
    3241    protected ProblemDefinitionScriptException(SerializationInfo info, StreamingContext context)
Note: See TracChangeset for help on using the changeset viewer.