I want to know how to calculate the execution time of CTL/LTL properties checking in NuSMV model checker.
... thanks
Blockquote
....
....
I want to know how to calculate the execution time of CTL/LTL properties checking in NuSMV model checker.
... thanks
Blockquote
....
....
One option is to use the command
print_usage. However, this might not be that much precise if your purpose is to collect timing statistics for some scientific purpose.Example:
The difference between the final time and the starting time provides a rough measurement of the time required for checking the property.
In practice, the approach described in this answer may not be quite effective for automated tasks requiring some degree of precision. Luckily, the source code of
NuSMVis publicly available, so you can actually modify it so that it computes the exact time taken by each property being checked. This may require somec++development skills.