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.
During the initial implementation of indexed inequalities, we added all possible indexable inequalities into the RAM with MakeIndexTransformer and then later when they weren't indexable we discharged the indexed inequalities from the RAM back into filters with IndexedInequalityTransformer. This approach is not very good and we can do much better.
The problem with this approach is that:
In this PR I have eliminated the IndexedInequalityTransformer and instead ensured that inequalities which cannot be indexed are never indexed in the first place by simply not adding them in MakeIndexTransformer. I also cleaned up my section of the MakeIndexTransformer to be significantly more readable.
I also added a TODO where I tagged myself to ensure that if we do later want to support data structures with multiple attributes w/inequalities that we can quickly fix the code to support this.
In essence, the logic is simplified from before and nicely refactored and all contained within MakeIndexTransformer, allowing for subsequent PRs to make the IndexAnalysis solvers stateless.