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.
Path's mutations
This is an experiment where we attempt to extend the diversity of inconsistencies between the interpreter and the compiler—differences found by the current path explorer. This experiment aims to introduce path mutations on our current path explorer. To avoid always exploring the same deterministic paths, during the exploration time, we will be introducing several mutations on the path's constraints.
The focus of this experiment is to explore the availability of constraint mutations as a technique to embrace new possible paths on the compiler, and therefore, find new checks if there are undiscovered inconsistencies.
Path constraints
Nowadays Ranger supports a series of different path constraints. These constraints are used inside the path representation to moderate the current path taken inside the interpreter.
The currently supported constraints are separated into five groups:
Mutations
To encompass several variants, we thought of several different mutations:
LessIntMutation
GreaterIntMutation
...
// TODO