Simulink Design verifier does not terminate.
5 次查看(过去 30 天)
显示 更早的评论
Hi,
i have an issue with the simulink design verifier toolbox. I'm trying to do a formal verification of my model, by comparing the outputs with another model, of which that it works 100% correct. I use the property proving mode. The outputs of these to models must be the same for a successful verification. The backround is, that i try to verify an algorithm, which i developed.
No my problem is, that the process does not terminate. It ran up to 13 hours without any decision. Can anybody help me? Is there a possibility to debug during verifier execution? Did anybody have this issue too?
Thanks
Mirhad
PS: I'm using R2022a. I already tried with R2022b, but it didn't help.
0 个评论
采纳的回答
Pat Canny
2022-10-25
It looks like you might be following a similar workflow to my recently created Formal Equivalence example - is that so?
One suggestion (which is also included in the documentation above) is to try using the 'FindViolation' strategy first (as I did in the example).
Some simple code to demonstrate:
opts = sldvoptions;
opts.Mode = 'PropertyProving';
opts.ProvingStrategy = 'FindViolation';
opts.MaxViolationSteps = 99;
'FindViolation' (as opposed to 'Prove') often tends to take less time to run.
How large are the models being analyzed? How many objectives are being analyzed? (Is it just one Proof Objective?)
You can stop analysis and generate results for debugging, however you'd only be able to analyze results for completed objectives.
If you continue to run into long analysis times, I recommend reaching out to MathWorks Technical Support.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Model Compatibility 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!