Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for interval-based transitions in storm #409

Merged
merged 46 commits into from
Dec 21, 2023
Merged
Show file tree
Hide file tree
Changes from 34 commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
722ca95
first version
sjunges Aug 25, 2023
54268e8
format
sjunges Aug 25, 2023
a786eac
scheduler extraction in iMDPs
sjunges Sep 17, 2023
f2b102e
Merge branch 'master' into intervals
sjunges Sep 17, 2023
f1e717d
Merge branch 'master' into intervals
sjunges Sep 17, 2023
82b9562
updates
sjunges Sep 19, 2023
ced8aaa
Merge branch 'master' into intervals
sjunges Dec 9, 2023
4d0c051
format
sjunges Dec 9, 2023
447be3a
fixed numbers in a test
sjunges Dec 10, 2023
6344128
add reward model test
sjunges Dec 10, 2023
833e3fd
canHandle support
sjunges Dec 10, 2023
1468d29
format fix
sjunges Dec 10, 2023
88ed151
Merge branch 'master' into intervals
sjunges Dec 10, 2023
8f39c09
updates
sjunges Dec 10, 2023
728bc7c
Revised the ValueParser a bit
tquatmann Dec 15, 2023
2832a21
updates
sjunges Dec 16, 2023
6986977
Update src/storm/modelchecker/prctl/SparseMdpPrctlModelChecker.cpp
sjunges Dec 16, 2023
3149b38
Update src/storm/modelchecker/prctl/SparseMdpPrctlModelChecker.cpp
sjunges Dec 16, 2023
0c393a7
Update src/storm/modelchecker/prctl/SparseMdpPrctlModelChecker.cpp
sjunges Dec 16, 2023
a3cdf5b
Update src/test/storm/modelchecker/prctl/mdp/RobustMdpPrctlModelCheck…
sjunges Dec 16, 2023
5b96964
removed from pr
sjunges Dec 16, 2023
2940c10
Update src/storm/utility/graph.cpp
sjunges Dec 16, 2023
80365f4
fixes suggested by TQ
sjunges Dec 17, 2023
052df1d
fixes in value parser
sjunges Dec 17, 2023
4907006
update
sjunges Dec 17, 2023
a0f13e2
some cleanup
sjunges Dec 17, 2023
d0e854f
format
sjunges Dec 17, 2023
c0ad19c
up
sjunges Dec 17, 2023
1fdb713
up
sjunges Dec 17, 2023
8ca571f
throw
sjunges Dec 17, 2023
ed48c9e
throw
sjunges Dec 17, 2023
b21ac71
Update src/storm/transformer/AddUncertainty.cpp
sjunges Dec 18, 2023
be93782
Update src/storm/transformer/AddUncertainty.cpp
sjunges Dec 18, 2023
892dc97
Update src/storm/transformer/AddUncertainty.cpp
sjunges Dec 18, 2023
bcca7e1
Update src/test/storm/transformer/AddUncertaintyTest.cpp
sjunges Dec 19, 2023
f3f59e1
Update src/storm/storage/Distribution.cpp
sjunges Dec 19, 2023
2e8ea2c
Update src/storm/storage/Distribution.cpp
sjunges Dec 19, 2023
32a645f
Update src/storm/modelchecker/prctl/helper/SparseMdpPrctlHelper.cpp
sjunges Dec 19, 2023
593cf28
Update src/storm/modelchecker/prctl/helper/SparseMdpPrctlHelper.cpp
sjunges Dec 19, 2023
72b1fc3
Update src/test/storm/transformer/AddUncertaintyTest.cpp
sjunges Dec 19, 2023
100b2fb
Update src/test/storm/parser/DirectEncodingParserTest.cpp
sjunges Dec 19, 2023
0c4c661
Update src/storm/solver/IterativeMinMaxLinearEquationSolver.cpp
sjunges Dec 19, 2023
707ad1e
Update src/storm/solver/IterativeMinMaxLinearEquationSolver.cpp
sjunges Dec 19, 2023
832ccb2
Update src/storm/solver/IterativeMinMaxLinearEquationSolver.cpp
sjunges Dec 20, 2023
0069a9b
comments by MV
sjunges Dec 20, 2023
f0fa033
comments by MV
sjunges Dec 20, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion resources/3rdparty/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ include(${STORM_3RDPARTY_SOURCE_DIR}/include_cudd.cmake)
#############################################################

set(STORM_HAVE_CARL OFF)
set(CARL_MINVERSION "14.23")
set(CARL_MINVERSION "14.26")
set(CARL_C14VERSION "14")
if (NOT STORM_FORCE_SHIPPED_CARL)
if (NOT "${STORM_CARL_DIR_HINT}" STREQUAL "")
Expand Down
Loading
Loading