Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2931_OR-Tools_LP_MIP/HeuristicLab.MathematicalOptimization/3.3/LinearProgramming/Algorithms/Solvers/Base/IIncrementalSolver.cs @ 16233

Last change on this file since 16233 was 16233, checked in by ddorfmei, 6 years ago

#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 size: 261 bytes
Line 
1using System;
2
3namespace HeuristicLab.MathematicalOptimization.LinearProgramming.Algorithms.Solvers.Base {
4
5  public interface IIncrementalSolver : ISolver {
6    bool Incrementality { get; set; }
7    TimeSpan QualityUpdateInterval { get; set; }
8  }
9}
Note: See TracBrowser for help on using the repository browser.