-
Notifications
You must be signed in to change notification settings - Fork 85
Description
For checking uncertain (interval) models, the PRISM Property Specification allows explicitly specifying the optimization direction for both the scheduler and nature. In contrast, in STORM's current implementation for IMDPs, nature’s optimization direction is implicitly chosen as the adversarial one with respect to the scheduler’s direction. e.g., when checking Pmax=? [F "done"], nature acts in a worst-case fashion and minimizes the probability, resulting in Pmaxmin=? [F "done"].
At the moment, it is not possible in STORM to check properties where both optimization directions are explicity given, e.g., Pmaxmax=? [F "done"].
In my opinion, it would be nice if STORM supports properties like Pmaxmax=? [F "done"], as this is also possible in PRISM. Additionally, while working on my pull request adding support for IDTMCs, I noticed that checking Pmax=? [F "done"] yields the same result in STORM as checking Pmin=? [F "done"] in PRISM. This is due to the fact, that the optimization direction is interpreted as the one for the scheduler and not nature, and hence the robust value iteration minimizes the probability by a worst-case behaviour of nature.
In PRISM, if only one optimization direction is given for an IMDP, this optimization direction is chosen for both the scheduler and nature, e.g., Pmax=? is interpreted as Pmaxmax=?. However, when checking Pmaxmax=? on an IDTMC, PRISM currently returns an error.