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.
12 lines
678 B
12 lines
678 B
// constant used for time bounded until and for specifying a subset of initial states
|
|
const int k;
|
|
// a stable state is reached with probability 1
|
|
P>=1 [ true U (q1+q2+q3+q4+q5=1) ]
|
|
// minimum probability a stable state is reached within k steps
|
|
Pmin=? [ true U<=k (q1+q2+q3+q4+q5=1){"init"}{min} ]
|
|
// maximum expected time to reach a stable state
|
|
Rmax=? [ F (q1+q2+q3+q4+q5=1) {"init"}{max} ]
|
|
// maximum expected time to reach a stable state for a subset of initial states
|
|
Rmax=? [ F (q1+q2+q3+q4+q5=1) {q1+q2+q3+q4+q5=k}{max} ]
|
|
// minimum expected time to reach a stable state for a subset of initial states
|
|
Rmin=? [ F (q1+q2+q3+q4+q5=1) {q1+q2+q3+q4+q5=k}{min} ]
|