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.
 
 
 
 

24 lines
710 B

#pragma once
#include "storm/environment/solver/SolverEnvironment.h"
#include "storm/solver/SolverSelectionOptions.h"
namespace storm {
class TopologicalLinearEquationSolverEnvironment {
public:
TopologicalLinearEquationSolverEnvironment();
~TopologicalLinearEquationSolverEnvironment();
storm::solver::EquationSolverType const& getUnderlyingSolverType() const;
bool const& isUnderlyingSolverTypeSetFromDefault() const;
void setUnderlyingSolverType(storm::solver::EquationSolverType value);
private:
storm::solver::EquationSolverType underlyingSolverType;
bool underlyingSolverTypeSetFromDefault;
};
}