FMT 1.2.0
Forest management tools for forest planning
Loading...
Searching...
No Matches
FMTsolverinterface.h
Go to the documentation of this file.
1/*
2Copyright (c) 2019 Gouvernement du Québec
3
4SPDX-License-Identifier: LiLiQ-R-1.1
5License-Filename: LICENSES/EN/LiLiQ-R11unicode.txt
6*/
7
8#ifndef FMTSOLVERINTERFACE
9#define FMTSOLVERINTERFACE
10
11#ifdef FMTWITHOSI
12
13namespace Models
14{
15
16 // DocString: FMTSolverInterface
21 {
22 CLP = 1,
23 MOSEK = 2,
24 GLPK = 3,
25 CPLEX = 4,
26 GUROBI = 5,
27 COUNT = 6
28 };
29
30}
31
32#endif
33#endif
Namespace containing all enumerator and classes used to construct or manipulate the different type of...
Definition: FMTAreaParser.h:54
FMTSolverInterface
Enumerator used to specify the solver to use when solving the FMTLpModel.
Definition: FMTsolverinterface.h:21