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

  1. #ifndef SOLVERSELECTIONOPTIONS_H
  2. #define SOLVERSELECTIONOPTIONS_H
  3. #include "src/utility/ExtendSettingEnumWithSelectionField.h"
  4. namespace storm {
  5. namespace solver {
  6. ExtendEnumsWithSelectionField(MinMaxTechnique, PolicyIteration, ValueIteration)
  7. ExtendEnumsWithSelectionField(LpSolverType, Gurobi, Glpk)
  8. ExtendEnumsWithSelectionField(EquationSolverType, Native, Gmmxx, Topological)
  9. ExtendEnumsWithSelectionField(SmtSolverType, Z3, Mathsat)
  10. }
  11. }
  12. #endif