-
Notifications
You must be signed in to change notification settings - Fork 83
refactor(clp): Prepare Grep code for deduplication with clp-s:
#1143
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
Changes from 12 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
93d6dae
Update Query.{cpp,hpp} to work on dictionary ids instead of pointers …
gibber9809 3109833
Revert "Remove dependence on changes do Query.{cpp,hpp} in order to s…
gibber9809 3e34814
Split core parts of Grep into GrepCore; Use templates to decouple fro…
gibber9809 0b91784
Update Grep tests
gibber9809 4df6ac0
Fix format after cherry-pick
gibber9809 e77b51a
Fix compilation error after cherry-pick
gibber9809 3f09334
Remove concept usage to help break up changes.
gibber9809 d3d55a5
Add new files to cmake scripts
gibber9809 c8bc92b
Add new files that consitute old code moved around to lint exceptions.
gibber9809 255fad3
Fix lint.yaml
gibber9809 463543b
Address review comments
gibber9809 7d635df
Merge remote-tracking branch 'upstream/main' into refactor-grep
gibber9809 e0fcba5
Address review comments
gibber9809 5983199
Merge remote-tracking branch 'upstream/main' into refactor-grep
gibber9809 56a5655
Fix issue after merge
gibber9809 f996556
Rename template parameter to be consistent with previous PR
gibber9809 7f73b23
Rename test-Grep.cpp to test-GrepCore.cpp
gibber9809 178ca04
Update components/core/src/clp/Query.hpp
gibber9809 5a04728
Update components/core/src/clp/GrepCore.hpp
gibber9809 72bfe06
Address review comments.
gibber9809 0685c2a
Merge remote-tracking branch 'upstream/main' into refactor-grep
gibber9809 0808664
Lint fix.
gibber9809 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧹 Nitpick (assertive)
Unit-test build lists growing unmanageably
The manual source lists have grown past 700 entries. Every new pair of files must be added in three places (
clg,clo, and unit tests). Consider moving to:or a
file(GLOB ...)guarded behind an opt-in cache flag. This keeps explicit listing for production targets while sparing tests from constant churn.Also applies to: 632-633
🤖 Prompt for AI Agents