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

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