-
Notifications
You must be signed in to change notification settings - Fork 2
Future Algorithm Changes and Work
This page is a work in progress
This version of the algorithm will produce the exact same output as STAMINA 2.0, but will prevent re-exploration of states.
This idea is extremely simple and would be easy to implement, except for one small thing: the SparseMatrixBuilder
class in STORM seems to only want to insert at indecies higher than what have already been inserted! This means I cannot insert state index 6
followed by 4
, but must insert 4
, then 5
, then 6
.
Either a naive BFS or a priority queue on estimated reachability which assumes that probability window falls off exponentially with some parameter λ. Checks a number of times with extremely small models to estimate that λ, then attempts to explore to n
states (where the regression predicted Pmax - Pmin < w
), and repeats until it does.
The STAMINA software and state-truncation algorithm are developed at Utah State University within Dr. Zhen Zhang's research group. STAMINA/C++ is primarily developed by Joshua Jeppson, BS.
This wiki is outdated! Please visit https://staminachecker.org/documentation/wiki/ for full up-to-date wiki.