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.
13 lines
450 B
13 lines
450 B
// Max probability of component violating assumption property (checked separately)
|
|
const double p_fail =
|
|
K=2 ? 0.19 :
|
|
K=4 ? 0.006859000000000001 :
|
|
K=6 ? 2.476099000000001E-4 :
|
|
K=8 ? 8.938717390000006E-6 :
|
|
0;
|
|
|
|
// Assume-guarantee check via multi-objective
|
|
"num_ag": multi(Pmax=? [ F l=4 & ip=1 ] , P>=1-p_fail [ G (error=0) ])
|
|
|
|
// Pareto query for assume-guarantee check
|
|
"pareto": multi(Pmax=? [ F l=4 & ip=1 ] , Pmax=? [ G (error=0) ])
|