You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
505 B
18 lines
505 B
#ifndef SOLVERSELECTIONOPTIONS_H
|
|
#define SOLVERSELECTIONOPTIONS_H
|
|
|
|
|
|
#include "src/utility/ExtendSettingEnumWithSelectionField.h"
|
|
|
|
namespace storm {
|
|
namespace solver {
|
|
ExtendEnumsWithSelectionField(MinMaxTechnique, PolicyIteration, ValueIteration)
|
|
|
|
ExtendEnumsWithSelectionField(LpSolverType, Gurobi, Glpk)
|
|
ExtendEnumsWithSelectionField(EquationSolverType, Native, Gmmxx, Topological)
|
|
ExtendEnumsWithSelectionField(SmtSolverType, Z3, Mathsat)
|
|
}
|
|
}
|
|
|
|
#endif
|
|
|