-
Notifications
You must be signed in to change notification settings - Fork 26
Targets API #52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Targets API #52
Conversation
This file contains hidden or 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
Saloed
requested changes
Aug 30, 2023
usvm-core/src/main/kotlin/org/usvm/statistics/distances/CallGraphReachabilityStatistics.kt
Outdated
Show resolved
Hide resolved
623fb2d to
a85608c
Compare
CaelmBleidd
requested changes
Sep 4, 2023
usvm-core/src/main/kotlin/org/usvm/statistics/distances/InterprocDistanceCalculator.kt
Outdated
Show resolved
Hide resolved
usvm-jvm/src/main/kotlin/org/usvm/machine/interpreter/JcExprResolver.kt
Outdated
Show resolved
Hide resolved
8cfec28 to
dc6e9c6
Compare
dc8cea1 to
c3b7786
Compare
839c574 to
c4e9d45
Compare
CaelmBleidd
approved these changes
Sep 13, 2023
Saloed
approved these changes
Sep 13, 2023
Saloed
pushed a commit
that referenced
this pull request
Jun 2, 2025
--------- Co-authored-by: Alexey Menshutin <alex.menshutin99@gmail.com>
petrukhinandrew
pushed a commit
to petrukhinandrew/usvm
that referenced
this pull request
Jun 19, 2025
Signed-off-by: Старцев Матвей <tozarin@yandex.ru>
petrukhinandrew
pushed a commit
to petrukhinandrew/usvm
that referenced
this pull request
Aug 15, 2025
Signed-off-by: Старцев Матвей <tozarin@yandex.ru>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Adds targets API and path selectors which give priority to closest targets.
A target can be understood as a 'task' for symbolic machine which it tries to complete. For example, a task can have an attached location which should be visited by a state to consider the task completed. Also, the targets can produce some effects on states visiting them.
Tasks can have 'child' tasks which should be completed only after its parent has been completed. For example, it allows to force the execution along the specific path.
Targets are designed to be shared between all the symbolic execution states. Due to this, once there is a state which has reached the target which has no children, it is logically removed from the targets tree. The other states ignore such removed targets.