feat(hybridz): complete frontend solver integration#99
Closed
Kaijie-liu wants to merge 1 commit into
Closed
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #99 +/- ##
==========================================
- Coverage 73.19% 73.18% -0.01%
==========================================
Files 92 92
Lines 20268 20268
==========================================
- Hits 14835 14834 -1
- Misses 5433 5434 +1
Flags with carried forward coverage won't be shown. Click here to find out more. Continue to review full report in Codecov by Harness.
🚀 New features to boost your workflow:
|
Collaborator
|
This needs to be merged into #96 |
Contributor
Author
Understood. I have ported these changes to the #96 through guanqin-123#4 (guanqin-123#4). |
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
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.
PR7 Summary
This final PR in the HybridZ completes the command line and end-to-end integration. It does not modify the HybridZ representation, operators, mathematical encoding, or verdict solver.
1. Automatically select HybridzTF
Previously, running:
could still leave the default interval transformer active. The HybridZ solver would then receive no HybridZ state and return:
The standalone HybridZ solver now automatically selects the required pipeline:
Users no longer need to also specify
--tf-modes hybridz.2. Apply consistent mode selection across pipeline entry points
act/pipeline/cli.pynow uses one shared mode-resolution path for:For NetFactory sweeps, the standalone HybridZ solver runs only once with HybridzTF, avoiding duplicate runs caused by multiple requested TF modes.
3. Forward the verification timeout
The pipeline option:
is now forwarded to the HybridZ verdict solver. When the deadline is reached, HybridZ returns
UNKNOWN; its existing no-rescue behavior remains unchanged.4. Align the backend CLI
The backend command:
now automatically activates HybridzTF. If an incompatible mode such as
--tf-mode intervalis explicitly supplied, the CLI emits a warning and uses HybridzTF.5. Update CLI documentation
The existing help text and examples now clarify that:
--solvers hybridz.