@ -19,6 +19,17 @@ void define_environment(py::module& m) {
. value ( " topological " , storm : : solver : : EquationSolverType : : Topological )
. value ( " topological " , storm : : solver : : EquationSolverType : : Topological )
;
;
py : : enum_ < storm : : solver : : NativeLinearEquationSolverMethod > ( m , " NativeLinearEquationSolverMethod " , " Method for linear equation systems with the native solver " )
. value ( " power_iteration " , storm : : solver : : NativeLinearEquationSolverMethod : : Power )
. value ( " sound_value_iteration " , storm : : solver : : NativeLinearEquationSolverMethod : : SoundValueIteration )
. value ( " interval_iteration " , storm : : solver : : NativeLinearEquationSolverMethod : : IntervalIteration )
. value ( " rational_search " , storm : : solver : : NativeLinearEquationSolverMethod : : RationalSearch )
. value ( " jacobi " , storm : : solver : : NativeLinearEquationSolverMethod : : Jacobi )
. value ( " SOR " , storm : : solver : : NativeLinearEquationSolverMethod : : SOR )
. value ( " gauss_seidel " , storm : : solver : : NativeLinearEquationSolverMethod : : GaussSeidel )
. value ( " walker_chae " , storm : : solver : : NativeLinearEquationSolverMethod : : WalkerChae )
;
py : : enum_ < storm : : solver : : MinMaxMethod > ( m , " MinMaxMethod " , " Method for min-max equation systems " )
py : : enum_ < storm : : solver : : MinMaxMethod > ( m , " MinMaxMethod " , " Method for min-max equation systems " )
. value ( " policy_iteration " , storm : : solver : : MinMaxMethod : : PolicyIteration )
. value ( " policy_iteration " , storm : : solver : : MinMaxMethod : : PolicyIteration )
. value ( " value_iteration " , storm : : solver : : MinMaxMethod : : ValueIteration )
. value ( " value_iteration " , storm : : solver : : MinMaxMethod : : ValueIteration )
@ -30,7 +41,6 @@ void define_environment(py::module& m) {
. value ( " topological_cuda " , storm : : solver : : MinMaxMethod : : TopologicalCuda )
. value ( " topological_cuda " , storm : : solver : : MinMaxMethod : : TopologicalCuda )
;
;
py : : class_ < storm : : Environment > ( m , " Environment " , " Environment " )
py : : class_ < storm : : Environment > ( m , " Environment " , " Environment " )
. def ( py : : init < > ( ) , " Construct default environment " )
. def ( py : : init < > ( ) , " Construct default environment " )
. def_property_readonly ( " solver_environment " , [ ] ( storm : : Environment & env ) - > auto & { return env . solver ( ) ; } , " solver part of environment " )
. def_property_readonly ( " solver_environment " , [ ] ( storm : : Environment & env ) - > auto & { return env . solver ( ) ; } , " solver part of environment " )
@ -40,6 +50,12 @@ void define_environment(py::module& m) {
. def ( " set_force_sound " , & storm : : SolverEnvironment : : setForceSoundness , " force soundness " , py : : arg ( " new_value " ) = true )
. def ( " set_force_sound " , & storm : : SolverEnvironment : : setForceSoundness , " force soundness " , py : : arg ( " new_value " ) = true )
. def ( " set_linear_equation_solver_type " , & storm : : SolverEnvironment : : setLinearEquationSolverType , " set solver type to use " , py : : arg ( " new_value " ) , py : : arg ( " set_from_default " ) = false )
. def ( " set_linear_equation_solver_type " , & storm : : SolverEnvironment : : setLinearEquationSolverType , " set solver type to use " , py : : arg ( " new_value " ) , py : : arg ( " set_from_default " ) = false )
. def_property_readonly ( " minmax_solver_environment " , [ ] ( storm : : SolverEnvironment & senv ) - > auto & { return senv . minMax ( ) ; } )
. def_property_readonly ( " minmax_solver_environment " , [ ] ( storm : : SolverEnvironment & senv ) - > auto & { return senv . minMax ( ) ; } )
. def_property_readonly ( " native_solver_environment " , [ ] ( storm : : SolverEnvironment & senv ) - > auto & { return senv . native ( ) ; } )
;
py : : class_ < storm : : NativeSolverEnvironment > ( m , " NativeSolverEnvironment " , " Environment for Native solvers " )
. def_property ( " method " , & storm : : NativeSolverEnvironment : : getMethod , [ ] ( storm : : NativeSolverEnvironment & nsenv , storm : : solver : : NativeLinearEquationSolverMethod const & m ) { nsenv . setMethod ( m ) ; } )
. def_property ( " maximum_iterations " , & storm : : NativeSolverEnvironment : : getMaximalNumberOfIterations , [ ] ( storm : : NativeSolverEnvironment & nsenv , uint64_t iters ) { nsenv . setMaximalNumberOfIterations ( iters ) ; } )
;
;
py : : class_ < storm : : MinMaxSolverEnvironment > ( m , " MinMaxSolverEnvironment " , " Environment for Min-Max-Solvers " )
py : : class_ < storm : : MinMaxSolverEnvironment > ( m , " MinMaxSolverEnvironment " , " Environment for Min-Max-Solvers " )