-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TPA: Fix bug in the analysis of transition-system chain
When backtracking from a target TS to a source TS, after the (previously) truly reached in the source has been blocked, we compute a new set of truly reached states in the source. Then we want to check the edge again to the target. However, at this point, we were trying the INITIAL states of the target's TS. This is not correct, because we have not updated the initial states of the TS before, we have only updated the truly safe states, which is exactly what should be considered at this point. We want to know if from the truly reached of source TS we can reach something that is NOT truly safe in the target TS.
- Loading branch information
Martin Blicha
committed
Mar 3, 2023
1 parent
a84ffe6
commit 1b8c811
Showing
2 changed files
with
46 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters