Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/12/18 14:23:45 (5 years ago)
Author:
ddorfmei
Message:

#2931:

  • upgraded Google OR-Tools to version 6.10
  • added TextValue and TextValueView to be able to display and edit a multiline string
  • added parameter to set solver specific parameters for supported solvers
  • added support for the Protocol Buffers representation of models (import/export)
  • added import of MPS models
  • added pause/stop functionality to CplexSolver and GlpkSolver
  • refactored wrapper (LinearSolver and related enums)
  • added new algorithm category Exact for LinearProgrammingAlgorithm
Location:
branches/2931_OR-Tools_LP_MIP/HeuristicLab.MathematicalOptimization/3.3/LinearProgramming/Wrapper
Files:
1 added
1 moved

Legend:

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

    r16372 r16373  
    2626
    2727    // Limit for relative MIP gap.
    28     RELATIVE_MIP_GAP = 0,
     28    RelativeMipGap = 0,
    2929
    3030    // Advanced usage: tolerance for primal feasibility of basic
     
    3232    // tolerance of integer solutions for MIP or the tolerance used
    3333    // during presolve.
    34     PRIMAL_TOLERANCE = 1,
     34    PrimalTolerance = 1,
    3535
    3636    // Advanced usage: tolerance for dual feasibility of basic solutions.
    37     DUAL_TOLERANCE = 2
    38   };
     37    DualTolerance = 2
     38  }
    3939}
Note: See TracChangeset for help on using the changeset viewer.