model-checking / cbmc-viewer

CBMC Viewer scans the output of CBMC and produces a browsable summary of its findings, making it easy to root cause the issues it finds.
https://model-checking.github.io/cbmc-viewer/
Apache License 2.0
32 stars 11 forks source link

Fix property sorting key #26

Closed markrtuttle closed 3 years ago

markrtuttle commented 3 years ago

Property names usually has the form file.function.integer, and property names are sorted using the key (file.function, integer). Recursion unwinding properties sometimes have the form file.function.recursion. This patch uses the sorting key (file.function.recursion, 0) for unusual property names like this.

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.