feat(gui): three research tabs (energy landscape, quantum convergence… - #9
Merged
Merged
Conversation
…, hardness) Replace the dead "live CP-SAT convergence" tab (CP-SAT one-shots these instances in ~20ms / 1 incumbent, so there was nothing to animate) with three research-grade panels, backed by a tested pure-function analysis layer (contrail_env/analysis.py): - Energy landscape: histogram of every feasible solution's cost with the optimum marked, overlaid with the costs GBS and uniform-random samplers actually achieve -- does the quantum sampler concentrate near the optimum? - Quantum convergence: best-cost-so-far vs work for Pasqal QAOA and Xanadu GBS on the current instance, against the CP-SAT optimum -- a curve that actually moves (these iterate). - Hardness sweep: CP-SAT wall time + incumbents vs problem size -- shows the instances are trivially easy for the exact solver (incumbents stays flat). analysis.py is unit-tested (landscape optimum matches CP-SAT; repaired samples never beat the optimum; sweep shapes/effort). GUI plotting slots smoke-tested headless. Tabs renumber to 8; the SolveWorker progress curve is gone.
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.
…, hardness)
Replace the dead "live CP-SAT convergence" tab (CP-SAT one-shots these instances in ~20ms / 1 incumbent, so there was nothing to animate) with three research-grade panels, backed by a tested pure-function analysis layer (contrail_env/analysis.py):
analysis.py is unit-tested (landscape optimum matches CP-SAT; repaired samples never beat the optimum; sweep shapes/effort). GUI plotting slots smoke-tested headless. Tabs renumber to 8; the SolveWorker progress curve is gone.