Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2931_OR-Tools_LP_MIP/HeuristicLab.MathematicalOptimization/3.3/app.config @ 16373

Last change on this file since 16373 was 16373, checked in by ddorfmei, 5 years ago

#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
File size: 1.2 KB
RevLine 
[16234]1<?xml version="1.0" encoding="utf-8" ?>
2<configuration>
[16288]3  <configSections>
4    <sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
5      <section name="HeuristicLab.MathematicalOptimization.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
6    </sectionGroup>
7  </configSections>
8  <userSettings>
9    <HeuristicLab.MathematicalOptimization.Properties.Settings>
10      <setting name="ScipLibraryName" serializeAs="String">
11        <value>scip.dll</value>
12      </setting>
13      <setting name="GurobiLibraryName" serializeAs="String">
[16373]14        <value>gurobi81.dll</value>
[16288]15      </setting>
16      <setting name="CplexLibraryName" serializeAs="String">
17        <value>cplex1280.dll</value>
18      </setting>
19      <setting name="GlpkLibraryName" serializeAs="String">
20        <value>glpk_4_65.dll</value>
21      </setting>
22    </HeuristicLab.MathematicalOptimization.Properties.Settings>
23  </userSettings>
24</configuration>
Note: See TracBrowser for help on using the repository browser.