diff --git a/.github/workflows/lab-scheduling.yml b/.github/workflows/lab-scheduling.yml
new file mode 100644
index 00000000..798c9cd9
--- /dev/null
+++ b/.github/workflows/lab-scheduling.yml
@@ -0,0 +1,97 @@
+name: Laboratory scheduling application
+
+on:
+ push:
+ branches: [contest/qubo-scheduling-app]
+ paths:
+ - 'pyqpanda-algorithm/pyqpanda_alg/LabScheduling/**'
+ - 'pyqpanda-algorithm/pyqpanda_alg/QAOA/**'
+ - 'pyqpanda-algorithm/example/LabScheduling/**'
+ - 'test/LabScheduling/**'
+ - '.github/workflows/lab-scheduling.yml'
+ pull_request:
+ branches: [develop, main]
+ paths:
+ - 'pyqpanda-algorithm/pyqpanda_alg/LabScheduling/**'
+ - 'pyqpanda-algorithm/pyqpanda_alg/QAOA/**'
+ - 'pyqpanda-algorithm/example/LabScheduling/**'
+ - 'test/LabScheduling/**'
+ - '.github/workflows/lab-scheduling.yml'
+ workflow_dispatch:
+
+permissions:
+ contents: read
+
+jobs:
+ cpu-tests:
+ name: CPU tests / Python ${{ matrix.python }}
+ runs-on: ubuntu-latest
+ timeout-minutes: 15
+ strategy:
+ fail-fast: false
+ matrix:
+ include:
+ - python: '3.11'
+ constraints: constraints-py311.txt
+ - python: '3.12'
+ constraints: constraints-py312.txt
+ - python: '3.13'
+ constraints: constraints-py312.txt
+ env:
+ OMP_NUM_THREADS: '1'
+ OPENBLAS_NUM_THREADS: '1'
+ MPLBACKEND: Agg
+ steps:
+ - uses: actions/checkout@v4
+ - uses: actions/setup-python@v5
+ with:
+ python-version: ${{ matrix.python }}
+ - name: Install tested dependencies inside project venv
+ run: |
+ python -m venv .venv
+ .venv/bin/python -m pip install -c pyqpanda-algorithm/example/LabScheduling/${{ matrix.constraints }} -e ./pyqpanda-algorithm -r pyqpanda-algorithm/example/LabScheduling/requirements-dev.txt
+ .venv/bin/python -m pip check
+ - name: Lint, format and type checks
+ run: |
+ .venv/bin/python -m ruff check --config test/LabScheduling/ruff.toml pyqpanda-algorithm/pyqpanda_alg/LabScheduling test/LabScheduling pyqpanda-algorithm/example/LabScheduling
+ .venv/bin/python -m ruff format --check --config test/LabScheduling/ruff.toml pyqpanda-algorithm/pyqpanda_alg/LabScheduling test/LabScheduling pyqpanda-algorithm/example/LabScheduling
+ .venv/bin/python -m mypy --config-file test/LabScheduling/mypy.ini --python-version ${{ matrix.python }} pyqpanda-algorithm/pyqpanda_alg/LabScheduling
+ - name: Mathematical and real CPU simulator tests
+ run: |
+ .venv/bin/python -m pytest -c test/LabScheduling/pytest.ini test/LabScheduling --timeout=60 --cov=pyqpanda-algorithm/pyqpanda_alg/LabScheduling --cov-fail-under=95
+ - name: End-to-end medium example
+ run: |
+ .venv/bin/python -m pyqpanda_alg.LabScheduling pyqpanda-algorithm/example/LabScheduling/data/medium.json --output reports/medium.json
+ - name: Existing upstream algorithm tests
+ run: |
+ .venv/bin/python -m pytest -c test/LabScheduling/pytest.ini -o 'python_files=Test_*.py' test --ignore=test/LabScheduling --timeout=60
+ - name: Booking cascade and unchanged control
+ run: |
+ .venv/bin/python pyqpanda-algorithm/example/LabScheduling/booking_demo.py
+ - name: Coupled booking tradeoff, unchanged control and weight sensitivity
+ run: |
+ .venv/bin/python pyqpanda-algorithm/example/LabScheduling/tradeoff_demo.py --sensitivity
+ - name: Arc pruning crosses the simulator resource boundary
+ run: |
+ .venv/bin/python -m pyqpanda_alg.LabScheduling pyqpanda-algorithm/example/LabScheduling/data/support-chain.json --reduce --pruning arc --output reports/support-chain.json
+ - name: Expected failure states remain explicit
+ run: |
+ .venv/bin/python - <<'PY'
+ import json
+ import subprocess
+ import sys
+ from pathlib import Path
+
+ data = Path('pyqpanda-algorithm/example/LabScheduling/data')
+ for name, code, status in [
+ ('support-chain', 5, 'resource_limit'),
+ ('infeasible', 3, 'infeasible'),
+ ]:
+ output = Path('reports') / (name + '-failure.json')
+ result = subprocess.run([
+ sys.executable, '-m', 'pyqpanda_alg.LabScheduling',
+ str(data / (name + '.json')), '--reduce', '--output', str(output),
+ ], check=False)
+ assert result.returncode == code, (name, result.returncode)
+ assert json.loads(output.read_text())['status'] == status
+ PY
diff --git a/.gitignore b/.gitignore
index 62a6beb8..9b985c91 100644
--- a/.gitignore
+++ b/.gitignore
@@ -44,3 +44,12 @@ pyqpanda-algorithm/pyqpanda_alg/QSolver/*.lib
/pyqpanda-algorithm/pyqpanda_alg/QSolver/libcurl.dll
.ccls-cache
+
+# Local scheduling development artifacts
+.venv/
+.pytest_cache/
+.ruff_cache/
+.mypy_cache/
+.coverage
+htmlcov/
+allure-results/
diff --git a/AWARD_REVIEW.md b/AWARD_REVIEW.md
new file mode 100644
index 00000000..da0d23bf
--- /dev/null
+++ b/AWARD_REVIEW.md
@@ -0,0 +1,165 @@
+# LabReschedule 竞争力复审与增强方案
+
+日期:2026-09-21。队伍:youshen。性质:本地评审建议,不是新增功能交付或获奖承诺。
+PR #92 已存在;本轮不推送、不更新 PR、不操作比赛平台。
+本文保留增强前的评审意见;后续已获批准的实现与验证见
+[增强教程](Tutorials/LabScheduling/ENHANCEMENTS.md)。
+
+## 先校准目标
+
+[官网奖项总览](https://qcloud.originqc.com.cn/learning/zh/2026ccf)目前将开源创新赛道
+列为 10 队获奖,每队 1000 元、价值 1.8 万元机时及证书,没有列出“特等奖”。
+官网的特等奖属于其他赛道,不能把它们套用到本作品。
+[赛题 #13](https://github.com/OriginQ/pyqpanda-algorithm/issues/13)要求完整创新应用、
+PR 到 develop、维护者评审,未给出可核实的分项评分权重。
+因此下文是争取本赛道领先作品的工程判断,不是官方评分表。
+
+## 当前判断
+
+当前版本是工程基础扎实、数学可核验的小规模完整应用。但仅凭两个手工样例、
+三种子和“均找到最优”,还不足以支撑领先竞争力。主要缺口是:
+
+1. 样例过易:中等例只有 4 个任务、81 种 one-hot 组合。
+2. 业务价值尚未验证:没有真实用户反馈或公开可追溯的业务数据;显式候选需要手工提供。
+3. 量子收益不稳定:成功样本掩盖了概率分布差异;可行率不等于最优命中率。
+4. 扩展边界硬:整体超过 16 比特即无法运行量子路径,没有问题分解与重建机制。
+5. 创新主要在场景组合;QUBO、W 初态、XY 混合器本身已有研究,不能列作原创算法。
+
+现有 56 项测试、98.46% 覆盖率、独立精确认证和诚实呈现失败仍是重要基础。
+其他开放作品已有多实例、资源审计或硬件证据;堆文档、加测试数量不能替代核心贡献。
+参照对象是 [PR #53](https://github.com/OriginQ/pyqpanda-algorithm/pull/53) 和
+[PR #60](https://github.com/OriginQ/pyqpanda-algorithm/pull/60) 的公开正文;未独立认证其全部实验。
+
+## 本轮实际复核的新证据
+
+复用归档的最终参数,在当前 PyQPanda3 CPU 模拟器中重新计算完整分布。
+均匀基线在每个任务域独立等概率选择。两例均只有一个全局最优排程。
+下表是给定已训练分布时、独立采样的理论命中指标,不含训练成本。
+
+| medium 方法 | 单次最优概率 | 达到至少 95% 最优命中率需要的 shots |
+|---|---:|---:|
+| 均匀 one-hot | 1.2346% | 242 |
+| XY,seed 7 | 4.6071% | 64 |
+| XY,seed 19 | 9.1657% | 32 |
+| XY,seed 42 | 0.3066% | 976 |
+
+计算公式为 `P(hit in S)=1-(1-p_opt)^S`。均匀基线在 512 shots 下已达
+99.8271%;因此原来的 512 shots 最优值对比区分度很低。
+simple 的 seed 19 同样存在退化:最优概率 1.4736%,低于均匀基线 11.1111%。
+原始复核数据保存在本地 `reports/award-review/lab-award-probe.json`。
+
+另做了不修改正式代码的线路实验:只在 XY 成本相位中删除 one-hot 惩罚,
+保留原惩罚缩放、初态和混合器。原因是整个演化都处于每任务恰选一次的子空间,
+该罚项在此处恒为零;其指数作用为恒等算符。
+
+| 实例,p=1 | CNOT 原始→简化 | 原生线路深度原始→简化 |
+|---|---:|---:|
+| simple | 34→22(降低 35.3%) | 36→24 |
+| medium | 78→54(降低 30.8%) | 45→35 |
+
+每例检查 15 组参数,覆盖 p=1/2/3;概率最大绝对差分别为 3.61e-16、1.18e-16。
+该探索验证不是正式回归测试,也不证明有噪声硬件执行等价。
+它沿用已有约束子空间思想,不是新发明的量子算法。
+原始数据:`reports/award-review/lab-award-circuit-probe.json`。
+背景参考:[Wang 等,XY-mixers](https://arxiv.org/abs/1904.09314)。
+
+## 推荐的主线
+
+把作品聚焦为:**把设备故障后的重排问题,经过有保证的约束化简,转成可在有限
+量子资源下求解的子问题,并对资源节省、解质量和失败边界给出完整证据。**
+优先保证可证明的节省与真实可用性,再研究随机优化收益。
+
+| 优先级 | 工作 | 价值 | 预计工作量 | 关键风险 |
+|---|---|---|---|---|
+| P0 | XY 成本线路删除恒零 one-hot 惩罚 | 已有确定门数节省证据 | 0.5–1 天 | 不可用于 X 分支;仍保留完整 QUBO 审计 |
+| P0 | 安全候选化简、冲突分量分解、原问题重建 | 从小演示走向受资源约束的工具 | 2–3 天 | 不得把启发式冻结称为全局等价 |
+| P0 | 多实例留出评测、低 shots 曲线、强经典基线 | 证明有效范围,暴露退化 | 1–2 天,可与实现交叉 | 调参泄漏、预算比较失真 |
+| P1 | 面向预约业务的数据入口与变更说明 | 用户可直接理解和复用 | 0.5–1 天 | 合成数据冒充真实需求 |
+
+### 化简必须守住的数学边界
+
+- 单候选任务固定,向相邻任务传播不兼容候选删除;空域是不可行证明。
+- 二元约束的无支持候选可以安全删除,但局部一致性不能证明全局可行。
+- 同任务候选支配可作为后续项:更低或相等成本、冲突邻域为子集时,可保留更优候选;
+ 一般只保证最优值保留,不能声称所有可行排程都原样保留。实现须处理等价候选稳定保留。
+- 在任务冲突图上做连通分量分解。没有跨分量约束且目标可加时,子问题最优值可相加;
+ QAOA 子问题未最优时,组装解也没有全局最优保证。每个组件仍需实际检查可行性。
+- 固定变量必须回填,成本偏移必须累计,最终在原始输入上重新检查全部约束。
+- 某个分量仍超过资源上限时明确报告,不静默截断候选,不把任意切块叫精确分解。
+- “只重排直接受停机影响的任务”通常不保持最优:冲突会传播。
+ 如增加固定其余预约的局部启发式,必须作为单独模式报告边界、失败和次优差距。
+
+### 实验设计与验收
+
+1. 先冻结生成器、实例清单和参数选择规则。建议 24 个留出实例,覆盖候选规模、
+ 冲突密度、停机强度及链式工序;另设开发集,不看留出结果再调默认参数。
+2. 至少 10 个优化种子;shots 取 8/16/32/64/128/512。用固定训练分布作解析曲线,
+ 再用独立采样种子核验;不要把同一分布的重复抽样当独立训练样本。
+3. 对照包括原始 XY、简化 XY、均匀 one-hot、业务贪心/修复,以及独立经典优化器。
+ 可用已有 SciPy 的 MILP,从原始时段/日历/前序独立构建约束,避免复用 QUBO
+ 编译后的冲突图及剪枝作为唯一输入;不借 QUBO 罚函数作唯一裁判。
+ 超时输出 incumbent、bound 和 gap,不能冒充最优证书。
+4. 报告最优命中率、可行率、目标差距、变更预约数量、最大时间移动量、比特数、
+ 二比特门数、深度、峰值内存和端到端时间。训练评估次数和模拟开销单独列出。
+ 采样预算对齐不代表总计算预算对齐;不能把训练完成后的 shots 节省叫整体加速。
+5. 化简在至少 100 个小规模生成实例上用穷举核对最优值、可行性和重建;加入
+ 连锁删除、不可行、完全连通、完全独立、单候选及相等成本等反例测试。
+6. 简化线路加入 p=1/2/3、随机参数、不同域大小和单候选的真实 CPU 回归,
+ 建议分布误差阈值 1e-10,记录门数下降;原始 X 路径保留完整约束。
+7. 报告所有预先登记实例,包括未改善、资源超限和采样失败。
+ 若量子效果不稳,收缩为“可证明资源压缩与可审计求解”,不包装成稳定优于经典。
+
+### 业务展示
+
+提供原预约→故障→调整后预约的离线甘特图,标出每个变更的原因及成本构成。
+补一个从时间窗、可用设备生成显式候选的入口,或先给出透明的导入模板。
+如没有可公开真实数据,就标为合成压力测试;需求访谈和匿名实际试用有价值,
+但不能由模型编造。保留成本权重解释,避免把加权成本最小误称为变更人数最少。
+
+## 截至 9 月 28 日的执行顺序
+
+- 9/21:完成复审,冻结原版本及评价口径;本轮仅本地文档和探索证据。
+- 9/22:线路简化正式实现与回归;冻结基准生成规则、开发/留出划分。
+- 9/23–24:安全化简、分解、重建;穷举反例和独立经典求解器。
+- 9/25–26:多实例盲测、全部失败记录、成本拆分和业务展示。
+- 9/27:干净环境复现、完整相关测试、最终 diff 与评委演示。
+- 9/28:展示增强版本与真实结果,再按用户最新授权决定是否更新已有 PR。
+
+若化简无法按时证明正确,缩减为单候选传播和严格独立分量;先交付确定可靠的收益。
+若 9/23 前分量分解仍不稳定,暂不加入,保底包为:XY 相位简化、独立 MILP、
+至少 12 个实例 × 10 个优化种子的探索性证据,以及一个连锁改约案例。
+不优先增加 Web/数据库、预测模型、新 QAOA 变体、复杂噪声模型或真机依赖。
+不为凑规模拼接互不相关小例后声称解决了同规模一般调度。
+
+## 独立审查记录
+
+本轮按用户要求委派一个子 agent 完成独立代码、实验和规则审查。
+详细原稿保存于本地 `reports/award-review/independent-review.md`,未提交到 Git。
+其中概率和门数复核由主 agent 实际运行后提供,子 agent 将其纳入综合评审。
+两个审查视角的共同结论及分歧后的优先级已在本文汇总。
+
+## 增强后的主工程师收敛判断(2026-09-21)
+
+上文是历史审查;本节依据已交付成果更新工程判断,不是官方评分或新增独立评审。
+
+| 原缺口 | 当前证据 | 仍然存在的边界 |
+|---|---|---|
+| 少量手工样例 | 36 个冻结异构实例、多种子、全部失败记录及完整重放 | 仍是小规模合成数据 |
+| 量子资源上限 | 精确分量回填、可选 AC-3、18→12 受控案例、可行集合保持证明 | 不解决一般大连通调度 |
+| 量子收益难解释 | 同总预算与均匀随机对照,低 shots 概率及退化公开 | 不存在已证实的端到端量子优势 |
+| 业务入口和解释 | CSV 时间窗、原预约变更表、成本阈值与并列最优 | 没有真实用户试用或经济收益证据 |
+| 可复现与交付 | 三版本 CI、独立 wheel 安装、源文件指纹、失败退出码 | 官方工作流仍需维护者批准 |
+
+再次审查找到并修复了一个实质边界:大量原始候选被日历剪枝后已可量子求解,
+却因独立 MILP 超过 2048 原始候选而丢失整个报告。现在显式记录该基线超预算,
+保留实际样本和可用的穷举证书;两个认证路径都不可用时不填写最优差距。
+五项新增回归在修复前四失败、一通过,修复后全部通过;五个既有案例的全部
+非计时报告字段与修复前一致。当前 113 项应用测试通过,核心覆盖率 98.92%。
+
+工程判断:已达到完整参赛交付和接受维护者实质评审的标准。现阶段再追加通用
+算法、重复 PR 或更大合成实验,预期价值低于处理评审意见和取得一次真实试用。
+本轮结束主动功能扩张;后续仅由可复现缺陷、实际需求或维护者意见触发代码修改。
+奖项由主办方决定,当前材料不能支持获奖概率或“必进前十”的判断。
+
+对外展示以 REVIEW_GUIDE 的五分钟路线与六个答辩问题为准。参赛平台回执、
+官方审核以及未获奖是否发证明仍应单独核验,不能由工程测试通过替代。
diff --git a/PLAN.md b/PLAN.md
new file mode 100644
index 00000000..c6b4e610
--- /dev/null
+++ b/PLAN.md
@@ -0,0 +1,472 @@
+# 2026 本源杯:LabReschedule 约束调度应用
+
+## 调研与定题(2026-09-21)
+
+- 工作目录最初为空;已克隆官方仓库,以 `upstream/develop`
+ `5f973efccb84bc193157d1ccebe32137e307293b` 创建
+ `contest/qubo-scheduling-app`。不推送、不创建 PR,最终由用户确认。
+- 阅读 develop 的 README、CONTRIBUTING、QUBO/QAOA 源码、测试和 CI,
+ 并核对 main 的贡献指南。新增内容沿用 `pyqpanda_alg`、`example`、
+ `test`、`Tutorials` 结构,不重构上游模块。
+- [赛题 #13](https://github.com/OriginQ/pyqpanda-algorithm/issues/13)
+ 明确允许完整创新应用,参与期 4 月 10 日至 9 月 30 日,PR 基分支 develop,
+ 标题 `【创新应用】+简要描述`。按用户目标于 9 月 28 日前备妥。
+- [贡献指南](https://github.com/OriginQ/pyqpanda-algorithm/blob/main/CONTRIBUTING.md)
+ 要求测试、用户文档及索引;本地完成后经个人 fork 提交。
+- [比赛主页](https://qcloud.originqc.com.cn/learning/zh/2026ccf) 为 JavaScript
+ 页面,初次抓取仅得到启用 JavaScript 提示,不能据此声称已核实平台报名细则。
+- 查阅 [PyQPanda3 AI 参考](https://github.com/OriginQ/pyqpanda3-skill):
+ 使用整数比特编号、CPUQVM、PyQPanda3 API;以安装版本和实际测试核对参考代码。
+- GitHub 匿名 REST API 限流,改读 GitHub HTML;逐页读取开放 PR 第 1–3 页,
+ 第 4 页为空;另查已关闭 PR、开放 Issues #8/#13/#38 和 develop 源码。
+ 未发现考试/实验室重排同题。最接近
+ [PR #60](https://github.com/OriginQ/pyqpanda-algorithm/pull/60)
+ 是小麦灌溉预测和水预算调度,已阅读其正文;本项目不做水预算、预测或农业应用。
+ 开放 PR #45/#69 涉及 QUBO 默认参数和多项式解析,避免依赖其修复或重复提交。
+ 去重是当前快照结论,提交前须再查。
+
+## 选题与范围
+
+**LabReschedule:设备停机后的共享实验室预约最小扰动重排。**
+面向校园小组实验:每项实验选择一个允许的设备/开始时刻候选,持续多个时隙;
+考虑设备停机、清洗占用、小组互斥、工序先后。目标权衡时刻偏好与原预约变更。
+输入显式候选而非全时间网格,消除停机候选,减少比特数并保留剪枝原因。
+
+1. 严格 JSON 校验,清晰报告错误输入与有效但不可行的问题。
+2. 稀疏候选一位有效编码,目标及约束转为二次项;给出有证明的惩罚上界。
+3. PyQPanda3 CPU 上运行 QAOA,复用 pyqpanda_alg 相位线路和 XY 混合器组件。
+ XY 保持每项任务的选择数;X 混合器提供消融对照。
+4. 独立任务候选笛卡尔积穷举,认证可行性与最优值;不向量子求解器传入最优解。
+5. 固定种子参数初始化与模拟概率采样,仅从真实采样集合选择量子候选;
+ 输出违反明细、目标、概率质量、耗时、最优差距及模型规模。
+6. 简单、中等、不可行数据;一条命令运行;多种子实验、数学恒等式测试、
+ 位序/单候选/空候选/错误输入/采样失败测试;中文教程和演示流程。
+
+不引入 Web、数据库、云服务或真实硬件。小规模端到端正确性优先;
+默认量子规模限制为 16 比特,经典认证限制候选组合数,明确指数复杂度。
+不声称量子加速或获奖保证。
+
+## 风险与应对
+
+- 上游测试配置缺 `[pytest]` 节;依赖声明可能缺 pandas/scikit-learn。
+ 先记录原始失败,再用外部配置运行,不修改无关上游问题。
+- 原库量子算法接口与技能示例可能不一致:用真实线路小测试确认,
+ 显式比特映射,绕开符号名字排序和常数多项式边界。
+- QAOA 可能找不到可行或最优解:保留原始结果,不静默修复/替换;
+ 可行概率、均匀抽样基线及经典认证分别展示。
+- XY 只保持恰选一次,不能保证设备/小组/先后约束,仍需惩罚和独立检查。
+- 主页面平台细则、个人报名信息和 GitHub fork 未核实;准备提交材料,
+ 不伪造个人信息,外部发布前由用户确认。
+
+## 实施与验收顺序
+
+1. 环境:项目 `.venv`,Python 3.12;开发依赖和原始测试基线。
+2. 模型:输入、候选剪枝、独立校验、QUBO、经典认证与数学测试。
+3. 量子:CPUQVM + 上游组件、种子控制、采样报告和 CLI。
+4. 打磨:多规模/多种子/混合器对照、质量检查、中文教程与实验归档。
+5. 提交:逻辑拆分本地 commits、diff/秘密/缓存检查、PR 描述、
+ `SUBMISSION_CHECKLIST.md`,呈现成果后等待 push/PR/平台提交确认。
+
+每阶段实际结果追加到本文件及实验验证报告。
+
+## 阶段结果
+
+- 调研完成:直接读取官方主页前端资源,补充核实开源赛道报名和 PR 均截至
+ 9 月 30 日;未登录核实个人报名。70 项开放 PR 完整标题快照见
+ `Tutorials/LabScheduling/research_pr_snapshot.json`,相关差异见 `RESEARCH.md`。
+- 环境完成:Python 3.12.3,项目 `.venv`;PyQPanda3 0.4.1,editable
+ pyqpanda_alg 2.0.0;没有全局安装。开发环境约束已锁定。
+- 上游基线:初始缺 Allure 插件,且 import 缺 pandas;在应用开发依赖补齐
+ pandas/scikit-learn/Allure。原配置虽然缺节标题,当前 pytest 9 能解析,
+ 不把该事实错误报告为必然配置崩溃。独立配置下原有 18 项有效测试全部通过。
+ 多数其他测试文件已被上游注释,不计作通过。详见验证报告。
+- 实现完成:输入、剪枝、QUBO/Ising、CPUQVM QAOA、XY/X、独立精确基线、
+ 均匀 one-hot 基线、采样证据、CLI、多种子基准与静态图表。
+- 测试与打磨:应用数学模型与 Ising 对角能量逐状态验证;种子 7/19/42
+ 在 simple/medium 的默认 XY 均采到经典最优,X 对照在 medium 有非零差距。
+ 不宣称量子优势;原始 JSON/CSV、中文教程、聚焦 CI 与验证说明随项目提交。
+- 交付与提交信息:详见 `SUBMISSION_CHECKLIST.md` 和 `PR_DESCRIPTION.md`。
+ 尚未推送、创建 PR 或向平台提交,按用户要求保留最终确认步骤。
+
+## 发布授权更新(2026-09-21)
+
+用户已批准推送至个人 fork 并向官方 develop 创建 PR,确认官网报名完成,
+队伍名称 `youshen`。上述“等待确认/尚未发布”为最初交付阶段的历史记录;
+当前执行进度以 `SUBMISSION_CHECKLIST.md` 为准。
+
+## 发布结果(2026-09-21)
+
+以 GitHub 账号 `youshen2025` 发布个人 fork 功能分支,创建官方 develop 的
+[正式 PR #92](https://github.com/OriginQ/pyqpanda-algorithm/pull/92),队伍 `youshen`。
+初版发布时远程与本地提交一致,GitHub 报告可合并。Actions 已触发,但等待上游维护者
+批准运行,不能计作 CI 通过。官网报名由用户确认;比赛平台 PR 链接与回执仍待核对。
+
+## 2026-09-21 增强实施
+
+用户批准按独立复审继续。实现 XY 恒零 one-hot 相位删除(完整 QUBO 保留)、
+单候选传播/严格独立冲突分量/原变量回填、原始输入 MILP 与 CSV 预约窗口导入。
+采用 12 个冻结合成评价实例 × 10 个优化种子;保留三个不可行实例和量子退化种子。
+增强报告 schema 2,与旧归档结果区分。证明、接口和结果见
+[Tutorials/LabScheduling/ENHANCEMENTS.md](Tutorials/LabScheduling/ENHANCEMENTS.md)。
+
+增强完成时先保留本地提交供用户审阅;用户随后批准继续,现已推送增强版并更新 PR #92。
+发布前刷新 upstream/develop,仍为 `5f973ef`;PR 为 Open、非草稿、目标 develop,
+GitHub 报告可合并。增强提交 `9c23ddb` 的 Actions 运行 `35576581365` 等待维护者批准,
+尚未执行远程测试。未操作比赛平台,提交回执仍待核对。
+官网奖项归属的复核和原始建议见 [AWARD_REVIEW.md](AWARD_REVIEW.md)。
+
+## 第二轮优化(2026-09-21,用户批准继续)
+
+保持核心算法不变,补齐业务与评价代表性、逐步对照和审阅体验。
+先以 `94efa84` 冻结 36 个异构输入(每格 4 数据种子),再完成 360 条配对运行,
+其中 24 可行、12 不可行;不删除退化种子或纯经典传播情形。
+三单取舍案例将全部决策留在 8 比特组件,实际量子样本成本 12,独立认证最优;
+高价备用设备对照成本 14。逐阶段资源与全部原始可行集合均经过核验。
+第二次完整重放完全复现非计时字段;76 应用测试通过,覆盖率 98.44%。
+独立 fork CI 将使用同一 workflow,不能替代上游批准或比赛平台回执。
+用户本轮批准优化与后续发布,继续更新现有 PR,不另开重复贡献。
+本轮已发布冻结协议 `94efa84`、验证实现 `798f1bc`、证据与审阅指南 `198ddfb`。
+个人 fork Actions `35583744393` 在 `198ddfb` 上全部通过;官方 PR 工作流仍待
+维护者批准,不能将独立 fork 运行视为上游审核通过。
+
+## 第三轮优化计划(2026-09-21,用户要求继续)
+
+补齐原评价明确留下的预算可比性缺口:冻结同总采样/训练上限协议,新增
+精确化简后的均匀随机基线,区分结构化简收益与量子分布收益。不修改核心
+算法及已有评价数据,不增加无关应用。协议见
+[MATCHED_BUDGET_PROTOCOL.md](Tutorials/LabScheduling/MATCHED_BUDGET_PROTOCOL.md)。
+
+第三轮实施完成:同预算 360 条配对记录全部重放,非计时字段一致;原始直接
+路径还与旧 V2 的 360 条记录一致。22 个量子可行实例中分量 QAOA 220/220
+采到最优,两个随机基线同样 220/220,因此报告明确不声称高 shots 量子优势。
+低 shots 条件分布收益与退化实例同时保留。当前 82 测试、98.44% 核心覆盖率、
+32 文件 Ruff 与 11 模块 Mypy 通过。详细结果见 MATCHED_BUDGET.md。
+
+本轮已发布至 PR #92,提交 `a3716ed` 的个人 fork CI `35586823475` 全部通过,
+Ubuntu / Python 3.12.14 测得 82 passed、覆盖率 98.44%,三个演示均成功。
+上游 CI `35586829560` 仍待维护者批准。后续补录仅修改本次发布记录。
+
+## 第四轮:输入与报告完整性(2026-09-21)
+
+用户要求继续审查。已在临时副本复现两处问题:CLI 的同路径输出会覆盖输入;
+报告结束时二次读文件计算哈希,外部修改输入会使指纹与实际求解数据不一致。
+修复范围限定为输入快照、严格文本解析入口、输出别名检查和完整写入后替换。
+新增回归覆盖同路径/符号链接/硬链接、求解期间修改或删除输入、CRLF 原字节指纹、
+写入/替换失败时旧报告保留及临时文件清理。QUBO、线路、优化器与旧评测结果不变。
+
+修复 `bf4ca76` 与验证说明 `36adc9f` 已发布至 PR #92。本地/最新 wheel 隔离安装
+均通过 92 测试,原有 18 测试也再次通过。个人 fork CI `35588841891` 全部成功,
+覆盖率 98.87%;上游 CI `35588846744` 仍待维护者批准。最后补录只修改文档。
+
+## 第五轮:可选无支持候选化简(2026-09-21)
+
+用户允许继续优化或换方向。继续实验室故障重排主线:已有完整证据链,换题尚无
+明确收益。新增可选 AC-3 删除,补齐单候选传播无法处理的无支持候选;所有删除
+记录完整对方当前域和冲突原因。保留默认路径及旧评价归档,验证全部可行集合
+与成本,而非只检查最优值。预先记录范围见 ARC_PROTOCOL.md;不扩展无关功能。
+
+第五轮实现与本地验证完成:可选 arc 路径保留全部可行集合及成本,200 个随机
+小问题和既有 V2 全部实例验证通过。V2 有 5/36 最大组件进一步缩小;新增构造
+案例从一个 18 比特组件降至 12 比特,无固定决策,三种子均实际采到最优成本 3。
+默认化简对 40 个输入与上一版完全一致。完整记录重放一致,102 项应用测试、
+98.92% 覆盖率、18 上游测试及隔离 wheel 完整测试通过。主线保持调度应用,
+没有新增无关贡献;证明和证据见 ARC_PRUNING.md,远程验证随发布更新。
+
+第五轮已更新 PR #92。`4eb272a` 的个人 fork CI `35597416071` 全部成功:
+102 项测试、98.92% 覆盖率及四类 CPU 示例通过。上游 `35597421975` 仍待
+维护者批准,PR 为 Open、可合并;平台回执未操作。末次提交仅补录发布记录。
+
+## 9 月 22–28 日收尾规划(2026-09-21 更新)
+
+### 当前判断与范围
+
+本轮为后续规划。基线为已发布 `220daf7`:102 项应用测试、18 项上游测试,
+核心覆盖率 98.92%;`4eb272a` 的个人 fork CI 通过,后续仅补录文档。
+再次读取 PR #92:Open、可合并,尚无评论或评审。最后一次实际执行的上游
+工作流仍待维护者批准;空的当前 statusCheckRollup 不视为 CI 已通过。
+
+继续 LabReschedule 主线。当前竞争力在于应用建模、可证明的资源缩减、真实量子
+样本与独立认证;同预算结果不支持高 shots 量子优势,真实用户证据仍缺失。
+不以新增算法数量或覆盖率小数点作为下一阶段目标。整个 PR 目前 177 个文件、
+48,120 行新增,包含大量原始实验归档;审阅成本需要控制,不再另开无关功能线。
+
+剩余工作的完成条件:评委能在锁定环境中按一条主要演示路线理解业务取舍、
+检查量子样本、核验经典证书,并能准确定位失败边界;维护者可定位核心 diff;
+参赛提交状态与证据齐全。合并和评奖属于外部结果,不作为可承诺完成的事项。
+
+### P0:一项业务解释增强,最多半天实现、半天验证
+
+**问题:改约协调成本多大时,值得付费使用备用设备?**
+复用现有 `tradeoff.json`,只改变三项任务的统一 `change_cost=w`,
+预先固定 `w=0,1,2,3,4,5,6`。保留原有时间窗、前序、设备和偏好成本。
+不引入新求解器、新成本语义或连续成本;不更改核心默认参数。
+
+- 两个已知候选排程的解析成本分别是:整体后移 `6+3w`,备用设备 `12+w`。
+ 两条曲线在 `w=3` 相交。这里只是待穷举核验的两方案比较,不能据此预先
+ 宣称它们覆盖全部全局最优解;必须枚举全部可行排程并验证并列最优。
+- 首次求解前提交输入变换、参数网格和验收规则。沿用已知开发案例,明确称为
+ 敏感性分析,不包装成新留出评测或实际用户调研。
+- 七个输入各运行 seed 7/19/42,共 **21 次**真实 CPU QAOA;p=1、2 restarts、
+ 每次最多 60 次评价、512 shots。保留全部未命中和非最优结果,不挑种子调参。
+- 每次量子输出继续只取实际样本;随后用穷举与原始输入 MILP 认证。
+ 报告偏好成本、改约成本、改约数量、实际目标、认证最优、gap 和耗时。
+- 核验每个输入的完整可行集合不因成本变化而改变;在阈值处累计所有并列最优,
+ 不把不同但同优的排程计作失败。量子采样不会必然覆盖所有同优方案。
+- 交付一张成本曲线、一张七行决策表和有限原始记录,纳入现有 tradeoff 演示
+ 与教程导航;不增加一套平行的产品流程,不做 Web 或交互界面。
+- 验收:七组成本和阈值经全枚举核对;21 次样本来源与 gap 可查;固定环境二次
+ 重放除计时外一致。即使 QAOA 某次未采到最优,也如实保留并解释。
+
+价值是说明权重怎样表达业务选择,不是证明量子加速。成本单位仍为用户定义的
+非负整数偏好分,不把合成权重当作已调查的货币价格或真实协调成本。
+
+### P0:审阅与提交完整性,9 月 24–28 日完成
+
+1. **9/24 功能冻结**:敏感性分析完成即冻结新功能。之后仅处理正确性、安装、
+ 文档矛盾或维护者指出的具体问题;修改哪一层,就补哪一层的必要验证。
+2. **9/24–25 审阅收敛**:更新现有 REVIEW_GUIDE.md 与 PR 正文,形成一条主要
+ 路线:成本取舍 → 权重阈值 → 18→12 资源边界 → 证书/失败。
+ 清楚区分源码、测试与生成证据;维持既有历史指纹,不重写旧结果。
+ 用已有资料合并重复说明,不另加一串评审文档。不重写已发布 Git 历史。
+3. **9/25 发布候选验收**:从干净 checkout 按教程建立项目 `.venv`、安装 wheel,
+ 运行主路线与相关测试。记录源码提交、输入哈希、依赖、命令、退出码和实际时间。
+ 本机演示目标为安装完成后 5 分钟内跑完;安装下载耗时单列,不作跨机器承诺。
+ 继续以已锁定的 Python 3.12 为参赛基准,其他版本不未经实测宣称兼容。
+4. **9/26–27 反馈窗口**:再次检查 PR 的实际评论、评审和上游 Actions;若有反馈,
+ 优先修复。没有反馈时保持候选版稳定,不靠反复改动制造进展。
+ 计划本身不创建自动轮询任务,也不代用户向维护者发送催审消息。
+5. **9/28 最终交付**:核对 PR 标题/队伍 youshen/目标 develop/提交指纹/CI,
+ 准备简短的 3–5 分钟讲解提纲与可复制命令,更新 SUBMISSION_CHECKLIST.md。
+ 主演示失败时展示实际报告、失败原因和独立证书,不用经典解替换量子结果。
+
+报名已经由用户确认,作品提交回执尚未确认。需按实际平台表单核对是否还要
+填写 PR 链接、作品说明或附件;只对实际存在的字段准备材料,不虚构额外规则。
+平台最终提交仍是单独的外部操作,先备妥可审阅内容,再按用户授权处理。
+[赛题 #13](https://github.com/OriginQ/pyqpanda-algorithm/issues/13)当前还说明 PR 合并后
+可通过本源量子云社区联系官方小助手领取对应激励;这是合并后的条件性步骤,
+不能把 PR 已创建当作已合并或已获奖。
+
+### P1:真实业务验证,依赖外部可用条件
+
+如果能由用户协调到一名实验室预约管理者或实际使用者,安排一次约 15–20 分钟
+的试用,优先使用 3–5 条经许可的匿名预约,或让对方审阅现有合成案例。
+只记录其确认过的约束定义、成本权重解释、输入困难和结果可用性;注明试用日期、
+范围和样本量,不索取身份信息,不把单人反馈推广成一般有效性。
+没有可用真实数据或试用者时,保留“全部合成数据”的边界,不阻塞 9/28 交付。
+由用户协调对外接触;本计划不授权自动发信、联系实验室或发布访谈内容。
+
+### P2:赛后候选项与停止条件
+
+支配剪枝、噪声模拟、新混合器、更大通用调度、额外 Web/云服务均留到赛后评估。
+暂不另开独立代码贡献 PR:只有发现可复现、影响本应用、没有同题开放 PR 的
+上游缺陷时,才重新做去重、最小复现和贡献范围判断。
+
+敏感性分析若超出一天或迫使修改核心求解语义,缩减为独立经典阈值认证加现有
+真实量子示例,明确两者来源;不牺牲当前可运行版本。
+不追加新的大规模参数搜索来寻找漂亮结果,不为凑测试数扩写低价值断言。
+9/28 起至 9/30 保留缓冲用于必要修复和实际提交核验;没有外部反馈或新缺陷时,
+以已验证发布候选完成参赛准备。
+
+## 第六轮完成:成本解释与发布候选(2026-09-21)
+
+按后续规划提前完成限定增强:`5ebcdc3` 冻结权重与参数,`51a5067` 实现现有
+tradeoff 演示的 `--sensitivity`。七个权重、三种子共 21 次真实量子求解均采到
+认证最优,w=3 处两方案同优,完整九个可行排程和所有原始记录保留并成功重放。
+默认行为、核心代码和旧归档不变。108 项应用测试通过,核心覆盖率 98.92%。
+
+已提前完成干净 worktree + 全新项目 `.venv` + wheel 安装验证;108 测试通过,
+主演示和资源边界共约 9.38 s,加上两个失败状态共约 13.45 s,下载依赖另计。
+REVIEW_GUIDE.md 现在给出主要演示顺序,成本曲线与七行表并入已有业务教程。
+进入新功能冻结阶段:后续优先处理实际缺陷、维护者反馈及提交核验。
+真实试用仍需外部条件;平台实际作品提交与回执未操作、不标为完成。
+
+本轮已发布至 PR #92,`3846495` 的个人 fork CI `35600289671` 全部成功,
+108 测试、98.92% 覆盖率和全部 CPU 演示通过。官方 `35600294948` 仍待维护者
+批准,PR 保持 Open、可合并、无评论或评审;末次提交仅补录发布记录。
+
+## 奖励目标下的下一步决策(2026-09-21 再核查)
+
+决策:保留共享实验室重排主线,继续冻结新功能;下一项工程工作优先做安装
+兼容性核查与合并准备,暂不开第二个参赛项目或独立代码贡献 PR。
+
+### 本次核查事实
+
+- [官网](https://qcloud.originqc.com.cn/learning/zh/2026ccf)列出的开源创新赛道
+ 奖励为 10 队、每队 1,000 元及价值 1.8 万元机时和证书。
+ [任务 #13](https://github.com/OriginQ/pyqpanda-algorithm/issues/13)说明维护者
+ 审核与合并流程;没有给出按 PR 数量累加奖金的规则,不据此承诺奖金或名次。
+- 当前 71 个开放 PR。QUBO 二进制规范化 #69、默认层数 #45、QAOA 风险目标 #40、
+ 示例及导出修复 #39 已有提交,不能作为新的同题贡献。
+- 我方 #92 仍 Open、可合并、没有评论或评审;个人 fork CI 成功,官方运行仍
+ `action_required`。维护者是否批准运行、审核及合并属于外部待办。
+- 当前 PR 为 193 文件、50,618 新增行。其中实验归档占 33,830 行,核心代码
+ 11 文件共 1,751 行。新增功能会继续增加审阅范围,应优先保持证据可定位。
+- 已验证 WSL / Ubuntu Python 3.12;尚未完成 3.11、3.13 安装与运行验证。
+ 当前数据全部合成,512 shots 下均匀随机对照也达到全部最优,不能声称量子优势。
+
+### 下一项工作的范围和验收标准
+
+1. **安装兼容性核查(最多一个工作日)**:先核对 PyQPanda3 和锁定依赖的
+ Python 版本与 wheel 可用性,再选择确实可安装的 3.11 / 3.13 环境验证。
+ 所有环境使用项目内 `.venv`;至少验证 wheel 导入、主要演示与失败退出码,
+ 可用环境运行相关测试。不为通过矩阵而大改上游依赖;不可用组合明确记录原因,
+ 不把包元数据或安装成功当成运行测试通过。保留已通过的 3.12 推荐路线。
+2. **合并准备**:保持现有 REVIEW_GUIDE 核心代码路线,检查 PR 描述能否让维护者
+ 快速定位实现、数学证明、回归与生成数据;不擅自删除历史证据或改写实验结果。
+ 有评审意见时优先响应;平台若另有作品链接或回执要求,按实际要求核验。
+3. **真实使用证据(外部条件具备时)**:沿用前述一次匿名小样本试用计划,
+ 由用户协调联系,未发生的试用不写成结果。不通过继续增加合成种子替代此证据。
+4. **独立代码贡献的启动条件**:限于实际使用暴露的共享 QUBO / QAOA 缺陷;
+ 先具备最小复现、去重和影响说明,再决定单独修复。补丁须有修复前失败、修复后
+ 通过的回归与原接口兼容验证。没有新缺陷就停止,不为增加 PR 数量另造模块。
+ 多类或多项作品如何计奖尚未确认,不预设第二个 PR 带来第二份奖励。
+
+本节是下一步执行计划,不代表兼容性扩展或真实试用已经完成;既有 108 项应用
+测试与 CI 结论保持原验证环境和提交范围,不因计划扩展而扩大支持声明。
+
+## 第七轮完成:兼容性核查与合并准备(2026-09-21)
+
+新增两个干净 wheel 环境,各通过 108 项应用测试、18 项原有算法测试、核心
+覆盖率 98.92% 及主要 CPU 演示、失败状态。3.11 原锁安装失败,限定调整四项
+依赖版本后通过;3.13 直接沿用原 3.12 锁。实际安装版本与固定文件逐项核对,
+安装的核心文件与源码逐字节核对。覆盖率按包名收集失败也如实归档,改用安装
+目录验证通过,未把工具链行为扩大为上游算法缺陷。
+
+新增 COMPATIBILITY.md 与小型机器验证记录,主教程提供准确的版本选择;CI
+扩展三版本、原有算法回归和失败状态;PR 开头标出核心代码/测试审阅范围。
+本轮没有发现需要独立算法修复 PR 的新证据,不另开代码贡献,不改核心实现。
+发布后继续核对远程矩阵;实际试用、平台回执及官方审核仍属外部待办。
+
+用户另询问未获奖能否取得证明:公开规则仅明确 10 队的获奖证书,没有查到
+普发参赛证明的承诺。需官方确认,不能把 GitHub 贡献记录等同于官方证书,
+也不因未查到说明就断言未获奖者绝无证明。
+
+发布提交 `5678e41` 的 fork CI `35604218576` 已三版本全部成功(每项 108 应用
+测试、18 原有测试、98.92% 覆盖率和全部演示)。官方 `35604226057` 仍待批准。
+PR #92 的兼容性与审阅说明已更新;后续继续保持功能冻结,优先响应实际评审。
+
+## 第八轮:最终实质审查与停止条件(2026-09-21)
+
+用户授权继续自主优化。重新审查输入、剪枝、求解、原始认证与 CLI 的交界,
+发现 2049+ 原始候选即使已剪枝到 2 比特,报告也会被 MILP 的预算异常中断。
+`1a54465` 修复报告层预算预检,直接 MILP API 的上限保持不变。新增五项回归
+先确认四失败、一通过,再确认全部通过;完整应用测试 113 项、覆盖率 98.92%。
+对 simple、medium、infeasible、tradeoff、support-chain 的原有路径重放,
+全部非计时报告字段与修复前一致,未更改量子参数或以经典答案填充样本。
+
+把答辩的六个关键问题并入既有 REVIEW_GUIDE;更新历史竞争力审查的完成状态,
+明确保留真实用户验证和量子优势两项证据边界,不编造外部使用反馈。
+后续完成新 wheel 与三版本 CI 后即结束本轮开发,不无限增加功能或另造参赛项目。
+新的工作应由实际缺陷、维护者评审或真实使用反馈触发;审核与奖项不是本地可完成项。
+
+最终新 wheel 在干净环境通过 113 应用测试、18 原有测试及完整演示。
+发布提交 `e89c78b` 的 fork CI `35606032579` 三版本全部通过(各 113/18 测试、
+98.92% 覆盖率及全部演示);官方 `35606039667` 待批准。PR #92 已更新。
+本轮工程收敛条件已满足,保留后续评审和实际提交核验缓冲。
+
+## 评委首次阅读与重放入口核查(2026-09-22)
+
+重新检查 PR #92:仍开放、可合并,无新评论或评审;官方 CI 仍待批准。
+未发现新的算法缺陷。本轮聚焦两项交付问题:主教程首先呈现历史基线,未突出
+完整业务案例;历史重放虽有指纹,却缺少对应检出命令。主教程改用已有取舍图与
+证据导航,审阅指南区分当前两次运行和历史归档核验,给出匹配提交及独立环境步骤。
+
+逐项核验三个归档版本的 17/14/17 项源码指纹;当前版本主演示实际执行两次,
+每次 21 条敏感性记录,严格比较除计时外全部一致。文档本地链接和 diff 检查通过。
+未修改核心实现、实验输入、协议、历史结果或测试;不重跑并重复计数已有的
+113 项应用测试。继续保持功能冻结,后续投入优先考虑真实试用反馈和维护者评审。
+
+## 小范围试用材料准备(2026-09-22)
+
+用户批准准备试用,并明确暂时没有可协调的使用者,先备好材料。本轮复用现有
+CSV 导入、JSON CLI 与原始约束检查接口,新增 USER_TRIAL.md 和空白反馈模板,
+不新增求解模块。流程覆盖案例适配、去标识录入、查看结果前记录人工排法与权重、
+保留首次失败、参与者核验及公开范围;真实试用状态保持未开展。
+
+文档四条命令以合成模板逐条执行成功,得到目标值 6、零违反、gap 0、4 比特
+组件和三项传播固定任务。重复初始化/转换会拒绝覆盖,原文件指纹保持一致。
+本地演练及空白反馈位于 Git 忽略的 reports/user-trial;没有收集、联系或公开
+真实参与者信息。后续由用户协调使用者后,再按同一流程记录实际反馈。
+
+
+## 独立库边界修复与联合验证(2026-09-22)
+
+用户随后授权继续开展其他代码贡献,并要求自主推进有证据的优化。按此新增授权,
+审查应用相关的 QAOA / QUBO 与 Grover 路径,先查重、CPU 复现,再开独立修复。
+主应用保持功能冻结;下列 PR 各自基于官方 develop,不将库改动混入应用分支。
+
+| PR | 已确认的问题 | 本地验证 |
+| --- | --- | --- |
+| [#95](https://github.com/OriginQ/pyqpanda-algorithm/pull/95) | 单比特 XY 不守恒、奇数环缺闭合边 | 24 CPU 回归,独立分支完整 42 测试 |
+| [#96](https://github.com/OriginQ/pyqpanda-algorithm/pull/96) | 稀疏编号宽度、Hamiltonian 项接口、QUBO 零系数变量丢失 | 32 CPU/解析分布回归,完整 50 测试 |
+| [#97](https://github.com/OriginQ/pyqpanda-algorithm/pull/97) | QUBO 结果缺符号位及零位寄存器 | 40 编码/oracle/位数回归,完整 57 测试 |
+| [#98](https://github.com/OriginQ/pyqpanda-algorithm/pull/98) | 自适应搜索漏掉已测得的同值最小解 | 16 确定性 CPU 回归,完整 34 测试 |
+
+所有新回归保留修复前失败记录,Python 3.11 / 3.13 聚焦检查也通过。独立临时
+checkout 合并应用与四项修复,Python 3.11.16 / 3.12.3 / 3.13.11 各通过 242 项
+测试(26.28 / 29.41 / 25.09 s),应用覆盖率均为 98.92%。这些总数包含原有
+测试与应用测试,不把不同版本运行次数当成独立用例数。临时集成提交未发布。
+
+另以 1/2/3 变量和常数 -2/0/3 验证 QUBO/Grover 完整路径,9 个案例均得到
+非空、无重复且目标值正确的实际采样解。无需真实硬件、凭据或模拟器替身。
+纯算法修复不声称创新算法或量子优势,也不假定 PR 数量与奖金数量对应。
+
+四个 PR 当前开放且可合并,未获得官方 CI 或维护者审核结论;应用 #92 仍无新
+评审意见。同步赛题 #13 的 `【任务类型】` 标题格式。下一步优先审查交付材料
+与源代码一致性;无复现证据时不增加功能或改动已验证的实验原件。
+
+补充复查发现 NumPy int32/int64/uint64 系数可能在求和或绝对值时溢出,使寄存器
+被错误分配为 1 位。已在现有 #97 中先转换为 Python 整数再计算界,追加 8 个
+修复前全部失败的分配回归。大位数案例不执行状态向量模拟,最终联合结果如上。
+
+合并交互检查:在另一独立 checkout 中,将我方版本与第三方开放 PR #45
+(`f829357`)、#69(`6f0fcb2`)、#36(`e1992fb`)合并,全部自动合并无冲突;
+Python 3.12 的 264 项测试通过(37.15 s),应用覆盖率 98.92%。常数输入与默认
+层数、常数输入与 GAS 同值解、二进制幂规范化与符号位三个组合 smoke 检查通过。
+这只验证指定提交的本地兼容性;没有把他人的改动加入我方 PR,也不是替其审核。
+
+
+## 日历空域的独立 MILP 提前判定(2026-09-22)
+
+确认性能问题:原始选项已因停机日历全部不可用时,MILP 仍构造两两约束再交给
+求解器。512 项合成单候选任务产生 131328 行。新增线性扫描,以原始日历独立
+证明某任务无可用选项,直接返回 infeasible、任务、原因与 constraints=0,不导入
+编译器、约束图或量子结果。每项仍有可用选项的问题继续原有完整建模。
+
+在完全相同且已核对指纹的 128/256/512 任务输入上各测三次;512 案例的局部
+调用中位耗时由约 0.323 s 到 0.000219 s,构造行数降为零。此测量只说明该类
+显然不可行输入的构造开销,不作为一般优化速度、量子优势或预注册实验结果。
+
+6 项回归包含三项修复前失败的提前判定断言、真实 HiGHS 的相接边界/剩余候选,
+以及 512 任务 CLI 的非零退出与持久化报告。新 wheel 隔离安装通过 119 应用与
+18 原有测试(137 passed,32.30 s,98.93%),11 个核心模块与源文件字节一致;
+质量检查和主演示通过。下一步核对本轮代码提交的三版本 CI,保留历史归档及其
+固定提交的重放入口;此前的 242 项库集成记录仍对应优化前应用代码 7e4e663。
+
+
+继续检查同一构造路径,发现日历上界已经固定为零的变量仍生成配对行。由
+$y_i=0$ 和 $0\le y_j\le1$ 可直接推出 $y_i+y_j\le1$,故这类行冗余。
+保留所有原始变量/上界/索引,只在日历可用选项之间构造不兼容约束,独立性不变。
+512 原始候选且仅 4 个日历可用候选的可行案例,构造从 64520 行降为 4 行,
+目标仍为 3,返回原始选项 [254,255];不将局部构造改进称为量子加速。
+
+追加两项实际 HiGHS 回归,修改前均因冗余行数断言失败,修改后通过;完整应用
+121 passed / 19.87 s / 98.93%。新 wheel 全新隔离安装并校验 11 模块字节,
+139 项组合测试通过(121 应用 + 18 原有,26.86 s),主演示与 21 次敏感性通过。
+质量检查通过。日历空域版本 b0a92d0 的三版本 CI 已通过;本次冗余行优化的新
+提交仍须完成自己的三版本 CI,不借用上一提交的远程结果。
+
+## 结束主动优化(2026-09-22)
+
+用户最新指示为“差不多了,你觉得够了就结束吧”。判断当前端到端应用、数学
+验证、独立经典基线、可复现实验、演示和四项聚焦库贡献已形成完整交付,停止
+主动增加功能或寻找新方向。获奖取决于官方评审,不作保证。
+
+最终代码 `6c43e40` 的 fork CI 35697552146 三版本各 121 应用 + 18 原有测试
+通过,应用覆盖率 98.93%。3.11 首次上游随机 GAS 测试失败,仅重跑失败任务
+一次后通过;两轮记录完整保留,没有调整原算法或断言。当前应用加四个修复的
+Python 3.12 集成 250 项通过,27.68 s,98.93%。最后仅提交文档记录并同步 #92。
+
+全部五个 PR 已发布且当前无合并冲突,未取得官方评审或合并结论。队伍 youshen
+报名由用户确认;平台作品回执未核验,暂无真实试用参与者,材料及合成演练已齐备。
+后续只按维护者意见、真实缺陷或使用反馈继续,工程主动优化到此结束。
diff --git a/PR_DESCRIPTION.md b/PR_DESCRIPTION.md
new file mode 100644
index 00000000..746beb24
--- /dev/null
+++ b/PR_DESCRIPTION.md
@@ -0,0 +1,165 @@
+# 【创新应用】新增基于QUBO的共享实验室最小扰动重排应用
+
+参赛队伍:**youshen**,已完成官网报名。关联 #13;目标分支 develop。
+
+## 解决的问题与应用贡献
+
+设备临时停机后,如何重排实验、满足清洗/小组互斥/工序前序,同时降低原预约
+变更成本?新增完整离线应用 LabReschedule,从 JSON 或 CSV 预约窗口生成
+可追溯 QUBO,在 PyQPanda3 CPU 上求解,再由原始输入 MILP 与小规模穷举核验。
+
+完整取舍示例:烘箱故障后,三个实验可整体后移(成本 12、改约三单),也可
+付费使用备用设备(成本 14、改约一单)。三项决策全部留在 8 比特组件,
+没有预处理固定项;默认实际量子样本得到成本 12、零违反,随后由双经典基线认证。
+原有 CSV 连锁传播案例也保留,展示被迫改约的删除原因链。
+
+建议从[审阅路线](https://github.com/youshen2025/pyqpanda-algorithm/blob/contest/qubo-scheduling-app/Tutorials/LabScheduling/REVIEW_GUIDE.md)开始,按路线定位核心代码、
+数学证明、关键测试及实验记录;数据与图表占 diff 的大部分。审阅路线还区分
+当前代码重复运行与历史归档核验,列出匹配的源码提交和独立环境操作命令。
+另提供[小范围试用流程](https://github.com/youshen2025/pyqpanda-algorithm/blob/contest/qubo-scheduling-app/Tutorials/LabScheduling/USER_TRIAL.md)
+和空白反馈表;已通过合成数据演练,尚未取得真实使用者反馈。
+
+首次审阅可先看 11 个核心模块与 11 个测试模块(另含 3 个检查配置),再按审阅路线抽查生成的实验
+归档。最近修复报告层的基线预算处理,量子线路与默认训练/采样参数保持不变。
+
+贡献集中在可证明的资源节省与可审计求解:
+
+- 原始候选日历剪枝、单候选传播、严格独立冲突分量、固定成本和原变量回填;
+ 不启发式冻结“未直接受故障影响”的预约,不静默截断或以经典解替代量子样本。
+- 可选 AC-3 删除没有任何对方候选支持的选择,保存完整删除依据;构造的
+ 四工序组件从 18 降到 12 比特,三个固定种子实际采到成本 3,全部决策仍在量子组件。
+- 在现有业务演示中增加七组改约权重,解释何时使用备用设备;21 次真实量子
+ 运行与完整可行集合认证,阈值处接纳全部并列最优,不改变核心默认参数。
+- XY 线路中删去可达子空间上恒零的 one-hot 罚项,保留完整 QUBO 审计和原缩放。
+ medium 的原生 CNOT 从 78 降至 54,深度 45 降至 35;相同参数分布等价。
+- 独立原始输入 MILP 不使用 QUBO 的剪枝表或冲突图;区分最优证书、不可行、
+ 限时 incumbent、量子抽样失败和组件超限,记录所有失败。
+- 第一批 12 个实例 × 10 个种子保留;第二批独立冻结 36 个异构实例,每格 4 个
+ 数据种子、每例 10 个优化种子,比较日历剪枝/传播/分解/相位精简各阶段。
+- 补充同总训练上限/采样预算对照,并加入化简后的均匀随机基线,区分结构化简
+ 与量子分布收益;完整保留随机持平或胜出的结果,不以额外预算制造优势。
+- 输入只读一次,报告指纹绑定实际求解字节;CLI 拒绝输入/输出同文件(含链接),
+ 写完临时报告再替换,避免误覆盖输入或因写入失败破坏旧报告。
+- 原始 MILP 超过候选预算时明确跳过该基线,保留量子结果和仍可用的穷举证书;
+ 两者都无法认证时 gap 为 null。回归覆盖 2048/2049 边界、不可行及双基线超限。
+
+QUBO、XY、传播和 MILP 均来自已有理论;本贡献是应用建模、编译、验证与复现流程,
+不声称发明新的通用量子算法或量子加速。题目区别于开放灌溉应用 #60;
+已有调研快照和 scope 在 PLAN.md 与教程中说明。
+
+## 数学与架构
+
+每个候选一个二进制变量,成本为偏好加原预约变更费用。完整 QUBO 为
+`Q = sum(c_i*x_i) + A*sum_t(sum_Dt(x_i)-1)^2 + A*sum_conflicts(x_i*x_j)`。
+对非负成本取 `A=1+各任务最大存活候选成本之和`;存在可行解时,任一不可行
+位串能量高于所有可行解。`x=(I-Z)/2` 转为 Ising,成本相位按同一 A 缩放。
+W 初态与域内 XY 交换保持每任务单激发,故可只在 XY 相位中删除 one-hot 罚项。
+X/H/RX 对照仍保留完整罚项。原生 CRY 与 CNOT 分别报告,不作硬件分解计数承诺。
+
+默认传播只删与必选候选冲突的选择;可选弧一致性删除与另一任务所有存活候选
+都冲突的选择。两者均保留全部可行排程;组件无跨界禁止对,回填与原可行排程一一对应,
+成本等于固定偏移加组件成本。近似组件求解没有全局最优保证。
+
+主要改动集中于 `pyqpanda_alg/LabScheduling/`、`example/LabScheduling/`、
+`test/LabScheduling/`、`Tutorials/LabScheduling/` 及文档索引/聚焦 CI。
+复用上游 W 态、XY 交换与成本相位组件,未修改上游算法或进行无关重构。
+
+## 安装与演示
+
+在仓库根目录使用 Python 3.12 虚拟环境:
+
+```bash
+python3.12 -m venv .venv
+.venv/bin/python -m pip install -c pyqpanda-algorithm/example/LabScheduling/constraints-py312.txt -e ./pyqpanda-algorithm -r pyqpanda-algorithm/example/LabScheduling/requirements-dev.txt
+OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 MPLBACKEND=Agg .venv/bin/python pyqpanda-algorithm/example/LabScheduling/tradeoff_demo.py --sensitivity
+```
+
+普通 JSON CLI:
+
+```bash
+OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 .venv/bin/python -m pyqpanda_alg.LabScheduling pyqpanda-algorithm/example/LabScheduling/data/medium.json --reduce --output reports/medium.json
+```
+
+输出到项目 reports;不需要 Key、GPU、真机、Web 或数据库。pandas/scikit-learn
+补充项用于上游导入链,声明限定在应用开发依赖内。
+
+Linux x86_64 上 Python 3.11 / 3.13 也已分别通过独立 wheel 安装、108 项应用
+测试、18 项原有算法测试和完整演示。3.11 安装时换用 `constraints-py311.txt`;
+3.13 沿用上述约束。版本、失败记录和范围见
+[安装兼容性](https://github.com/youshen2025/pyqpanda-algorithm/blob/contest/qubo-scheduling-app/Tutorials/LabScheduling/COMPATIBILITY.md)。
+
+## 测试与实测证据
+
+WSL / Python 3.12.3 / PyQPanda3 0.4.1:
+
+- 当前 121 项应用测试通过,核心行覆盖率 98.93%;原有 18 项有效测试见下方矩阵。
+- Ruff lint/format、Mypy 11 模块通过;真实 CPUQVM 测试,无模拟器 mock。
+- 原始日历可直接证明某任务没有候选时,MILP 提前报告不可行,避免构造两两
+ 约束;不调用 HiGHS,也不读取 QUBO 剪枝结果。6 项新回归包括真实边界问题和
+ 512 项任务的 CLI 输出;有可用选项的问题继续建模与求解。另用 2 项真实 MILP
+ 回归验证固定零变量的冗余配对行可被省去,原始索引及最优值保持不变。
+- 最新 wheel 在项目内全新的 `.venv` 安装,确认 site-packages 导入
+ 与核心文件哈希;121 项应用测试及 18 项原有测试通过。含敏感性分析、资源边界
+ 和两个失败状态的完整命令路线验证成功,安装记录见 VALIDATION.md。
+- 原有 64/4096 态 QUBO/约束等价与 4096 态 Ising 验证保留。
+- 100 个随机小问题核对化简前后全部可行集合和回填成本,再与原始 MILP 比较。
+- 可选弧一致性在 200 个随机小问题及既有 V2 全部 36 个输入上核对全部原始
+ 可行集合与成本;5 个 V2 实例的最大组件缩小,其他 31 个没有该项收益。
+ 18→12 边界案例的三种子与结构审计完整重放;保留局部有支持但全局不可行反例。
+ 命令加 `--reduce --pruning arc`;证明和归档见 `Tutorials/LabScheduling/ARC_PRUNING.md`。
+- 改约成本敏感性协议先以 `5ebcdc3` 冻结:w=0–6、seed 7/19/42,共 21 次真实
+ QAOA 均采到经独立认证的最优;阈值 w=3 时两个方案同为 15,完整重放一致。
+ 这是已知合成案例上的业务解释,不是新留出集或量子优势证明。
+- simple/medium 各 30 组 p=1/2/3 随机角度验证 XY 相位精简;单候选混合域另测。
+- 12 个冻结评价实例含 9 个可行、3 个不可行,穷举和 MILP 结论全部一致。
+ 可行实例 86/90 个训练种子的单次最优概率高于均匀 one-hot,4 个退化,全部保留。
+ 原始/精简线路在相同已训练参数上的最大概率差为 2.23e-16 以下。
+- 120 次训练再次复现,除耗时外参数、counts、分布指标和独立采样结果完全一致。
+- 20/35/50 任务的合成链仅运行经典 MILP,目标 40/71/100;明确标记未执行量子求解。
+- 第二批支持 2–4 候选、1–3 时隙时长、0–2 清洗时间和三类故障;36 个原排程
+ 均验证无故障时合法。故障后 24 可行、12 不可行,全部原始可行集合与回填成本一致。
+- 第二批 240 个可行训练种子有 206 个最优概率高于均匀、34 个退化;一个实例连
+ 种子均值也退化,均保留。分解可能增加总训练/采样预算,不作同预算优势声明。
+- 360 条配对求解记录完整重放,除耗时外完全一致;其中纯经典传播明确标注。
+- 同总预算补充评价重新运行全部 360 组,并完整重放。22 个仍需量子的可行实例
+ × 十种子中,分量 QAOA 最优 220/220、直接 QAOA 217/220;两条随机基线也为
+ 220/220,不宣称 512 shots 下量子优于随机。低 shots 条件曲线及退化实例见
+ `Tutorials/LabScheduling/MATCHED_BUDGET.md`,曲线不包括训练成本。
+
+```bash
+OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 .venv/bin/python -m pytest -c test/LabScheduling/pytest.ini test/LabScheduling --cov=pyqpanda-algorithm/pyqpanda_alg/LabScheduling --cov-fail-under=95
+```
+
+证明、接口、协议、全部失败记录、资源与命中曲线见
+`Tutorials/LabScheduling/ENHANCEMENTS.md`;安装及 CI 实际状态见 VALIDATION.md。
+旧 schema 1 开发基线独立保留,新版为 schema 2,默认使用精简 XY。
+
+个人 fork 的 [Ubuntu / Python 3.11–3.13 CI](https://github.com/youshen2025/pyqpanda-algorithm/actions/runs/35697552146)
+在代码提交 `6c43e4059c07516f5cd1df5d912f417faa37bdeb` 上最终全部通过:各全新安装、
+质量检查、121 项应用测试(98.93% 覆盖率)、18 项原有测试及全部 CPU 演示。
+3.12 / 3.13 首次通过;3.11 首次应用测试通过,但未修改的上游 GAS 随机搜索
+测试失败(17 通过、1 失败),仅重跑该失败矩阵任务一次后全部通过。保留首次
+失败日志,未修改原测试或算法来规避失败;完整记录见 VALIDATION.md。
+官方 [35697558446](https://github.com/OriginQ/pyqpanda-algorithm/actions/runs/35697558446)
+仍待上游批准;fork CI 不代替上游审批。后续收尾提交仅更新验证文档。
+
+## 限制
+
+每个量子组件最多 16 比特,总编译候选最多 256;精确枚举最多一百万组合,
+MILP 最多 2048 个原始候选。报告分别记录超预算跳过状态,限时或无证书不冒充最优。
+只处理非负整数成本、确定时长、单位容量、单小组任务。训练与概率诊断为
+指数复杂度的无噪声模拟;训练后的 shots 命中曲线不是端到端加速。
+第一批每格一个数据种子,第二批每格四个,仍是小规模合成证据,没有实际实验室用户验证。
+经典基线在此规模更快,量子效果并非每个种子改善,硬件噪声下不保证相位精简等价。
+
+
+## 独立库兼容验证
+
+另行修复的 #95/#96/#97/#98 分别处理 XY 边界、QAOA 寄存器、QUBO 符号位和
+GAS 同值解;这些改动不包含在本应用 PR 中,本应用也不依赖它们才能运行。
+2026-09-22 在独立 checkout 合并应用代码 `7e4e663` 与上述修复,Python 3.11 / 3.12 /
+3.13 各通过 242 项测试,应用覆盖率均为 98.92%。这是本地兼容性证据,
+没有扩大原 fork CI 的覆盖范围或宣称官方审核通过。
+
+上述集成随后加入当前两项 MILP 构造优化,在 Python 3.12 上通过 250 项测试,
+应用覆盖率 98.93%;三版本的 242 项历史记录仍对应先前明确标注的应用提交。
diff --git a/README.md b/README.md
index a12fbe0d..9ba30c51 100644
--- a/README.md
+++ b/README.md
@@ -154,3 +154,7 @@ pyqpanda_alg采用Python作为主要语言,对系统的环境要求如下:
+
+## 应用案例
+
+- [LabReschedule:基于 QUBO 的共享实验室最小扰动重排](Tutorials/LabScheduling/README.md)
diff --git a/SUBMISSION_CHECKLIST.md b/SUBMISSION_CHECKLIST.md
new file mode 100644
index 00000000..8d8c692a
--- /dev/null
+++ b/SUBMISSION_CHECKLIST.md
@@ -0,0 +1,240 @@
+# 本源杯提交检查表
+
+交付日期:2026-09-21;用户目标 9 月 28 日前备妥,比赛截止 9 月 30 日。
+当前工作分支:`contest/qubo-scheduling-app`;目标:`upstream/develop`。
+
+## 已完成的本地工作
+
+- [x] 核对比赛主页、赛题 #13、README、main/develop 贡献指南。
+- [x] 逐页检查开放 PR、开放 Issues、develop 源码;记录 70 项开放 PR 快照。
+- [x] 区分最近的灌溉应用 #60,采用共享实验室故障重排题目。
+- [x] PLAN.md 写明范围、数学风险和实施结果。
+- [x] 项目内 `.venv`,Python 3.12.3;无全局依赖安装。
+- [x] 固定依赖版本、种子、线程设置;无 Key、Token 或真实硬件要求。
+- [x] JSON 输入、严格错误处理、简单/中等/不可行三个数据集。
+- [x] QUBO 完整公式、变量映射、惩罚系数证明、Ising 转换及位序说明。
+- [x] PyQPanda3 CPUQVM 实际运行,复用 pyqpanda_alg 线路组件。
+- [x] 独立精确基线、均匀 one-hot 对照、XY/X 对照;量子结果只来自采样。
+- [x] 输出目标、原始成本、违反数/原因、耗时、采样证据及最优差距。
+- [x] 当前 121 项应用测试通过;覆盖率 98.93%;原有 18 有效测试的验证见各轮记录。
+- [x] Ruff、格式、Mypy、pip check;wheel 构建及安装目录运行成功。
+- [x] 中文评委教程、几分钟演示流程、12 组实验 JSON/CSV 和静态 SVG。
+- [x] 提供 PR 标题、完整描述、develop 目标和聚焦 CI。
+- [x] 按建模、量子应用、文档证据整理本地提交;工作区最终保持干净。
+- [x] Git diff/相对链接/公开 API/缓存/秘密/旧版 API 检查。
+
+## 发布进度
+
+- [x] 用户已审阅并明确批准 push/创建 PR(2026-09-21)。
+- [x] 用户已确认官网报名完成,队伍名称 **youshen**(2026-09-21)。
+- [x] 发布准备时再次刷新开放 PR 和 upstream/develop;与初始快照一致。
+- [x] 个人 fork `youshen2025/pyqpanda-algorithm` 已创建,`origin` 已配置为其 HTTPS 地址。
+- [x] upstream/develop 仍为 `5f973ef`,无需合并,代码和测试结论不变。
+- [x] 推送功能分支,通过个人 fork 向官方 develop 创建 [PR #92](https://github.com/OriginQ/pyqpanda-algorithm/pull/92)。
+- [x] 使用 `PR_DESCRIPTION.md` 第一行标题及其正文,关联 #13,队伍名称 youshen。
+- [x] 增强版本已推送,PR 描述已更新;核对 PR 为 Open、非草稿、目标 develop,GitHub 报告可合并。
+- [ ] 远程 CI 通过:当前工作流等待上游维护者批准运行,尚未执行测试。
+- [ ] 按比赛平台要求补充队伍/PR 链接并保存提交回执,不以本地提交代替报名。
+- [x] 9 月 28 日前完成 PR 准备/提交:实际于 2026-09-21 创建 PR #92。
+- [ ] 最迟 9 月 30 日前完成规定平台流程并核对提交回执。
+
+分支已推送至个人 fork,再由 PR 合入官方仓库:
+
+```bash
+# 2026-09-21 经用户批准已执行。
+git push -u origin contest/qubo-scheduling-app
+```
+
+PR 标题:`【创新应用】新增基于QUBO的共享实验室最小扰动重排应用`。
+审阅入口:[中文教程](Tutorials/LabScheduling/README.md)、
+[验证报告](Tutorials/LabScheduling/VALIDATION.md)、[PR 描述](PR_DESCRIPTION.md)。
+合并、评奖和平台审核结果由主办方决定;本清单不把尚未发生的审核标为完成。
+
+发布记录(2026-09-21):通过 GitHub CLI 浏览器登录确认账号 `youshen2025`,
+已成功推送分支并创建正式 PR,先前连接应用权限阻碍已不影响本地发布。
+首次 [Actions 运行](https://github.com/OriginQ/pyqpanda-algorithm/actions/runs/35572665883)
+状态为 `action_required`,页面明确显示等待维护者批准,jobs 数量为 0。
+本地测试通过不等同于远程 CI 通过;后续需在 PR 页面跟进维护者批准及实际运行结果。
+用户已确认官网报名;本次没有登录比赛平台或代填 PR 链接,平台回执仍待核对。
+
+## 增强版发布检查
+
+- [x] 单独委派过独立竞争力评审,原建议见 AWARD_REVIEW.md。
+- [x] XY 恒零罚项删除,保持完整 QUBO 与相同缩放;真实 CPU 等价回归。
+- [x] 安全单候选传播、冲突组件、固定成本/原变量回填;100 个小问题全可行集验证。
+- [x] 原始输入 MILP,限时/界/差距状态明确;未复用 QUBO 冲突表。
+- [x] CSV 预约窗口、三单连锁改约及无故障对照、变更表和离线甘特图。
+- [x] 冻结 12 个实例 × 10 优化种子,归档所有 120 次训练及退化结果。
+- [x] 20/35/50 任务仅经典扩展检查,明确未执行量子求解。
+- [x] 重写本地 PR 描述,新增增强教程,区分历史 schema 1 与当前 schema 2。
+- [x] 增强版 wheel 在项目内全新虚拟环境安装,71 测试、业务演示和 medium CLI 成功。
+- [x] 用户审阅增强版结果后批准继续(2026-09-21);增强提交与完整 PR 描述已发布到 PR #92。
+- [ ] 增强版推送后核实上游 Actions 实际运行结果及维护者意见。
+
+增强代码发布提交为 `9c23ddb`(实现 `22fbbd1`、实验 `8e55c17`、文档 `9c23ddb`)。
+对应 [Actions 运行](https://github.com/OriginQ/pyqpanda-algorithm/actions/runs/35576581365)
+仍为 `action_required`,jobs 数量为 0,等待上游维护者批准;不能标为 CI 通过。
+后续提交仅同步这次发布记录。比赛平台 PR 链接与提交回执仍待核对。
+
+官网开源创新赛道目前列有 10 个获奖名额,没有列出“特等奖”。本作品以提升
+本赛道竞争力为目标,不把其他赛道奖项或未经验证的量子优势作为参赛承诺。
+
+## 第二轮优化检查
+
+- [x] 用户批准聚焦原作品的评测、业务案例、逐步对照和审阅体验优化。
+- [x] 36 个异构输入在评测前冻结,旧版 120 次结果保留不变。
+- [x] 360 条配对记录、全部失败/退化/纯经典情形公开,并完整重放核对。
+- [x] 8 比特业务案例保留三项决策,9 个可行取舍公开,实际样本与独立证书一致。
+- [x] 76 测试、98.44% 覆盖率、质量检查;纯 wheel 环境运行新增测试与演示成功。
+- [x] 新增 REVIEW_GUIDE.md,缩短评委与维护者定位核心贡献的路径。
+- [x] 个人 fork 独立 Ubuntu CI 实际通过:[运行 35583744393](https://github.com/youshen2025/pyqpanda-algorithm/actions/runs/35583744393),提交 `198ddfb`。
+- [x] 第二轮优化已推送至 PR #92,PR 描述更新,GitHub 报告可合并。
+
+fork CI 的安装、质量检查、76 项 CPU 测试和三类演示全部通过。
+上游运行 `35583752436` 仍等待维护者批准;平台 PR 链接与回执仍待核对。
+后续仅补录本发布记录,保留被验证代码不变。
+
+## 第三轮:公平预算与随机结构对照
+
+- [x] 运行前冻结同总预算协议 `eb9c5c3`;明确沿用已知数据,不冒充新盲测。
+- [x] 两量子路径同总评价上限 120、总 shots 512;不足时显式停止。
+- [x] 加入直接/分量均匀随机对照,拆分经典结构与量子分布收益。
+- [x] 全部 360 条记录完整重放,除计时外一致;旧基准与核心实现未修改。
+- [x] 如实披露随机同样达到 220/220,低 shots 理论曲线不含训练成本。
+- [x] 82 项应用测试、98.44% 核心覆盖率、Ruff/Mypy/pip check 通过。
+- [x] 新增可执行重放校验及同总预算分析,旧结论按原预算保留。
+- [x] 本轮已推送并更新 PR #92;`a3716ed` 的个人 fork
+ [CI 35586823475](https://github.com/youshen2025/pyqpanda-algorithm/actions/runs/35586823475)
+ 全部通过(82 测试和三类演示)。官方 CI 仍待维护者批准。
+
+## 第四轮:输入与输出完整性
+
+- [x] 临时副本复现并修复同文件输出覆盖输入、求解后哈希错配问题。
+- [x] 同路径/符号链接/硬链接输出求解前拒绝,完整临时写入后替换报告。
+- [x] 输入快照供解析与哈希共同使用,保留严格 JSON 验证。
+- [x] 十项针对性回归覆盖错误路径、CRLF 字节指纹、外部修改/删除、写入与替换失败。
+- [x] 本地 92 测试、98.87% 核心覆盖率;原有 18 测试、Ruff/Mypy/pip check 通过。
+- [x] 最新 wheel 构建与隔离环境重新安装,92 测试通过,完整取舍演示成功。
+- [x] 修复已发布至 PR #92;`36adc9f` 的个人 fork
+ [CI 35588841891](https://github.com/youshen2025/pyqpanda-algorithm/actions/runs/35588841891)
+ 全部通过,92 测试、98.87% 覆盖率和三类演示成功。上游 CI 仍待批准。
+
+## 第五轮:可选无支持候选化简
+
+- [x] 评价前以 `086840d` 记录范围与专门构造的资源边界数据。
+- [x] 可选 AC-3、完整删除证据、原可行集合/成本保持证明;默认路径兼容。
+- [x] 200 个小问题及全部 V2 输入验证;18→12 比特案例的三种子实际运行与认证。
+- [x] 保留无收益实例、纯经典传播和局部有支持但全局不可行反例。
+- [x] 37 个输入完整审计及实际量子记录二次重放,非计时字段一致。
+- [x] 102 应用测试、98.92% 核心覆盖率、18 上游测试、Ruff/Mypy/pip check 通过。
+- [x] 最新 wheel 在项目内隔离环境完整 102 测试通过,新增聚焦 CI 示例。
+- [x] 优化已更新 PR #92,`4eb272a` 的个人 fork
+ [CI 35597416071](https://github.com/youshen2025/pyqpanda-algorithm/actions/runs/35597416071)
+ 全部通过(102 测试、98.92% 覆盖率和四类 CPU 示例)。上游 CI 仍待维护者批准。
+
+## 第六轮:业务成本解释与发布候选
+
+- [x] 权重与参数执行前冻结;七个权重 × 三种子,21 次真实 CPU 求解及完整重放。
+- [x] 全部九个原始可行排程跨权重不变,阈值处两方案同优并正确计分。
+- [x] 明确合成成本为偏好分;保留非最优和无可行样本的诊断分支及测试。
+- [x] 七行决策表、成本曲线、派生输入及完整量子记录;接入现有演示可选参数。
+- [x] 108 项应用测试、98.92% 核心覆盖率,Ruff/Mypy/pip check 通过。
+- [x] 干净 worktree 新建 `.venv` 安装 wheel,108 测试通过,主演示与失败状态均验证。
+- [x] 收敛现有审阅路线和讲解顺序,安装后本机全路线约 13.45 s。
+- [x] 本轮已发布至 PR #92;`3846495` 的个人 fork
+ [CI 35600289671](https://github.com/youshen2025/pyqpanda-algorithm/actions/runs/35600289671)
+ 全部通过:108 测试、98.92% 覆盖率及包含权重敏感性的全部 CPU 演示。
+ 官方 CI 仍待维护者批准,平台作品提交回执仍待核对。
+
+## 第七轮:安装兼容性与合并准备
+
+- [x] Python 3.11 / 3.13 各在干净 checkout 的项目 `.venv` 安装 wheel。
+- [x] 两版本各通过 108 项应用测试、18 项原有测试,核心覆盖率均为 98.92%。
+- [x] 核对 site-packages 导入、核心文件字节、固定依赖版本和 pip check。
+- [x] 主要演示、21 次权重敏感性及超限/不可行退出码验证通过。
+- [x] 3.11 使用独立约束文件,仅调整四项不兼容依赖;3.12 原环境保留。
+- [x] 原锁安装失败与覆盖率收集失败保留说明,不抹去失败记录。
+- [x] 扩展三版本 CI 和上游回归/失败状态检查,补充明确的安装兼容性入口。
+- [x] 发布提交 `5678e41` 的个人 fork [CI 35604218576](https://github.com/youshen2025/pyqpanda-algorithm/actions/runs/35604218576)
+ 三版本全部通过;各 108 应用测试、18 原有测试、98.92% 覆盖率及全部演示。
+- [ ] 向官方确认:未入选获奖队伍的有效提交是否提供参赛或贡献证明。
+
+最后一项只记录待确认问题,本轮未代用户联系官方,不预设证书保底。
+本轮官方 CI `35604226057` 仍待批准,个人 fork 通过不等同于官方审核通过。
+
+## 第八轮:实质边界修复与最终审查
+
+- [x] 复现原始候选过多但量子模型很小时,MILP 预算异常丢弃整个报告的问题。
+- [x] 保留实际结果,分别记录认证预算;无最优证书则 gap 为 null。
+- [x] 新增五项回归,先确认四失败、一通过,修复后全部通过。
+- [x] 完整 113 项应用测试、98.92% 覆盖率、Ruff/Mypy 通过。
+- [x] 五个既有端到端报告除计时外与修复前一致,历史实验原件保留。
+- [x] 答辩六问并入原审阅路线,更新竞争力评审的完成状态和残余限制。
+- [x] 新 wheel 干净安装:113 应用测试、18 原有测试、98.92% 覆盖率及完整演示通过。
+- [x] `e89c78b` 的个人 fork [CI 35606032579](https://github.com/youshen2025/pyqpanda-algorithm/actions/runs/35606032579)
+ 三版本各 113 应用测试、18 原有测试、98.92% 覆盖率及全部演示通过。
+
+本轮完成后结束主动功能扩张;只根据实际缺陷、真实反馈或维护者意见修改代码。
+本轮官方 CI `35606039667` 仍待批准,实际作品提交回执及证书规则仍待外部确认。
+
+## 评委入口核查(2026-09-22)
+
+- [x] 主教程优先展示完整业务案例,保留历史基线的明确链接。
+- [x] 明确当前两次运行与历史归档核验的区别,提供对应提交和独立环境命令。
+- [x] 当前版本两次各 21 条敏感性记录严格重放通过;三个历史版本 48 项指纹匹配。
+- [x] 文档本地链接、diff 检查通过;核心代码和已验证测试范围保持不变。
+
+## 试用准备(2026-09-22)
+
+- [x] 试用操作说明、现有 CSV 模板入口及空白反馈表准备完成。
+- [x] 文档全部命令以合成数据演练通过;重复初始化与导入拒绝覆盖原记录。
+- [x] 记录用户当前暂无参与者;材料与演练不计为真实试用证据。
+- [ ] 获得真实使用者确认的数据与反馈,核查模型适配及人工排法的可比性。
+- [ ] 取得明确的公开范围后,整理相应去标识证据;目前无真实材料可发布。
+
+
+## 独立库贡献检查(2026-09-22)
+
+- [x] 用户已授权继续其他代码贡献;先查重与复现,每项独立分支、聚焦提交。
+- [x] 发布 [XY 边界 #95](https://github.com/OriginQ/pyqpanda-algorithm/pull/95)、
+ [QAOA 寄存器 #96](https://github.com/OriginQ/pyqpanda-algorithm/pull/96)、
+ [QUBO 符号位 #97](https://github.com/OriginQ/pyqpanda-algorithm/pull/97)、
+ [GAS 同值解 #98](https://github.com/OriginQ/pyqpanda-algorithm/pull/98)。
+- [x] 说明复现输入、行为变化、数学语义、实际 CPU 回归及已知限制。
+- [x] Python 3.11 / 3.12 / 3.13 联合集成各 242 测试通过,应用覆盖率 98.92%。
+- [x] 应用和库修复保持独立,临时集成没有混入参赛应用分支。
+- [x] 四个库 PR 写明队伍 youshen、任务 #13 和目标 develop;标题类型符合赛题。
+- [ ] 等待上述 PR 的维护者评审、官方 CI 与合并,不将本地通过当作官方通过。
+
+这些贡献不替代应用的真实试用、平台提交回执或官方奖项判定。
+
+
+## 日历不可行输入的构造预算优化(2026-09-22)
+
+- [x] 在独立 MILP 路径从原始选项证明日历空域,保留原因、任务和原始规模。
+- [x] 6 项回归覆盖清洗/停机边界、剩余可用选项和 512 任务 CLI 报告。
+- [x] 新 wheel 隔离安装,11 个核心模块字节一致;119 应用 + 18 原有测试通过,
+ 应用覆盖率 98.93%;Ruff/format/Mypy/pip check 通过。
+- [x] 实际中等示例、成本取舍与 21 次敏感性、资源边界及不可行退出检查通过。
+- [x] 日历空域版本 `b0a92d0` 的 fork [CI 35696834868](https://github.com/youshen2025/pyqpanda-algorithm/actions/runs/35696834868)
+ 三版本各 119 应用 + 18 上游测试、98.93% 覆盖率及全部演示通过;官方仍待批准。
+
+
+## 固定零变量的冗余约束消除(2026-09-22)
+
+- [x] 仅省去日历上界为零变量的配对行,保留全部原始变量、目标和选项编号。
+- [x] 2 项新回归修复前失败;完整 121 应用测试通过,覆盖率 98.93%。
+- [x] 新 wheel 隔离安装,139 项组合测试通过(121 应用 + 18 原有),主演示及
+ 21 次敏感性运行通过;Ruff/format/Mypy/pip check 通过。
+- [x] 代码 `6c43e40` 的三版本 [CI 35697552146](https://github.com/youshen2025/pyqpanda-algorithm/actions/runs/35697552146)
+ 最终各 121 应用 + 18 原有测试通过,覆盖率 98.93%;3.11 上游随机 GAS 测试
+ 首次失败、失败任务重跑一次通过,两轮证据保留于 VALIDATION.md。
+- [x] 当前应用与四个独立修复的 Python 3.12 临时集成 250 项通过,未混入应用 PR。
+
+## 收尾状态(2026-09-22)
+
+用户要求可以结束后,停止主动功能扩展,冻结当前代码;最终提交仅补齐验证记录。
+应用 #92 与四项库贡献 #95/#96/#97/#98 已发布,当前均开放且可合并。
+参赛报名已由用户确认,队伍 youshen。平台作品提交回执尚未核验;官方 CI 批准、
+维护者评审与真实试用仍按上方未完成项保留,不将这些外部事项冒充已完成。
+下一次代码改动应由实际缺陷、维护者意见或真实试用反馈驱动。
diff --git a/Tutorials/LabScheduling/ARC_PROTOCOL.md b/Tutorials/LabScheduling/ARC_PROTOCOL.md
new file mode 100644
index 00000000..02cbd178
--- /dev/null
+++ b/Tutorials/LabScheduling/ARC_PROTOCOL.md
@@ -0,0 +1,23 @@
+# 无支持候选化简:评价前范围记录
+
+2026-09-21,队伍 youshen。本文件在首次运行新增模式评价前提交。
+这是既有应用的可选增强,不是新的调度场景或原创 AC-3 算法。
+
+- 默认 `singleton` 路径保持不变;新增 `--reduce --pruning arc`。
+- 规则:若某候选与另一任务当前域内每一个候选都冲突,则它不可能出现在
+ 任何全局可行排程中。用确定性 AC-3 队列迭代;保存当时完整对方域和逐对原因。
+- 逐个删除保持所有原始可行排程与成本;不以局部有支持推断全局可行。
+- 结构测试使用固定随机种子 0–199,最多 5 任务,覆盖空域、停机、清洗、
+ 同组和前序;枚举原始语义可行集合,再核验全部回填解及成本。
+- 回归包含:多轮支持消失、无需单候选的不可行证书、两时隙三任务的全局不可行
+ 反例、完全独立任务、空问题、无收益实例、无效模式与 CLI 参数组合。
+- 新增 `support-chain.json` 是刻意构造的资源边界演示:四工序、显式候选窗口,
+ 末工序的截止窗口排除前面晚时段。它不属于随机留出评测,不代表平均提升。
+ 对照停机前合法原预约。比较默认与 arc 的组件大小、固定项及经典最优值。
+ arc 运行真实 CPU QAOA,seed 7/19/42,p=1、2 restarts、maxiter=60、512 shots;
+ 不根据结果调参或挑种子。超出 16 比特的默认路径只报告资源限制,不强行模拟。
+- 在既有冻结 V2 全部 36 个实例上比较两种化简的资源和可行集合;不改变旧记录,
+ 不称为新留出集。不重新训练 360 次来混淆已有同预算结论。
+- 保存逐删除证据、输入/源码指纹、完整实际量子 counts 与参数;二次重放比较
+ 全部非计时字段。成功解必须通过独立原始输入 MILP 和实际样本来源检查。
+- 若结构收益有限,同样完整报告;不据此宣称量子加速或超过经典优化器。
diff --git a/Tutorials/LabScheduling/ARC_PRUNING.md b/Tutorials/LabScheduling/ARC_PRUNING.md
new file mode 100644
index 00000000..b5592e7c
--- /dev/null
+++ b/Tutorials/LabScheduling/ARC_PRUNING.md
@@ -0,0 +1,119 @@
+# 无支持候选删除:让一个超限组件进入可运行范围
+
+保留实验室故障重排方向,新增可选 `--reduce --pruning arc`。它在经典预处理中
+剔除不可能出现在任何可行排程里的候选,再按原方式运行真实 CPU QAOA。
+默认 `singleton`、旧实验和预算结论保持原貌。
+
+## 一条命令观察变化
+
+按[主教程](README.md#1-三分钟演示)安装,在仓库根目录运行:
+
+```bash
+OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 .venv/bin/python -m pyqpanda_alg.LabScheduling pyqpanda-algorithm/example/LabScheduling/data/support-chain.json --reduce --pruning arc --output reports/support-chain.json
+```
+
+预期 `status="feasible"`、`absolute_gap=0`、`quantum.best.objective=3`;
+`quantum.reduction.component_qubits=[12]`,固定变量为空,四项任务都由量子样本决定。
+删除 `--pruning arc` 重跑,将得到 `status="resource_limit"`、退出码 5:
+原有单候选传播留下一个 18 比特组件,超过本应用配置的每组件 16 比特上限。
+报告仍保留经典认证,不能把认证解当作实际量子输出。
+
+[输入](../../pyqpanda-algorithm/example/LabScheduling/data/support-chain.json)是专门构造
+的边界案例:四道按序实验共用烘箱,原预约开始于 0/2/4/6;设备在 `[0,1)`
+停机,第一单必须改约。末工序候选只到时隙 6,前三道工序中的晚窗口不能接到
+末工序,逐层删除。它不是新留出集,也不代表一般实例的平均收益。
+
+| 阶段 | 候选/量子组件 | 固定任务 | 全部可行排程数 |
+|---|---|---:|---:|
+| 原始输入 | 19 个候选,含停机无效项 | — | 15 |
+| 日历剪枝 + 原单候选传播 | 单组件 18 比特 | 0 | 15 |
+| 追加弧一致性 | 单组件 12 比特 | 0 | 15 |
+
+种子 7/19/42,p=1、每种子 2 次初始化、每次最多 60 次评价、512 shots,
+三次实际 CPU 运行均得到成本 **3**、**0** 违反、**0** 最优差距;各实际评价 120 次。
+只将第一单从 0 移到 1,偏好移动成本 1 + 改约成本 2,其余三单保持原预约。
+原预约在无故障时经独立原始语义检查合法、成本 0;停机后违反一条日历约束。
+这里的最优来自实际采样,随后独立穷举与原始输入 MILP 认证,不是经典修补。
+这些固定种子的结果不构成一般 QAOA 最优保证。
+
+## 规则、证明和审计字段
+
+设当前存活候选域为 $D_t$,编译后的禁止候选对集合为 $E$。
+对 $i\in D_t$,若存在另一任务 $u$ 满足
+
+$$
+\forall j\in D_u,\quad \{i,j\}\in E,
+$$
+
+则删除 $i$。任一全局可行排程必须从 $D_u$ 选一个候选,因而无法同时选 $i$。
+从原始域出发逐次应用这个论证,删除始终不移除任何原可行排程。
+该规则不依赖成本,因此保留全部可行排程及其原成本,包括所有并列最优解。
+空域给出不可行证据;否则进入原单候选固定和独立分量分解,沿用原变量回填证明。
+
+实现采用 AC-3 的有向弧队列:修改 $D_t$ 后重新检查可能失去支持的相邻域。
+任务顺序、队列顺序、候选遍历及审计输出都确定;用集合去重待检查的弧。
+无禁止对的任务之间所有候选互相支持,不需要加入队列。
+典型 AC-3 最坏时间为 $O(e d^3)$($e$ 为任务间有向弧数,$d$ 为最大候选域大小),
+本应用编译上限仍为 256 候选。它是经典预处理,计入求解器耗时。
+方法来自已有约束满足理论,参考
+[Mackworth, Consistency in Networks of Relations (1977)](https://www.cs.ubc.ca/~mack/Publications/b2hd-AI77.html),
+不将 AC-3 本身列为原创量子算法。
+
+`quantum.reduction.removals` 每条新增删除含:
+
+- `variable`:原始编译模型中的候选索引。
+- `rule="no_support"`:与原单候选规则的 `forced_by` 区分。
+- `against_task`:没有任何支持选择的对方任务。
+- `blockers`:删除当时对方**全部**存活候选及每对的原始冲突原因。
+
+例如工序 t2 的晚窗口与 t3 的三个候选都违反前序,先删 t2 的两个晚窗口;
+t1 的晚窗口随后失去全部支持,再向 t0 传播。见归档中的逐条原因链。
+验证器按删除顺序重建域,拒绝缺失候选、虚构冲突原因和错误空域证明。
+原模式的 `forced_by` 字段保持不变;报告 schema 仍为 2,`method` 标明使用弧一致性。
+
+Python 调用分别为 `reduce_model(model, pruning="arc")`、
+`solve_reduced(model, pruning="arc")`、`run_experiment(path, reduce=True, pruning="arc")`。
+CLI 单独传 `--pruning arc` 而没有 `--reduce` 会明确报错,不静默忽略参数。
+
+## 已知语料上的结构收益
+
+在既有 V2 的全部 36 个输入上核验两种模式的**全部原始语义可行集合和成本**。
+24 个可行、12 个不可行的结论保持一致;5 个可行实例的最大组件严格缩小,
+其余 31 个没有最大组件收益,不隐藏这些结果。
+
+| V2 实例 | 原组件比特数 | arc 组件比特数 | arc 固定任务 |
+|---|---|---|---:|
+| n3-s2-r1 | [7] | [5] | 1 |
+| n4-s2-r1 | [9] | [] | 4 |
+| n4-s2-r2 | [7] | [2] | 3 |
+| n5-s2-r0 | [12] | [11] | 1 |
+| n5-s2-r3 | [7] | [2] | 4 |
+
+`[]` 表示全部由经典传播解决,不计为量子成功。V2 本来就已满足组件上限;
+新增 18→12 案例另列,不混入随机语料平均值。两种模式可能以不同顺序发现
+同一不可行问题,空域任务名称和删除链不必相同。
+此处只比较精确结构化简,没有新跑 360 次训练,也没有借用旧结果宣称 arc 的
+量子解质量更高。预处理重算组件 QUBO/罚系数,量子训练分布不要求保持一致。
+
+## 复现与失败边界
+
+[评价前范围记录](ARC_PROTOCOL.md)提交为 `086840d`。
+[完整证据](results/support/results.json)保存 37 个输入的指纹、两种模式及其证明记录,
+还有三个种子的完整量子 counts、参数、历史和独立证书;
+[二次重放](results/support/replay.json)确认除 `_seconds` 计时字段外一致。
+实现版本为 `67d07e7`;源码与环境指纹不同会使严格重放失败,
+应使用该归档对应版本与锁定依赖。
+
+```bash
+OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 .venv/bin/python pyqpanda-algorithm/example/LabScheduling/support_pruning.py --output reports/support-pruning
+OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 .venv/bin/python pyqpanda-algorithm/example/LabScheduling/support_pruning.py --output reports/support-pruning-replay --verify-against reports/support-pruning/results.json
+```
+
+[回归测试](../../test/LabScheduling/support.test.py)额外核验种子 0–199 的 200 个小问题,
+包括日历、清洗、小组、前序、空问题/空候选和固定成本;所有原始可行排程逐一对应。
+包含两任务各有多个候选但全部互斥的不可行证书,以及**三任务共用两个时隙**:
+每个候选对任意另一任务都有支持,弧一致性不删除任何项,但整个问题不可行。
+因此局部一致性不是全局可行证书;仍必须检查真实采样结果并保留经典认证。
+
+没有通用规模保证:过大的存活组件仍报资源限制。经典求解在这些规模更快;
+本项贡献是保留可行集合的资源缩减、可检查的删除依据与完整端到端验证。
diff --git a/Tutorials/LabScheduling/BENCHMARK_PROTOCOL.md b/Tutorials/LabScheduling/BENCHMARK_PROTOCOL.md
new file mode 100644
index 00000000..6354b414
--- /dev/null
+++ b/Tutorials/LabScheduling/BENCHMARK_PROTOCOL.md
@@ -0,0 +1,32 @@
+# 增强版实验协议 v1
+
+冻结于 2026-09-21,首次运行评价集前制定。队伍 youshen。
+这是小规模合成探索评测,不是实际实验室数据,也不是正式统计功效研究。
+原来的 simple/medium 为已观察的开发样例;新增 development 仅用于检查脚本。
+评价集不用于选择默认参数;若运行发现实现错误,记录修复并全量重跑,不删除失败实例。
+
+- 生成器 `example/LabScheduling/make_corpus.py`,NumPy PCG64。
+- 12 个评价实例:3/5/6/8 任务(6/10/12/16 存活候选)×3 个拥挤参数。
+ 每格仅一个数据种子,因此不能推断整个问题分布的效果。
+- 一任务两种候选;t0 额外带一个被停机删除的原预约;所有实例保留。
+- 随机成本 0–4,变更成本 1–4;一个拥挤档含 t0→t1 前序。
+ 拥挤参数只控制设备数和候选时间窗,实际冲突密度另外报告。
+- 参数固定 p=1、COBYLA 60 次/重启、2 次重启;优化种子 0–9。
+ 不针对评价集调参,不用经典解初始化或修复量子解。
+- 正式量子训练使用精简 XY。原始 XY 在相同已训练参数比较概率和门数,
+ 不重复独立优化后混淆浮点误差带来的优化路径差异。
+- shots=8/16/32/64/128/512:对已训练分布计算解析最优命中率,另以独立种子
+ 从完整 Born 分布实际采样,并记录所有预算的可行/最优命中。
+- 对照:均匀 one-hot、确定性最低成本顺序贪心(无回溯)、原始语义穷举、
+ 从未经 QUBO 剪枝的原始选项独立建模的 SciPy/HiGHS MILP。
+- 每个实例报告:完整输入及 SHA-256、可行/最优组合数、基线状态、门数/深度、
+ 所有训练参数/history/counts、训练评价次数和耗时、分布最优/可行概率、
+ 抽样差距及失败;不可行实例的最优概率为 0,不计入可行实例胜率分母。
+- 先在实例内部汇总 10 个优化种子,再对实例等权汇总;不把 120 次训练当作
+ 120 个独立调度问题。展示种子最差情况与失败,不以均值掩盖不稳定性。
+- 采样命中曲线排除训练成本,不能表示端到端量子加速。MILP/穷举耗时独立展示。
+ 进程峰值 RSS 是整次评测累计峰值,不是单个线路内存,也不是硬件资源估计。
+- 安全化简独立用 100 个随机小问题枚举全部可行集合,验证一一回填和最优值。
+ 分解大问题的上限是最大连通组件大小,不把互不相干组件总比特数称为模拟规模。
+
+若评测量子收益不稳定,保留所有结果,将结论限定为可证明线路节省和可审计求解。
diff --git a/Tutorials/LabScheduling/BENCHMARK_V2_PROTOCOL.md b/Tutorials/LabScheduling/BENCHMARK_V2_PROTOCOL.md
new file mode 100644
index 00000000..958debc4
--- /dev/null
+++ b/Tutorials/LabScheduling/BENCHMARK_V2_PROTOCOL.md
@@ -0,0 +1,31 @@
+# 第二批独立评测协议(评价前冻结)
+
+日期:2026-09-21。旧版 12 个实例及 120 次训练保留不变。本协议补充场景覆盖,
+沿用原默认训练参数,不依据本批结果调参或筛选输入。
+
+- 生成器 `make_corpus_v2.py`:3/4/5 任务 × 3 种故障场景 × 4 个数据种子,
+ 共 36 个合成实例。种子为 `2026092300 + 100*tasks + 10*scenario + replicate`。
+- 每任务原始候选数按 2/3/4 循环,时长 1–3、设备清洗时间 0–2;3 台设备、
+ 2 个互斥小组。先生成无故障时合法的原预约,再增加单短故障、两段延长故障、
+ 或带全链前序的单故障。原候选中包含原预约,其他设备/时间选择随机生成。
+- 无故障原预约必须由原始语义检查器验证。故障后的不可行、空域、纯经典传播、
+ 有限采样失败均保留;不保证每个实例都仍需量子执行。
+- 每实例 10 个优化种子 0–9;p=1、COBYLA 两次重启、每次最多 60 评价、512 shots。
+ 分别运行未分解 XY 与现有完整化简路径,不修改算法或超参数。
+- 分解模式每个组件各用 512 shots/相同训练上限,报告总 shots/评价数及耗时。
+ 因总预算可能不同,这不是同预算胜率竞赛。分量重算罚系数和种子,分布不必相等。
+- 原始输入、日历剪枝、单候选传播、独立分量、XY 相位精简逐阶段报告资源。
+ 原始输入未编码日历无效候选,只报告候选数,不虚构其量子门数或运行耗时。
+ 门数采用固定 p=1 参数,CNOT/CRY 分列;组件深度同时报告串行和及最大值,
+ 最大值不是实际并行执行耗时。
+- 枚举原始输入全部候选组合、剪枝后全部可行位串及各分量回填集合,逐个验证
+ 可行集合与成本保持;再核对独立 MILP。结构检查含全部 36 个实例。
+- 单次最优概率累加全部并列最优态;shots 8/16/32/64/128/512 曲线仅针对已训练
+ 分布。先在每实例内平均优化种子,再等权平均可行实例;不把 360 个种子当作
+ 360 个独立问题。报告每格 4 个实例的原始统计和范围,不作总体显著性承诺。
+- 全部原始记录、输入/源码哈希、环境、阶段耗时和失败状态归档;同环境重放时
+ 只剔除时间字段后比较。训练、结构枚举和诊断分别计时,不宣称量子加速。
+
+新增 `tradeoff.json` 是明确标注的手工业务说明案例,不并入随机评价集。三单可
+整体后移,或使用高成本备用设备保留后两单。量子求解必须处理故障关联的完整
+组件;精确结果仅在求解后认证,不能用来初始化或修复量子样本。
diff --git a/Tutorials/LabScheduling/COMPATIBILITY.md b/Tutorials/LabScheduling/COMPATIBILITY.md
new file mode 100644
index 00000000..db6e16da
--- /dev/null
+++ b/Tutorials/LabScheduling/COMPATIBILITY.md
@@ -0,0 +1,80 @@
+# Python 安装兼容性
+
+推荐 Python 3.12。2026-09-21 在 Linux x86_64 上补充了 3.11 和 3.13 的
+独立 wheel 安装验证,核心代码和量子参数未修改。
+下表及机器记录保留该兼容性轮次的提交范围;后续报告预算修复的验证结果见
+[VALIDATION.md](VALIDATION.md),不把历史安装指纹更新为未经重放的新指纹。
+
+| Python | 依赖约束文件 | 应用测试 | 原有算法测试 | 核心覆盖率 |
+|---|---|---:|---:|---:|
+| 3.11.16 | `constraints-py311.txt` | 108 通过 | 18 通过 | 98.92% |
+| 3.12.3 | `constraints-py312.txt` | 108 通过 | 18 通过 | 98.92% |
+| 3.13.11 | `constraints-py312.txt` | 108 通过 | 18 通过 | 98.92% |
+
+3.12 的完整发布验证见 [VALIDATION.md](VALIDATION.md)。3.11 / 3.13 各使用干净
+worktree 内新建的 `.venv`,安装同一应用 wheel;确认导入来自 `site-packages`,
+11 个核心模块与源码字节一致。依赖版本、模块及 wheel 指纹、命令、退出码和测试
+摘要见 [compatibility.json](results/compatibility.json)。两个新增环境均通过
+`pip check`,安装版本与对应约束文件逐项一致。
+
+## 选择对应依赖
+
+默认安装命令继续使用[主教程](README.md#1-三分钟演示)中的 Python 3.12 路线。
+Python 3.11 请在仓库根目录运行:
+
+```bash
+python3.11 -m venv .venv
+.venv/bin/python -m pip install \
+ -c pyqpanda-algorithm/example/LabScheduling/constraints-py311.txt \
+ -e ./pyqpanda-algorithm \
+ -r pyqpanda-algorithm/example/LabScheduling/requirements-dev.txt
+```
+
+Python 3.13 使用 `python3.13 -m venv .venv`,随后执行主教程中的安装命令;
+`constraints-py312.txt` 的文件名保留历史含义,当前固定版本也在 3.13 上验证通过。
+比较多个 Python 版本时,应使用不同 checkout 的 `.venv`,不要覆盖已有环境。
+
+3.11 无法使用原 3.12 约束文件:实际安装预检以 `ResolutionImpossible` 失败。
+下列四项固定依赖的原版本要求 Python >=3.12;新文件仅调整这四项,其余锁定
+版本保持一致,未修改仓库全局依赖要求。
+
+| 依赖 | 3.11 固定版本 | 3.12 / 3.13 固定版本 |
+|---|---|---|
+| NumPy | 2.4.6 | 2.5.3 |
+| SciPy | 1.17.1 | 1.18.1 |
+| ContourPy | 1.3.3 | 1.4.0 |
+| Sphinx | 9.0.4 | 9.1.0 |
+
+PyQPanda3 均为 0.4.1;其发布文件含 CPython 3.11 / 3.12 / 3.13 的 Linux x86_64
+wheel,可在 [PyPI 发布文件](https://pypi.org/project/pyqpanda3/0.4.1/#files)核对。
+wheel 存在或包元数据允许安装本身不代表应用运行成功,上表记录的是实际运行结果。
+
+## 验证范围与失败记录
+
+两个新增环境均执行:medium(目标 4)、含 21 次权重敏感性运行的取舍演示、
+AC-3 资源边界案例(目标 3)、不启用 AC-3 的超限案例(退出码 5),以及不可行
+案例(退出码 3)。可行案例的实际量子结果经原始约束与经典证书验证。
+
+源码可编辑安装使用主教程的测试命令。验证已安装 wheel 的覆盖率时,应指定
+安装目录,避免测到 checkout 中未被导入的副本。例如在 Python 3.11 中:
+
+```bash
+OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 MPLBACKEND=Agg \
+ .venv/bin/python -m pytest -c test/LabScheduling/pytest.ini test/LabScheduling \
+ --timeout=60 --cov=.venv/lib/python3.11/site-packages/pyqpanda_alg/LabScheduling \
+ --cov-fail-under=95
+```
+
+本次首次用 `--cov=pyqpanda_alg.LabScheduling` 在两个新增 wheel 环境均出现
+`ImportError: cannot load module more than once per process`,各有 9 个收集错误。
+改为上述实际安装目录后完整通过;归档保留该失败,不把首次运行算作通过。
+尚未确定该工具链行为的上游根因,不据此提交算法缺陷修复或修改业务代码。
+
+CI 已配置 Ubuntu 的 3.11 / 3.12 / 3.13 矩阵,包含安装、质量检查、应用测试、
+18 项原有算法测试、成功演示与失败状态检查。远程实际结果单列于 VALIDATION.md;
+本地通过不代表官方 PR CI 已获批准。
+
+验证范围限于 Linux x86_64、标准 GIL 构建和上述依赖版本;未验证 Windows、
+macOS、ARM 或自由线程 Python。跨版本通过表示接口与业务性质成立,不表示不同
+依赖环境会产生完全相同的优化参数、counts 或耗时;严格历史重放仍应使用归档
+对应的提交与固定环境。
diff --git a/Tutorials/LabScheduling/ENHANCEMENTS.md b/Tutorials/LabScheduling/ENHANCEMENTS.md
new file mode 100644
index 00000000..9f33d92b
--- /dev/null
+++ b/Tutorials/LabScheduling/ENHANCEMENTS.md
@@ -0,0 +1,195 @@
+# 从小规模求解走向可审计的故障重排
+
+队伍:youshen。数据均为合成;CPU 无噪声模拟。增强版保留原有显式候选接口,
+新增可证明的线路精简、安全化简和原问题回填、原始数据 MILP、CSV 预约导入,
+并以冻结语料记录失败边界。贡献是这些环节在应用中的实现、证明与验证,
+不把 QAOA、XY 混合器、约束传播或 MILP 称为原创算法。
+
+## 1. 三分钟业务演示
+
+先按[主教程](README.md#1-三分钟演示)安装环境,在仓库根目录执行:
+
+```bash
+OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 MPLBACKEND=Agg .venv/bin/python pyqpanda-algorithm/example/LabScheduling/booking_demo.py
+```
+
+输出 `reports/booking-demo/`:
+
+- `outage-input.json` / `control-input.json`:CSV 展开后的完整候选,含尚未剪枝项。
+- `outage-report.json` / `control-report.json`:QUBO、传播原因、量子样本与双经典认证。
+- `changes.csv`:原预约、调整后预约、偏好成本、变更成本、原因。
+- `booking-changes.svg`:原预约与调整后的静态甘特图;红色阴影表示故障。
+
+默认结果:停机后目标值 **6**、**3** 张预约改动、**0** 约束违反;
+无故障对照目标值 **0**,全部保留。原问题 10 个候选,日历剪枝后 9 个;
+传播固定三个烘箱任务,删除两个不兼容候选,剩余一个 **4 比特**量子组件。
+四比特组件实际运行 QAOA;传播解决的任务明确记作经典预处理。
+烘箱上的后两张预约原本没有碰到停机,但被迫连锁后移,不能提前冻结它们。
+
+
+
+导入模板:[chain.csv](../../pyqpanda-algorithm/example/LabScheduling/data/bookings/chain.csv),
+日历:[outage.json](../../pyqpanda-algorithm/example/LabScheduling/data/bookings/outage.json)。
+CSV 必须使用模板列序,`allowed_resources` 以 `|` 分隔,
+`earliest/latest` 是含端点的整数开始窗口,`step >= 1`。
+每个设备与窗口网格的笛卡尔积全部展开;`shift_cost * abs(start-original_start)`
+是偏好成本,再按是否改约加 `change_cost`。设备兼容性由允许设备列显式表达。
+CSV 最多展开 256 个原始候选;超限报错,不能静默删候选。
+这是透明导入入口,尚无真实用户试用或隐私数据。
+
+## 2. 删除 XY 相位里的恒零罚项
+
+设任务域为 $D_t$,$N_t=\sum_{i\in D_t}x_i$,完整 QUBO
+$Q=C+A\sum_t(N_t-1)^2+A\sum_{(i,j)\in E}x_ix_j$。
+W 初态在 $N_t=1$ 的子空间中;对角成本相位和域内 XY 交换都保持每个 $N_t$。
+因此每一步演化可达的子空间内,$\sum_t(N_t-1)^2=0$。
+将成本相位换为 $C+A\sum_E x_ix_j$,保留同一个缩放 $A$,
+在无噪声、同参数、相同初态与混合器条件下得到相同的测量分布。
+Ising 实现略去的常数只影响全局相位。
+
+`build_circuit(..., phase_mode="auto")` 默认仅对 XY 精简;`"full"` 保留旧相位。
+X 混合器会离开恰选一次子空间,必须使用完整相位,auto/full 对 X 相同。
+完整 `Model.energy`、罚系数、优化损失和审计表不变。
+优化器可能因浮点末位差异改变搜索路径,因此比较相同参数的线路分布,
+不要求两个独立优化过程最终参数逐位相等。
+
+每个被删除的同任务 ZZ 项节省本实现中的两个 CNOT,
+节省数为 $2\sum_t\binom{|D_t|}{2}$。这是原生 PyQPanda3 操作计数,
+CRY 单独保留,不等于面向某台硬件完整分解后的两比特门数。
+不承诺带噪硬件等价,深度也未必严格下降。
+
+| 已有样例,p=1 | CNOT full→auto | 原生深度 full→auto |
+|---|---:|---:|
+| simple | 34→22 | 36→24 |
+| medium | 78→54 | 45→35 |
+
+数学思想参考 [XY mixers, Wang 等](https://arxiv.org/abs/1904.09314)。
+该项创新价值在于将约束子空间性质用于可审计的应用线路编译,不是新的通用混合器。
+
+## 3. 安全传播、分量与回填
+
+调用 `reduce_model(model)` 或 CLI 加 `--reduce`:
+
+1. 某任务只有一个候选时,它在所有可行排程中必选;删除与它冲突的其他候选。
+2. 重复直到没有新单候选。若出现空域,返回 `infeasible_task` 及删除链,证明不可行。
+3. 将未固定任务按“仍存在不兼容候选对”连接成图,取连通分量。
+4. 每分量使用原问题的资源、候选与内部前序重建 QUBO。
+ 删除的跨分量前序已对所有存活候选自动成立,否则会存在连边。
+5. 每分量独立运行真实 CPU QAOA,将实际采到的最佳位串映回原变量,插回固定选择,
+ 再按原问题约束检查。报告还在原始未剪枝输入上独立检查最终预约。
+
+**等价性**:删除规则只排除与必选候选冲突的选择,所以所有原可行排程保留;
+固定点后没有跨组件禁止对,组件可行排程的笛卡尔积加固定选择,恰好等于原可行集合。
+成本可加,$C_{original}=C_{fixed}+\sum_k C_k$,故组件精确最优值可相加。
+QAOA 没有最优保证,组件近似解拼接后也不获得最优保证。
+独立组件重算罚系数,因此不声称分解前后的量子分布相同。
+
+`reduction.removals` 记录被删变量、`forced_by` 变量和冲突原因;
+`component_to_original` 是回填映射,`fixed_cost` 单列固定成本。
+单次从每个组件独立抽一份的可行概率为各组件可行概率之积;
+报告中的该乘积不是“各自挑完最佳样本后的最终成功率”。
+shots 是**每个组件**的预算,`total_shots=组件数×shots`。
+与未分解模型比较时必须计算总预算。
+
+单组件最多 16 比特;总候选可以超过 16,但不能把组件总和称为模拟器处理的量子规模。
+大组件返回 `resource_limit`,CLI 退出码 **5**;不会截断或改用经典解假装量子输出。
+若传播已解决全部任务,状态为 `classical_propagation`,线路评价次数为 0。
+局部一致性不保证全局可行;默认路径只做单候选传播,没有支配剪枝。
+后续加入可选 `--reduce --pruning arc`,按完整对方域删除无支持候选;
+证明、审计字段、超限边界演示与已知语料对照见[弧一致性说明](ARC_PRUNING.md)。
+本页历史评测仍对应默认单候选模式。
+
+## 4. 独立 MILP 与证书边界
+
+`solve_milp(problem, time_limit=30)` 从**原始未剪枝候选**独立建模:
+每任务选择和为 1,日历无效选项的变量上界为 0,原始语义不兼容对满足
+$y_i+y_j\le1$,目标为原始偏好与改约成本。它不导入 QUBO 编译器、冲突图或能量。
+SciPy/HiGHS 求解后,以 `validate_assignment(problem, choices)` 再检查原始预约。
+MILP 实现与其检查器共享原始语义辅助函数,但与 QUBO 编译/评估独立;
+小实例还与完全枚举交叉验证,避免以一份编码自证正确。
+
+若某项任务的全部原始候选都违反设备日历,独立检查即可证明不可行,无需构造
+两两约束或调用 HiGHS。此时报告保留 `infeasible_task`、原因和原始变量数,
+`constraints=0`,没有 `solver_status`;`best`、`dual_bound`、`gap` 均为 null。
+这项提前判定重新检查原始候选,不读取 QUBO 的剪枝结果。只要每项任务仍有
+日历可用选项,就继续完整建模;不会据此宣称资源冲突或先后关系一定可行。
+
+对仍可求解的问题,保留所有原始变量、上界和选项编号,但只为日历可用选项
+构造两两约束:若上界已令 $y_i=0$,则 $y_i+y_j\le1$ 已由 $y_j\le1$ 保证。
+省去这类冗余行不改变可行集合、目标或回填索引,也不复用 QUBO 冲突图。
+
+状态分为 `optimal`、`infeasible`、`limit`、`error`。
+达到时间限制时即便有可行 incumbent,也不标为最优;`dual_bound` 和 `gap`
+分别返回,非有限/不可用值为 null。`time_limit` 仅限制求解器时间,
+不包括模型构造。最多 2048 个原始 MILP 候选;配对构造 $O(n^2)$。
+SciPy 的状态定义见[官方 milp 文档](https://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.milp.html)。
+
+报告的枚举上限仍为一百万组合,超过则 `exact.status="budget_exceeded"`;
+若原始候选超过 2048,报告在构造 MILP 前记录 `milp.status="budget_exceeded"`,
+同时列出原始候选数和上限,`best`、`dual_bound`、`gap` 均为 null。
+例如停机/时间范围剪枝可将 2049 个原始候选压到 2 比特,不能因为认证基线
+超预算就丢弃已完成的量子结果。直接 `solve_milp` API 的超限异常保持不变。
+只有精确枚举或 MILP 的最优证书可用于计算最优差距,未认证时 gap=null。
+不可行和有限抽样失败是不同状态。原生求解器有限精度证书不是形式化机器证明。
+
+经典扩展检查:
+
+```bash
+OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 .venv/bin/python pyqpanda-algorithm/example/LabScheduling/classical_scaling.py
+```
+
+20/35/50 任务的三种合成烘箱链,MILP 目标值为 40/71/100,均返回 optimal。
+其最大连接组件分别为 59/104/149 候选,**没有执行量子求解**;
+用于展示经典基线和资源边界,不是量子规模结果,也不代表一般调度性能。
+
+## 5. 冻结语料与诚实比较
+
+[实验协议](BENCHMARK_PROTOCOL.md)在首次评价前冻结生成规则、12 个实例和 10 个优化种子。
+[manifest](../../pyqpanda-algorithm/example/LabScheduling/data/corpus/manifest.json)
+含输入及生成器 SHA-256;开发样例与评价实例分开。
+每个规模/拥挤格只有一个数据种子,因此该评价仍是探索性结果。
+
+```bash
+# 如需重建,生成器必须匹配冻结版本;不要根据求解结果筛选输入。
+.venv/bin/python pyqpanda-algorithm/example/LabScheduling/make_corpus.py
+OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 .venv/bin/python pyqpanda-algorithm/example/LabScheduling/stress_benchmark.py --output reports/lab-enhanced
+.venv/bin/python pyqpanda-algorithm/example/LabScheduling/summarize_benchmark.py reports/lab-enhanced --output reports/lab-evidence
+```
+
+120 次训练全部保留,穷举与原始 MILP 一致:9 个实例可行,3 个不可行。
+可行实例中 86/90 个训练种子的单次最优概率高于均匀 one-hot,另 4 个退化;
+9 个实例内部的种子平均值均较高,但不能把 90 个种子当作 90 个独立问题。
+最差的 16 比特稀疏实例种子单次最优概率约 0.00077,低于均匀的 0.00391。
+经典基线在这些规模更快,不宣称量子加速或普遍优势。
+
+
+
+
+
+曲线计算 $P(hit\mid S)=1-(1-p_{opt})^S$,累计**全部并列最优态**的概率。
+先在实例内平均 10 个种子,再在 9 个可行实例间等权平均;不可行实例仍留在原始记录。
+交叉标记来自独立采样流的实际抽样;这些曲线都排除训练成本。
+`quantum.runtime_seconds` 含训练、最终采样及求解器内可行性诊断,
+额外分布认证与对照线路计入 `diagnostic_seconds`。
+全程峰值 RSS 是 Linux 进程的累计高水位,不是某一线路或硬件内存需求。
+
+查看[逐实例表](results/enhanced/SUMMARY.md)、
+[120 次原始记录](results/enhanced/runs.jsonl)、
+[代码与环境指纹](results/enhanced/provenance.json)。
+原来的三种子图表位于 `results/`,是 schema 1 / full 相位的历史基线;
+增强版 schema 2 默认精简 XY,不要求优化历史与旧版逐位相同。
+
+## 6. 测试与后续工作
+
+除原有 QUBO/Ising 全状态验证外,新增:100 个随机小实例对所有可行排程做无损回填,
+再与原始 MILP 比较;simple/medium 各 30 组随机角度的 p=1/2/3 实际 CPU 等价检查;
+单候选混合域、连锁改约、多个组件、组件超限、独立证书状态、CSV 错误输入和成本展开。
+全部命令及安装证据见[验证记录](VALIDATION.md)。
+
+下一步需要真实实验室的匿名数据与用户试用反馈,以及更多每格数据种子、
+更大连通组件的资源策略;目前没有用真实需求反馈或通用量子优势来包装合成实验。
+保留已有安全证明,比继续堆叠算法变体更有利于维护者理解和合并。
+
+后续已补充[第二批异构评测](EVALUATION_V2.md):36 个独立输入、每格 4 个数据种子、
+360 条配对运行记录,以及三项改约决策全部留在量子组件内的业务案例。
+上述 120 次归档仍保留原貌;真实用户验证和更大连通问题仍是限制。
diff --git a/Tutorials/LabScheduling/EVALUATION_V2.md b/Tutorials/LabScheduling/EVALUATION_V2.md
new file mode 100644
index 00000000..f6e08270
--- /dev/null
+++ b/Tutorials/LabScheduling/EVALUATION_V2.md
@@ -0,0 +1,148 @@
+# 异构预约与逐阶段对照
+
+本轮保持应用算法与默认参数不变。第一批 12 个实例/120 次训练继续保留,
+第二批协议和生成数据在运行评价前以提交 `94efa84` 冻结。
+所有数据仍为合成,没有据此声称真实业务部署或量子加速。
+
+## 覆盖了什么
+
+3/4/5 任务 × 单短故障/双延长故障/前序链故障 × 4 个独立数据种子,共 36 个实例。
+每任务 2–4 个原始候选、时长 1–3、清洗时间 0–2,含跨设备选择和小组互斥。
+所有无故障原预约均独立验证为合法且成本为 0,再加入故障;故障后的实例不筛选。
+实际得到 24 个可行、12 个不可行问题,每个运行种子 0–9 的未分解和化简两条路径。
+
+共 360 条配对种子记录,不等于 720 次实际量子训练:原始路径的空域以及化简后的
+不可行或完全固定情形不会启动量子线路;一个分解请求也可能训练多个组件。
+确切执行数、状态及逐实例预算见 [aggregate.json](results/v2/aggregate.json)
+和 [summary.csv](results/v2/summary.csv)。
+
+## 主要结果与退化
+
+- 独立原始 MILP 与全部组合枚举对 36 个实例的可行性/最优值一致;
+ 日历剪枝与分量回填前后的**全部可行集合和成本**也逐个一致。
+- 可行问题的 240 个未分解训练种子中,206 个最优态概率高于均匀 one-hot,
+ 34 个更低。`n4-s0-r2` 连实例内 10 个种子的平均值也低于均匀基线,明确保留。
+- 512 shots 下,未分解路径 237/240 次命中最优;化简路径 240/240 次命中,
+ 其中 20 次是纯经典传播,且多个组件会增加总 shots/训练预算。
+ **不能将这两个命中率作为同预算量子优势证据。**
+- 12 个不可行问题全部被传播识别;未分解路径中 6 个因空域直接停止,另外 6 个
+ 仍执行量子训练后没有可行样本。后者由 MILP/穷举确认不可行,不能仅靠抽样失败认证。
+- 未分解已训练线路 full/auto 同参数最大概率差为 `4.9961e-16` 以下。
+ 概率比较基于无噪声 CPU,不延伸为真机等价结论。
+- 一次完整评价约 97.71 秒,含双路径训练、独立证书、组合证明和额外分布诊断;
+ 具体硬件/版本/代码指纹见 provenance。时间仅是本机观测,非性能承诺。
+- 第二次完整重放的 36 份实例记录、360 份配对运行记录在仅剔除 `_seconds`
+ 字段后完全一致,详见 [replay.json](results/v2/replay.json)。
+
+
+
+每格只含 4 个独立问题,故只提供逐实例结果及格内范围;一些故障格可行问题更少。
+低 shots 曲线和独立抽样记录保存于每次训练的 `direct_metrics`,均排除训练成本。
+
+## 资源节省来自哪一步
+
+以固定登记的 `n5-s0-r0` 为例:
+
+| 阶段 | 候选/量子资源 | 原生 CNOT(p=1) |
+|---|---|---|
+| 原始预约输入 | 14 个候选 | 不计:尚未编码日历无效候选 |
+| 日历剪枝 | 13 比特 | 62 |
+| 单候选传播 | 9 个剩余变量 | 见逐阶段记录 |
+| 独立分量 | 2、5、2 比特;最大组件 5 比特 | 合计 29 |
+| XY 精简相位 | 相同分量与变量 | 合计 17 |
+
+单候选传播和分解改变模型罚系数及随机种子,不要求与原模型有相同量子分布;
+只证明原问题可行集合/成本保持。分量是顺序执行的,组件最大深度仅描述资源上限。
+某些问题分解后总训练次数或总运行时间上升;表格保留这些情况,不只展示成功节省。
+
+## 业务案例:由量子组件完成实际取舍
+
+[tradeoff.json](../../pyqpanda-algorithm/example/LabScheduling/data/tradeoff.json)
+包含三个有前序关系、时长不同的实验,烘箱每次清洗 1 时隙。故障使 A 的原预约失效。
+候选允许三单连锁后移(成本 12、改动 3 单),或使用昂贵备用设备(成本 14、改动 1 单)。
+这也说明“加权成本最小”与“改约数量最少”不是同一目标。
+
+剪枝后域大小为 2/3/3,没有单候选,三个任务仍在同一 8 比特组件。实际默认采样
+选择成本 12 的解;完整 QUBO/精简相位的 CNOT 为 37/23,原生深度为 42/23。
+无故障对照成本 0。所有 9 个可行方案见 [alternatives.csv](results/v2/tradeoff/alternatives.csv),
+采样证据、独立证书与图示见 [业务结果目录](results/v2/tradeoff/)。
+
+## 复现
+
+安装依赖后,在仓库根目录执行:
+
+```bash
+OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 MPLBACKEND=Agg .venv/bin/python pyqpanda-algorithm/example/LabScheduling/tradeoff_demo.py
+OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 MPLBACKEND=Agg .venv/bin/python pyqpanda-algorithm/example/LabScheduling/benchmark_v2.py --output reports/lab-v2
+OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 MPLBACKEND=Agg .venv/bin/python pyqpanda-algorithm/example/LabScheduling/summarize_v2.py reports/lab-v2
+```
+
+生成器和输入内容不匹配冻结哈希时,评价入口直接报错。原始输出分为
+`instances.jsonl`(每实例结构/经典证书)与 `runs.jsonl`(每种子两条求解路径),
+以避免在每个种子中复制不变的输入与证书。全部运行记录均提交,未删去退化或失败项。
+
+## 改约成本敏感性:什么时候值得使用备用设备
+
+使用已有三工序案例,保持全部约束与候选不变,只把每项任务的改约成本统一设为
+`w=0,1,2,3,4,5,6`。这是已知开发案例上的业务解释,不是新的留出评测或实际价格调查。
+[协议](SENSITIVITY_PROTOCOL.md)与[输入及参数网格](../../pyqpanda-algorithm/example/LabScheduling/data/sensitivity.json)
+在首次运行前以 `5ebcdc3` 提交冻结。原来的默认权重仍为 2。
+
+每项任务 i 的成本为偏好费用加改约费用,
+`C(w) = sum(preference_i) + w * changed_tasks`。
+“整体后移”的偏好费用合计 6、改约三单,因此 `C_shift=6+3w`;
+“备用设备”的偏好费用合计 12、改约一单,因此 `C_backup=12+w`。
+二者在 `w=3` 相交。我们还枚举了全部原始候选组合,确认七组输入都有相同的
+**9 个可行排程**;它们的完整成本曲线也纳入核验,不只比较这两个预选方案。
+
+| 每单改约成本 w | 认证最优成本 | 认证最优决策 | 改约数量 | 三种子实际目标 |
+|---:|---:|---|---|---|
+| 0 | 6 | 整体后移 | 3 | 6 / 6 / 6 |
+| 1 | 9 | 整体后移 | 3 | 9 / 9 / 9 |
+| 2 | 12 | 整体后移 | 3 | 12 / 12 / 12 |
+| 3 | 15 | 整体后移或备用设备,同优 | 3 或 1 | 15 / 15 / 15 |
+| 4 | 16 | 备用设备 | 1 | 16 / 16 / 16 |
+| 5 | 17 | 备用设备 | 1 | 17 / 17 / 17 |
+| 6 | 18 | 备用设备 | 1 | 18 / 18 / 18 |
+
+
+
+量子设置统一为 seed 7/19/42、p=1、2 restarts、maxiter=60、512 shots、XY、
+默认单候选化简;三个任务始终留在一个 8 比特组件内,无固定任务。
+全部 **21 次**实际量子结果零违反、最优差距为 0,随后经独立穷举与原始 MILP 认证。
+图左灰线是全部可行排程的成本,星号是经典认证;图右是实际量子 gap,
+重合点均保留。不能把图左解析曲线当作量子采样结果。
+
+在 `w=3`,全枚举确认 `[1,1,1]` 与 `[2,0,0]` 两个原始候选索引组合都最优。
+本次三个种子的最终选中解均为备用设备方案;这不排除整体后移同样最优,
+也不表示量子结果均匀覆盖所有同优方案,或把“少改约”作为了额外优化目标。
+评分接纳任意同优排程;报告重放则要求实际记录一致,二者是不同要求。
+
+这解释了配置权重的业务含义:越重视避免改约,越可能接受更贵的备用设备。
+`w=3` 是这个合成案例的阈值,成本单位是偏好分;不把它推广为真实实验室价格。
+21 次命中也不改变[同预算实验](MATCHED_BUDGET.md)中经典随机持平或胜出的结论,
+不声称量子加速或对任意问题有最优保证。
+
+在原演示后加一个参数即可生成甘特图、成本曲线、七行表和全部记录:
+
+```bash
+OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 MPLBACKEND=Agg .venv/bin/python pyqpanda-algorithm/example/LabScheduling/tradeoff_demo.py --sensitivity
+```
+
+结果位于 `reports/tradeoff-demo/sensitivity/`:`summary.csv` 是七行决策表,
+`inputs/` 是七个派生输入,`results.json` 包含全部实际参数、counts、状态、
+分项成本、认证、源码/输入指纹和环境;压缩排版以减少原始归档 diff。
+基础 `tradeoff.json` 不被修改。有限抽样失败或非最优结果会保留,业务字段在无
+可行样本时为 null,不以经典解替换;测试专门覆盖这些分支。
+
+```bash
+OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 MPLBACKEND=Agg .venv/bin/python pyqpanda-algorithm/example/LabScheduling/tradeoff_demo.py --sensitivity --output reports/tradeoff-replay --verify-sensitivity reports/tradeoff-demo/sensitivity/results.json
+```
+
+第二次完整执行中七个输入、21 次参数/counts、全部可行集合与成本、源码/环境
+指纹均复现;仅忽略 `_seconds` 字段,见[重放记录](results/sensitivity/replay.json)。
+上述命令比较当前环境内的两次运行;若要严格核对已提交的历史归档,请按
+[源码版本与环境说明](REVIEW_GUIDE.md#当前运行与历史归档如何核对)选择对应提交。
+[归档决策表](results/sensitivity/summary.csv)与[完整记录](results/sensitivity/results.json)
+对应实现 `51a5067`,可按其源码与锁定环境复现。
+该增强仅涉及示例、测试、文档和聚焦 CI,核心包与默认量子参数不变。
diff --git a/Tutorials/LabScheduling/MATCHED_BUDGET.md b/Tutorials/LabScheduling/MATCHED_BUDGET.md
new file mode 100644
index 00000000..b2d29feb
--- /dev/null
+++ b/Tutorials/LabScheduling/MATCHED_BUDGET.md
@@ -0,0 +1,82 @@
+# 同总预算与结构化随机基线
+
+本补充评价回答两个具体问题:分量量子求解的表现是否依赖额外预算?
+化简与分解的收益,是否也能由经典随机采样获得?
+[协议](MATCHED_BUDGET_PROTOCOL.md)在执行前以 `eb9c5c3` 提交冻结,
+实现为 `b140dab`。沿用已经公开的第二批输入,属于补充分析,不是新盲测。
+核心应用与旧归档保持不变。
+
+## 对照设计
+
+每实例十个种子,两条量子路径总训练评价上限均为 120,总最终采样预算均为
+512。分量路径把每次重启的 60 次评价和 512 shots 按商余数均分,例如三分量
+各用 20 次评价 × 两次重启,采样数为 171/171/170。分配不参考精确解或训练结果。
+单分量沿用主种子,保证模型未变化时两路径完全一致;多分量使用固定子种子。
+
+两条纯经典基线分别在原模型和相同精确化简后的分量中均匀采样 one-hot 排程,
+使用同样的总 shots 和分配规则。所有路径均只选择实际样本,不用经典最优解修补。
+四条路径结束后才做精确认证及分布诊断。预算不足、不可行、纯经典传播均显式保留。
+
+## 结果及边界
+
+36 个实例中,22 个可行且仍需量子求解,2 个由经典传播完全解决,12 个不可行。
+下表只统计前 22 个实例 × 十种子,避免把纯经典成功算作量子成功:
+
+| 路径 | 实际采到最优 / 220 | 平均训练评价数 | 平均求解时间 / 秒 |
+|---|---:|---:|---:|
+| 直接 QAOA | 217 | 119.73 | 0.1981 |
+| 分量 QAOA,同总预算 | 220 | 119.93 | 0.1125 |
+| 直接均匀随机 | 220 | 0 | 0.0132 |
+| 分量均匀随机,同总预算 | 220 | 0 | 0.0071 |
+
+**512 shots 下,经典随机基线也全部采到最优,不能据此宣称量子优于随机。**
+QAOA 的经典训练与模拟成本明显存在。时间来自一次本机串行运行,包含各自采样和
+可行性诊断,不包括后来统一的精确认证/分布诊断;预先编译与化简是共用准备步骤,
+不计入任一路径计时。这不是完整应用的端到端测速,更不是硬件加速结论。
+相等的是允许预算上限,COBYLA 实际评价数和不同宽度线路成本并不完全相同。
+
+在每实例内平均十种子,再对这 22 个实例等权平均,可得到训练后理论命中曲线:
+
+| 总 shots | 直接 QAOA | 分量 QAOA | 直接随机 | 分量随机 |
+|---:|---:|---:|---:|---:|
+| 8 | 0.5657 | 0.7138 | 0.3455 | 0.4843 |
+| 16 | 0.7282 | 0.8427 | 0.5246 | 0.6942 |
+| 32 | 0.8438 | 0.9215 | 0.7099 | 0.8578 |
+| 64 | 0.9098 | 0.9657 | 0.8571 | 0.9480 |
+| 128 | 0.9461 | 0.9893 | 0.9502 | 0.9860 |
+| 512 | 0.986578 | 0.999852 | 0.999787 | 0.999963 |
+
+这些是已训练无噪声分布上的条件概率,包含全部并列最优解,不是低 shots 的实际
+重复抽样成绩,也没有扣除训练成本。低采样预算下的平均分布收益不保证逐例改善:
+16 shots 时 `n4-s0-r3` 的分量 QAOA 均值低于分量随机;32 shots 时还包括
+`n4-s0-r0`。512 shots 时分量 QAOA 的整体条件均值也略低于分量随机。
+完整逐例计数、失败、参数与 counts 见[结果表](results/matched/SUMMARY.md)。
+
+### 为什么分量曲线使用乘积
+
+固定训练后的第 j 个分量最优概率为 p_j,获得 B_j 次独立采样。该分量至少
+获得一个最优样本的概率为 `1-(1-p_j)^B_j`。精确分解后总成本是固定偏移加各分量
+成本,因此组装解全局最优当且仅当每个分量最优。独立采样给出
+`product_j[1-(1-p_j)^B_j]`,并满足 `sum B_j=B`。
+这与单次组装概率 `product_j p_j` 不同,也不能当作 B 次完整排程采样。
+分量随机基线采用同一公式,才能识别组合结构本身带来的收益。
+
+## 复现
+
+按主教程安装后,在仓库根目录运行;本机每次完整 360 记录约 91 秒,机器不同会变化:
+
+```bash
+OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 .venv/bin/python pyqpanda-algorithm/example/LabScheduling/matched_budget.py
+OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 .venv/bin/python pyqpanda-algorithm/example/LabScheduling/matched_budget.py --output reports/lab-matched-replay
+OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 .venv/bin/python pyqpanda-algorithm/example/LabScheduling/summarize_matched.py reports/lab-matched --replay reports/lab-matched-replay
+```
+
+比较器核对输入/源码/环境指纹,只忽略以 `_seconds` 结尾的计时字段;参数、
+counts、目标、状态及理论曲线必须全部一致。归档[重放记录](results/matched/replay.json)
+确认历史 360 条记录通过。上述命令比较当前版本的两次运行;严格核对历史归档时,
+应使用[匹配的源码提交与环境](REVIEW_GUIDE.md#当前运行与历史归档如何核对)。
+新增测试检查预算守恒、不足时停止、单分量公平性、真实 CPU
+采样来源、原变量回填、不可行域及比较器拒绝被修改的样本。
+
+本轮贡献是消除评价中的预算混淆和加强可核查性。尚未获得真实业务数据或硬件
+结果,不根据这批已知合成数据的补充分析扩大奖项、泛化或量子优势承诺。
diff --git a/Tutorials/LabScheduling/MATCHED_BUDGET_PROTOCOL.md b/Tutorials/LabScheduling/MATCHED_BUDGET_PROTOCOL.md
new file mode 100644
index 00000000..038ce5f3
--- /dev/null
+++ b/Tutorials/LabScheduling/MATCHED_BUDGET_PROTOCOL.md
@@ -0,0 +1,31 @@
+# 同总预算补充对照协议
+
+2026-09-21,运行前提交冻结。沿用第二批已公开的 36 个输入与种子 0–9;
+这属于已知数据上的补充分析,不是新的盲测集,也不改变旧协议或旧结果。
+
+1. 直接路径:XY、p=1、两次重启,每次最多 60 次目标函数评价,总计上限 120;
+ 最终采样总预算 512。重新运行,不从旧记录挑选最佳参数或种子。
+2. 分量路径:先使用原有精确化简。若有 k 个分量,按稳定分量顺序把 60
+ 个每次重启评价额度、512 次采样分别商余数均分,前面的分量获得余数。
+ 每分量两次重启,所以总训练评价上限仍为 120,总采样数严格为 512。
+ 不按精确解、训练质量或问题难度自适应分配。单分量继承主种子,以使
+ 无化简、无分解时与直接路径完全相同;多分量用 SeedSequence 子种子。
+3. 保留全部不可行、纯经典、超限和无可行样本状态。纯经典传播使用零量子
+ 预算,单独统计。若预算不足以运行所有分量,报告 budget_insufficient,
+ 不偷偷增加预算。本批最多三分量,默认预算可覆盖。
+4. 增加两个纯经典随机对照:原模型均匀 one-hot,以及同样精确化简后每分量
+ 均匀 one-hot。采用相同总采样预算及分配规则,固定独立随机流;均无量子
+ 训练。各分量只选实际样本,再回填,不能调用最优解修复。
+5. 所有四条路径完成后才计算精确最优值与分布诊断。实际结果保留 counts、
+ 采样最优值、可行性与绝对差距。按实例先平均十个种子,再汇总实例;
+ 22 个仍需量子的可行实例与两个纯经典可行实例分开报告。
+6. 对已训练分布计算总 shots 为 8/16/32/64/128/512 的理论命中曲线。
+ 直接路径为 1-(1-p)^B;独立分量组装最优解的概率为
+ product_j[1-(1-p_j)^B_j],各 p_j 包含全部并列最优态,sum B_j=B。
+ 均匀分量基线也采用该公式。零分量可行时成功率为 1,明确属于经典传播。
+ 这些曲线不是重新训练或实际低 shots 试验,也不是量子优势证明。
+7. 报告实际目标函数评价数、采样数与串行墙钟时间。相等的是允许的预算上限;
+ COBYLA 可提前结束,且不同宽度线路的单次模拟成本不同,因此不宣称
+ 实际计算量或端到端耗时相同。训练后诊断和经典认证耗时单列。
+8. 归档全部 360 条配对记录、源码/输入/协议指纹与环境。完整重跑一次,
+ 仅排除以 `_seconds` 结尾的计时字段,比较其余记录。任何退化结果照实保留。
diff --git a/Tutorials/LabScheduling/README.md b/Tutorials/LabScheduling/README.md
new file mode 100644
index 00000000..66388af5
--- /dev/null
+++ b/Tutorials/LabScheduling/README.md
@@ -0,0 +1,354 @@
+# LabReschedule:基于 QUBO 的共享实验室最小扰动重排
+
+一台仪器临时停机,哪些实验必须改约,哪些预约可以保留?本应用把设备预约、
+多时隙实验、清洗占用、小组冲突和工序先后关系编译为 QUBO,在 **PyQPanda3
+CPUQVM** 上运行 QAOA,并用独立穷举与原始输入 MILP 给出可核查的最优性和不可行性结论。
+
+面向 2026 本源杯开源创新赛道。数据均为合成场景,没有学生个人信息。
+本项目交付的是可复用 Python 模块、命令行、输入样例、测试和实验记录。
+小规模经典算法更快;这里验证量子建模及约束保持线路,不宣称量子加速。
+
+首次阅读建议从[五分钟审阅路线](REVIEW_GUIDE.md)开始。下面的业务案例中,烘箱
+故障后,三个实验可以整体后移,也可以租用备用设备来少改两单。成本权重决定
+哪种方案更合适;三个决策均保留在 8 比特量子组件中。
+
+
+
+图为已归档的默认案例运行,成本 12、零违反;运行 `tradeoff_demo.py` 可生成
+当前版本的图与原始报告。完整比较、九种可行排程和权重切换见
+[业务取舍与成本分析](EVALUATION_V2.md)。
+
+| 要核验什么 | 入口 |
+|---|---|
+| 安装、JSON 输入、QUBO 推导与测试 | 本页第 1–8 节 |
+| CSV 连锁改约、XY 相位精简、分量回填证明 | [增强教程](ENHANCEMENTS.md) |
+| 相同训练与采样预算下的量子/随机比较 | [同预算评价](MATCHED_BUDGET.md),含随机持平或胜出的结果 |
+| 构造案例的 18→12 比特化简及适用边界 | [可选弧一致性](ARC_PRUNING.md) |
+| 当前版本重复运行与历史归档的对应提交 | [重放说明](REVIEW_GUIDE.md#当前运行与历史归档如何核对) |
+| 测试、安装兼容性与 CI 的实际验证范围 | [验证记录](VALIDATION.md)、[安装兼容性](COMPATIBILITY.md) |
+| 使用自己的预约数据并记录使用反馈 | [小范围试用流程](USER_TRIAL.md),目前仅完成合成演练 |
+
+第一版的[历史开发基线图](results/overview.svg)保留供追溯。
+
+## 1. 三分钟演示
+
+在仓库根目录运行。推荐 **Python 3.12**(实际验证 3.12.3,WSL Linux x86_64)。
+Python 3.11、3.12、3.13 均已通过 Linux x86_64 完整应用测试及 wheel 验证。
+3.11 需要单独的约束文件,3.13 可沿用下方约束;具体版本与边界见
+[安装兼容性](COMPATIBILITY.md)。首次下载依赖所需时间取决于网络。
+
+```bash
+python3.12 -m venv .venv
+.venv/bin/python -m pip install \
+ -c pyqpanda-algorithm/example/LabScheduling/constraints-py312.txt \
+ -e ./pyqpanda-algorithm \
+ -r pyqpanda-algorithm/example/LabScheduling/requirements-dev.txt
+```
+
+安装后,一条命令完成读入、剪枝、QUBO、量子求解、经典认证与报告保存:
+
+```bash
+OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 .venv/bin/python -m pyqpanda_alg.LabScheduling pyqpanda-algorithm/example/LabScheduling/data/medium.json --output reports/medium.json
+```
+
+应看到 JSON 中 `status="feasible"`、`quantum.best.objective=4`、
+`quantum.best.violation_count=0`、`exact.best.objective=4`、`absolute_gap=0`。
+默认 seed=7、p=1、512 次最终采样、2 次参数初始化、每次至多 60 次优化评估。
+运行时间在本机为数秒以内(含解释器及依赖导入);耗时不是跨机器承诺。
+不需要账户、API Key、GPU 或真实硬件。
+
+若希望直接看到“原预约→故障→三单连锁改约”的 CSV 与甘特图,可运行:
+
+```bash
+OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 MPLBACKEND=Agg .venv/bin/python pyqpanda-algorithm/example/LabScheduling/booking_demo.py
+```
+
+输出成本 6、3 张改约、0 违反,以及无故障对照成本 0;详见[增强教程](ENHANCEMENTS.md)。
+
+评委建议演示顺序:
+
+1. 运行上面的中等实例,查看四项实验日程及最优值 4。
+2. 查看 `model.pruned`:停机剪掉两个候选,14 个输入候选降为 12 比特。
+3. 查看 `model.variables`、`linear`、`quadratic`、`offset`,追溯比特到实际预约。
+4. 运行同命令加 `--mixer x`,对比 `one_hot_probability`、可行概率及最优差距。
+5. 把输入换为 `data/infeasible.json`,验证经典认证不可行、退出码为 3。
+6. 运行第 8 节测试,核查数学恒等式、位序和真实量子模拟。
+
+完整接口帮助:`.venv/bin/python -m pyqpanda_alg.LabScheduling --help`。
+`--output` 会替换指定报告文件,请使用专用路径。若它与输入是同一路径,或通过
+符号链接/硬链接指向同一文件,CLI 会在求解前拒绝并退出 2。报告先写入同目录的
+临时文件,写完再替换;普通写入或替换失败会保留旧报告并清理临时文件。
+有效输出符号链接保留,更新其目标报告。这不提供断电持久性或多进程写入事务保证。
+
+报告 `input_sha256` 对应本次读取并求解的原始 UTF-8 字节,包括原换行形式;
+求解期间外部修改或删除输入不会改变该指纹。复现时应保留对应输入版本。
+
+## 2. 问题定义与实际价值
+
+校园实验室的仪器是单位容量资源。实验不能拆分,实验结束后设备还需要清洗;
+同一小组不能同时在两台设备操作。部分实验必须等前一道工序完成才能开始。
+设备故障后,重新排一张可行表之外,还希望尽量保留原预约,降低协调成本。
+
+应用关注有限时间窗口内的局部重排,而非整个学校的全年排课。调用者明确给出
+每项任务允许的 `(设备, 开始时刻)` 候选;不同任务可有不同候选数量。
+设备兼容性与人工确定的可用窗口通过候选集表达。一个任务只有一个小组标识;
+不模拟可同时参加多个小组的个人。
+
+- 仪器占用区间:`[start, start + duration + cleanup)`。
+- 小组工作区间:`[start, start + duration)`,清洗不继续占用小组。
+- 前序约束:`end(before) <= start(after)`,不等待前序设备的清洗结束。
+- 区间为左闭右开,相邻边界可接续;设备清洗结束也必须不超过 horizon。
+- 停机期间连清洗也不可发生。超时、停机候选在建模前删除,保留删除原因。
+- 冲突设备/小组各为单位容量,无容量松弛变量。
+
+这些定义明确区分设备和小组时间,避免“实验结束了,但设备还不能用”的漏排。
+
+## 3. 输入格式
+
+完整示例:[simple.json](../../pyqpanda-algorithm/example/LabScheduling/data/simple.json)、
+[medium.json](../../pyqpanda-algorithm/example/LabScheduling/data/medium.json)、
+[infeasible.json](../../pyqpanda-algorithm/example/LabScheduling/data/infeasible.json)。
+
+```json
+{
+ "name": "单实验示例",
+ "horizon": 6,
+ "resources": [{"id": "instrument", "cleanup": 1, "downtime": [[0, 1]]}],
+ "tasks": [{
+ "id": "A", "group": "group-A", "duration": 2,
+ "original": {"resource": "instrument", "start": 0},
+ "change_cost": 3,
+ "options": [
+ {"resource": "instrument", "start": 0, "cost": 0},
+ {"resource": "instrument", "start": 1, "cost": 1}
+ ]
+ }],
+ "precedence": []
+}
+```
+
+| 字段 | 语义 |
+|---|---|
+| `horizon` | 正整数,统一离散时隙的右边界 |
+| `resources[].id` | 唯一设备名称 |
+| `cleanup` / `downtime` | 默认 0 / [],非负整数清洗时间 / 停机区间 |
+| `tasks[].id, group, duration` | 唯一任务名称、小组、正整数持续时间 |
+| `options[].resource, start, cost` | 设备引用、非负开始时刻、非负整数偏好成本 |
+| `original` | 可选原预约,可以因故障已不可用,不必仍在候选中 |
+| `change_cost` | 默认 0;改变原设备或开始时间时一次性支付,有此成本须有 original |
+| `precedence` | 默认 [],任务 ID 二元组 `[before, after]` |
+
+时间和成本整数范围为 0–1,000,000(horizon/duration 至少为 1)。
+拒绝重复 JSON 键、重复 ID/候选、未知字段和引用、负成本、浮点数、布尔整数和 NaN。
+`tasks=[]` 定义为空排程且目标为 0;任务的 `options=[]` 是有效但不可行的问题。
+前序成环也是有效但不可行的约束集合,交给精确基线认证。
+`Problem.from_dict`、`load_problem` 和 `parse_problem(text)` 是输入校验入口;
+`parse_problem` 可从内存中的 JSON 文本构造相同的严格验证结果,仍拒绝重复键和
+非有限常量。直接构造内部数据类
+的调用者须满足同样的不变量。
+
+## 4. QUBO 建模与惩罚证明
+
+对任务 $t$ 的存活候选集合 $D_t$,定义 $x_i\in\{0,1\}$;$x_i=1$
+表示选择候选 $i$。索引按输入任务顺序、候选顺序生成,删去无效候选后连续编号。
+变量 $i$ 就是量子比特 $i$,不通过字符串名字排序。
+
+候选线性成本为
+
+$$c_i=\text{preference}_i+
+\text{change\_cost}_{t(i)}\,
+\mathbf1[(r_i,s_i)\ne(r^0_{t(i)},s^0_{t(i)})].$$
+
+没有原预约时第二项为零;这是加权扰动和偏好的联合目标,未声称按变更次数
+进行词典序优化。硬约束包括:每任务恰选一次、设备及小组互斥、前序完成时间。
+剪枝已满足所有候选自身的停机和时间边界约束。
+
+令 $C$ 是不同任务之间不允许同时选择的候选对集合。即使同一对同时违反设备、
+小组和前序规则,也只加入一个冲突对;解释报告保留全部原因。完整 QUBO 为
+
+$$E(x)=\sum_i c_i x_i+
+ A\sum_t\left(\sum_{i\in D_t}x_i-1\right)^2+
+ A\sum_{(i,j)\in C}x_ix_j.$$
+
+使用 $x_i^2=x_i$ 展开:常数 $A|T|$,线性系数 $c_i-A$;同任务不同候选的
+二次系数 $2A$,不同任务冲突候选的二次系数 $A$。
+`quadratic` **只储存 $iU$。
+
+违反数和罚分分开:选了三个候选的任务只算一个违反,但恰选一次罚项为 4;
+有多个原因的冲突候选对只算一次违反。
+不可行输出的 `objective` 为 null,`raw_cost` 和 `qubo_energy` 仍保留供审计。
+
+## 5. 量子算法与技术架构
+
+```mermaid
+flowchart LR
+ A[JSON 输入校验] --> B[剪枝与候选映射]
+ B --> C[QUBO 与 Ising]
+ C --> D[CPUQVM QAOA]
+ D --> E[有种子的 Born 分布采样]
+ E --> F[独立解码与约束检查]
+ B --> G[任务候选笛卡尔积穷举]
+ G --> H[最优性或不可行认证]
+ F --> I[JSON 报告]
+ H --> I
+```
+
+QUBO 使用 $x_i=(I-Z_i)/2$ 转换为对角 Ising 算符 $H_C$。
+相位线路用 $H_C/A$ 归一化控制角度尺度;报告中的能量仍是原始 QUBO 单位。
+常数偏移保留在能量计算中,相位线路省略相应全局相位不影响概率。
+
+每层依次应用成本相位和混合器。增强版默认 XY 相位删除在可达子空间恒零的
+one-hot 罚项,仍使用相同 A 缩放,分布等价证明及 full/auto 审计见
+[增强教程第 2 节](ENHANCEMENTS.md#2-删除-xy-相位里的恒零罚项)。默认 XY 方法:
+
+- 对每项任务用上游 `linear_w_state` 准备等幅单激发态,初态是这些 W 态的直积。
+- 通过上游 `iswap(i,j,2*beta)` 依次交换域内相邻候选的激发,保持域内汉明重量。
+- 单候选域不施加混合门,保证其比特始终为 1。
+- 每个交换因子保持恰选一次;相邻因子的乘积不宣称等于整个 XY 和式的精确指数。
+- 此不变量只消除任务选择数错误,设备/小组/前序冲突仍依靠成本相位和罚分处理。
+
+`--mixer x` 使用 Hadamard 初态及 RX 混合器作为标准惩罚 QAOA 对照。
+XY/X 的初态与混合器共同变化,属于完整策略消融;没有把效果全部归因于某个门。
+核心线路复用 `pyqpanda_alg.QAOA.qaoa.pauli_z_operator_to_circuit` 和
+`default_circuits`,实际执行只使用 `pyqpanda3.core.CPUQVM`。
+应用自管优化循环,以控制比特映射、随机流、预算和原始采样证据,不改上游接口。
+
+COBYLA 最小化无噪声态矢量的期望 QUBO 能量。两个重启使用相同预算,记录每次
+能量及优化器终止原因;达到预算时不会声称数值收敛。最终采用所有评估中最低期望
+能量对应的参数。训练不会访问经典最优排程或预筛过的可行状态集合。
+
+CPUQVM 的无测量线路给出确定的 Born 概率;最终用单独的 NumPy SeedSequence
+子随机流执行 multinomial 采样。`shots` 是这个模拟采样预算,不是真机测量次数。
+只从实际被采到的比特串选择最优可行排程;没有可行样本时保留最低 QUBO 能量的
+不可行样本并返回 `no_feasible_sample`。不作经典修复、不以穷举结果替换量子输出。
+`counts` 使用常规高位在左的字符串,`bits` 列表则按 qubit 0,1,… 顺序。
+
+文件职责:`problem.py` 输入;`model.py` 编译/独立约束检查;`classical.py`
+穷举/贪心;`quantum.py` 线路/优化/采样;`report.py` 实验汇总;`__main__.py` CLI。
+增强模块:`reduction.py` 安全传播/组件/回填,`milp.py` 原始输入优化与检查,
+`bookings.py` CSV 窗口展开,`metrics.py` 训练后最优命中率/资源审计。
+公共 API 的类型和文档字符串随代码提供;基本调用如下:
+
+```python
+from pyqpanda_alg.LabScheduling import load_problem, compile_qubo, solve_qaoa, solve_exact
+problem = load_problem("pyqpanda-algorithm/example/LabScheduling/data/simple.json")
+model = compile_qubo(problem)
+quantum = solve_qaoa(model, seed=7)
+certificate = solve_exact(model)
+```
+
+## 6. 示例结果及经典对比
+
+本节是增强前 schema 1 / full 相位的历史开发结果。在锁定环境中,XY、三个种子 7/19/42 在两种规模均从 512 次采样中
+找到了最优解;这是有限实验结果,不是算法保证。
+
+| 场景 | 输入→存活候选 | 任务组合数 / 可行数 | 精确最优 | XY 三种子目标 | X 三种子目标 |
+|---|---:|---:|---:|---|---|
+| simple | 7→6 | 9 / 4 | 5 | 5 / 5 / 5 | 5 / 5 / 5 |
+| medium | 14→12 | 81 / 10 | 4 | 4 / 4 / 4 | 8 / 18 / 13 |
+
+| 场景 | XY 平均可行概率 | X 平均可行概率 | 均匀 one-hot 可行概率 |
+|---|---:|---:|---:|
+| simple | 0.497681 | 0.013176 | 0.444444 |
+| medium | 0.248389 | 0.002105 | 0.123457 |
+
+XY 的 one-hot 概率在浮点误差内为 1。简单实例的 seed 7/42 可行概率低于均匀
+one-hot,故不能声称全面优于随机方法。均匀 one-hot 的同预算抽样在这些小实例
+也找到了最优解。精确穷举只需 9/81 个任务组合,远快于 CPU 量子模拟。
+原始概率、随机样本、优化曲线、终止原因、耗时、环境版本和输入 SHA-256 均保留在
+[results](results/);详细验证见 [VALIDATION.md](VALIDATION.md)。
+
+中等实例 seed 7 的实际输出:
+
+| 实验 | 设备 | 实验区间 | 清洗结束 | 原预约变更 |
+|---|---|---|---:|---|
+| B-image | microscope | [0,2) | 3 | 否 |
+| A-prepare | spectrometer | [2,4) | 5 | 是,成本 4 |
+| A-image | microscope | [4,6) | 7 | 否 |
+| B-measure | spectrometer | [5,7) | 8 | 否 |
+
+仅变更故障影响的 A-prepare;三条其他预约保留。spectrometer 停机 [0,2),
+microscope 停机 [7,8),清洗与停机边界均满足。
+
+退出码:0=返回可行排程(不必最优),2=输入/直接求解预算错误,3=经典证明不可行,
+4=未采到可行解且未证明不可行,5=化简后仍有超过量子资源上限的组件。
+全由传播解出的排程明确标记 classical_propagation。
+`absolute_gap` 是可行目标减经典最优值;没有最优证书或未命中时为 null。优化器未收敛不等同于问题不可行。
+
+## 7. 复现实验和图表
+
+```bash
+OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 .venv/bin/python pyqpanda-algorithm/example/LabScheduling/benchmark.py --output reports/lab-scheduling
+.venv/bin/python pyqpanda-algorithm/example/LabScheduling/plot_results.py reports/lab-scheduling
+```
+
+当前脚本按增强版默认 auto 相位运行,不覆盖仓库内历史归档。
+该脚本运行两种输入 × 三个种子 × 两种混合器,生成 12 份紧凑 JSON、summary.csv
+及后续生成的 overview.svg。默认预算完全相同,允许优化器提前收敛;记录实际
+线路评估次数。保存结果选用相同依赖版本和线程设置,概率/样本应可重复,
+墙钟耗时会变化;不同操作系统或依赖版本可能改变优化轨迹。
+原始紧凑 JSON 可用 `.venv/bin/python -m json.tool 文件.json` 格式化查看。
+图中的点是各个种子的实际结果,不是统计置信区间。
+
+## 8. 测试与代码质量
+
+```bash
+export OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 MPLBACKEND=Agg
+.venv/bin/python -m pytest -c test/LabScheduling/pytest.ini test/LabScheduling --cov=pyqpanda-algorithm/pyqpanda_alg/LabScheduling --cov-report=term-missing
+.venv/bin/python -m ruff check --config test/LabScheduling/ruff.toml pyqpanda-algorithm/pyqpanda_alg/LabScheduling test/LabScheduling pyqpanda-algorithm/example/LabScheduling
+.venv/bin/python -m ruff format --check --config test/LabScheduling/ruff.toml pyqpanda-algorithm/pyqpanda_alg/LabScheduling test/LabScheduling pyqpanda-algorithm/example/LabScheduling
+.venv/bin/python -m mypy --config-file test/LabScheduling/mypy.ini pyqpanda-algorithm/pyqpanda_alg/LabScheduling
+```
+
+测试遵循贡献指南的 `功能.test.py` 命名。上游实际测试采用 pytest 类/函数,
+仓库未提供指南提到的 `Test(功能, 内容)` 辅助 API,因此采用可执行的 pytest
+断言;`--import-mode=importlib` 处理含点文件名。使用应用独立 pytest 配置,
+不改上游测试约定。测试中的 CPUQVM 是真实模拟器,不是 mock。
+
+数学验证包括所有 6 比特/12 比特向量的约束能量恒等式、12 比特全部 Ising
+对角值、与独立 NumPy 稠密 X-QAOA 演化的逐概率比较、XY 单激发不变量、
+位序、固定种子、单候选和空任务边界。另测试不可行、采样未命中、错误 JSON、
+非法参数和大小预算。新增 workflow 专门响应 develop 的相关 PR。
+
+## 9. 限制和后续方向
+
+- 无噪声 CPU 态矢量模拟;默认完整概率训练及诊断需要 $O(2^n)$ 内存/时间。
+ 每个量子组件最多 16 个存活候选,编译器最多 256 个;两两建模 $O(n^2)$。
+ `--reduce` 可分解严格独立的组件,但没有解决任意大连通问题。
+- 精确穷举 API 最多枚举 1,000,000 个组合,超限报错;报告中跳过超预算枚举,
+ 原始 MILP 最多 2048 个候选。报告对超预算 MILP 同样记录 `budget_exceeded`,
+ 保留实际求解结果;两种基线都无法认证时 `absolute_gap=null`,不冒充最优。
+ 直接调用 `solve_milp` 超过上限仍报错。此应用面向小范围
+ 冲突修复窗口;中等样例是本应用的 12 比特规模,并非工业级中等规模。
+- 限定非负整数成本、确定时长、单位设备容量、单小组归属;没有多容量资源、
+ 跨天日历、随机故障预测或完整 IIS 最小不可行子集诊断。
+- 空候选是可解释的不可行原因;一般不可行性由穷举或 MILP 认证,不宣称是量子证明。
+- XY 的已知约束保持技术来自上游库,本项目创新在实验室重排建模、候选压缩、
+ 扰动成本、可追溯约束审计和完整可复现应用,而非发明新 QAOA 理论。
+- 已实现单候选传播、严格分量分解、窗口候选导入和独立 MILP。
+ 下一步是匿名实际数据验证、更多独立数据种子,以及有噪声/有限采样训练。
+
+## 10. 来源与许可证
+
+- [比赛主页](https://qcloud.originqc.com.cn/learning/zh/2026ccf)、
+ [赛题 #13](https://github.com/OriginQ/pyqpanda-algorithm/issues/13)、
+ [贡献指南](../../CONTRIBUTING.md)。
+- [PyQPanda3 AI 参考](https://github.com/OriginQ/pyqpanda3-skill):CPUQVM、整数比特、
+ PyQPanda3 API;实际接口均通过安装版本验证。
+- [上游 QAOA 组件](../../pyqpanda-algorithm/pyqpanda_alg/QAOA):W 态、XY 交换及相位线路。
+- 去重记录及范围见根目录 [PLAN.md](../../PLAN.md),相关 PR 比较见
+ [调研快照](RESEARCH.md)。
+
+新增内容沿用仓库 [Apache-2.0 许可证](../../LICENSE)。
diff --git a/Tutorials/LabScheduling/RESEARCH.md b/Tutorials/LabScheduling/RESEARCH.md
new file mode 100644
index 00000000..3e70c398
--- /dev/null
+++ b/Tutorials/LabScheduling/RESEARCH.md
@@ -0,0 +1,34 @@
+# 选题调研快照(2026-09-21)
+
+基线 develop:`5f973efccb84bc193157d1ccebe32137e307293b`。
+阅读官方 README、main/develop CONTRIBUTING、QUBO/QAOA 模块、现有测试与 CI。
+检索源码中的 schedule / scheduling / 排程 / 排班 / 调度 / 实验室 / 考试,
+没有发现已实现的同类应用。
+
+GitHub 匿名 REST API 返回限流,网页工具的缓存计数与实时页面不同,故改为
+直接读 GitHub HTML:开放 PR 第 1–3 页,共 **70** 项;第 4 页为空。
+[完整标题与链接快照](research_pr_snapshot.json)保留可审阅清单。
+查阅关闭 PR 第 1 页(13 项),未发现同题。对相关 PR/Issues 进一步阅读正文。
+
+| 对象 | 已有范围 | 对本应用的决策 |
+|---|---|---|
+| [#60](https://github.com/OriginQ/pyqpanda-algorithm/pull/60) | 小麦灌溉预测、土壤水量平衡、取水预算及 QUBO/QAOA | 同用调度技术但业务模型不同;选择设备故障、清洗、多时隙实验、前序和预约变更,避免农业/水预算方向 |
+| [#45](https://github.com/OriginQ/pyqpanda-algorithm/pull/45) | QUBO_QAOA 默认 layer=None 导致崩溃 | 不重复修库,不依赖该封装默认参数 |
+| [#69](https://github.com/OriginQ/pyqpanda-algorithm/pull/69) | QUBO 多项式规范化和高阶验证 | 直接编译二次系数、显式 Ising 索引,不依赖待合并修复 |
+| [#40](https://github.com/OriginQ/pyqpanda-algorithm/pull/40) | QAOA 风险损失函数修复 | 应用使用标准期望能量,不修改 CVaR/Gibbs |
+| [#38](https://github.com/OriginQ/pyqpanda-algorithm/issues/38) | QmRMR 导出、部分示例和文档问题 | 不扩大范围处理 |
+| [#8](https://github.com/OriginQ/pyqpanda-algorithm/issues/8) | 旧硬件上的 QPanda3 应用案例 | 不涉及约束实验排程 |
+| [#13](https://github.com/OriginQ/pyqpanda-algorithm/issues/13) | 比赛任务与提交流程 | 完整创新应用,PR 到 develop,规范标题 |
+
+网页主页初次读取只返回 JavaScript 提示。进一步读取该页面实际引用的 main
+bundle 和 2026ccf 路由 chunk,核对可见文案:开源创新赛道不限制学生/社会人士,
+采用 GitHub PR 提交,报名与 PR 窗口均为 4 月 10 日至 9 月 30 日;
+[主页](https://qcloud.originqc.com.cn/learning/zh/2026ccf)指向
+[开源赛道详情](https://qcloud.originqc.com.cn/learning/zh/contest/list/60/contest:introduction)。
+没有登录或代填报名信息,不能确认用户的个人报名状态。
+
+**结论:** LabReschedule 符合完整创新应用任务;在本次可见的开放 PR、Issue
+及 develop 中,没有发现同题或高度相似的实验室重排应用。QUBO/QAOA 通用方法
+和 XY 技术本身不属于本项目原创。创新定位是场景约束组合、预约稳定性、候选
+压缩、可解释约束报告和端到端复现。不能凭检索证明全球新颖性。
+在用户批准发布之前还应刷新 PR 清单,以覆盖此快照之后的新投稿。
diff --git a/Tutorials/LabScheduling/REVIEW_GUIDE.md b/Tutorials/LabScheduling/REVIEW_GUIDE.md
new file mode 100644
index 00000000..9f2659a3
--- /dev/null
+++ b/Tutorials/LabScheduling/REVIEW_GUIDE.md
@@ -0,0 +1,144 @@
+# 维护者与评委审阅路线
+
+队伍 **youshen**。本应用处理设备故障后的实验预约重排:输入预约候选与约束,
+在 CPU 上运行 QAOA,再独立核验排程。全部业务数据为合成,无真实用户试用声明。
+
+## 五分钟主要演示路线(安装完成后)
+
+按[主教程](README.md#1-三分钟演示)安装后,在仓库根目录运行:
+
+```bash
+OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 MPLBACKEND=Agg .venv/bin/python pyqpanda-algorithm/example/LabScheduling/tradeoff_demo.py --sensitivity
+```
+
+三个有前序关系的实验共享带清洗时间的烘箱。故障后可将三单整体后移,成本 12;
+也可支付备用设备费用,保留后两单,成本 14。三项决策全部留在 8 比特组件中,
+没有预处理固定项。默认种子的实际量子样本得到成本 12,MILP/穷举随后认证。
+一般输入和其他参数不保证采到最优,脚本保留实际 gap,不能用经典解修补。
+
+打开 `reports/tradeoff-demo/tradeoff.svg` 看原预约与采样结果;
+`alternatives.csv` 列出全部 9 个可行排程;`outage-report.json` 含参数、counts、
+原始约束复核及证书。`ablation.json` 分别列出各阶段资源与验证耗时。
+
+接着看 `sensitivity/summary.csv` 与 `sensitivity/sensitivity.svg`:每单改约成本
+从 0 增到 6,最优决策在 3 分处由整体后移切换为备用设备,阈值处两者同优。
+全部 21 次实际量子结果和七组完整可行排程都可核验;详见
+[权重与决策解释](EVALUATION_V2.md#改约成本敏感性什么时候值得使用备用设备)。
+
+最后运行资源边界案例:
+
+```bash
+OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 .venv/bin/python -m pyqpanda_alg.LabScheduling pyqpanda-algorithm/example/LabScheduling/data/support-chain.json --reduce --pruning arc --output reports/support-chain.json
+```
+
+查看 `component_qubits=[12]`、成本 3、零违反和零 gap。去掉 `--pruning arc`
+会留下 18 比特组件并返回资源限制,退出码 5。只运行这一受控边界例,便可说明
+精确化简带来的用途;不要将组件上限突破说成通用大规模量子调度能力。
+五分钟是演示目标,实测环境与计时见 VALIDATION.md,首次安装下载另计。
+
+讲解顺序:约一分钟交代故障与两种方案,一分钟解释权重切换,一分钟展示
+18→12 的删除依据,再展示实际 counts、经典证书和失败状态。
+若现场未采到最优,展示实际 gap;不能以认证解替换量子样本。
+
+## 核心代码阅读顺序(约 15 分钟)
+
+| 阅读顺序 | 文件 | 核查重点 |
+|---|---|---|
+| 1 | [problem.py](../../pyqpanda-algorithm/pyqpanda_alg/LabScheduling/problem.py) | 严格输入、整数成本、时间区间及单容量边界 |
+| 2 | [model.py](../../pyqpanda-algorithm/pyqpanda_alg/LabScheduling/model.py) | 候选剪枝、禁止对只计一次、A 的充分界、独立解码 |
+| 3 | [quantum.py](../../pyqpanda-algorithm/pyqpanda_alg/LabScheduling/quantum.py) | PyQPanda3 CPU、XY 单激发、相位简化、样本来源 |
+| 4 | [reduction.py](../../pyqpanda-algorithm/pyqpanda_alg/LabScheduling/reduction.py) | 单候选传播、严格独立分量、原变量回填、超限状态 |
+| 5 | [milp.py](../../pyqpanda-algorithm/pyqpanda_alg/LabScheduling/milp.py) | 从原始输入独立建模、限时不冒充最优 |
+| 6 | [report.py](../../pyqpanda-algorithm/pyqpanda_alg/LabScheduling/report.py) | 求解后认证、独立语义检查、状态与 gap |
+
+数学证明集中在[主教程](README.md)和[增强教程第 2–4 节](ENHANCEMENTS.md)。
+可选[弧一致性化简](ARC_PRUNING.md)补强经典预处理;默认量子算法保持不变。
+
+## 证据入口
+
+- [无支持候选删除](ARC_PRUNING.md):18→12 比特边界演示、200 个随机小问题与
+ 全部 V2 输入的完整可行集合验证,以及局部有支持但全局不可行的反例。
+- [同总预算对照](MATCHED_BUDGET.md):将总训练上限与 shots 对齐,新增化简后随机
+ 基线。512 shots 下随机也全部采到最优;低 shots 条件曲线与退化实例同时公开。
+- [第二批协议](BENCHMARK_V2_PROTOCOL.md):在评价前提交冻结;36 个问题,每格 4 个数据种子。
+- [第二批分析](EVALUATION_V2.md):正常、不可行、纯经典和退化结果一并解释。
+- [逐实例表](results/v2/SUMMARY.md):先看概览;再按实例/seed 查看
+ [完整训练记录](results/v2/runs.jsonl)与[结构证明记录](results/v2/instances.jsonl)。
+- [关键测试](../../test/LabScheduling/enhancement.test.py):100 个随机问题的可行集合等价、
+ CPU 相位等价和 MILP 状态边界;[新增案例测试](../../test/LabScheduling/evidence.test.py)
+ 覆盖 36 个异构实例的无故障合法性和全部可行集合,以及完整业务取舍。
+- [验证记录](VALIDATION.md):本地测试和 GitHub CI 分开标注。维护者批准前不能算上游 CI 通过。
+- [输入输出回归](../../test/LabScheduling/io.test.py):拒绝输入别名覆盖,验证求解
+ 数据与指纹一致,以及报告写入/替换失败时旧文件不被截断。
+
+原始 JSONL 与生成数据占 diff 的大部分;可先审阅上表核心文件及测试,再抽查归档。
+归档保留输入和源码指纹、全部失败及计时,不需要逐行阅读优化历史。
+
+新增的[安装兼容性说明](COMPATIBILITY.md)记录 3.11 / 3.12 / 3.13 的实际验证。
+兼容性轮次只调整安装约束、CI 和证据说明;后续预算修复见下方失败状态说明。
+
+## 当前运行与历史归档如何核对
+
+**验证当前代码是否可重复运行**:在同一 checkout、同一 `.venv` 中执行两次。
+若已运行上面的主演示,直接执行第二条即可:
+
+```bash
+OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 MPLBACKEND=Agg .venv/bin/python pyqpanda-algorithm/example/LabScheduling/tradeoff_demo.py --sensitivity
+OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 MPLBACKEND=Agg .venv/bin/python pyqpanda-algorithm/example/LabScheduling/tradeoff_demo.py --sensitivity --output reports/tradeoff-replay --verify-sensitivity reports/tradeoff-demo/sensitivity/results.json
+```
+
+第二条命令严格比较 21 条敏感性记录及其输入、源码和环境指纹,只排除
+`_seconds` 计时字段。成功退出表示这些记录一致;不表示不同 Python、依赖版本
+或机器上的优化参数和 counts 必然相同。比较对象是 `sensitivity/results.json`,
+不是整份演示目录或 SVG。
+
+**核验提交在仓库中的历史实验**:先选择归档对应的源码版本。后续修复会改变
+源码指纹,不能直接拿当前版本与旧归档严格比较,也不能删除指纹检查来“通过”。
+以下提交同时包含对应实现与归档;2026-09-22 已逐项核对归档记录的源码指纹:
+
+| 历史实验 | 包含匹配源码和归档的提交 | 匹配的源码/协议/配置指纹 |
+|---|---|---:|
+| 同总预算 360 条记录 | `a3716ed778ece61fcb7dfe13f18633f4c6164a62` | 17 |
+| AC-3 结构证明与边界运行 | `4eb272a9f7c75167487a578752eb8f6fbda11c88` | 14 |
+| 权重敏感性 21 条记录 | `384649588690fa3b100541b78a1ad82447df2388` | 17 |
+
+例如,已取得本 PR 的 Git 历史后,在仓库根目录创建一个独立检出:
+
+```bash
+git worktree add --detach ../lab-sensitivity-archive 384649588690fa3b100541b78a1ad82447df2388
+cd ../lab-sensitivity-archive
+python3.12 -m venv .venv
+.venv/bin/python -m pip install -c pyqpanda-algorithm/example/LabScheduling/constraints-py312.txt -e ./pyqpanda-algorithm -r pyqpanda-algorithm/example/LabScheduling/requirements-dev.txt
+OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 MPLBACKEND=Agg .venv/bin/python pyqpanda-algorithm/example/LabScheduling/tradeoff_demo.py --sensitivity --output reports/archive-replay --verify-sensitivity Tutorials/LabScheduling/results/sensitivity/results.json
+```
+
+历史敏感性归档记录的解释器是 **Python 3.12.3**;这里的 `python3.12` 也须是该
+补丁版本,并使用归档约束。其他版本仍可做当前环境内的重复运行,但严格环境
+比较可能拒绝历史重放。指纹匹配是必要条件,不能代替实际执行比较器;历史完整
+重放的实测记录见 [VALIDATION.md](VALIDATION.md)。如果使用 ZIP 或浅克隆而没有
+这些提交,请先获取本 PR 的完整分支历史,再创建 worktree。
+
+## 结论边界
+
+可证明的是候选化简保持可行集合、固定成本回填、XY 恒零罚项删除的理想分布等价。
+经典基线在这些规模更快;分量预算相加,分量最大深度不代表实际并行耗时。
+360 个种子组合来自 36 个问题,不能当作 360 个独立业务实例,也不代表真实实验室部署。
+
+## 答辩时需要回答的六个问题
+
+| 问题 | 回答与可核验证据 |
+|---|---|
+| 为什么经典方法更快,还做量子调度? | 本作品研究受限量子资源下如何形成可运行、可验证的调度子问题;没有商业性能或量子加速结论。同预算随机对照及失败记录均公开。 |
+| 创新是不是只有把现成 QAOA 换个场景? | 完整贡献包括最小扰动业务建模、可证明的候选化简和分量回填、可追溯成本/删除依据、独立原始输入认证与可复现流程。QAOA 和 AC-3 本身不是原创。 |
+| 量子求解是否被经典最优解替代? | 训练与采样先执行,最优证书随后计算;查看各组件 counts 与选中位串,再用原始输入检查器复核。纯经典传播明确单列。 |
+| 18→12 比特说明什么? | 在公开的构造案例中,可选 AC-3 将组件压到当前模拟预算内,四项决策仍在量子组件。V2 中只有 5/36 实例的最大组件缩小;不是普遍缩减比例。 |
+| 业务成本有没有现实依据? | 当前是可解释的合成偏好分。七档权重展示决策切换与并列最优;没有真实使用者反馈,不能称为经济收益测量。 |
+| 没有最优证书、抽样失败或超过预算怎么办? | 保留实际样本、违反数与明确状态;没有证书时 gap 为 null。MILP 超预算只跳过该认证路径,不丢弃已有结果,也不将结果标成最优。 |
+
+建议以“受限量子资源下的可审计故障重排工具”概括作品。评委无需阅读全部历史
+训练记录即可检查以上六点;原始证据保留供抽查。后续研究应由真实需求或实验
+结果驱动,不以不断增加功能代替验证。
+
+已准备[小范围使用者试用流程](USER_TRIAL.md)及[空白反馈表](TRIAL_FEEDBACK_TEMPLATE.md),
+复用现有 CSV 导入和求解接口。真实参与者、匿名事件数据与反馈尚未取得;材料就绪
+不计为真实试用完成,也不改变以上证据边界。
diff --git a/Tutorials/LabScheduling/SENSITIVITY_PROTOCOL.md b/Tutorials/LabScheduling/SENSITIVITY_PROTOCOL.md
new file mode 100644
index 00000000..a85774e4
--- /dev/null
+++ b/Tutorials/LabScheduling/SENSITIVITY_PROTOCOL.md
@@ -0,0 +1,27 @@
+# 改约成本敏感性分析:执行前协议
+
+队伍 youshen,2026-09-21。沿用已知 `tradeoff.json` 开发案例,属于业务解释,
+不是新留出评测,不用其结果选择新的默认量子参数。
+
+1. 输入与参数网格冻结于 `example/LabScheduling/data/sensitivity.json`:
+ 基础输入 SHA-256、权重 0–6、seed 7/19/42,p=1、2 restarts、maxiter=60、
+ 512 shots、XY、默认单候选化简,总计 21 次真实 CPU QAOA。
+2. 每次只把所有任务的 `change_cost` 改为同一非负整数 w;原始预约、候选、
+ 偏好费用、设备、停机与前序全部保持不变。基础输入不原地修改。
+3. 先运行实际量子方案,再做独立认证和业务成本分析,不将经典方案传给量子路径。
+ 所有种子保留,无可行样本时保留空业务指标和失败状态,不能用经典解填补。
+4. 对每个权重枚举全部原始候选组合,以独立原始语义检查器判断可行性和成本;
+ 跨权重核验完整可行排程集合一致,并与 QUBO 枚举和原始 MILP 最优值核对。
+5. 已知两个候选方案“整体后移”和“备用设备”的成本分别为 6+3w、12+w;
+ 交点为 w=3。全局最优值、阈值处全部并列最优仍须由完整枚举认证,不预设结论。
+6. 判定最优命中时接纳任意并列最优排程,不要求采样覆盖每个同优方案。
+ 成本为业务偏好分,不是已调查的货币价格,不能把单个开发案例推论为一般优势。
+7. 输出七行决策表、全部九条可行排程的成本曲线(若实际数量不同,记录并排查)、
+ 每次量子目标/改约数量/偏好与变更成本/gap/耗时、完整参数和 counts。
+ 图表同时展示独立认证和实际量子结果,不把解析线当实际抽样成绩。
+8. 保存七个派生输入、源代码与协议/配置指纹、环境和 21 条原始记录。
+ 再次执行并比较全部非计时字段;只忽略 `_seconds` 字段。
+9. 接入现有 tradeoff 演示的可选参数;正常调用保持原有行为。
+ 测试覆盖 w=0、切换点、同优接受、故意非最优/不可行样本、输入变换和重放篡改。
+
+完成这项限定增强后冻结新功能,继续收敛评审路线和发布候选验证。
diff --git a/Tutorials/LabScheduling/TRIAL_FEEDBACK_TEMPLATE.md b/Tutorials/LabScheduling/TRIAL_FEEDBACK_TEMPLATE.md
new file mode 100644
index 00000000..f71e3e50
--- /dev/null
+++ b/Tutorials/LabScheduling/TRIAL_FEEDBACK_TEMPLATE.md
@@ -0,0 +1,54 @@
+# 实验室重排试用记录(未填写模板)
+
+> 空白项表示未知。复制到本地案例目录后填写;示例模板不能作为真实用户反馈。
+> 不填写姓名、联系方式、机构全称、课题名称或其他身份信息。
+
+## A. 看求解结果前填写
+
+- 案例代号:
+- 日期:
+- 数据来源:未确认(合成演练 / 真实事件去标识回放 / 其他并说明)
+- 参与者代号与角色:未提供
+- 操作方式:未确认(参与者独立 / 队伍协助 / 仅工程师演练)
+- 使用的代码提交号:
+- 一时隙代表的分钟数、时隙 0 的含义:
+- 停机情境、任务与设备数量:
+- 必须满足的约束:
+- 已知但当前模型无法表达的约束:
+- 时间离散化是否准确、是否有取整或其他简化:
+- 允许设备、候选窗口由谁确认:
+- 改约成本 / 位移成本及选择理由(相对偏好分):
+- 当前人工处理方式与大致用时(无记录填“未测量”):
+- 看结果前的人工排法(无则填“未提供”;设备、时刻与任务对应):
+- 人工排法的改约数量;是否遵循相同候选与约束:
+- 数据录入用时(未测量则保持未测量):
+
+## B. 看结果后填写
+
+- 首次命令退出码、报告 status 与 solver_status:
+- 输入 SHA-256:
+- 实际量子组件比特数 / 是否纯经典传播:
+- 目标值 / 约束违反数 / absolute_gap(null 保持 null):
+- 程序运行时间(报告字段;不含录入、访谈):
+- 实际改约数量:
+- 参与者逐项确认可执行:未确认(可执行 / 不可执行 / 无法判断)
+- 不可执行或不确定的具体任务与原因:
+- 原来未想到、现在发现的限制:
+- 对比人工排法的意见;是否需要独立校验人工方案:
+- 哪部分解释有帮助,哪部分难懂:
+- 录入最费力或最容易出错的步骤:
+- 是否愿意在类似事件中再次试用,理由:未询问
+- 修改了什么、为什么;后续案例目录(首次记录仍保留):
+
+## C. 证据范围与后续行动
+
+- 本记录填写者:未确认(参与者 / 队伍根据访谈整理)
+- 参与者是否核对整理内容:未确认
+- 是否同意公开去标识摘要:未询问(默认不公开)
+- 明确同意公开的内容范围与确认方式:未提供
+- 不同意见或负面结果:
+- 建议的下一项改进及其原始依据:
+- 工程师核查:未执行(模型适配、原始约束检查、人工方案可比性)
+- 当前状态:材料准备 / 未开展真实试用
+
+完成真实试用后仍应限定结论为该案例,不能由一次反馈推论一般优势。
diff --git a/Tutorials/LabScheduling/USER_TRIAL.md b/Tutorials/LabScheduling/USER_TRIAL.md
new file mode 100644
index 00000000..71c36a81
--- /dev/null
+++ b/Tutorials/LabScheduling/USER_TRIAL.md
@@ -0,0 +1,149 @@
+# 一次小范围实验室试用
+
+这份材料用于收集真实使用反馈。**目前仅完成合成数据演练,尚未开展真实试用。**
+建议由队伍联系一位熟悉仪器预约的使用者或管理者,选择一次已经发生的设备停机,
+离线回放当时的 3–5 项预约。参与者核验结果后再决定是否用于实际工作。
+一次试用只能说明该案例的适用性,不能证明一般性能或量子优势。
+
+## 1. 先确定案例和评价方式
+
+建议安装完成后预留约 20–30 分钟;这是安排建议,不是实测完成时间。
+开始前填写[反馈模板](TRIAL_FEEDBACK_TEMPLATE.md),记录以下内容:
+
+- 用 T01、G01、R01 这类代号表示任务、小组和设备;保留真实约束,不填写姓名、
+ 联系方式、课题名称或原始预约截图。身份对应表由参与者保留,无需交给项目。
+- 约定一个整数时隙代表多少分钟,以及时隙 0 的含义。时间不能精确落在网格上时,
+ 先记录模型不适配,不自行四舍五入后宣称排程可执行。
+- 记录停机、设备清洗、允许替代设备、小组冲突、工序先后及不可移动预约。
+ 本模型只支持单位容量设备、单小组任务、不可拆分时长和给定候选。
+ 技能匹配、多人交叉参与、耗材或容量大于 1 等未表达约束须在反馈中列出。
+- **看求解结果前**,记录参与者的人工排法、改约数量、考虑因素和大致用时,
+ 再填写允许窗口及改约/移动成本。若无法给出人工排法,填“未提供”,不补造基线。
+- 保留首次运行,包括不可行、未采到可行解和资源超限。修改窗口或权重时,
+ 建立 case-002 等新目录,写明原因,不覆盖首次记录,也不只保留成功案例。
+
+改约成本是参与者给出的相对偏好分,不自动解释为货币或节省的工时。
+试用不以“必须优于人工”作为成功条件:发现一项真实遗漏约束也是有效反馈。
+
+## 2. 创建本地工作副本
+
+先按[安装说明](README.md#1-三分钟演示)准备项目 `.venv`,在仓库根目录运行:
+
+```bash
+.venv/bin/python - <<'PY'
+from pathlib import Path
+from shutil import copyfile
+
+trial = Path("reports/user-trial/case-001")
+trial.mkdir(parents=True, exist_ok=False)
+source = Path("pyqpanda-algorithm/example/LabScheduling/data/bookings")
+copyfile(source / "chain.csv", trial / "bookings.csv")
+copyfile(source / "outage.json", trial / "calendar.json")
+copyfile("Tutorials/LabScheduling/TRIAL_FEEDBACK_TEMPLATE.md", trial / "feedback.md")
+print(f"已复制合成模板至 {trial};请先确认数据来源,再填写反馈。")
+PY
+```
+
+目录存在时命令停止,避免覆盖之前的数据。模板可以直接演练;原样运行始终属于
+**合成演练**。真实试用须用参与者确认的数据替换 CSV 和日历,修改案例名称,并在
+反馈中注明来源。`reports/` 已被 Git 忽略;它只防止普通误提交,不是访问控制。
+
+CSV 保持首行与列序,使用 UTF-8 保存,数字填整数:
+
+| 字段 | 如何填写 |
+|---|---|
+| `id`, `group` | 唯一任务代号、小组代号;同组任务不能重叠 |
+| `duration` | 实验持续时隙数,不包含设备清洗 |
+| `original_resource`, `original_start` | 停机前的设备代号和开始时隙 |
+| `allowed_resources` | 确实兼容的设备代号,以 `\|` 分隔 |
+| `earliest`, `latest`, `step` | 允许开始时刻的含端点整数网格;固定时刻令两端相等 |
+| `change_cost` | 改变设备或开始时刻时支付一次的偏好分 |
+| `shift_cost` | 每移动一个时隙的偏好分,按绝对位移计费 |
+
+允许设备与时间网格的所有组合都会生成候选;若不同设备有不同时间窗口,或有
+设备专属费用,应改用[显式 JSON 候选](README.md#3-输入格式),不能让 CSV 隐含
+不存在的限制。固定设备还须将 `allowed_resources` 限为该设备。
+`calendar.json` 填写 `horizon`、设备 `id/cleanup/downtime` 和 `precedence`。
+清洗占用设备但不占用小组,必须在 horizon 内;前序只等待实验完成,不等待清洗。
+CSV 最多展开 256 个原始候选,量子模拟上限是每个组件 16 比特。
+
+## 3. 导入并运行
+
+确认人工排法和权重已记录后,生成输入。文件以排他方式创建,重复转换须新建案例
+目录,避免悄悄覆盖输入:
+
+```bash
+.venv/bin/python - <<'PY'
+import json
+from pathlib import Path
+from pyqpanda_alg.LabScheduling.bookings import import_bookings
+
+trial = Path("reports/user-trial/case-001")
+calendar = json.loads((trial / "calendar.json").read_text(encoding="utf-8"))
+problem = import_bookings(trial / "bookings.csv", calendar)
+with (trial / "input.json").open("x", encoding="utf-8") as stream:
+ stream.write(json.dumps(problem, ensure_ascii=False, indent=2, allow_nan=False) + "\n")
+print("导入成功;候选数:", sum(len(task["options"]) for task in problem["tasks"]))
+PY
+```
+
+一次 CPU 求解、原始约束复核及经典认证:
+
+```bash
+OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 .venv/bin/python -m pyqpanda_alg.LabScheduling reports/user-trial/case-001/input.json --reduce --seed 7 --output reports/user-trial/case-001/report.json
+```
+
+查看紧凑结果,让参与者逐项核验任务、设备和时间:
+
+```bash
+.venv/bin/python - <<'PY'
+import json
+from pathlib import Path
+
+report = json.loads(Path("reports/user-trial/case-001/report.json").read_text(encoding="utf-8"))
+quantum = report["quantum"]
+best = quantum["best"]
+print(json.dumps({
+ "status": report["status"],
+ "solver_status": quantum["status"],
+ "objective": best["objective"] if best else None,
+ "violations": best["violation_count"] if best else None,
+ "schedule": best["schedule"] if best else None,
+ "absolute_gap": report["absolute_gap"],
+ "component_qubits": quantum["reduction"]["component_qubits"],
+ "runtime_seconds": report["runtime_seconds"],
+ "input_sha256": report["input_sha256"],
+}, ensure_ascii=False, indent=2))
+PY
+```
+
+未修改的合成模板应得到目标值 6、零违反、gap 0,三个烘箱任务被传播固定,另有
+一个 4 比特量子组件。实际试用不预设目标值或最优命中。
+
+| 状态 / CLI 退出码 | 如何记录和处理 |
+|---|---|
+| `feasible` / 0 | 模型内可行;仍须参与者确认未遗漏实际限制。gap=0 需有经典最优证书 |
+| `infeasible` / 3 | 给定候选与约束不可行;保留原因,核对录入,不随意放宽硬约束 |
+| `no_feasible_sample` / 4 | 有限量子样本没给出可行解,不等于问题不可行 |
+| `resource_limit` / 5 | 组件超过 CPU 预算;记录规模,不截断候选后冒充同一问题 |
+| 输入错误 / 2 | 按终端提示纠正格式;未生成有效报告时不记录为求解失败 |
+
+`classical_propagation` 表示全部由经典传播解决,不计为量子成功。
+gap 为 null 表示没有可用差距,不能填成零。程序运行时间不包含人工录入和访谈;
+如果记录人工用时,须分别保留这些阶段,不能由一次演练得出效率优势。
+
+## 4. 使用者复核与可交付证据
+
+请参与者先独立判断能否执行,再阅读解释和经典证书,并填写反馈模板。人工排法
+只有在同一候选、约束和成本定义下才适合比较;否则写明不可直接比较,不填收益比例。
+若需定量核对人工排法,交由工程师使用现有 `validate_assignment` 对原始候选索引
+独立检查,检查前只报告参与者的定性意见。
+
+一次案例保留 `bookings.csv`、`calendar.json`、`input.json`、`report.json`、
+`feedback.md` 及实际代码提交号(`git rev-parse HEAD`)。输入指纹已在报告中;
+反馈标明是独立使用还是由队伍协助,记录失败、不同意见和缺失约束。
+默认不公开真实试用材料。参与者明确同意公开的范围与去标识摘要单独记录后,
+才能将其作为参赛证据;对外联系与公开由队伍协调,不由本流程自动发送。
+
+没有实际参与者的数据或反馈时,将状态保持为“材料准备完成 / 合成演练通过”。
+即使真实试用成功,也只描述这一案例和参与者意见,不称为部署、普遍收益或量子加速。
diff --git a/Tutorials/LabScheduling/VALIDATION.md b/Tutorials/LabScheduling/VALIDATION.md
new file mode 100644
index 00000000..a66f9e2e
--- /dev/null
+++ b/Tutorials/LabScheduling/VALIDATION.md
@@ -0,0 +1,473 @@
+# 验证与复现记录
+
+本文前半保留初版历史记录;当前增强版状态与验证见文末。
+
+日期:2026-09-21。基线:`upstream/develop@5f973ef`。
+环境:WSL2 Linux x86_64,Python 3.12.3,PyQPanda3 0.4.1,
+pyqpanda_alg 2.0.0(本地源码),NumPy 2.5.3,SciPy 1.18.1。
+完整包版本见 [constraints-py312.txt](../../pyqpanda-algorithm/example/LabScheduling/constraints-py312.txt)。
+
+## 上游基线
+
+1. 官方 requirements 安装后,初始 `pytest test` 因未安装 Allure 插件拒绝
+ `--alluredir` 参数;`import pyqpanda_alg` 也因未声明的 pandas 依赖失败。
+2. 依据实际导入和测试所需,在应用专属 requirements-dev 中补充
+ pandas/scikit-learn/allure-pytest。没有修改全局 Python 或上游依赖文件。
+3. `test/pytest.ini` 没有 `[pytest]` 节,当前 pytest 9 仍能读取;使用独立配置
+ 固定本次收集规则。有效测试是 **18 项**;其他多个文件主体为注释,不能算作测试通过。
+4. 独立运行原有测试得到 18 passed(35.99 s)。之后并发模拟压力下的重复检查
+ 触发一个 20 秒超时且产生线程争用,该轮中止,不将它当成功结果。
+ 固定 OMP/BLAS 单线程后完整复核 **18 passed,9.08 s**。
+
+最终基线命令(在仓库根目录):
+
+```bash
+OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 MPLBACKEND=Agg .venv/bin/python -m pytest \
+ -c test/LabScheduling/pytest.ini \
+ test/QAOA test/QAlgBase test/QPCA test/QSVM test/QARM \
+ -o 'python_files=Test_*.py' --timeout=60 -q
+```
+
+## 新增应用测试
+
+**56 passed,覆盖率 98.46%(455 条可执行语句,7 条未命中)**。
+`model.py` 和 `classical.py` 行覆盖为 100%。命令见主教程第 8 节;
+聚焦 CI 设置 95% 最低覆盖率,保留真实量子模拟测试。
+
+- 对 simple 的 64 态、medium 的 4096 态逐一验证
+ `QUBO = 原始成本 + A*(恰选一次平方罚分 + 冲突对数)`。
+- 对 medium 全部 4096 态验证 Ising 对角值与 QUBO 能量,覆盖 qubit 10/11,
+ 避免 `x10` 字符串排序把映射改变。
+- 对真实 CPUQVM 做非对称位序测试,对 X 线路做独立 NumPy 态矢量交叉验证。
+- 对不同层数和角度验证 XY 域内单激发守恒,以及零角度均匀 one-hot 概率。
+- 同 seed 重复求解验证参数、counts、最佳样本一致;最佳结果必须出现在 counts。
+- 分别验证语义不可行、空域、零任务、单候选、同对多原因冲突、清洗与停机边界、
+ 原预约变更成本、参数错误、重复键/未知字段、NaN 和规模保护。
+- 使用可行 simple + X + 1 shot 的真实模拟验证“未采到可行解”与“问题不可行”
+ 的区别,并验证 CLI 退出码 0/2/3/4。
+
+覆盖工具注意:`--cov` 传**源码目录路径**。本机 coverage 对包含二进制导入链的
+包名预加载触发 NumPy 重复导入错误;路径模式正常工作。没有为通过覆盖率而
+mock 量子库。覆盖率未包含子进程执行的 CLI 分支,实际子进程命令另有断言验证。
+
+## 代码质量与安装
+
+- Ruff:E/F/I/UP/B 检查通过,格式检查通过,配置范围仅新增应用和测试。
+- Mypy:7 个模块检查通过;仅跳过 PyQPanda3 不完整的二进制导出类型定义。
+- `pip check`:无依赖冲突。
+- 构建 wheel 成功;用 `--no-deps --target .venv/wheel-check` 安装到项目内目录,
+ 从该安装目录导入运行 medium,得到目标值 4、0 违反、差距 0。
+- `git diff --check`、新增 Python 公开函数标注/文档字符串、相对文档链接、
+ 缓存/密钥/旧 pyqpanda API 检查在最终提交前完成。
+- 新增 GitHub Actions workflow 的等价命令已本地运行;远程 Actions 尚未触发,
+ 不声称已经通过 GitHub CI。
+
+## 多规模、多种子实验
+
+统一预算:p=1,shots=512,restarts=2,COBYLA maxiter=60;种子 7、19、42。
+采用 `OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1`,CPU 无噪声模拟。
+按独立函数定义分别计时,`quantum.runtime_seconds` 包含量子训练、采样及诊断,
+`exact.runtime_seconds` 包含全组合枚举和原始约束检查,不含公共建模和解释器导入。
+`report.runtime_seconds` 包含读入、建模和三种求解流程,也不含解释器导入。
+这些指标不是硬件量子执行耗时。
+
+| 实例/方法 | seed 7 可行概率 | seed 19 | seed 42 | 最佳目标(对应三种子) |
+|---|---:|---:|---:|---|
+| simple / XY | 0.384406 | 0.688144 | 0.420494 | 5 / 5 / 5 |
+| simple / X | 0.013176 | 0.013175 | 0.013176 | 5 / 5 / 5 |
+| medium / XY | 0.393214 | 0.221515 | 0.130439 | 4 / 4 / 4 |
+| medium / X | 0.002105 | 0.002105 | 0.002105 | 8 / 18 / 13 |
+
+全部上述最佳样本可行,违反数为 0;X 在 medium 的最优差距为 4/14/9。
+XY 在 simple 的模拟求解计时约 0.10–0.11 s,medium 约 0.30–0.34 s;
+实际端到端还需解释器导入和建模。具体逐次耗时见
+[summary.csv](results/summary.csv),不是稳定性能阈值。
+
+同预算均匀 one-hot 抽样在所有这些小实例也命中经典最优值。
+XY simple 两个种子的可行概率低于均匀 one-hot,不能称为普遍优势。
+三个种子不足以推导统计显著性或可扩展性;精确基线在此规模明显更快。
+可行概率提升展示约束编码的作用,不能推出实用量子加速。
+
+[每次完整 JSON](results/)包含输入 SHA-256、环境、QUBO 系数/映射、剪枝与
+冲突原因、counts、优化历史、终止状态、排程、精确认证和均匀基线。
+所有种子均纳入结果,没有以最佳种子替代均值。
+
+默认一层线路资源也经 PyQPanda3 `QProg.depth()` / `count_ops()` 实测:
+
+| 场景/混合器 | 原生门深度 | CNOT 数 |
+|---|---:|---:|
+| simple / XY | 36 | 34 |
+| simple / X | 23 | 22 |
+| medium / XY | 45 | 78 |
+| medium / X | 32 | 54 |
+
+这些数值含初态、相位与混合器,未做真实芯片映射,不代表硬件编译后资源。
+
+最终完整重放:再次运行 12 组实验,将每份 JSON 递归删除 `runtime_seconds`
+后与归档比较,全部完全一致(包括参数、概率、counts、排程和诊断)。
+最终再次 fetch 的 develop 仍为 `5f973ef`;刷新开放 PR 仍为 70 项,无新增标题。
+
+## 增强版验证(2026-09-21,已更新 PR #92)
+
+以上 56 项和 12 份结果为增强前的历史基线。当前新增模块后实测:
+**71 passed,98.44% 行覆盖率(771 条语句,12 条未命中),6.11 s**;
+原有有效测试再次运行 **18 passed,8.22 s**。Ruff lint/format 全部通过,
+Mypy **11 个模块**通过。`bookings.py`、`reduction.py`、`milp.py` 在本轮覆盖为 100%。
+覆盖率是辅助指标;核心证据是独立建模、可行集合等价和真实 CPU 线路测试。
+
+- 100 个随机小问题:对全部可行排程集合进行化简/回填一一比对,验证固定成本,
+ 原始输入 MILP 的可行性及最优值与穷举一致。
+- simple/medium 每例 30 组随机参数,p=1/2/3,full 与 auto 相位概率误差 <1e-10;
+ 另测单候选混合域,X 分支保持完整相位。未声称两个优化轨迹必然一致。
+- 业务 CSV:故障重排成本 6、3 张改约、0 违反,量子组件 4 比特;无故障对照成本 0。
+- `--reduce` 最大组件资源上限实测退出 5,量子评价次数 0;没有静默经典替换。
+- MILP 限时状态、带 incumbent 的限时、错误/非整数 incumbent 等防御逻辑单独测试;
+ 正常求解使用真实 HiGHS。故障返回模拟仅用于不易稳定触发的状态分支测试。
+- 12 个新合成评价实例 × 10 个优化种子全部保存;9 可行、3 不可行,两经典基线一致。
+ 120 个已训练参数上的 full/auto 最大概率差 2.220446049250313e-16。
+ 整次评测约 49.06 秒;峰值进程 RSS 269832 KiB,包含 Python、依赖、MILP 和模拟器。
+ 这不是单个线路内存或硬件耗时承诺。
+- 两次完整 120 训练的参数、counts、分布指标及独立抽样结果在排除耗时后完全相同。
+ 所有输入/核心源码哈希与归档 provenance 一致,最佳位串均真实出现在 counts。
+- 公开 Python API 的参数/返回类型及 docstring 经 AST 扫描无遗漏。
+
+原始实验记录与源代码指纹:[增强结果目录](results/enhanced/)。
+评测协议在首次评价前冻结,详见 [BENCHMARK_PROTOCOL.md](BENCHMARK_PROTOCOL.md)。
+
+远程状态说明:用户批准后,增强提交 `9c23ddb` 已推送至 PR #92,完整 PR 描述已更新。
+对应 [Actions 运行](https://github.com/OriginQ/pyqpanda-algorithm/actions/runs/35576581365)
+状态为 `action_required`,jobs 数量为 0,等待上游维护者批准。
+此前“尚未触发”表述仅适用于首次本地验证时;没有远程 CI 通过的证据,
+本地测试不可替代上游审核。后续发布记录提交不改变应用代码及本地验证结论。
+
+### 增强版全新 wheel 安装复核
+
+使用 `.venv/bin/python -m pip wheel --no-deps --no-build-isolation ./pyqpanda-algorithm`
+构建 wheel,然后在项目内新建 `.venv/enhanced-clean`,按相同 constraints 和
+requirements-dev 安装 wheel 及依赖。确认导入来自该新环境的 site-packages,
+而非 editable 源码;`pip check` 无依赖冲突。
+新环境中 **71 项测试通过(4.70 s)**,CSV 连锁改约/无故障对照与 medium CLI
+均成功,分别保持成本 6/0/4,0 约束违反。
+最初尝试 `python -m build` 时环境未安装 build,改用现有 pip 的 wheel 构建流程,
+没有全局安装包或跳过构建验证。
+
+## 第二批评测与审阅优化(2026-09-21)
+
+冻结提交 `94efa84` 先于评价执行。新增 36 个异构实例/360 条配对种子记录,
+以及三项预约决策全部留在 8 比特组件的业务演示;核心应用源码未修改。
+
+- 当前完整应用测试 **76 passed,6.95 s**,覆盖率 **98.44%**;
+ 包含全部 36 个输入的控制排程、可行集合/成本证明和独立 MILP 一致性。
+- Ruff lint/format(29 文件)、Mypy(11 个核心模块)、pip check 全部通过。
+- 已有纯 wheel 隔离环境再次运行当前 76 项测试:**76 passed,5.45 s**;
+ 新业务演示实际得到成本 12、零违反,全部决策仍由量子组件求解。
+ 因本轮核心包未修改,复用已验证 wheel,不将示例修改称作新算法版本。
+- 第二次完整重放只剔除键名以 `_seconds` 结尾的时间字段后,36 份实例结构记录、
+ 360 份配对训练记录完全一致;源码/输入哈希均匹配,实际最佳位串来自 counts。
+- 业务案例全部 9 个可行选择公开;高价备用设备方案成本 14,三单后移成本 12。
+- 新增独立 fork 的分支 push CI 入口,运行与 PR 相同的 Python 3.12 安装、质量检查、
+ CPU 测试和三类演示;其结果与上游维护者批准状态分开记录。
+
+结果入口:[异构评测分析](EVALUATION_V2.md)、[审阅路线](REVIEW_GUIDE.md)。
+个人 fork 的 [Actions 35583744393](https://github.com/youshen2025/pyqpanda-algorithm/actions/runs/35583744393)
+已在提交 `198ddfb` 上返回 **success**:Ubuntu / Python 3.12 新安装、Ruff/Mypy、
+76 项真实 CPU 测试、medium CLI、CSV 连锁改约及新增取舍演示均通过。
+官方 PR 对应运行 `35583752436` 仍为 `action_required`,等待上游维护者批准。
+fork CI 成功不等于上游 CI 成功或 PR 合并;后续补录记录仅修改文档,
+不改变已验证代码、数据、测试和工作流。
+
+## 同总预算补充评价(2026-09-21)
+
+- 协议先以 `eb9c5c3` 冻结;运行实现 `b140dab`。核心包与旧归档均未修改。
+- **82 passed,7.86 s,核心行覆盖率 98.44%**;Ruff lint/format(32 文件)、
+ Mypy(11 个核心模块)、pip check 均通过。
+- 重新运行全部 36 实例 × 十种子,四条路径保留原始 counts 与状态;总训练评价
+ 上限 120、采样上限 512。首轮 90.81 s,第二轮 90.55 s,非计时字段完全一致。
+- 第二轮 360 条直接 QAOA 记录还与旧 V2 归档一致(仅忽略计时),没有修改旧基准。
+- 两次运行源码/输入/环境指纹一致,归档前源码哈希匹配,采样来源与预算上限复核通过。
+- 22 个仍需量子的可行实例中:直接/分量 QAOA 最优 217/220、220/220;
+ 两个随机对照均为 220/220。低 shots 条件曲线包含分量 QAOA 低于随机的实例。
+- 新增测试涵盖预算守恒、不足时停止、单分量与直接路径完全一致、分量回填、
+ 实际 CPU 样本来源、不可行域和重放比较器拒绝篡改 counts。
+
+完整解释与复现命令见 [MATCHED_BUDGET.md](MATCHED_BUDGET.md),原始记录见
+[results/matched](results/matched/)。此处本地验证不代替当前提交的远程 CI。
+
+本轮发布提交 `a3716ed` 的独立 fork
+[Actions 35586823475](https://github.com/youshen2025/pyqpanda-algorithm/actions/runs/35586823475)
+实际返回 **success**:Ubuntu / Python 3.12.14 全新安装,Ruff/Mypy,
+**82 passed,16.32 s,覆盖率 98.44%**,三类演示全部通过,取舍示例成本 12。
+上游运行 `35586829560` 仍为 `action_required`。最终补录仅修改文档,
+保留该成功运行验证过的代码、测试与数据不变。
+
+## 输入快照与报告完整性修复(2026-09-21)
+
+本轮在临时目录先复现两处实际问题:`--output` 同输入时覆盖原文件;输入在
+求解后被修改时,报告哈希对应新文件而非求解数据。改为读取一次原始字节快照,
+同一快照解析与哈希;`parse_problem(text)` 复用严格 JSON 校验。CLI 在求解前
+检查同路径/符号链接/硬链接,报告写完同目录临时文件后才替换目标。
+
+- 本地 **92 passed,9.39 s,核心覆盖率 98.87%**;新增十项 I/O 回归。
+- Ruff lint/format(33 文件)、Mypy(11 模块)、pip check 全部通过。
+- 原有 **18 passed,7.75 s**。首次误用应用 `*.test.py` 规则未收集到上游测试;
+ 显式采用上游 `Test_*.py` 规则后执行,未把空收集计为通过:
+
+ ```bash
+ OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 .venv/bin/python -m pytest -c test/LabScheduling/pytest.ini -o 'python_files=Test_*.py' test --ignore=test/LabScheduling --timeout=60
+ ```
+
+- 重新构建 wheel 并强制安装到已有 `.venv/enhanced-clean` 隔离环境,确认实际
+ 导入 site-packages。**92 passed,5.60 s**,取舍演示成本 12、最优差距 0。
+- 写入/替换故障用 I/O 层故障注入验证;数据修改/删除测试仍运行真实 CPU 求解。
+ CRLF 原字节哈希、有效输出符号链接保留、临时文件清理也已检查。
+
+量子线路、优化器、QUBO 与冻结实验数据未改。旧归档中的源码指纹保留为对应
+历史提交的记录(同预算归档为 `a3716ed`),不重写成修复后的源码指纹。
+普通写入失败保护不等于断电持久性或多写入进程事务保证,接口说明见主教程。
+
+发布提交 `36adc9f` 的个人 fork
+[CI 35588841891](https://github.com/youshen2025/pyqpanda-algorithm/actions/runs/35588841891)
+全部通过:全新安装、质量检查、**92 passed,17.03 s,覆盖率 98.87%**、
+三类 CPU 演示成功,取舍样本与证书仍为成本 12。上游 `35588846744` 仍待
+维护者批准;最后补录 CI 的提交仅改变文档。
+
+## 可选无支持候选化简(2026-09-21)
+
+范围与边界数据先在 `086840d` 提交;默认模式保留,增加 `--reduce --pruning arc`。
+实现采用确定性 AC-3,记录完整对方域及逐对冲突原因,不增加依赖或新量子变体。
+
+- 本地 **102 passed,13.91 s,核心覆盖率 98.92%**(831 行,9 行未覆盖);
+ reduction.py 的 128 条可执行语句全部覆盖。
+- 200 个固定种子小问题、全部既有 36 个 V2 输入和一个专门构造的边界案例,
+ 逐一核对原始语义全部可行集合、成本、回填映射与删除依据。
+- 40 个输入的默认化简审计与上一发布 `f64a7ad` 完全相同;旧归档未改。
+- 18 比特单组件降至 12 比特,无预先固定项;seed 7/19/42 均实际采到最优成本 3。
+ V2 中仅 5/36 最大组件缩小,全部结果与无收益/不可行实例保留。
+- 第二次完整评价与第一次所有非 `_seconds` 字段完全一致;14 项源码/协议指纹
+ 和全部 37 项输入指纹核对通过。没有用旧归档源码指纹替换当前指纹。
+- Ruff lint/format(35 文件)、Mypy(11 核心模块)、pip check 通过。
+- 原有 **18 passed,8.75 s**,使用此前记录的 `Test_*.py` 收集方式。
+- 最新 wheel 构建并重新安装至项目内 `.venv/enhanced-clean`,确认来自 site-packages;
+ 最终完整 **102 passed,9.00 s**,包含新增模式真实 CPU 演示与全记录重放。
+ wheel SHA-256:`d4cd80c87c604e0cedaf48b93e5200564e601d7e579b3658a5f044be7d2237aa`。
+- 增加端到端 CLI 的聚焦 CI 步骤;源码/数据路径、相对文档链接、公开函数注解与
+ 文档字符串、Git diff 均已检查。
+
+新评价脚本在初次运行中暴露输出目录未创建、内存 tuple 与 JSON list 比较问题,
+均在归档前修复;新增命令级真实 CPU 重放测试,最终记录来自修复后的两次完整运行。
+数学证明、经典算法出处、局部一致性不保证全局可行的反例及复现命令见
+[ARC_PRUNING.md](ARC_PRUNING.md)。新模式的远程 CI 状态在发布后另行记录。
+
+弧一致性版本 `4eb272a` 的个人 fork
+[CI 35597416071](https://github.com/youshen2025/pyqpanda-algorithm/actions/runs/35597416071)
+全部成功:Ubuntu / Python 3.12.14 全新安装、Ruff/Mypy,**102 passed,19.82 s,
+覆盖率 98.92%**,中等实例、连锁改约、成本取舍及新增资源边界四类 CPU 示例均通过。
+官方运行 `35597421975` 仍待维护者批准。随后补录 CI 的提交只修改文档,
+保留被远程验证的核心代码、测试、数据与工作流。
+
+## 决策权重敏感性与发布候选(2026-09-21)
+
+参数协议 `5ebcdc3` 在评价前提交;实现 `51a5067`。原核心模块、默认权重和
+量子参数均未修改,只在现有 tradeoff 演示增加可选 `--sensitivity`。
+
+- 权重 0–6、seed 7/19/42,共 21 次真实 CPU 求解,均采到认证最优、零违反;
+ 各权重完整原始可行集合均为相同的九个排程。w=3 处两个方案同优,代价 15。
+- 全部输入、参数、counts、成本、状态及源码/环境指纹二次重放一致,仅忽略耗时。
+ 17 项源码/协议/配置指纹与七个派生输入哈希核对通过。
+- 本地 **108 passed,31.90 s,核心行覆盖率 98.92%**。
+ 新增测试包含真实 21 次运行与重放、全部同优接受、非最优/无可行样本保留、
+ 权重零边界、成本变换不修改原输入,以及拒绝被改变的样本和源码指纹。
+- Ruff lint/format(37 文件)、Mypy(11 核心模块)、pip check 通过。
+- 创建 `51a5067` 的干净 detached worktree,在其中新建 `.venv`,按锁定依赖
+ 安装 wheel 和开发依赖;确认从 site-packages 导入,11 个安装核心文件与
+ 源码逐个 SHA-256 相同。**108 passed,18.78 s**,pip check 通过。
+ 同一干净环境下原有 **18 passed,9.35 s**。
+- wheel SHA-256:`4bc41141574a11b949ca01256d707429317f5122f5da167d86a89247c61bfbac`。
+- 安装完成后的命令级演示计时(含解释器启动):tradeoff + 21 次敏感性 **6.98 s**,
+ arc 资源边界 **2.40 s**,原模式资源限制 **1.82 s**,不可行案例 **2.25 s**;
+ 退出码依次为 0/0/5/3。总计约 13.45 s,满足本机五分钟演示目标。
+ 首次依赖下载另计,不将本机时间推广为跨机器性能承诺。
+
+发布候选的命令、提交、导入位置与计时见
+[release-check.json](results/sensitivity/release-check.json)。审阅路线已收敛到
+REVIEW_GUIDE.md;权重说明和决策表并入原 EVALUATION_V2.md,没有新增平行教程。
+完整实验保留为约 221 KB 的紧凑 JSON,便于减少生成数据的 diff 行数。
+
+发布提交 `3846495` 的个人 fork
+[CI 35600289671](https://github.com/youshen2025/pyqpanda-algorithm/actions/runs/35600289671)
+全部成功:Ubuntu / Python 3.12.14 全新安装、Ruff/Mypy、**108 passed,43.86 s,
+覆盖率 98.92%**,全部 CPU 演示通过,包含新增的 21 次敏感性运行。
+官方 `35600294948` 仍为 `action_required`,等待维护者批准。随后仅补录文档,
+不改变该成功运行验证过的代码、数据、测试和工作流。
+
+## 第七轮:Python 3.11 / 3.13 安装兼容性(2026-09-21)
+
+在 `a27d784` 的两个干净 detached worktree 中各建项目 `.venv`,安装上一轮同一
+wheel,SHA-256 仍为 `4bc41141574a11b949ca01256d707429317f5122f5da167d86a89247c61bfbac`。
+实际导入来自 site-packages,11 个核心模块与 checkout 逐文件字节相同。
+
+- Python 3.11.16:**108 passed,20.46 s,核心覆盖率 98.92%**;上游 **18 passed,10.86 s**。
+- Python 3.13.11:**108 passed,22.79 s,核心覆盖率 98.92%**;上游 **18 passed,11.76 s**。
+- 两个环境 `pip check` 通过,依赖逐项符合各自约束;medium 实际样本目标 4、
+ AC-3 边界目标 3,零违反、零 gap;取舍与 21 次敏感性演示通过,超限/不可行
+ 命令分别返回 5/3。计时为本机记录,部分检查并行进行,不作性能比较。
+- 原 3.12 约束在 3.11 安装预检失败;新增 `constraints-py311.txt` 仅更换 NumPy、
+ SciPy、ContourPy、Sphinx 四个不支持 3.11 的固定版本。3.13 沿用原文件。
+- 首次按包名统计覆盖率在两个环境均发生 9 项收集错误;改用 wheel 安装目录
+ 作为覆盖率来源后完整通过。错误、处理方法和环境边界保留于
+ [兼容性说明](COMPATIBILITY.md)及[机器记录](results/compatibility.json)。
+
+CI 扩展为三个 Python 版本,Mypy 按各目标版本检查,增加上游测试及两个失败
+状态的显式核验。核心算法、示例、旧实验归档与 3.12 约束文件均未修改。
+本地 Ruff 检查和 37 文件格式检查通过;Mypy 在新增两个目标版本均通过。
+
+发布提交 `5678e41` 的个人 fork
+[三版本 CI 35604218576](https://github.com/youshen2025/pyqpanda-algorithm/actions/runs/35604218576)
+已全部成功:
+
+| Ubuntu Python | 应用测试 | 原有算法测试 | 核心覆盖率 |
+|---|---|---|---|
+| 3.11.16 | 108 passed,30.62 s | 18 passed,12.44 s | 98.92% |
+| 3.12.14 | 108 passed,24.22 s | 18 passed,8.97 s | 98.92% |
+| 3.13.15 | 108 passed,38.30 s | 18 passed,14.86 s | 98.92% |
+
+三项任务的安装、pip check、Ruff/Mypy、全部成功演示和两个失败状态检查均通过。
+3.11 另报告 15 项上游文档字符串转义的弃用警告;没有测试失败,未扩展为无关修复。
+官方 [35604226057](https://github.com/OriginQ/pyqpanda-algorithm/actions/runs/35604226057)
+仍为 `action_required`,待维护者批准。随后提交仅记录这些结果,未改变矩阵验证过的
+代码、约束文件、测试或工作流。
+
+## 第八轮:报告预算边界与最终审查(2026-09-21)
+
+复现输入含 2050 个原始候选、日历剪枝后仅 2 比特,原报告在量子求解后因
+MILP 的 2048 原始候选上限抛错,导致可用结果无法保存。实现提交 `1a54465`
+在报告层预检独立基线预算,超过则记录 `budget_exceeded`、变量数/上限以及空证书。
+直接 `solve_milp` API 的超限异常保持不变;量子算法与默认参数未修改。
+
+- 新增五项回归:2048/2049 分界、双认证路径超预算、日历空域不可行及 CLI
+ 保存结果。修复前 **4 failed、1 passed**,修复后 **5 passed**。
+- 完整应用 **113 passed,30.79 s,核心覆盖率 98.92%**。
+- simple、medium、infeasible、tradeoff、support-chain 五条既有路径重放,
+ 全部非计时报告字段与修复前一致;未仅比较目标值,也未替换实际采样结果。
+- Ruff lint/format(38 文件)、Mypy(11 模块)通过。
+
+历史实验文件保持原样。此次 report.py / milp.py 源码指纹发生变化;严格对照
+历史归档需使用其记录对应的提交和环境,不能忽略指纹差异假称同一构建重放。
+当前版本同环境的独立重复运行仍由完整测试中的重放检查覆盖。
+
+从 `1a54465` 建立干净 worktree、新建项目 `.venv`、安装新 wheel 与固定依赖,
+确认 site-packages 导入和 11 个核心模块字节一致。完整 **113 passed,41.26 s,
+覆盖率 98.92%**,原有 **18 passed,10.47 s**;pip check、medium、取舍及 21 次
+敏感性运行、AC-3 和两个失败退出状态全部通过。wheel 指纹、各命令与结果见
+[final-review.json](results/final-review.json)。
+
+发布提交 `e89c78b` 的个人 fork
+[CI 35606032579](https://github.com/youshen2025/pyqpanda-algorithm/actions/runs/35606032579)
+三版本全部成功,安装、质量检查、全部成功/失败演示均通过:
+
+| Ubuntu Python | 应用测试 | 原有算法测试 | 核心覆盖率 |
+|---|---|---|---|
+| 3.11.16 | 113 passed,37.00 s | 18 passed,14.15 s | 98.92% |
+| 3.12.14 | 113 passed,30.63 s | 18 passed,9.24 s | 98.92% |
+| 3.13.15 | 113 passed,20.77 s | 18 passed,8.04 s | 98.92% |
+
+3.11 仍有相同的 15 项上游文档字符串弃用警告。官方
+[35606039667](https://github.com/OriginQ/pyqpanda-algorithm/actions/runs/35606039667)
+仍待维护者批准运行;PR 为 Open、可合并,无评论或评审。后续仅补录验证记录,
+不更改被验证代码、数据、测试与工作流。
+
+## 评委入口与重放说明核查(2026-09-22)
+
+本轮仅调整文档,核心代码仍与 `e89c78b` 的三版本 CI 相同,不新增测试数量或
+覆盖率声明。以 `0a524ce` 的代码、现有 Python 3.12.3 项目环境运行两次
+`tradeoff_demo.py --sensitivity`,分别输出至本地忽略目录
+`reports/reviewer-audit/run-1` 和 `run-2`;第二次通过 `--verify-sensitivity`
+比较第一次记录。两命令退出码均为 0,各包含 21 次敏感性求解,所有非计时字段
+严格一致;主案例均为成本 12、gap 0、8 比特、无固定变量、9 个可行备选。
+
+对审阅指南列出的三个历史提交,通过 `git show COMMIT:PATH` 获取文件字节并
+重新计算 SHA-256,与各自原始归档中的源码指纹逐项比较:同预算 17 项、AC-3
+14 项、敏感性 17 项全部一致。本轮未重新执行历史环境的完整量子实验,历史
+重放结果仍以各原轮次记录为准。没有覆写旧归档,也没有忽略源码或环境差异。
+
+文档本地链接及 Git diff 检查通过。PR #92 仍开放、可合并,无评论或评审;
+官方运行 `35606039667` 仍为 `action_required`。平台作品回执尚未核验。
+
+## 试用材料的合成演练(2026-09-22)
+
+按 USER_TRIAL.md 原样执行四个 bash 命令块:创建本地案例、导入 CSV、运行
+已有 CPU CLI、读取报告摘要,退出码全部为 0。沿用未修改的合成 chain.csv
+和 outage.json,展开 10 个候选;报告目标值 6、零违反、gap 0,三项任务由
+传播固定、一个 4 比特组件实际执行量子求解,输入字节与报告 SHA-256 一致。
+命令日志保留在本地忽略目录 reports/trial-material-validation。
+
+重复执行初始化和导入命令均因文件已存在而停止,案例目录所有文件字节保持不变。
+模板反馈仍为“未开展真实试用”,未填入虚构参与者或意见;案例与反馈目录经
+git check-ignore 确认不进入普通提交。本轮仅新增文档,未更改算法或现有测试,
+不扩大既有 113 项测试和三版本 CI 的验证范围。
+
+
+## 原始日历空域的构造预算检查(2026-09-22)
+
+独立 MILP 现在先判断每项任务是否有日历可用的原始选项。若没有,报告明确
+标出任务和原因、constraints=0,不调用 HiGHS;这与一般约束不可行的求解器
+认证路径区分开。6 个回归覆盖停机、清洗、半开区间边界、保留可用候选,以及
+512 任务 CLI 报告(退出 3,gap=null,量子线路调用 0)。
+
+新 wheel 在项目内独立 `.venv` 安装,确认 site-packages 导入与全部 11 个核心
+模块字节一致;**137 passed,32.30 s**(119 应用 + 18 原有测试),核心覆盖率
+**98.93%**(838 行、9 行未覆盖)。Ruff/格式/Mypy/pip check 通过。中等实例、
+主取舍案例及 21 次敏感性、AC-3 资源边界与显式失败状态均在安装包环境通过。
+
+此处是本地结果;本轮三版本远程 CI 尚待推送后核对。历史源码指纹与实验记录
+没有修改,严格重放仍应按 REVIEW_GUIDE 检出相应固定提交。
+
+
+`b0a92d0` 的个人 fork [CI 35696834868](https://github.com/youshen2025/pyqpanda-algorithm/actions/runs/35696834868)
+三版本全部通过:3.11 / 3.12 / 3.13 各 119 项应用测试、18 项上游测试、98.93%
+覆盖率及全部 CPU 演示。应用测试用时分别 37.59 / 45.03 / 36.12 s,上游测试
+14.46 / 15.16 / 14.51 s。官方 [35696840057](https://github.com/OriginQ/pyqpanda-algorithm/actions/runs/35696840057)
+仍为 action_required。该记录覆盖日历空域提前判定,尚未包含后续冗余配对行优化。
+
+
+## 日历固定零变量的冗余配对行(2026-09-22)
+
+新增两项真实 MILP 回归验证:省去上界固定为零变量的冗余配对行后,仍保留
+原始变量数、原始选项编号和最优目标。修改前两项均失败,修改后完整应用
+**121 passed,19.87 s,98.93%**。固定零变量不影响可行集合的证明见 ENHANCEMENTS。
+
+更新后的 wheel 在另一个全新项目 `.venv` 安装,确认 site-packages 导入、11 个
+模块字节相同;**139 passed,26.86 s**(121 应用 + 18 原有),核心覆盖率
+**98.93%**(839 行、9 行未覆盖)。主取舍及 21 次敏感性通过;Ruff/format/Mypy/
+pip check 通过。对应远程结果见下方最终核对。
+
+## 最终交付核对(2026-09-22)
+
+个人 fork [CI 35697552146](https://github.com/youshen2025/pyqpanda-algorithm/actions/runs/35697552146)
+验证代码提交 `6c43e4059c07516f5cd1df5d912f417faa37bdeb`,最终 conclusion=success。
+收尾仅更新文档,不修改被测代码。
+
+| Python | 应用测试 | 原有测试 | 应用覆盖率 | 通过轮次 |
+| --- | --- | --- | --- | --- |
+| 3.11 | 121,27.42 s | 18,11.00 s | 98.93% | 失败任务重跑一次 |
+| 3.12 | 121,44.37 s | 18,15.34 s | 98.93% | 首次 |
+| 3.13 | 121,38.23 s | 18,14.83 s | 98.93% | 首次 |
+
+3.11 首次应用测试已通过(121 项,36.47 s),原有测试为 17 通过、1 失败:
+`test/QAlgBase/Test_QUBO_GAS_origin_run.py:31` 的有限次随机 GAS 搜索返回
+`[1,1,0]`,与断言的 `[[0,1,0]]` 不同。应用分支没有修改该测试、QUBO.py 或
+Grover_core.py。保留失败日志后仅重跑失败矩阵任务一次,未修改测试断言或代码。
+因此不能将本次记录描述为首次全绿,也不能由重跑通过断言已修复该随机失败。
+
+原始日志保留于本地忽略目录 `reports/calendar-final-release/ci-attempt1.log`、
+`ci-failed.log`、`ci-attempt2.log`;公开运行链接也可查看两轮结果。
+官方 [35697558446](https://github.com/OriginQ/pyqpanda-algorithm/actions/runs/35697558446)
+仍为 action_required,等待维护者批准。
+
+当前应用与四个独立库修复的临时集成 `faee903` 在 Python 3.12 上通过
+**250 项测试,27.68 s,应用覆盖率 98.93%**。它没有混入任何参赛 PR;此前
+Python 3.11–3.13 各 242 项的记录仍对应应用旧提交,不扩大其验证范围。
+
+截至本次核对,应用 #92 与库修复 #95/#96/#97/#98 均开放且可合并。这表示 Git
+未检测到合并冲突,不表示维护者已经批准。停止主动扩展功能;平台提交回执、
+正式审核及真实试用仍属外部待办,没有虚构完成状态。
diff --git a/Tutorials/LabScheduling/research_pr_snapshot.json b/Tutorials/LabScheduling/research_pr_snapshot.json
new file mode 100644
index 00000000..dc42e0ce
--- /dev/null
+++ b/Tutorials/LabScheduling/research_pr_snapshot.json
@@ -0,0 +1,358 @@
+{
+ "checked_on": "2026-09-21",
+ "source": "https://github.com/OriginQ/pyqpanda-algorithm/pulls",
+ "method": "GitHub HTML pages 1, 2, 3; page 4 empty",
+ "open_pr_count": 70,
+ "pull_requests": [
+ {
+ "number": 62,
+ "title": "【代码贡献】新增 Simon 隐藏异或算法与 GF(2) 恢复工具",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/62"
+ },
+ {
+ "number": 61,
+ "title": "【代码贡献】局部期望、量子核分量抽样、自适应归属与弱测量恢复",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/61"
+ },
+ {
+ "number": 60,
+ "title": "【创新应用】新增小麦灌溉预测与 QUBO/QAOA 调度应用(含本源真机验证)",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/60"
+ },
+ {
+ "number": 59,
+ "title": "【代码贡献】新增 Deutsch-Jozsa 与 Bernstein-Vazirani oracle-learning 模块",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/59"
+ },
+ {
+ "number": 58,
+ "title": " 新增 QECClosedForm:量子纠错码闭式参数预测(与 QECNoise 闭环)",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/58"
+ },
+ {
+ "number": 57,
+ "title": "【创新应用】量子纠错相干噪声 θ⁴ 损失标度演示",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/57"
+ },
+ {
+ "number": 56,
+ "title": "【代码贡献】优化量子核矩阵与量子距离计算:去除采样噪声、复用模拟器并修复多处缺陷",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/56"
+ },
+ {
+ "number": 55,
+ "title": "【代码贡献】完善 QARM 高阶关联规则枚举",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/55"
+ },
+ {
+ "number": 54,
+ "title": "【代码贡献】Reuse QSVR training-kernel symmetry to reduce simulator calls",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/54"
+ },
+ {
+ "number": 53,
+ "title": "【创新应用】QSEncode-Insight:面向误差预算的资源感知量子态制备与审计工具",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/53"
+ },
+ {
+ "number": 52,
+ "title": "【代码贡献】优化 QSEncode Walsh 变换与 Top-K 筛选性能",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/52"
+ },
+ {
+ "number": 51,
+ "title": "【代码贡献】补充 QSEncode 稀疏编码模块单元测试与文档示例",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/51"
+ },
+ {
+ "number": 50,
+ "title": "【代码贡献】修复 QARM 支持度与关联规则结果错误",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/50"
+ },
+ {
+ "number": 47,
+ "title": "【代码贡献】Add quantum counting (BHT) built on the existing Grover operator",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/47"
+ },
+ {
+ "number": 46,
+ "title": "【代码贡献】QSVR: build the show_res test grid from each column's own min/max",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/46"
+ },
+ {
+ "number": 45,
+ "title": "【代码贡献】Fix QUBO_QAOA.run crashing with default arguments",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/45"
+ },
+ {
+ "number": 44,
+ "title": "【代码贡献】QSVD: skip the unused state-vector simulation in the loss inner loop",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/44"
+ },
+ {
+ "number": 43,
+ "title": "【代码贡献】Fix QPCA crash on 4-feature input and k=2 returning 0",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/43"
+ },
+ {
+ "number": 42,
+ "title": "【代码贡献】Fix qft_qubit_comparator geq and s modes returning wrong results",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/42"
+ },
+ {
+ "number": 41,
+ "title": "【代码贡献】Fix SPSA optimizer ignoring parameter bounds",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/41"
+ },
+ {
+ "number": 40,
+ "title": "【代码贡献】修复并加速 QAOA 的 CVaR/Gibbs 风险目标函数",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/40"
+ },
+ {
+ "number": 39,
+ "title": "【代码贡献】修复 QmRMR 星号导入报错、8 个无法运行的示例及文档中的过时接口",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/39"
+ },
+ {
+ "number": 37,
+ "title": "【创新应用】基于振幅估计的量子风险分析:VaR 与预期损失计算",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/37"
+ },
+ {
+ "number": 36,
+ "title": "【代码贡献】修正 Grover 最优迭代次数计算,补充输入校验与依赖声明",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/36"
+ },
+ {
+ "number": 35,
+ "title": "【创新应用】量子增强A股选股系统——量子核SVM市场择时",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/35"
+ },
+ {
+ "number": 91,
+ "title": "【代码贡献】新增 QMitigation 读出误差缓解与零噪声外推模块",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/91"
+ },
+ {
+ "number": 90,
+ "title": "【代码贡献】新增 qDRIFT 随机哈密顿量模拟算法",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/90"
+ },
+ {
+ "number": 89,
+ "title": "【代码贡献】新增 Quantum Lanczos / Krylov 谱估计算法",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/89"
+ },
+ {
+ "number": 88,
+ "title": "【代码贡献】新增 Quantum Natural Gradient 与 Fubini-Study 度量模块",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/88"
+ },
+ {
+ "number": 87,
+ "title": "【代码贡献】新增 Parameter-Shift 变分量子梯度模块",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/87"
+ },
+ {
+ "number": 85,
+ "title": "【代码贡献】新增 Superdense Coding 量子超密编码模块",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/85"
+ },
+ {
+ "number": 83,
+ "title": "【代码贡献】新增 QuantumReservoir 量子储备池计算模块",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/83"
+ },
+ {
+ "number": 82,
+ "title": "【代码贡献】新增 Bernstein–Vazirani 隐藏比特串算法",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/82"
+ },
+ {
+ "number": 81,
+ "title": "【代码贡献】新增量子相位估计(QPE)算法模块",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/81"
+ },
+ {
+ "number": 80,
+ "title": "【代码贡献】新增最大似然振幅估计算法(MLAE)",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/80"
+ },
+ {
+ "number": 79,
+ "title": "【代码贡献】新增 VQLS 变分量子线性求解器",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/79"
+ },
+ {
+ "number": 78,
+ "title": "【代码贡献】新增多量子比特 SWAP Test 状态重叠估计算法",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/78"
+ },
+ {
+ "number": 77,
+ "title": "【代码贡献】新增量子态层析 QST 模块",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/77"
+ },
+ {
+ "number": 76,
+ "title": "【代码贡献】新增 Hadamard Test 复期望值估计模块",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/76"
+ },
+ {
+ "number": 75,
+ "title": "【代码贡献】新增可复用量子傅里叶变换(QFT)模块",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/75"
+ },
+ {
+ "number": 74,
+ "title": "【代码贡献】新增 Grover 量子计数算法",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/74"
+ },
+ {
+ "number": 73,
+ "title": "【代码贡献】新增 Quantum Counting 标记态计数模块",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/73"
+ },
+ {
+ "number": 72,
+ "title": "【代码贡献】新增 QTeleport 相干量子隐形传态模块",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/72"
+ },
+ {
+ "number": 69,
+ "title": "【代码贡献】完善 QUBO 二进制多项式规范化与高阶项校验",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/69"
+ },
+ {
+ "number": 68,
+ "title": "【代码贡献】Fix SPSA termination when tolerance is set",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/68"
+ },
+ {
+ "number": 67,
+ "title": "【代码贡献】新增BBHT未知解数量随机Grover搜索",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/67"
+ },
+ {
+ "number": 66,
+ "title": "【代码贡献】QKMeans 提前拒绝不可能的聚类数量",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/66"
+ },
+ {
+ "number": 65,
+ "title": "【代码贡献】修复 QSVR 绘图网格的特征范围",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/65"
+ },
+ {
+ "number": 64,
+ "title": "【代码贡献】新增三量子比特重复码 QEC 算法模块",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/64"
+ },
+ {
+ "number": 63,
+ "title": "【代码贡献】新增离散时间量子行走 QWalk 模块",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/63"
+ },
+ {
+ "number": 34,
+ "title": "【代码贡献】新增QPE量子相位估计算法",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/34"
+ },
+ {
+ "number": 32,
+ "title": "【创新应用】新增 QShadow:可观测量感知的经典阴影估计与置信预算控制",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/32"
+ },
+ {
+ "number": 31,
+ "title": "【创新应用】新增量子格密码攻击算法集(QLattice)",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/31"
+ },
+ {
+ "number": 30,
+ "title": "【创新应用】量子密钥分发QKD协议",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/30"
+ },
+ {
+ "number": 29,
+ "title": "【创新应用】QJPEG 量子图像压缩算法",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/29"
+ },
+ {
+ "number": 28,
+ "title": "【代码贡献】Add VQLS variational solver for linear systems",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/28"
+ },
+ {
+ "number": 27,
+ "title": "【代码贡献】修复 QAE / IQAE 目标量子比特索引错误",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/27"
+ },
+ {
+ "number": 26,
+ "title": "【创新应用】新增 Lindblad 动力学的随机 Magnus 变分模拟算法",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/26"
+ },
+ {
+ "number": 24,
+ "title": "【创新应用】新增 QReupload:数据重上传变分量子学习模块(可训练 input scaling + Fourier/贫瘠高原诊断)",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/24"
+ },
+ {
+ "number": 23,
+ "title": "【代码贡献】新增 VQE 变分量子本征求解器算法模块",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/23"
+ },
+ {
+ "number": 22,
+ "title": "【代码贡献】Add missing pandas and scikit-learn to requirements.txt",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/22"
+ },
+ {
+ "number": 21,
+ "title": "【代码贡献】Add HHL solver for linear systems (Ax=b)",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/21"
+ },
+ {
+ "number": 20,
+ "title": "feat: 新增 VQE(变分量子本征求解器)模块",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/20"
+ },
+ {
+ "number": 19,
+ "title": "[Innovative Application] NISQ Hardware Benchmarking Suite",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/19"
+ },
+ {
+ "number": 18,
+ "title": "[Innovative Application] Add CCF2026 professional MNIST submission",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/18"
+ },
+ {
+ "number": 17,
+ "title": "【创新应用】SU(2) color-chain quantum simulation tutorial",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/17"
+ },
+ {
+ "number": 15,
+ "title": "【代码贡献】优化 QSVM 算法实现效率",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/15"
+ },
+ {
+ "number": 9,
+ "title": "Fix typos, indentation, and add missing docstrings (QKmeans + Grover)",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/9"
+ },
+ {
+ "number": 7,
+ "title": "docs(QAOA): Comprehensive bilingual documentation",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/7"
+ },
+ {
+ "number": 6,
+ "title": "docs: Add comprehensive QAOA algorithm documentation with examples",
+ "url": "https://github.com/OriginQ/pyqpanda-algorithm/pull/6"
+ }
+ ]
+}
diff --git a/Tutorials/LabScheduling/results/compatibility.json b/Tutorials/LabScheduling/results/compatibility.json
new file mode 100644
index 00000000..f4b0ca25
--- /dev/null
+++ b/Tutorials/LabScheduling/results/compatibility.json
@@ -0,0 +1,448 @@
+{
+ "date": "2026-09-21",
+ "environments": [
+ {
+ "application_tests": {
+ "command": "OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 MPLBACKEND=Agg .venv/bin/python -m pytest -c test/LabScheduling/pytest.ini test/LabScheduling --timeout=60 --cov=.venv/lib/python3.11/site-packages/pyqpanda_alg/LabScheduling --cov-fail-under=95",
+ "coverage_percent": 98.92,
+ "passed": 108,
+ "summary": "============================= 108 passed in 20.46s ============================="
+ },
+ "arc_objective": 3,
+ "commands": [
+ {
+ "command": [
+ ".venv/bin/python",
+ "-m",
+ "pip",
+ "check"
+ ],
+ "exit_code": 0,
+ "expected_exit_code": 0,
+ "name": "pip-check",
+ "seconds": 0.7555378020042554
+ },
+ {
+ "command": [
+ ".venv/bin/python",
+ "-m",
+ "pyqpanda_alg.LabScheduling",
+ "pyqpanda-algorithm/example/LabScheduling/data/medium.json",
+ "--output",
+ "reports/medium.json"
+ ],
+ "exit_code": 0,
+ "expected_exit_code": 0,
+ "name": "medium",
+ "seconds": 2.691120009010774
+ },
+ {
+ "command": [
+ ".venv/bin/python",
+ "pyqpanda-algorithm/example/LabScheduling/tradeoff_demo.py",
+ "--sensitivity"
+ ],
+ "exit_code": 0,
+ "expected_exit_code": 0,
+ "name": "tradeoff",
+ "seconds": 8.336750921997009
+ },
+ {
+ "command": [
+ ".venv/bin/python",
+ "-m",
+ "pyqpanda_alg.LabScheduling",
+ "pyqpanda-algorithm/example/LabScheduling/data/support-chain.json",
+ "--reduce",
+ "--pruning",
+ "arc",
+ "--output",
+ "reports/arc.json"
+ ],
+ "exit_code": 0,
+ "expected_exit_code": 0,
+ "name": "arc",
+ "seconds": 2.260765751998406
+ },
+ {
+ "command": [
+ ".venv/bin/python",
+ "-m",
+ "pyqpanda_alg.LabScheduling",
+ "pyqpanda-algorithm/example/LabScheduling/data/support-chain.json",
+ "--reduce",
+ "--output",
+ "reports/resource-limit.json"
+ ],
+ "exit_code": 5,
+ "expected_exit_code": 5,
+ "name": "resource-limit",
+ "seconds": 1.7804905840021092
+ },
+ {
+ "command": [
+ ".venv/bin/python",
+ "-m",
+ "pyqpanda_alg.LabScheduling",
+ "pyqpanda-algorithm/example/LabScheduling/data/infeasible.json",
+ "--reduce",
+ "--output",
+ "reports/infeasible.json"
+ ],
+ "exit_code": 3,
+ "expected_exit_code": 3,
+ "name": "infeasible",
+ "seconds": 1.9844317759998376
+ },
+ {
+ "command": [
+ ".venv/bin/python",
+ "-m",
+ "pytest",
+ "-c",
+ "test/LabScheduling/pytest.ini",
+ "-o",
+ "python_files=Test_*.py",
+ "test",
+ "--ignore=test/LabScheduling",
+ "--timeout=60"
+ ],
+ "exit_code": 0,
+ "expected_exit_code": 0,
+ "name": "upstream-tests",
+ "seconds": 12.052832531000604
+ }
+ ],
+ "constraints_path": "pyqpanda-algorithm/example/LabScheduling/constraints-py311.txt",
+ "constraints_sha256": "626bf4c0865b26d9cd4d30ba243c5e1be51d87d59208034031007f7441f8904f",
+ "infeasible_status": "infeasible",
+ "initial_coverage_probe": {
+ "argument": "--cov=pyqpanda_alg.LabScheduling",
+ "collection_errors": 9,
+ "exit_code": 2,
+ "message": "ImportError: cannot load module more than once per process",
+ "resolution": "Use the installed package directory as the coverage source; no application change."
+ },
+ "installed_module": ".venv/lib/python3.11/site-packages/pyqpanda_alg/LabScheduling",
+ "machine": "x86_64",
+ "medium_objective": 4,
+ "module_sha256": {
+ "__init__.py": "1336ac94b68e53a108965f0f2127d619c08d3c4ecfd6b541233c193b6a9ee474",
+ "__main__.py": "6d147f69d578cd770d24d52ce7b7aeea0f487ad7279fb9b70fb413c34c72b328",
+ "bookings.py": "dba45010ef9e5f6a1781d8a8d79e9f3faf4fbf90223f526f550687723de1382a",
+ "classical.py": "d1bd575af9969c49cda59cd15328d98f176bb004ebc22e887be173b43d69aac5",
+ "metrics.py": "b084507c46a7bf6cc1ca2a6a116156e24a23efb3fdea699f02b4a29bdbd503e0",
+ "milp.py": "fc3b22b705beb95491b6b9c51f875480a021bbb40607810abdc04fd6dc8b97a2",
+ "model.py": "f442c4751a7f17f66e5fae331e14f75eaa327177af5346a49ceddb87e86ef509",
+ "problem.py": "5abd2c9f01a712fb18ac7791bb89cba435eecd35f49b05283a3ca7ad6d7f582b",
+ "quantum.py": "3f8469be5a92afbf87eb0c82f7b80282a6443edfbe335a55635717f40501522f",
+ "reduction.py": "fa249b234ef4fc74c88a916a6bba87bd6150f2905dd47fe860e2e7d5617d7870",
+ "report.py": "3f98ebf581433796cb8c7dd421260bb6e5f30d17495dc24bf7f4be11dfe6644c"
+ },
+ "python": "3.11.16",
+ "resource_limit_status": "resource_limit",
+ "source_commit": "a27d784c7d6fddc5603fd7615eb840d59c60378a",
+ "system": "Linux",
+ "upstream_tests": {
+ "passed": 18,
+ "summary": "============================= 18 passed in 10.86s =============================="
+ },
+ "versions": {
+ "Cython": "3.3.0",
+ "Jinja2": "3.1.6",
+ "MarkupSafe": "3.0.3",
+ "PyYAML": "6.0.3",
+ "Pygments": "2.21.0",
+ "Sphinx": "9.0.4",
+ "alabaster": "1.0.0",
+ "allure-pytest": "2.16.1",
+ "allure-python-commons": "2.16.1",
+ "ast_serialize": "0.11.2",
+ "astroid": "4.3.1",
+ "attrs": "26.1.0",
+ "babel": "2.18.0",
+ "certifi": "2026.7.22",
+ "charset-normalizer": "3.5.1",
+ "cloudpickle": "3.1.2",
+ "contourpy": "1.3.3",
+ "coverage": "7.16.1",
+ "cycler": "0.12.1",
+ "docutils": "0.22.4",
+ "fonttools": "4.65.0",
+ "graphviz": "0.21",
+ "idna": "3.20",
+ "imagesize": "2.0.1",
+ "iniconfig": "2.3.0",
+ "joblib": "1.6.0",
+ "kiwisolver": "1.5.1",
+ "librt": "0.15.0",
+ "matplotlib": "3.11.2",
+ "mpmath": "1.3.0",
+ "mypy": "2.3.1",
+ "mypy_extensions": "1.1.0",
+ "narwhals": "2.26.0",
+ "networkx": "3.6.1",
+ "numpy": "2.4.6",
+ "packaging": "26.3",
+ "pandas": "3.0.6",
+ "pathspec": "1.1.1",
+ "pillow": "12.3.0",
+ "pip": "24.0",
+ "pluggy": "1.6.0",
+ "pycryptodome": "3.23.0",
+ "pydot": "4.0.1",
+ "pyparsing": "3.3.3",
+ "pyqpanda3": "0.4.1",
+ "pyqpanda_alg": "2.0.0",
+ "pytest": "9.1.1",
+ "pytest-cov": "7.1.0",
+ "pytest-timeout": "2.4.0",
+ "python-dateutil": "2.9.0.post0",
+ "requests": "2.34.2",
+ "roman-numerals": "4.1.0",
+ "ruff": "0.16.8",
+ "scikit-learn": "1.9.1",
+ "scipy": "1.17.1",
+ "setuptools": "84.0.0",
+ "six": "1.17.0",
+ "snowballstemmer": "3.1.1",
+ "sphinx-autoapi": "3.8.1",
+ "sphinxcontrib-applehelp": "2.0.0",
+ "sphinxcontrib-devhelp": "2.0.0",
+ "sphinxcontrib-htmlhelp": "2.1.0",
+ "sphinxcontrib-jsmath": "1.0.1",
+ "sphinxcontrib-qthelp": "2.0.0",
+ "sphinxcontrib-serializinghtml": "2.0.0",
+ "sympy": "1.14.0",
+ "threadpoolctl": "3.7.0",
+ "typing_extensions": "4.16.0",
+ "urllib3": "2.8.0"
+ }
+ },
+ {
+ "application_tests": {
+ "command": "OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 MPLBACKEND=Agg .venv/bin/python -m pytest -c test/LabScheduling/pytest.ini test/LabScheduling --timeout=60 --cov=.venv/lib/python3.13/site-packages/pyqpanda_alg/LabScheduling --cov-fail-under=95",
+ "coverage_percent": 98.92,
+ "passed": 108,
+ "summary": "============================= 108 passed in 22.79s ============================="
+ },
+ "arc_objective": 3,
+ "commands": [
+ {
+ "command": [
+ ".venv/bin/python",
+ "-m",
+ "pip",
+ "check"
+ ],
+ "exit_code": 0,
+ "expected_exit_code": 0,
+ "name": "pip-check",
+ "seconds": 1.5938609000004362
+ },
+ {
+ "command": [
+ ".venv/bin/python",
+ "-m",
+ "pyqpanda_alg.LabScheduling",
+ "pyqpanda-algorithm/example/LabScheduling/data/medium.json",
+ "--output",
+ "reports/medium.json"
+ ],
+ "exit_code": 0,
+ "expected_exit_code": 0,
+ "name": "medium",
+ "seconds": 2.5016538630006835
+ },
+ {
+ "command": [
+ ".venv/bin/python",
+ "pyqpanda-algorithm/example/LabScheduling/tradeoff_demo.py",
+ "--sensitivity"
+ ],
+ "exit_code": 0,
+ "expected_exit_code": 0,
+ "name": "tradeoff",
+ "seconds": 8.48354995700356
+ },
+ {
+ "command": [
+ ".venv/bin/python",
+ "-m",
+ "pyqpanda_alg.LabScheduling",
+ "pyqpanda-algorithm/example/LabScheduling/data/support-chain.json",
+ "--reduce",
+ "--pruning",
+ "arc",
+ "--output",
+ "reports/arc.json"
+ ],
+ "exit_code": 0,
+ "expected_exit_code": 0,
+ "name": "arc",
+ "seconds": 2.443900661994121
+ },
+ {
+ "command": [
+ ".venv/bin/python",
+ "-m",
+ "pyqpanda_alg.LabScheduling",
+ "pyqpanda-algorithm/example/LabScheduling/data/support-chain.json",
+ "--reduce",
+ "--output",
+ "reports/resource-limit.json"
+ ],
+ "exit_code": 5,
+ "expected_exit_code": 5,
+ "name": "resource-limit",
+ "seconds": 1.7123050649970537
+ },
+ {
+ "command": [
+ ".venv/bin/python",
+ "-m",
+ "pyqpanda_alg.LabScheduling",
+ "pyqpanda-algorithm/example/LabScheduling/data/infeasible.json",
+ "--reduce",
+ "--output",
+ "reports/infeasible.json"
+ ],
+ "exit_code": 3,
+ "expected_exit_code": 3,
+ "name": "infeasible",
+ "seconds": 1.7068276989884907
+ },
+ {
+ "command": [
+ ".venv/bin/python",
+ "-m",
+ "pytest",
+ "-c",
+ "test/LabScheduling/pytest.ini",
+ "-o",
+ "python_files=Test_*.py",
+ "test",
+ "--ignore=test/LabScheduling",
+ "--timeout=60"
+ ],
+ "exit_code": 0,
+ "expected_exit_code": 0,
+ "name": "upstream-tests",
+ "seconds": 12.540136158000678
+ }
+ ],
+ "constraints_path": "pyqpanda-algorithm/example/LabScheduling/constraints-py312.txt",
+ "constraints_sha256": "6ab291f8463f891d421278a03cdda50d6f5af09ebea5a747d155c17dae9c14ac",
+ "infeasible_status": "infeasible",
+ "initial_coverage_probe": {
+ "argument": "--cov=pyqpanda_alg.LabScheduling",
+ "collection_errors": 9,
+ "exit_code": 2,
+ "message": "ImportError: cannot load module more than once per process",
+ "resolution": "Use the installed package directory as the coverage source; no application change."
+ },
+ "installed_module": ".venv/lib/python3.13/site-packages/pyqpanda_alg/LabScheduling",
+ "machine": "x86_64",
+ "medium_objective": 4,
+ "module_sha256": {
+ "__init__.py": "1336ac94b68e53a108965f0f2127d619c08d3c4ecfd6b541233c193b6a9ee474",
+ "__main__.py": "6d147f69d578cd770d24d52ce7b7aeea0f487ad7279fb9b70fb413c34c72b328",
+ "bookings.py": "dba45010ef9e5f6a1781d8a8d79e9f3faf4fbf90223f526f550687723de1382a",
+ "classical.py": "d1bd575af9969c49cda59cd15328d98f176bb004ebc22e887be173b43d69aac5",
+ "metrics.py": "b084507c46a7bf6cc1ca2a6a116156e24a23efb3fdea699f02b4a29bdbd503e0",
+ "milp.py": "fc3b22b705beb95491b6b9c51f875480a021bbb40607810abdc04fd6dc8b97a2",
+ "model.py": "f442c4751a7f17f66e5fae331e14f75eaa327177af5346a49ceddb87e86ef509",
+ "problem.py": "5abd2c9f01a712fb18ac7791bb89cba435eecd35f49b05283a3ca7ad6d7f582b",
+ "quantum.py": "3f8469be5a92afbf87eb0c82f7b80282a6443edfbe335a55635717f40501522f",
+ "reduction.py": "fa249b234ef4fc74c88a916a6bba87bd6150f2905dd47fe860e2e7d5617d7870",
+ "report.py": "3f98ebf581433796cb8c7dd421260bb6e5f30d17495dc24bf7f4be11dfe6644c"
+ },
+ "python": "3.13.11",
+ "resource_limit_status": "resource_limit",
+ "source_commit": "a27d784c7d6fddc5603fd7615eb840d59c60378a",
+ "system": "Linux",
+ "upstream_tests": {
+ "passed": 18,
+ "summary": "============================= 18 passed in 11.76s =============================="
+ },
+ "versions": {
+ "Cython": "3.3.0",
+ "Jinja2": "3.1.6",
+ "MarkupSafe": "3.0.3",
+ "PyYAML": "6.0.3",
+ "Pygments": "2.21.0",
+ "Sphinx": "9.1.0",
+ "alabaster": "1.0.0",
+ "allure-pytest": "2.16.1",
+ "allure-python-commons": "2.16.1",
+ "ast_serialize": "0.11.2",
+ "astroid": "4.3.1",
+ "attrs": "26.1.0",
+ "babel": "2.18.0",
+ "certifi": "2026.7.22",
+ "charset-normalizer": "3.5.1",
+ "cloudpickle": "3.1.2",
+ "contourpy": "1.4.0",
+ "coverage": "7.16.1",
+ "cycler": "0.12.1",
+ "docutils": "0.22.4",
+ "fonttools": "4.65.0",
+ "graphviz": "0.21",
+ "idna": "3.20",
+ "imagesize": "2.0.1",
+ "iniconfig": "2.3.0",
+ "joblib": "1.6.0",
+ "kiwisolver": "1.5.1",
+ "librt": "0.15.0",
+ "matplotlib": "3.11.2",
+ "mpmath": "1.3.0",
+ "mypy": "2.3.1",
+ "mypy_extensions": "1.1.0",
+ "narwhals": "2.26.0",
+ "networkx": "3.6.1",
+ "numpy": "2.5.3",
+ "packaging": "26.3",
+ "pandas": "3.0.6",
+ "pathspec": "1.1.1",
+ "pillow": "12.3.0",
+ "pip": "25.3",
+ "pluggy": "1.6.0",
+ "pycryptodome": "3.23.0",
+ "pydot": "4.0.1",
+ "pyparsing": "3.3.3",
+ "pyqpanda3": "0.4.1",
+ "pyqpanda_alg": "2.0.0",
+ "pytest": "9.1.1",
+ "pytest-cov": "7.1.0",
+ "pytest-timeout": "2.4.0",
+ "python-dateutil": "2.9.0.post0",
+ "requests": "2.34.2",
+ "roman-numerals": "4.1.0",
+ "ruff": "0.16.8",
+ "scikit-learn": "1.9.1",
+ "scipy": "1.18.1",
+ "setuptools": "84.0.0",
+ "six": "1.17.0",
+ "snowballstemmer": "3.1.1",
+ "sphinx-autoapi": "3.8.1",
+ "sphinxcontrib-applehelp": "2.0.0",
+ "sphinxcontrib-devhelp": "2.0.0",
+ "sphinxcontrib-htmlhelp": "2.1.0",
+ "sphinxcontrib-jsmath": "1.0.1",
+ "sphinxcontrib-qthelp": "2.0.0",
+ "sphinxcontrib-serializinghtml": "2.0.0",
+ "sympy": "1.14.0",
+ "threadpoolctl": "3.7.0",
+ "typing_extensions": "4.16.0",
+ "urllib3": "2.8.0"
+ }
+ }
+ ],
+ "python311_original_constraints_probe": {
+ "constraints": "constraints-py312.txt",
+ "exit_code": 1,
+ "result": "ResolutionImpossible; numpy==2.5.3 requires Python >=3.12"
+ },
+ "scope": "Linux x86_64; local wheel environments, independent of root Python 3.12 venv",
+ "wheel_sha256": "4bc41141574a11b949ca01256d707429317f5122f5da167d86a89247c61bfbac"
+}
diff --git a/Tutorials/LabScheduling/results/enhanced/SUMMARY.md b/Tutorials/LabScheduling/results/enhanced/SUMMARY.md
new file mode 100644
index 00000000..1ff3ea39
--- /dev/null
+++ b/Tutorials/LabScheduling/results/enhanced/SUMMARY.md
@@ -0,0 +1,18 @@
+# 冻结语料逐实例汇总
+
+完整训练记录见 runs.jsonl,每行一次训练;包含全部不可行实例。
+
+| 实例 | 状态 | 平均/最差 p_opt | 均匀 p_opt | 胜出种子/10 | CNOT 原始→精简 |
+|---|---|---|---|---|---|
+| evaluation-n3-d0.json | optimal | 0.265351 / 0.261244 | 0.125000 | 10 | 19 → 13 |
+| evaluation-n3-d1.json | optimal | 0.546045 / 0.531842 | 0.125000 | 10 | 21 → 15 |
+| evaluation-n3-d2.json | optimal | 0.246273 / 0.054195 | 0.125000 | 9 | 23 → 17 |
+| evaluation-n5-d0.json | optimal | 0.140080 / 0.071053 | 0.031250 | 10 | 33 → 23 |
+| evaluation-n5-d1.json | optimal | 0.183046 / 0.044921 | 0.031250 | 10 | 39 → 29 |
+| evaluation-n5-d2.json | infeasible | 0.000000 / 0.000000 | 0.000000 | 0 | 57 → 47 |
+| evaluation-n6-d0.json | optimal | 0.033681 / 0.018933 | 0.015625 | 10 | 34 → 22 |
+| evaluation-n6-d1.json | optimal | 0.184659 / 0.181925 | 0.031250 | 10 | 44 → 32 |
+| evaluation-n6-d2.json | infeasible | 0.000000 / 0.000000 | 0.000000 | 0 | 60 → 48 |
+| evaluation-n8-d0.json | optimal | 0.008020 / 0.000766 | 0.003906 | 7 | 42 → 26 |
+| evaluation-n8-d1.json | optimal | 0.025118 / 0.006623 | 0.003906 | 10 | 56 → 40 |
+| evaluation-n8-d2.json | infeasible | 0.000000 / 0.000000 | 0.000000 | 0 | 78 → 62 |
diff --git a/Tutorials/LabScheduling/results/enhanced/aggregate.json b/Tutorials/LabScheduling/results/enhanced/aggregate.json
new file mode 100644
index 00000000..f55f8ccc
--- /dev/null
+++ b/Tutorials/LabScheduling/results/enhanced/aggregate.json
@@ -0,0 +1,206 @@
+[
+ {
+ "instance": "evaluation-n3-d0.json",
+ "status": "optimal",
+ "qubits": 6,
+ "candidate_conflict_density": 0.16666666666666666,
+ "mean_p_opt": 0.2653513376450117,
+ "min_p_opt": 0.2612440470070083,
+ "max_p_opt": 0.2958152020794941,
+ "uniform_p_opt": 0.125,
+ "seeds_better_than_uniform": 10,
+ "cnot_full": 19,
+ "cnot_auto": 13,
+ "depth_full": 19,
+ "depth_auto": 17,
+ "mean_training_seconds": 0.09107750469847815,
+ "milp_seconds": 0.004502966010477394
+ },
+ {
+ "instance": "evaluation-n3-d1.json",
+ "status": "optimal",
+ "qubits": 6,
+ "candidate_conflict_density": 0.25,
+ "mean_p_opt": 0.5460449116568549,
+ "min_p_opt": 0.5318416213709359,
+ "max_p_opt": 0.5530857421908109,
+ "uniform_p_opt": 0.125,
+ "seeds_better_than_uniform": 10,
+ "cnot_full": 21,
+ "cnot_auto": 15,
+ "depth_full": 19,
+ "depth_auto": 19,
+ "mean_training_seconds": 0.09024409570120043,
+ "milp_seconds": 0.0010963259992422536
+ },
+ {
+ "instance": "evaluation-n3-d2.json",
+ "status": "optimal",
+ "qubits": 6,
+ "candidate_conflict_density": 0.3333333333333333,
+ "mean_p_opt": 0.2462726365495677,
+ "min_p_opt": 0.05419523134910682,
+ "max_p_opt": 0.31783436009462646,
+ "uniform_p_opt": 0.125,
+ "seeds_better_than_uniform": 9,
+ "cnot_full": 23,
+ "cnot_auto": 17,
+ "depth_full": 25,
+ "depth_auto": 20,
+ "mean_training_seconds": 0.08071147660084535,
+ "milp_seconds": 0.001244475002749823
+ },
+ {
+ "instance": "evaluation-n5-d0.json",
+ "status": "optimal",
+ "qubits": 10,
+ "candidate_conflict_density": 0.1,
+ "mean_p_opt": 0.1400801167532271,
+ "min_p_opt": 0.07105348656912548,
+ "max_p_opt": 0.15439933176326684,
+ "uniform_p_opt": 0.03125,
+ "seeds_better_than_uniform": 10,
+ "cnot_full": 33,
+ "cnot_auto": 23,
+ "depth_full": 19,
+ "depth_auto": 13,
+ "mean_training_seconds": 0.12439995509630535,
+ "milp_seconds": 0.001137906001531519
+ },
+ {
+ "instance": "evaluation-n5-d1.json",
+ "status": "optimal",
+ "qubits": 10,
+ "candidate_conflict_density": 0.175,
+ "mean_p_opt": 0.1830462778305281,
+ "min_p_opt": 0.04492129182463776,
+ "max_p_opt": 0.21105362119707766,
+ "uniform_p_opt": 0.03125,
+ "seeds_better_than_uniform": 10,
+ "cnot_full": 39,
+ "cnot_auto": 29,
+ "depth_full": 25,
+ "depth_auto": 22,
+ "mean_training_seconds": 0.13261983090051216,
+ "milp_seconds": 0.0012583929928950965
+ },
+ {
+ "instance": "evaluation-n5-d2.json",
+ "status": "infeasible",
+ "qubits": 10,
+ "candidate_conflict_density": 0.4,
+ "mean_p_opt": 0.0,
+ "min_p_opt": 0.0,
+ "max_p_opt": 0.0,
+ "uniform_p_opt": 0.0,
+ "seeds_better_than_uniform": 0,
+ "cnot_full": 57,
+ "cnot_auto": 47,
+ "depth_full": 49,
+ "depth_auto": 36,
+ "mean_training_seconds": 0.12533874209912027,
+ "milp_seconds": 0.0012513070105342194
+ },
+ {
+ "instance": "evaluation-n6-d0.json",
+ "status": "optimal",
+ "qubits": 12,
+ "candidate_conflict_density": 0.03333333333333333,
+ "mean_p_opt": 0.03368127881235576,
+ "min_p_opt": 0.018933455133375812,
+ "max_p_opt": 0.03583971562805053,
+ "uniform_p_opt": 0.015625,
+ "seeds_better_than_uniform": 10,
+ "cnot_full": 34,
+ "cnot_auto": 22,
+ "depth_full": 17,
+ "depth_auto": 13,
+ "mean_training_seconds": 0.24441824249952332,
+ "milp_seconds": 0.001361773000098765
+ },
+ {
+ "instance": "evaluation-n6-d1.json",
+ "status": "optimal",
+ "qubits": 12,
+ "candidate_conflict_density": 0.11666666666666667,
+ "mean_p_opt": 0.18465875659910314,
+ "min_p_opt": 0.1819251786569768,
+ "max_p_opt": 0.19033675076038742,
+ "uniform_p_opt": 0.03125,
+ "seeds_better_than_uniform": 10,
+ "cnot_full": 44,
+ "cnot_auto": 32,
+ "depth_full": 27,
+ "depth_auto": 25,
+ "mean_training_seconds": 0.2668203636960243,
+ "milp_seconds": 0.0012901910085929558
+ },
+ {
+ "instance": "evaluation-n6-d2.json",
+ "status": "infeasible",
+ "qubits": 12,
+ "candidate_conflict_density": 0.25,
+ "mean_p_opt": 0.0,
+ "min_p_opt": 0.0,
+ "max_p_opt": 0.0,
+ "uniform_p_opt": 0.0,
+ "seeds_better_than_uniform": 0,
+ "cnot_full": 60,
+ "cnot_auto": 48,
+ "depth_full": 34,
+ "depth_auto": 26,
+ "mean_training_seconds": 0.30182852470024957,
+ "milp_seconds": 0.0013372789981076494
+ },
+ {
+ "instance": "evaluation-n8-d0.json",
+ "status": "optimal",
+ "qubits": 16,
+ "candidate_conflict_density": 0.008928571428571428,
+ "mean_p_opt": 0.008020054560457686,
+ "min_p_opt": 0.0007663156715016207,
+ "max_p_opt": 0.010978485343988351,
+ "uniform_p_opt": 0.00390625,
+ "seeds_better_than_uniform": 7,
+ "cnot_full": 42,
+ "cnot_auto": 26,
+ "depth_full": 20,
+ "depth_auto": 13,
+ "mean_training_seconds": 0.7952824747015257,
+ "milp_seconds": 0.0015075100091053173
+ },
+ {
+ "instance": "evaluation-n8-d1.json",
+ "status": "optimal",
+ "qubits": 16,
+ "candidate_conflict_density": 0.07142857142857142,
+ "mean_p_opt": 0.025118168646214384,
+ "min_p_opt": 0.006623252220371681,
+ "max_p_opt": 0.030209678194964985,
+ "uniform_p_opt": 0.00390625,
+ "seeds_better_than_uniform": 10,
+ "cnot_full": 56,
+ "cnot_auto": 40,
+ "depth_full": 22,
+ "depth_auto": 17,
+ "mean_training_seconds": 0.9459493332979036,
+ "milp_seconds": 0.001571046988829039
+ },
+ {
+ "instance": "evaluation-n8-d2.json",
+ "status": "infeasible",
+ "qubits": 16,
+ "candidate_conflict_density": 0.16964285714285715,
+ "mean_p_opt": 0.0,
+ "min_p_opt": 0.0,
+ "max_p_opt": 0.0,
+ "uniform_p_opt": 0.0,
+ "seeds_better_than_uniform": 0,
+ "cnot_full": 78,
+ "cnot_auto": 62,
+ "depth_full": 34,
+ "depth_auto": 25,
+ "mean_training_seconds": 1.2771589099997072,
+ "milp_seconds": 0.0013811569951940328
+ }
+]
diff --git a/Tutorials/LabScheduling/results/enhanced/booking-changes.csv b/Tutorials/LabScheduling/results/enhanced/booking-changes.csv
new file mode 100644
index 00000000..69aac0d9
--- /dev/null
+++ b/Tutorials/LabScheduling/results/enhanced/booking-changes.csv
@@ -0,0 +1,6 @@
+task,original_resource,original_start,new_resource,new_start,changed,preference_cost,change_cost,explanation
+A-heat,oven,0,oven,1,True,0,1,原预约被停机排除
+D-image,scope,1,scope,1,False,0,0,保留原预约
+B-heat,oven,1,oven,2,True,0,2,约束传播要求连锁改约,见 reduction.removals
+E-image,scope,2,scope,2,False,0,0,保留原预约
+C-heat,oven,2,oven,3,True,0,3,约束传播要求连锁改约,见 reduction.removals
diff --git a/Tutorials/LabScheduling/results/enhanced/booking-changes.svg b/Tutorials/LabScheduling/results/enhanced/booking-changes.svg
new file mode 100644
index 00000000..e1f0ff24
--- /dev/null
+++ b/Tutorials/LabScheduling/results/enhanced/booking-changes.svg
@@ -0,0 +1,539 @@
+
+
+
diff --git a/Tutorials/LabScheduling/results/enhanced/booking-control-report.json b/Tutorials/LabScheduling/results/enhanced/booking-control-report.json
new file mode 100644
index 00000000..90029e39
--- /dev/null
+++ b/Tutorials/LabScheduling/results/enhanced/booking-control-report.json
@@ -0,0 +1,1204 @@
+{
+ "schema_version": 2,
+ "problem": "合成无停机对照:原预约全部保留",
+ "input_sha256": "bcf8ea0f42cb28a5da14145bfd0ddb38113705a5a7a69b8de9c67eed7029acfe",
+ "environment": {
+ "python": "3.12.3",
+ "platform": "Linux",
+ "pyqpanda3": "0.4.1",
+ "pyqpanda_alg": "2.0.0",
+ "numpy": "2.5.3",
+ "scipy": "1.18.1"
+ },
+ "model": {
+ "qubits": 10,
+ "penalty": 11,
+ "objective_bound": 10,
+ "offset": 55,
+ "linear": [
+ -11,
+ -10,
+ -11,
+ -9,
+ -11,
+ -8,
+ -11,
+ -9,
+ -9,
+ -11
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 22
+ ],
+ [
+ 1,
+ 2,
+ 11
+ ],
+ [
+ 2,
+ 3,
+ 22
+ ],
+ [
+ 3,
+ 4,
+ 11
+ ],
+ [
+ 4,
+ 5,
+ 22
+ ],
+ [
+ 6,
+ 7,
+ 22
+ ],
+ [
+ 6,
+ 8,
+ 11
+ ],
+ [
+ 7,
+ 9,
+ 11
+ ],
+ [
+ 8,
+ 9,
+ 22
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ],
+ [
+ 2,
+ 3
+ ],
+ [
+ 4,
+ 5
+ ],
+ [
+ 6,
+ 7
+ ],
+ [
+ 8,
+ 9
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "A-heat",
+ "resource": "oven",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "A-heat",
+ "resource": "oven",
+ "start": 1,
+ "cost": 1
+ },
+ {
+ "index": 2,
+ "task": "B-heat",
+ "resource": "oven",
+ "start": 1,
+ "cost": 0
+ },
+ {
+ "index": 3,
+ "task": "B-heat",
+ "resource": "oven",
+ "start": 2,
+ "cost": 2
+ },
+ {
+ "index": 4,
+ "task": "C-heat",
+ "resource": "oven",
+ "start": 2,
+ "cost": 0
+ },
+ {
+ "index": 5,
+ "task": "C-heat",
+ "resource": "oven",
+ "start": 3,
+ "cost": 3
+ },
+ {
+ "index": 6,
+ "task": "D-image",
+ "resource": "scope",
+ "start": 1,
+ "cost": 0
+ },
+ {
+ "index": 7,
+ "task": "D-image",
+ "resource": "scope",
+ "start": 2,
+ "cost": 2
+ },
+ {
+ "index": 8,
+ "task": "E-image",
+ "resource": "scope",
+ "start": 1,
+ "cost": 2
+ },
+ {
+ "index": 9,
+ "task": "E-image",
+ "resource": "scope",
+ "start": 2,
+ "cost": 0
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 1,
+ "j": 2,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 4,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 6,
+ "j": 8,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 7,
+ "j": 9,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ },
+ "quantum": {
+ "seed": 7,
+ "mixer": "xy",
+ "reduction": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 10,
+ "fixed_variables": [],
+ "fixed_cost": 0,
+ "removals": [],
+ "infeasible_task": null,
+ "component_qubits": [
+ 6,
+ 4
+ ],
+ "max_component_qubits": 6,
+ "component_to_original": [
+ [
+ 0,
+ 1,
+ 2,
+ 3,
+ 4,
+ 5
+ ],
+ [
+ 6,
+ 7,
+ 8,
+ 9
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 6,
+ "penalty": 7,
+ "objective_bound": 6,
+ "offset": 21,
+ "linear": [
+ -7,
+ -6,
+ -7,
+ -5,
+ -7,
+ -4
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 14
+ ],
+ [
+ 1,
+ 2,
+ 7
+ ],
+ [
+ 2,
+ 3,
+ 14
+ ],
+ [
+ 3,
+ 4,
+ 7
+ ],
+ [
+ 4,
+ 5,
+ 14
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ],
+ [
+ 2,
+ 3
+ ],
+ [
+ 4,
+ 5
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "A-heat",
+ "resource": "oven",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "A-heat",
+ "resource": "oven",
+ "start": 1,
+ "cost": 1
+ },
+ {
+ "index": 2,
+ "task": "B-heat",
+ "resource": "oven",
+ "start": 1,
+ "cost": 0
+ },
+ {
+ "index": 3,
+ "task": "B-heat",
+ "resource": "oven",
+ "start": 2,
+ "cost": 2
+ },
+ {
+ "index": 4,
+ "task": "C-heat",
+ "resource": "oven",
+ "start": 2,
+ "cost": 0
+ },
+ {
+ "index": 5,
+ "task": "C-heat",
+ "resource": "oven",
+ "start": 3,
+ "cost": 3
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 1,
+ "j": 2,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 4,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ },
+ {
+ "qubits": 4,
+ "penalty": 5,
+ "objective_bound": 4,
+ "offset": 10,
+ "linear": [
+ -5,
+ -3,
+ -3,
+ -5
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 10
+ ],
+ [
+ 0,
+ 2,
+ 5
+ ],
+ [
+ 1,
+ 3,
+ 5
+ ],
+ [
+ 2,
+ 3,
+ 10
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ],
+ [
+ 2,
+ 3
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "D-image",
+ "resource": "scope",
+ "start": 1,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "D-image",
+ "resource": "scope",
+ "start": 2,
+ "cost": 2
+ },
+ {
+ "index": 2,
+ "task": "E-image",
+ "resource": "scope",
+ "start": 1,
+ "cost": 2
+ },
+ {
+ "index": 3,
+ "task": "E-image",
+ "resource": "scope",
+ "start": 2,
+ "cost": 0
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 0,
+ "j": 2,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 3,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ "best": {
+ "feasible": true,
+ "objective": 0,
+ "raw_cost": 0,
+ "violation_count": 0,
+ "violations": [],
+ "schedule": [
+ {
+ "variable": 0,
+ "task": "A-heat",
+ "group": "A",
+ "resource": "oven",
+ "start": 0,
+ "end": 1,
+ "reserved_end": 1,
+ "changed": false
+ },
+ {
+ "variable": 2,
+ "task": "B-heat",
+ "group": "B",
+ "resource": "oven",
+ "start": 1,
+ "end": 2,
+ "reserved_end": 2,
+ "changed": false
+ },
+ {
+ "variable": 6,
+ "task": "D-image",
+ "group": "D",
+ "resource": "scope",
+ "start": 1,
+ "end": 2,
+ "reserved_end": 2,
+ "changed": false
+ },
+ {
+ "variable": 4,
+ "task": "C-heat",
+ "group": "C",
+ "resource": "oven",
+ "start": 2,
+ "end": 3,
+ "reserved_end": 3,
+ "changed": false
+ },
+ {
+ "variable": 9,
+ "task": "E-image",
+ "group": "E",
+ "resource": "scope",
+ "start": 2,
+ "end": 3,
+ "reserved_end": 3,
+ "changed": false
+ }
+ ],
+ "bits": [
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1
+ ],
+ "qubo_energy": 0
+ },
+ "components": [
+ {
+ "status": "feasible",
+ "best": {
+ "feasible": true,
+ "objective": 0,
+ "raw_cost": 0,
+ "violation_count": 0,
+ "violations": [],
+ "schedule": [
+ {
+ "variable": 0,
+ "task": "A-heat",
+ "group": "A",
+ "resource": "oven",
+ "start": 0,
+ "end": 1,
+ "reserved_end": 1,
+ "changed": false
+ },
+ {
+ "variable": 2,
+ "task": "B-heat",
+ "group": "B",
+ "resource": "oven",
+ "start": 1,
+ "end": 2,
+ "reserved_end": 2,
+ "changed": false
+ },
+ {
+ "variable": 4,
+ "task": "C-heat",
+ "group": "C",
+ "resource": "oven",
+ "start": 2,
+ "end": 3,
+ "reserved_end": 3,
+ "changed": false
+ }
+ ],
+ "bits": [
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0
+ ],
+ "qubo_energy": 0
+ },
+ "seed": 1201125462,
+ "mixer": "xy",
+ "phase_mode": "auto",
+ "layers": 1,
+ "shots": 512,
+ "maxiter": 60,
+ "restarts": 2,
+ "parameters": [
+ 1.5386651877590345,
+ 1.3277436415288868
+ ],
+ "expected_energy": 3.3100588677071032,
+ "initial_expected_energy": 3.715004400059187,
+ "history": [
+ 3.715004400059187,
+ 3.8715779605414062,
+ 8.487274981813977,
+ 7.084957601183609,
+ 8.043030868054373,
+ 3.486660763019654,
+ 4.852288174703832,
+ 3.475022913113017,
+ 3.3520957860528258,
+ 3.5464257887318755,
+ 3.364000896467733,
+ 3.349734000986312,
+ 3.3467375729254365,
+ 3.3645584081902404,
+ 3.3431538212882304,
+ 3.3413032136507805,
+ 3.3391601980415584,
+ 3.335899736897865,
+ 3.36649868034472,
+ 3.334961251955132,
+ 3.3327039483960395,
+ 3.328257523288946,
+ 3.321588695600478,
+ 3.323924913245535,
+ 3.3458296722007477,
+ 3.320255807369711,
+ 3.3275768149528444,
+ 3.3202889946120715,
+ 3.3199670925846534,
+ 3.32000207565231,
+ 3.3202144013347743,
+ 3.3195746711265537,
+ 3.319202968154569,
+ 3.319887295881851,
+ 3.3188661530737367,
+ 3.318552030785198,
+ 3.31798057830167,
+ 3.3179050877889082,
+ 3.3168657977436746,
+ 3.3162968572225617,
+ 3.315217128098016,
+ 3.3132671128302373,
+ 3.310946120349859,
+ 3.328675575493053,
+ 3.3199006113240883,
+ 3.310682111742864,
+ 3.311023166602122,
+ 3.3110845443947468,
+ 3.3104037888376565,
+ 3.3105272498292164,
+ 3.3105773504977485,
+ 3.310407262629761,
+ 3.3103557637584746,
+ 3.310316719943129,
+ 3.3102358267787793,
+ 3.310100733708904,
+ 3.3101220743874498,
+ 3.31029551946844,
+ 3.3100588677071032,
+ 3.310090424220129,
+ 3.5674304100442407,
+ 3.708207311167009,
+ 8.68054858754289,
+ 7.0508459509943515,
+ 7.7439557837222175,
+ 3.6165900335627725,
+ 3.582793165293441,
+ 3.7909108923978208,
+ 3.7600806279809573,
+ 3.35215809610024,
+ 3.4362392567273488,
+ 3.3368685053062426,
+ 3.3381403101461076,
+ 3.3364070354946307,
+ 3.3385555649868848,
+ 3.337688877821305,
+ 3.3352334031219337,
+ 3.3371062564966385,
+ 3.3341580556582704,
+ 3.3339193540701237,
+ 3.3328500578613207,
+ 3.3318479185065377,
+ 3.329954485177209,
+ 3.3265754550569007,
+ 3.3251435914439282,
+ 3.322284039894126,
+ 3.338449510220361,
+ 3.3332949882747007,
+ 3.324180886036201,
+ 3.31840382262632,
+ 3.3180244185356678,
+ 3.3175846286245525,
+ 3.3176129701341726,
+ 3.317383194410409,
+ 3.3170923792516307,
+ 3.3170325803796645,
+ 3.3179211771688957,
+ 3.3170963383550776,
+ 3.31669419654677,
+ 3.3164235283442896,
+ 3.3172927282498863,
+ 3.3161194082072463,
+ 3.315843684021539,
+ 3.3153306654562273,
+ 3.314487785104414,
+ 3.3146669529488797,
+ 3.3157546037633887,
+ 3.3142202066157154,
+ 3.313845592105389,
+ 3.31345969924189,
+ 3.3168226229144127,
+ 3.3128223087703397,
+ 3.312750173770528,
+ 3.3122852026660663,
+ 3.311869616907373,
+ 3.3112036142835137,
+ 3.3119974522074873,
+ 3.31204245257406,
+ 3.311603069448508,
+ 3.3113009661025368
+ ],
+ "feasible_probability": 0.908313734181724,
+ "one_hot_probability": 1.0,
+ "sampled_feasible_fraction": 0.923828125,
+ "counts": {
+ "010101": 189,
+ "010110": 9,
+ "011001": 3,
+ "011010": 22,
+ "100101": 105,
+ "100110": 5,
+ "101001": 95,
+ "101010": 84
+ },
+ "circuit_evaluations": 120,
+ "optimizer_runs": [
+ {
+ "success": false,
+ "message": "Return from COBYLA because the objective function has been evaluated MAXFUN times.",
+ "evaluations": 60
+ },
+ {
+ "success": false,
+ "message": "Return from COBYLA because the objective function has been evaluated MAXFUN times.",
+ "evaluations": 60
+ }
+ ],
+ "sampling": "seeded NumPy multinomial from CPUQVM Born probabilities",
+ "runtime_seconds": 0.14143924000381958
+ },
+ {
+ "status": "feasible",
+ "best": {
+ "feasible": true,
+ "objective": 0,
+ "raw_cost": 0,
+ "violation_count": 0,
+ "violations": [],
+ "schedule": [
+ {
+ "variable": 0,
+ "task": "D-image",
+ "group": "D",
+ "resource": "scope",
+ "start": 1,
+ "end": 2,
+ "reserved_end": 2,
+ "changed": false
+ },
+ {
+ "variable": 3,
+ "task": "E-image",
+ "group": "E",
+ "resource": "scope",
+ "start": 2,
+ "end": 3,
+ "reserved_end": 3,
+ "changed": false
+ }
+ ],
+ "bits": [
+ 1,
+ 0,
+ 0,
+ 1
+ ],
+ "qubo_energy": 0
+ },
+ "seed": 3618983171,
+ "mixer": "xy",
+ "phase_mode": "auto",
+ "layers": 1,
+ "shots": 512,
+ "maxiter": 60,
+ "restarts": 2,
+ "parameters": [
+ 3.330101968825688,
+ 1.956282587704385
+ ],
+ "expected_energy": 0.22735153797114388,
+ "initial_expected_energy": 4.423101928752402,
+ "history": [
+ 4.423101928752402,
+ 4.8940773975186485,
+ 1.0835098476945895,
+ 4.916669000957205,
+ 3.042784974137224,
+ 1.5144440709415434,
+ 0.7552748723217815,
+ 1.3298264480112696,
+ 0.7298046005515646,
+ 1.061746877815482,
+ 0.613039371690324,
+ 0.7022200749495127,
+ 0.5967771041855354,
+ 0.6652061471447298,
+ 0.5921103800366538,
+ 0.5730167186060464,
+ 0.561053343892916,
+ 0.5777269979391698,
+ 0.554741808411826,
+ 0.5485695474765155,
+ 0.5367924592345193,
+ 0.5199252712262649,
+ 0.49535881554607075,
+ 0.47056007425140034,
+ 0.4321365271631219,
+ 0.43727573486335064,
+ 0.47775457766561996,
+ 0.43401745356877874,
+ 0.41949956162378044,
+ 0.4115751121490199,
+ 0.40182597160345895,
+ 0.3919535691939865,
+ 0.3737871218190425,
+ 0.34719064962444407,
+ 0.31137538765038975,
+ 0.31470713077822443,
+ 0.361368392018819,
+ 0.3276672968154641,
+ 0.3158623660465177,
+ 0.3098233414006214,
+ 0.3205989395619202,
+ 0.30564166013011257,
+ 0.2979033160972571,
+ 0.28403486969442615,
+ 0.2617653920933292,
+ 0.36640681925786445,
+ 0.3617340943939172,
+ 0.26740514144460054,
+ 0.2637975017453714,
+ 0.26384860600206195,
+ 0.25915170422365186,
+ 0.2590948206614168,
+ 0.26249482076923664,
+ 0.25609506086947736,
+ 0.2510699158429324,
+ 0.24248923207583442,
+ 0.22735153797114388,
+ 0.3694558030324052,
+ 0.3063278877017642,
+ 0.24814358364561914,
+ 3.883649081339217,
+ 4.02389334699396,
+ 3.573126713029105,
+ 4.918083106042975,
+ 3.8418082819488943,
+ 3.1627537533562142,
+ 2.638021954200193,
+ 2.8659399028661845,
+ 2.720000751634073,
+ 3.084965483237965,
+ 2.6145989996565135,
+ 2.911020751371655,
+ 2.5381931191863027,
+ 2.500306629481105,
+ 2.462697147437915,
+ 2.464029537955286,
+ 2.438058643755368,
+ 2.465701305388498,
+ 2.4513969659030916,
+ 2.4211968830029424,
+ 2.426878474246787,
+ 2.4175570856069286,
+ 2.4091363183407197,
+ 2.392179802261802,
+ 2.3590237552270965,
+ 2.306862535779181,
+ 2.2178632568802095,
+ 2.0943131288062387,
+ 2.1117436540769283,
+ 2.501723955469635,
+ 2.1588499744540885,
+ 2.110317984184486,
+ 2.0856879369851,
+ 2.0555579540972504,
+ 2.090635763194714,
+ 2.060284186865399,
+ 2.0517131832658464,
+ 2.0524391836426292,
+ 2.04702919482402,
+ 2.043900741226848,
+ 2.04425841947213,
+ 2.0387794651304647,
+ 2.034892423604139,
+ 2.0360261443071375,
+ 2.030546333273355,
+ 2.0278618750886226,
+ 2.0294480455317245,
+ 2.0227475417080525,
+ 2.0193858508299716,
+ 2.0220289083977234,
+ 2.014620756286969,
+ 2.011325811426058,
+ 2.0146815085040326,
+ 2.0066409396515055,
+ 2.0020741568079505,
+ 1.9951277812712753,
+ 1.9815334227313977,
+ 1.965039217340374,
+ 1.9355740828351553,
+ 1.9488126306073834
+ ],
+ "feasible_probability": 0.9729204776837721,
+ "one_hot_probability": 1.0,
+ "sampled_feasible_fraction": 0.970703125,
+ "counts": {
+ "0101": 10,
+ "0110": 4,
+ "1001": 493,
+ "1010": 5
+ },
+ "circuit_evaluations": 120,
+ "optimizer_runs": [
+ {
+ "success": false,
+ "message": "Return from COBYLA because the objective function has been evaluated MAXFUN times.",
+ "evaluations": 60
+ },
+ {
+ "success": false,
+ "message": "Return from COBYLA because the objective function has been evaluated MAXFUN times.",
+ "evaluations": 60
+ }
+ ],
+ "sampling": "seeded NumPy multinomial from CPUQVM Born probabilities",
+ "runtime_seconds": 0.11707820701121818
+ }
+ ],
+ "circuit_evaluations": 240,
+ "status": "feasible",
+ "feasible_probability": 0.8837170321468137,
+ "total_shots": 1024,
+ "runtime_seconds": 0.2588852199987741,
+ "business_metrics": {
+ "feasible": true,
+ "violations": [],
+ "violation_count": 0,
+ "objective": 0,
+ "preference_cost": 0,
+ "change_cost": 0,
+ "changed_tasks": 0,
+ "max_start_shift": 0,
+ "choices": [
+ 0,
+ 0,
+ 0,
+ 0,
+ 1
+ ],
+ "schedule": [
+ {
+ "task": "A-heat",
+ "resource": "oven",
+ "start": 0,
+ "end": 1
+ },
+ {
+ "task": "B-heat",
+ "resource": "oven",
+ "start": 1,
+ "end": 2
+ },
+ {
+ "task": "C-heat",
+ "resource": "oven",
+ "start": 2,
+ "end": 3
+ },
+ {
+ "task": "D-image",
+ "resource": "scope",
+ "start": 1,
+ "end": 2
+ },
+ {
+ "task": "E-image",
+ "resource": "scope",
+ "start": 2,
+ "end": 3
+ }
+ ]
+ }
+ },
+ "exact": {
+ "status": "optimal",
+ "best": {
+ "feasible": true,
+ "objective": 0,
+ "raw_cost": 0,
+ "violation_count": 0,
+ "violations": [],
+ "schedule": [
+ {
+ "variable": 0,
+ "task": "A-heat",
+ "group": "A",
+ "resource": "oven",
+ "start": 0,
+ "end": 1,
+ "reserved_end": 1,
+ "changed": false
+ },
+ {
+ "variable": 2,
+ "task": "B-heat",
+ "group": "B",
+ "resource": "oven",
+ "start": 1,
+ "end": 2,
+ "reserved_end": 2,
+ "changed": false
+ },
+ {
+ "variable": 6,
+ "task": "D-image",
+ "group": "D",
+ "resource": "scope",
+ "start": 1,
+ "end": 2,
+ "reserved_end": 2,
+ "changed": false
+ },
+ {
+ "variable": 4,
+ "task": "C-heat",
+ "group": "C",
+ "resource": "oven",
+ "start": 2,
+ "end": 3,
+ "reserved_end": 3,
+ "changed": false
+ },
+ {
+ "variable": 9,
+ "task": "E-image",
+ "group": "E",
+ "resource": "scope",
+ "start": 2,
+ "end": 3,
+ "reserved_end": 3,
+ "changed": false
+ }
+ ],
+ "bits": [
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1
+ ],
+ "qubo_energy": 0
+ },
+ "combinations": 32,
+ "feasible_count": 8,
+ "runtime_seconds": 0.00023576300009153783
+ },
+ "milp": {
+ "variables": 10,
+ "best": {
+ "feasible": true,
+ "violations": [],
+ "violation_count": 0,
+ "objective": 0,
+ "preference_cost": 0,
+ "change_cost": 0,
+ "changed_tasks": 0,
+ "max_start_shift": 0,
+ "choices": [
+ 0,
+ 0,
+ 0,
+ 0,
+ 1
+ ],
+ "schedule": [
+ {
+ "task": "A-heat",
+ "resource": "oven",
+ "start": 0,
+ "end": 1
+ },
+ {
+ "task": "B-heat",
+ "resource": "oven",
+ "start": 1,
+ "end": 2
+ },
+ {
+ "task": "C-heat",
+ "resource": "oven",
+ "start": 2,
+ "end": 3
+ },
+ {
+ "task": "D-image",
+ "resource": "scope",
+ "start": 1,
+ "end": 2
+ },
+ {
+ "task": "E-image",
+ "resource": "scope",
+ "start": 2,
+ "end": 3
+ }
+ ]
+ },
+ "dual_bound": 0.0,
+ "gap": 0.0,
+ "status": "optimal",
+ "solver_status": 0,
+ "message": "Optimization terminated successfully. (HiGHS Status 7: Optimal)",
+ "constraints": 9,
+ "runtime_seconds": 0.0017784100054996088
+ },
+ "uniform_one_hot": {
+ "best": {
+ "feasible": true,
+ "objective": 0,
+ "raw_cost": 0,
+ "violation_count": 0,
+ "violations": [],
+ "schedule": [
+ {
+ "variable": 0,
+ "task": "A-heat",
+ "group": "A",
+ "resource": "oven",
+ "start": 0,
+ "end": 1,
+ "reserved_end": 1,
+ "changed": false
+ },
+ {
+ "variable": 2,
+ "task": "B-heat",
+ "group": "B",
+ "resource": "oven",
+ "start": 1,
+ "end": 2,
+ "reserved_end": 2,
+ "changed": false
+ },
+ {
+ "variable": 6,
+ "task": "D-image",
+ "group": "D",
+ "resource": "scope",
+ "start": 1,
+ "end": 2,
+ "reserved_end": 2,
+ "changed": false
+ },
+ {
+ "variable": 4,
+ "task": "C-heat",
+ "group": "C",
+ "resource": "oven",
+ "start": 2,
+ "end": 3,
+ "reserved_end": 3,
+ "changed": false
+ },
+ {
+ "variable": 9,
+ "task": "E-image",
+ "group": "E",
+ "resource": "scope",
+ "start": 2,
+ "end": 3,
+ "reserved_end": 3,
+ "changed": false
+ }
+ ],
+ "bits": [
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 0,
+ 0,
+ 1
+ ],
+ "qubo_energy": 0
+ },
+ "shots": 512,
+ "seed": 7,
+ "feasible_probability": 0.25,
+ "sampled_feasible_fraction": 0.25390625,
+ "runtime_seconds": 0.013508394986274652
+ },
+ "absolute_gap": 0,
+ "status": "feasible",
+ "runtime_seconds": 0.2773386640037643
+}
diff --git a/Tutorials/LabScheduling/results/enhanced/booking-report.json b/Tutorials/LabScheduling/results/enhanced/booking-report.json
new file mode 100644
index 00000000..569edbd3
--- /dev/null
+++ b/Tutorials/LabScheduling/results/enhanced/booking-report.json
@@ -0,0 +1,876 @@
+{
+ "schema_version": 2,
+ "problem": "合成业务案例:烘箱停机引发三单连锁改约,显微预约保持不动",
+ "input_sha256": "7fd8702fda3edf850b744b00288f65001478080d806a8329793d004446f09ff0",
+ "environment": {
+ "python": "3.12.3",
+ "platform": "Linux",
+ "pyqpanda3": "0.4.1",
+ "pyqpanda_alg": "2.0.0",
+ "numpy": "2.5.3",
+ "scipy": "1.18.1"
+ },
+ "model": {
+ "qubits": 9,
+ "penalty": 11,
+ "objective_bound": 10,
+ "offset": 55,
+ "linear": [
+ -10,
+ -11,
+ -9,
+ -11,
+ -8,
+ -11,
+ -9,
+ -9,
+ -11
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 11
+ ],
+ [
+ 1,
+ 2,
+ 22
+ ],
+ [
+ 2,
+ 3,
+ 11
+ ],
+ [
+ 3,
+ 4,
+ 22
+ ],
+ [
+ 5,
+ 6,
+ 22
+ ],
+ [
+ 5,
+ 7,
+ 11
+ ],
+ [
+ 6,
+ 8,
+ 11
+ ],
+ [
+ 7,
+ 8,
+ 22
+ ]
+ ],
+ "domains": [
+ [
+ 0
+ ],
+ [
+ 1,
+ 2
+ ],
+ [
+ 3,
+ 4
+ ],
+ [
+ 5,
+ 6
+ ],
+ [
+ 7,
+ 8
+ ]
+ ],
+ "pruned": [
+ {
+ "task": "A-heat",
+ "resource": "oven",
+ "start": 0,
+ "reasons": [
+ "downtime"
+ ]
+ }
+ ],
+ "variables": [
+ {
+ "index": 0,
+ "task": "A-heat",
+ "resource": "oven",
+ "start": 1,
+ "cost": 1
+ },
+ {
+ "index": 1,
+ "task": "B-heat",
+ "resource": "oven",
+ "start": 1,
+ "cost": 0
+ },
+ {
+ "index": 2,
+ "task": "B-heat",
+ "resource": "oven",
+ "start": 2,
+ "cost": 2
+ },
+ {
+ "index": 3,
+ "task": "C-heat",
+ "resource": "oven",
+ "start": 2,
+ "cost": 0
+ },
+ {
+ "index": 4,
+ "task": "C-heat",
+ "resource": "oven",
+ "start": 3,
+ "cost": 3
+ },
+ {
+ "index": 5,
+ "task": "D-image",
+ "resource": "scope",
+ "start": 1,
+ "cost": 0
+ },
+ {
+ "index": 6,
+ "task": "D-image",
+ "resource": "scope",
+ "start": 2,
+ "cost": 2
+ },
+ {
+ "index": 7,
+ "task": "E-image",
+ "resource": "scope",
+ "start": 1,
+ "cost": 2
+ },
+ {
+ "index": 8,
+ "task": "E-image",
+ "resource": "scope",
+ "start": 2,
+ "cost": 0
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 0,
+ "j": 1,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 3,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 5,
+ "j": 7,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 6,
+ "j": 8,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ },
+ "quantum": {
+ "seed": 7,
+ "mixer": "xy",
+ "reduction": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 9,
+ "fixed_variables": [
+ 0,
+ 2,
+ 4
+ ],
+ "fixed_cost": 6,
+ "removals": [
+ {
+ "variable": 1,
+ "forced_by": 0,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "variable": 3,
+ "forced_by": 2,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 4
+ ],
+ "max_component_qubits": 4,
+ "component_to_original": [
+ [
+ 5,
+ 6,
+ 7,
+ 8
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 4,
+ "penalty": 5,
+ "objective_bound": 4,
+ "offset": 10,
+ "linear": [
+ -5,
+ -3,
+ -3,
+ -5
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 10
+ ],
+ [
+ 0,
+ 2,
+ 5
+ ],
+ [
+ 1,
+ 3,
+ 5
+ ],
+ [
+ 2,
+ 3,
+ 10
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ],
+ [
+ 2,
+ 3
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "D-image",
+ "resource": "scope",
+ "start": 1,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "D-image",
+ "resource": "scope",
+ "start": 2,
+ "cost": 2
+ },
+ {
+ "index": 2,
+ "task": "E-image",
+ "resource": "scope",
+ "start": 1,
+ "cost": 2
+ },
+ {
+ "index": 3,
+ "task": "E-image",
+ "resource": "scope",
+ "start": 2,
+ "cost": 0
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 0,
+ "j": 2,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 3,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ "best": {
+ "feasible": true,
+ "objective": 6,
+ "raw_cost": 6,
+ "violation_count": 0,
+ "violations": [],
+ "schedule": [
+ {
+ "variable": 0,
+ "task": "A-heat",
+ "group": "A",
+ "resource": "oven",
+ "start": 1,
+ "end": 2,
+ "reserved_end": 2,
+ "changed": true
+ },
+ {
+ "variable": 5,
+ "task": "D-image",
+ "group": "D",
+ "resource": "scope",
+ "start": 1,
+ "end": 2,
+ "reserved_end": 2,
+ "changed": false
+ },
+ {
+ "variable": 2,
+ "task": "B-heat",
+ "group": "B",
+ "resource": "oven",
+ "start": 2,
+ "end": 3,
+ "reserved_end": 3,
+ "changed": true
+ },
+ {
+ "variable": 8,
+ "task": "E-image",
+ "group": "E",
+ "resource": "scope",
+ "start": 2,
+ "end": 3,
+ "reserved_end": 3,
+ "changed": false
+ },
+ {
+ "variable": 4,
+ "task": "C-heat",
+ "group": "C",
+ "resource": "oven",
+ "start": 3,
+ "end": 4,
+ "reserved_end": 4,
+ "changed": true
+ }
+ ],
+ "bits": [
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1
+ ],
+ "qubo_energy": 6
+ },
+ "components": [
+ {
+ "status": "feasible",
+ "best": {
+ "feasible": true,
+ "objective": 0,
+ "raw_cost": 0,
+ "violation_count": 0,
+ "violations": [],
+ "schedule": [
+ {
+ "variable": 0,
+ "task": "D-image",
+ "group": "D",
+ "resource": "scope",
+ "start": 1,
+ "end": 2,
+ "reserved_end": 2,
+ "changed": false
+ },
+ {
+ "variable": 3,
+ "task": "E-image",
+ "group": "E",
+ "resource": "scope",
+ "start": 2,
+ "end": 3,
+ "reserved_end": 3,
+ "changed": false
+ }
+ ],
+ "bits": [
+ 1,
+ 0,
+ 0,
+ 1
+ ],
+ "qubo_energy": 0
+ },
+ "seed": 1201125462,
+ "mixer": "xy",
+ "phase_mode": "auto",
+ "layers": 1,
+ "shots": 512,
+ "maxiter": 60,
+ "restarts": 2,
+ "parameters": [
+ 1.3067303599307432,
+ 1.351118192276881
+ ],
+ "expected_energy": 1.8752435020199556,
+ "initial_expected_energy": 2.102766605863082,
+ "history": [
+ 2.102766605863082,
+ 2.697712729124666,
+ 4.914431079689915,
+ 6.0230396948382285,
+ 5.754866808683029,
+ 2.2236099985124844,
+ 2.106919091871035,
+ 2.5989978176282795,
+ 1.9005589058801169,
+ 2.036992819741223,
+ 1.9153786011689609,
+ 1.9068178871926298,
+ 1.9003666142076798,
+ 1.8971297467214134,
+ 1.8921233560986588,
+ 1.8864544205717864,
+ 1.8880702975133137,
+ 1.8942195287729546,
+ 1.8868893174101469,
+ 1.8878549174975807,
+ 1.8847728917707434,
+ 1.8840483408418724,
+ 1.882680616294491,
+ 1.882741678516026,
+ 1.88320952459085,
+ 1.8826235372953735,
+ 1.8831760889816382,
+ 1.8826221093024538,
+ 1.8824347550167468,
+ 1.8821300925573936,
+ 1.8816608879418508,
+ 1.8817432680371051,
+ 1.8814842947888883,
+ 1.8813604304336218,
+ 1.8813800522305475,
+ 1.881241871022486,
+ 1.88114159653948,
+ 1.8810139316944006,
+ 1.8811376857976612,
+ 1.88096296142611,
+ 1.8808669078068414,
+ 1.880746867000408,
+ 1.8809508030599909,
+ 1.8806425257828474,
+ 1.8805415988551188,
+ 1.880345238173544,
+ 1.879967229565194,
+ 1.8793732770189238,
+ 1.8789384308033408,
+ 1.8775129232309782,
+ 1.8853614983766283,
+ 1.8799600349838257,
+ 1.8773560850339168,
+ 1.879458407384875,
+ 1.8771465211451943,
+ 1.877022895373867,
+ 1.8767758897808307,
+ 1.876570963625661,
+ 1.8765315634530693,
+ 1.8761565614879157,
+ 1.9852372820458062,
+ 2.5679309458487665,
+ 5.2246227912700185,
+ 5.883265548605831,
+ 5.523397896706465,
+ 1.9286232444911722,
+ 2.5000611097832333,
+ 2.0610395735071623,
+ 1.9141272675764691,
+ 1.9738279933327103,
+ 1.9384378889179947,
+ 1.9355921397424383,
+ 1.8853800875282931,
+ 1.8777411333756602,
+ 1.8768997319474134,
+ 1.880836860987763,
+ 1.8767051641614516,
+ 1.8761811785629567,
+ 1.8779840439105688,
+ 1.876530233743138,
+ 1.8762743946868885,
+ 1.876121720639197,
+ 1.8760255079031052,
+ 1.8759443821596862,
+ 1.8760202114739983,
+ 1.8759158457280694,
+ 1.8758800233512358,
+ 1.875813578498326,
+ 1.8756983049606102,
+ 1.875636038861377,
+ 1.8756587838607328,
+ 1.8760745993298957,
+ 1.8755895583008224,
+ 1.875595093127379,
+ 1.8756231342085146,
+ 1.8755422737124285,
+ 1.8755235643549266,
+ 1.8754731898736072,
+ 1.8753921200211459,
+ 1.8753118036310645,
+ 1.8758775922474342,
+ 1.8757563096163965,
+ 1.8753037118048126,
+ 1.875285574921513,
+ 1.8753067326038944,
+ 1.8753035768726731,
+ 1.8752760662200234,
+ 1.875272438009651,
+ 1.875279449380619,
+ 1.8752702699855877,
+ 1.8752684301718285,
+ 1.8752649135710802,
+ 1.8752581100485473,
+ 1.8752564112677135,
+ 1.8752669613592154,
+ 1.8752991486919828,
+ 1.8752562226569325,
+ 1.875246917641393,
+ 1.8752459715922476,
+ 1.8752435020199556
+ ],
+ "feasible_probability": 0.9848235234706089,
+ "one_hot_probability": 1.0,
+ "sampled_feasible_fraction": 0.986328125,
+ "counts": {
+ "0101": 3,
+ "0110": 234,
+ "1001": 271,
+ "1010": 4
+ },
+ "circuit_evaluations": 120,
+ "optimizer_runs": [
+ {
+ "success": false,
+ "message": "Return from COBYLA because the objective function has been evaluated MAXFUN times.",
+ "evaluations": 60
+ },
+ {
+ "success": false,
+ "message": "Return from COBYLA because the objective function has been evaluated MAXFUN times.",
+ "evaluations": 60
+ }
+ ],
+ "sampling": "seeded NumPy multinomial from CPUQVM Born probabilities",
+ "runtime_seconds": 0.09404532100597862
+ }
+ ],
+ "circuit_evaluations": 120,
+ "status": "feasible",
+ "feasible_probability": 0.9848235234706089,
+ "total_shots": 512,
+ "runtime_seconds": 0.09427140699699521,
+ "business_metrics": {
+ "feasible": true,
+ "violations": [],
+ "violation_count": 0,
+ "objective": 6,
+ "preference_cost": 0,
+ "change_cost": 6,
+ "changed_tasks": 3,
+ "max_start_shift": 1,
+ "choices": [
+ 1,
+ 1,
+ 1,
+ 0,
+ 1
+ ],
+ "schedule": [
+ {
+ "task": "A-heat",
+ "resource": "oven",
+ "start": 1,
+ "end": 2
+ },
+ {
+ "task": "B-heat",
+ "resource": "oven",
+ "start": 2,
+ "end": 3
+ },
+ {
+ "task": "C-heat",
+ "resource": "oven",
+ "start": 3,
+ "end": 4
+ },
+ {
+ "task": "D-image",
+ "resource": "scope",
+ "start": 1,
+ "end": 2
+ },
+ {
+ "task": "E-image",
+ "resource": "scope",
+ "start": 2,
+ "end": 3
+ }
+ ]
+ }
+ },
+ "exact": {
+ "status": "optimal",
+ "best": {
+ "feasible": true,
+ "objective": 6,
+ "raw_cost": 6,
+ "violation_count": 0,
+ "violations": [],
+ "schedule": [
+ {
+ "variable": 0,
+ "task": "A-heat",
+ "group": "A",
+ "resource": "oven",
+ "start": 1,
+ "end": 2,
+ "reserved_end": 2,
+ "changed": true
+ },
+ {
+ "variable": 5,
+ "task": "D-image",
+ "group": "D",
+ "resource": "scope",
+ "start": 1,
+ "end": 2,
+ "reserved_end": 2,
+ "changed": false
+ },
+ {
+ "variable": 2,
+ "task": "B-heat",
+ "group": "B",
+ "resource": "oven",
+ "start": 2,
+ "end": 3,
+ "reserved_end": 3,
+ "changed": true
+ },
+ {
+ "variable": 8,
+ "task": "E-image",
+ "group": "E",
+ "resource": "scope",
+ "start": 2,
+ "end": 3,
+ "reserved_end": 3,
+ "changed": false
+ },
+ {
+ "variable": 4,
+ "task": "C-heat",
+ "group": "C",
+ "resource": "oven",
+ "start": 3,
+ "end": 4,
+ "reserved_end": 4,
+ "changed": true
+ }
+ ],
+ "bits": [
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1
+ ],
+ "qubo_energy": 6
+ },
+ "combinations": 16,
+ "feasible_count": 2,
+ "runtime_seconds": 0.00012546300422400236
+ },
+ "milp": {
+ "variables": 10,
+ "best": {
+ "feasible": true,
+ "violations": [],
+ "violation_count": 0,
+ "objective": 6,
+ "preference_cost": 0,
+ "change_cost": 6,
+ "changed_tasks": 3,
+ "max_start_shift": 1,
+ "choices": [
+ 1,
+ 1,
+ 1,
+ 0,
+ 1
+ ],
+ "schedule": [
+ {
+ "task": "A-heat",
+ "resource": "oven",
+ "start": 1,
+ "end": 2
+ },
+ {
+ "task": "B-heat",
+ "resource": "oven",
+ "start": 2,
+ "end": 3
+ },
+ {
+ "task": "C-heat",
+ "resource": "oven",
+ "start": 3,
+ "end": 4
+ },
+ {
+ "task": "D-image",
+ "resource": "scope",
+ "start": 1,
+ "end": 2
+ },
+ {
+ "task": "E-image",
+ "resource": "scope",
+ "start": 2,
+ "end": 3
+ }
+ ]
+ },
+ "dual_bound": 6.0,
+ "gap": 0.0,
+ "status": "optimal",
+ "solver_status": 0,
+ "message": "Optimization terminated successfully. (HiGHS Status 7: Optimal)",
+ "constraints": 9,
+ "runtime_seconds": 0.003302311000879854
+ },
+ "uniform_one_hot": {
+ "best": {
+ "feasible": true,
+ "objective": 6,
+ "raw_cost": 6,
+ "violation_count": 0,
+ "violations": [],
+ "schedule": [
+ {
+ "variable": 0,
+ "task": "A-heat",
+ "group": "A",
+ "resource": "oven",
+ "start": 1,
+ "end": 2,
+ "reserved_end": 2,
+ "changed": true
+ },
+ {
+ "variable": 5,
+ "task": "D-image",
+ "group": "D",
+ "resource": "scope",
+ "start": 1,
+ "end": 2,
+ "reserved_end": 2,
+ "changed": false
+ },
+ {
+ "variable": 2,
+ "task": "B-heat",
+ "group": "B",
+ "resource": "oven",
+ "start": 2,
+ "end": 3,
+ "reserved_end": 3,
+ "changed": true
+ },
+ {
+ "variable": 8,
+ "task": "E-image",
+ "group": "E",
+ "resource": "scope",
+ "start": 2,
+ "end": 3,
+ "reserved_end": 3,
+ "changed": false
+ },
+ {
+ "variable": 4,
+ "task": "C-heat",
+ "group": "C",
+ "resource": "oven",
+ "start": 3,
+ "end": 4,
+ "reserved_end": 4,
+ "changed": true
+ }
+ ],
+ "bits": [
+ 1,
+ 0,
+ 1,
+ 0,
+ 1,
+ 1,
+ 0,
+ 0,
+ 1
+ ],
+ "qubo_energy": 6
+ },
+ "shots": 512,
+ "seed": 7,
+ "feasible_probability": 0.125,
+ "sampled_feasible_fraction": 0.12109375,
+ "runtime_seconds": 0.02102172099694144
+ },
+ "absolute_gap": 0,
+ "status": "feasible",
+ "runtime_seconds": 0.12390175298787653
+}
diff --git a/Tutorials/LabScheduling/results/enhanced/classical-scaling.json b/Tutorials/LabScheduling/results/enhanced/classical-scaling.json
new file mode 100644
index 00000000..f8988fbe
--- /dev/null
+++ b/Tutorials/LabScheduling/results/enhanced/classical-scaling.json
@@ -0,0 +1,4082 @@
+[
+ {
+ "input": {
+ "name": "synthetic-classical-chain-20",
+ "horizon": 44,
+ "resources": [
+ {
+ "id": "oven",
+ "cleanup": 1,
+ "downtime": [
+ [
+ 0,
+ 2
+ ]
+ ]
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 0
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 2,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 4,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 2
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 2,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 4,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 6,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g2",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 4
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 6,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 8,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t3",
+ "group": "g3",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 6
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 6,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 8,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 10,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t4",
+ "group": "g4",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 8
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 8,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 10,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 12,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t5",
+ "group": "g5",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 10
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 10,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 12,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 14,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t6",
+ "group": "g6",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 12
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 12,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 14,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 16,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t7",
+ "group": "g7",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 14
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 14,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 16,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 18,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t8",
+ "group": "g8",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 16
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 16,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 18,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 20,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t9",
+ "group": "g9",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 18
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 18,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 20,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 22,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t10",
+ "group": "g10",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 20
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 20,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 22,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 24,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t11",
+ "group": "g11",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 22
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 22,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 24,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 26,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t12",
+ "group": "g12",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 24
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 24,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 26,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 28,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t13",
+ "group": "g13",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 26
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 26,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 28,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 30,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t14",
+ "group": "g14",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 28
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 28,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 30,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 32,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t15",
+ "group": "g15",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 30
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 30,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 32,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 34,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t16",
+ "group": "g16",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 32
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 32,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 34,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 36,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t17",
+ "group": "g17",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 34
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 34,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 36,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 38,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t18",
+ "group": "g18",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 36
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 36,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 38,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 40,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t19",
+ "group": "g19",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 38
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 38,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 40,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 42,
+ "cost": 2
+ }
+ ]
+ }
+ ]
+ },
+ "result": {
+ "tasks": 20,
+ "input_sha256": "8fb72e25740af2aaa52003ffbd2aa3db4e4cdb6e772a3445d165c6c4d1efbd69",
+ "milp": {
+ "variables": 60,
+ "best": {
+ "feasible": true,
+ "violations": [],
+ "violation_count": 0,
+ "objective": 40,
+ "preference_cost": 20,
+ "change_cost": 20,
+ "changed_tasks": 10,
+ "max_start_shift": 4,
+ "choices": [
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0
+ ],
+ "schedule": [
+ {
+ "task": "t0",
+ "resource": "oven",
+ "start": 4,
+ "end": 5
+ },
+ {
+ "task": "t1",
+ "resource": "oven",
+ "start": 2,
+ "end": 3
+ },
+ {
+ "task": "t2",
+ "resource": "oven",
+ "start": 8,
+ "end": 9
+ },
+ {
+ "task": "t3",
+ "resource": "oven",
+ "start": 6,
+ "end": 7
+ },
+ {
+ "task": "t4",
+ "resource": "oven",
+ "start": 12,
+ "end": 13
+ },
+ {
+ "task": "t5",
+ "resource": "oven",
+ "start": 10,
+ "end": 11
+ },
+ {
+ "task": "t6",
+ "resource": "oven",
+ "start": 16,
+ "end": 17
+ },
+ {
+ "task": "t7",
+ "resource": "oven",
+ "start": 14,
+ "end": 15
+ },
+ {
+ "task": "t8",
+ "resource": "oven",
+ "start": 20,
+ "end": 21
+ },
+ {
+ "task": "t9",
+ "resource": "oven",
+ "start": 18,
+ "end": 19
+ },
+ {
+ "task": "t10",
+ "resource": "oven",
+ "start": 24,
+ "end": 25
+ },
+ {
+ "task": "t11",
+ "resource": "oven",
+ "start": 22,
+ "end": 23
+ },
+ {
+ "task": "t12",
+ "resource": "oven",
+ "start": 28,
+ "end": 29
+ },
+ {
+ "task": "t13",
+ "resource": "oven",
+ "start": 26,
+ "end": 27
+ },
+ {
+ "task": "t14",
+ "resource": "oven",
+ "start": 32,
+ "end": 33
+ },
+ {
+ "task": "t15",
+ "resource": "oven",
+ "start": 30,
+ "end": 31
+ },
+ {
+ "task": "t16",
+ "resource": "oven",
+ "start": 36,
+ "end": 37
+ },
+ {
+ "task": "t17",
+ "resource": "oven",
+ "start": 34,
+ "end": 35
+ },
+ {
+ "task": "t18",
+ "resource": "oven",
+ "start": 40,
+ "end": 41
+ },
+ {
+ "task": "t19",
+ "resource": "oven",
+ "start": 38,
+ "end": 39
+ }
+ ]
+ },
+ "dual_bound": 40.0,
+ "gap": 0.0,
+ "status": "optimal",
+ "solver_status": 0,
+ "message": "Optimization terminated successfully. (HiGHS Status 7: Optimal)",
+ "constraints": 76,
+ "runtime_seconds": 0.01049112000328023
+ },
+ "reduction": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 59,
+ "fixed_variables": [],
+ "fixed_cost": 0,
+ "removals": [],
+ "infeasible_task": null,
+ "component_qubits": [
+ 59
+ ],
+ "max_component_qubits": 59,
+ "component_to_original": [
+ [
+ 0,
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 12,
+ 13,
+ 14,
+ 15,
+ 16,
+ 17,
+ 18,
+ 19,
+ 20,
+ 21,
+ 22,
+ 23,
+ 24,
+ 25,
+ 26,
+ 27,
+ 28,
+ 29,
+ 30,
+ 31,
+ 32,
+ 33,
+ 34,
+ 35,
+ 36,
+ 37,
+ 38,
+ 39,
+ 40,
+ 41,
+ 42,
+ 43,
+ 44,
+ 45,
+ 46,
+ 47,
+ 48,
+ 49,
+ 50,
+ 51,
+ 52,
+ 53,
+ 54,
+ 55,
+ 56,
+ 57,
+ 58
+ ]
+ ]
+ },
+ "quantum_executed": false,
+ "scope": "classical-only; connected component exceeds CPU quantum cap"
+ }
+ },
+ {
+ "input": {
+ "name": "synthetic-classical-chain-35",
+ "horizon": 74,
+ "resources": [
+ {
+ "id": "oven",
+ "cleanup": 1,
+ "downtime": [
+ [
+ 0,
+ 2
+ ]
+ ]
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 0
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 2,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 4,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 2
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 2,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 4,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 6,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g2",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 4
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 6,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 8,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t3",
+ "group": "g3",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 6
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 6,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 8,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 10,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t4",
+ "group": "g4",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 8
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 8,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 10,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 12,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t5",
+ "group": "g5",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 10
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 10,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 12,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 14,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t6",
+ "group": "g6",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 12
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 12,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 14,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 16,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t7",
+ "group": "g7",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 14
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 14,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 16,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 18,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t8",
+ "group": "g8",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 16
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 16,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 18,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 20,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t9",
+ "group": "g9",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 18
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 18,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 20,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 22,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t10",
+ "group": "g10",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 20
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 20,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 22,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 24,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t11",
+ "group": "g11",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 22
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 22,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 24,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 26,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t12",
+ "group": "g12",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 24
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 24,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 26,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 28,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t13",
+ "group": "g13",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 26
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 26,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 28,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 30,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t14",
+ "group": "g14",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 28
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 28,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 30,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 32,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t15",
+ "group": "g15",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 30
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 30,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 32,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 34,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t16",
+ "group": "g16",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 32
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 32,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 34,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 36,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t17",
+ "group": "g17",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 34
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 34,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 36,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 38,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t18",
+ "group": "g18",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 36
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 36,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 38,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 40,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t19",
+ "group": "g19",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 38
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 38,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 40,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 42,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t20",
+ "group": "g20",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 40
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 40,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 42,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 44,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t21",
+ "group": "g21",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 42
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 42,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 44,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 46,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t22",
+ "group": "g22",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 44
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 44,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 46,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 48,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t23",
+ "group": "g23",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 46
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 46,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 48,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 50,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t24",
+ "group": "g24",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 48
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 48,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 50,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 52,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t25",
+ "group": "g25",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 50
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 50,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 52,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 54,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t26",
+ "group": "g26",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 52
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 52,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 54,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 56,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t27",
+ "group": "g27",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 54
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 54,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 56,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 58,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t28",
+ "group": "g28",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 56
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 56,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 58,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 60,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t29",
+ "group": "g29",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 58
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 58,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 60,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 62,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t30",
+ "group": "g30",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 60
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 60,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 62,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 64,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t31",
+ "group": "g31",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 62
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 62,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 64,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 66,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t32",
+ "group": "g32",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 64
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 64,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 66,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 68,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t33",
+ "group": "g33",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 66
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 66,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 68,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 70,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t34",
+ "group": "g34",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 68
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 68,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 70,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 72,
+ "cost": 2
+ }
+ ]
+ }
+ ]
+ },
+ "result": {
+ "tasks": 35,
+ "input_sha256": "a1f2ca2477a5358af4b70d4794b8ac673da470b6939a54ef6b22a4d8c19fbd19",
+ "milp": {
+ "variables": 105,
+ "best": {
+ "feasible": true,
+ "violations": [],
+ "violation_count": 0,
+ "objective": 71,
+ "preference_cost": 35,
+ "change_cost": 36,
+ "changed_tasks": 18,
+ "max_start_shift": 4,
+ "choices": [
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 1,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0
+ ],
+ "schedule": [
+ {
+ "task": "t0",
+ "resource": "oven",
+ "start": 4,
+ "end": 5
+ },
+ {
+ "task": "t1",
+ "resource": "oven",
+ "start": 2,
+ "end": 3
+ },
+ {
+ "task": "t2",
+ "resource": "oven",
+ "start": 8,
+ "end": 9
+ },
+ {
+ "task": "t3",
+ "resource": "oven",
+ "start": 6,
+ "end": 7
+ },
+ {
+ "task": "t4",
+ "resource": "oven",
+ "start": 12,
+ "end": 13
+ },
+ {
+ "task": "t5",
+ "resource": "oven",
+ "start": 10,
+ "end": 11
+ },
+ {
+ "task": "t6",
+ "resource": "oven",
+ "start": 16,
+ "end": 17
+ },
+ {
+ "task": "t7",
+ "resource": "oven",
+ "start": 14,
+ "end": 15
+ },
+ {
+ "task": "t8",
+ "resource": "oven",
+ "start": 20,
+ "end": 21
+ },
+ {
+ "task": "t9",
+ "resource": "oven",
+ "start": 18,
+ "end": 19
+ },
+ {
+ "task": "t10",
+ "resource": "oven",
+ "start": 24,
+ "end": 25
+ },
+ {
+ "task": "t11",
+ "resource": "oven",
+ "start": 22,
+ "end": 23
+ },
+ {
+ "task": "t12",
+ "resource": "oven",
+ "start": 28,
+ "end": 29
+ },
+ {
+ "task": "t13",
+ "resource": "oven",
+ "start": 26,
+ "end": 27
+ },
+ {
+ "task": "t14",
+ "resource": "oven",
+ "start": 32,
+ "end": 33
+ },
+ {
+ "task": "t15",
+ "resource": "oven",
+ "start": 30,
+ "end": 31
+ },
+ {
+ "task": "t16",
+ "resource": "oven",
+ "start": 36,
+ "end": 37
+ },
+ {
+ "task": "t17",
+ "resource": "oven",
+ "start": 34,
+ "end": 35
+ },
+ {
+ "task": "t18",
+ "resource": "oven",
+ "start": 40,
+ "end": 41
+ },
+ {
+ "task": "t19",
+ "resource": "oven",
+ "start": 38,
+ "end": 39
+ },
+ {
+ "task": "t20",
+ "resource": "oven",
+ "start": 44,
+ "end": 45
+ },
+ {
+ "task": "t21",
+ "resource": "oven",
+ "start": 42,
+ "end": 43
+ },
+ {
+ "task": "t22",
+ "resource": "oven",
+ "start": 48,
+ "end": 49
+ },
+ {
+ "task": "t23",
+ "resource": "oven",
+ "start": 46,
+ "end": 47
+ },
+ {
+ "task": "t24",
+ "resource": "oven",
+ "start": 52,
+ "end": 53
+ },
+ {
+ "task": "t25",
+ "resource": "oven",
+ "start": 50,
+ "end": 51
+ },
+ {
+ "task": "t26",
+ "resource": "oven",
+ "start": 54,
+ "end": 55
+ },
+ {
+ "task": "t27",
+ "resource": "oven",
+ "start": 58,
+ "end": 59
+ },
+ {
+ "task": "t28",
+ "resource": "oven",
+ "start": 56,
+ "end": 57
+ },
+ {
+ "task": "t29",
+ "resource": "oven",
+ "start": 62,
+ "end": 63
+ },
+ {
+ "task": "t30",
+ "resource": "oven",
+ "start": 60,
+ "end": 61
+ },
+ {
+ "task": "t31",
+ "resource": "oven",
+ "start": 66,
+ "end": 67
+ },
+ {
+ "task": "t32",
+ "resource": "oven",
+ "start": 64,
+ "end": 65
+ },
+ {
+ "task": "t33",
+ "resource": "oven",
+ "start": 70,
+ "end": 71
+ },
+ {
+ "task": "t34",
+ "resource": "oven",
+ "start": 68,
+ "end": 69
+ }
+ ]
+ },
+ "dual_bound": 71.0,
+ "gap": 0.0,
+ "status": "optimal",
+ "solver_status": 0,
+ "message": "Optimization terminated successfully. (HiGHS Status 7: Optimal)",
+ "constraints": 136,
+ "runtime_seconds": 0.008231874002376571
+ },
+ "reduction": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 104,
+ "fixed_variables": [],
+ "fixed_cost": 0,
+ "removals": [],
+ "infeasible_task": null,
+ "component_qubits": [
+ 104
+ ],
+ "max_component_qubits": 104,
+ "component_to_original": [
+ [
+ 0,
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 12,
+ 13,
+ 14,
+ 15,
+ 16,
+ 17,
+ 18,
+ 19,
+ 20,
+ 21,
+ 22,
+ 23,
+ 24,
+ 25,
+ 26,
+ 27,
+ 28,
+ 29,
+ 30,
+ 31,
+ 32,
+ 33,
+ 34,
+ 35,
+ 36,
+ 37,
+ 38,
+ 39,
+ 40,
+ 41,
+ 42,
+ 43,
+ 44,
+ 45,
+ 46,
+ 47,
+ 48,
+ 49,
+ 50,
+ 51,
+ 52,
+ 53,
+ 54,
+ 55,
+ 56,
+ 57,
+ 58,
+ 59,
+ 60,
+ 61,
+ 62,
+ 63,
+ 64,
+ 65,
+ 66,
+ 67,
+ 68,
+ 69,
+ 70,
+ 71,
+ 72,
+ 73,
+ 74,
+ 75,
+ 76,
+ 77,
+ 78,
+ 79,
+ 80,
+ 81,
+ 82,
+ 83,
+ 84,
+ 85,
+ 86,
+ 87,
+ 88,
+ 89,
+ 90,
+ 91,
+ 92,
+ 93,
+ 94,
+ 95,
+ 96,
+ 97,
+ 98,
+ 99,
+ 100,
+ 101,
+ 102,
+ 103
+ ]
+ ]
+ },
+ "quantum_executed": false,
+ "scope": "classical-only; connected component exceeds CPU quantum cap"
+ }
+ },
+ {
+ "input": {
+ "name": "synthetic-classical-chain-50",
+ "horizon": 104,
+ "resources": [
+ {
+ "id": "oven",
+ "cleanup": 1,
+ "downtime": [
+ [
+ 0,
+ 2
+ ]
+ ]
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 0
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 2,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 4,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 2
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 2,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 4,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 6,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g2",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 4
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 6,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 8,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t3",
+ "group": "g3",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 6
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 6,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 8,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 10,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t4",
+ "group": "g4",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 8
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 8,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 10,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 12,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t5",
+ "group": "g5",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 10
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 10,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 12,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 14,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t6",
+ "group": "g6",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 12
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 12,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 14,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 16,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t7",
+ "group": "g7",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 14
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 14,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 16,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 18,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t8",
+ "group": "g8",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 16
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 16,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 18,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 20,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t9",
+ "group": "g9",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 18
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 18,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 20,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 22,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t10",
+ "group": "g10",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 20
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 20,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 22,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 24,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t11",
+ "group": "g11",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 22
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 22,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 24,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 26,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t12",
+ "group": "g12",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 24
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 24,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 26,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 28,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t13",
+ "group": "g13",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 26
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 26,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 28,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 30,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t14",
+ "group": "g14",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 28
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 28,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 30,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 32,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t15",
+ "group": "g15",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 30
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 30,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 32,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 34,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t16",
+ "group": "g16",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 32
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 32,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 34,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 36,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t17",
+ "group": "g17",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 34
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 34,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 36,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 38,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t18",
+ "group": "g18",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 36
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 36,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 38,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 40,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t19",
+ "group": "g19",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 38
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 38,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 40,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 42,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t20",
+ "group": "g20",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 40
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 40,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 42,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 44,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t21",
+ "group": "g21",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 42
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 42,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 44,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 46,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t22",
+ "group": "g22",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 44
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 44,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 46,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 48,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t23",
+ "group": "g23",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 46
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 46,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 48,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 50,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t24",
+ "group": "g24",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 48
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 48,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 50,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 52,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t25",
+ "group": "g25",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 50
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 50,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 52,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 54,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t26",
+ "group": "g26",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 52
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 52,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 54,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 56,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t27",
+ "group": "g27",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 54
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 54,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 56,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 58,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t28",
+ "group": "g28",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 56
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 56,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 58,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 60,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t29",
+ "group": "g29",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 58
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 58,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 60,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 62,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t30",
+ "group": "g30",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 60
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 60,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 62,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 64,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t31",
+ "group": "g31",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 62
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 62,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 64,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 66,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t32",
+ "group": "g32",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 64
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 64,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 66,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 68,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t33",
+ "group": "g33",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 66
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 66,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 68,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 70,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t34",
+ "group": "g34",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 68
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 68,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 70,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 72,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t35",
+ "group": "g35",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 70
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 70,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 72,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 74,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t36",
+ "group": "g36",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 72
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 72,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 74,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 76,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t37",
+ "group": "g37",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 74
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 74,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 76,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 78,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t38",
+ "group": "g38",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 76
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 76,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 78,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 80,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t39",
+ "group": "g39",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 78
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 78,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 80,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 82,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t40",
+ "group": "g40",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 80
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 80,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 82,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 84,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t41",
+ "group": "g41",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 82
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 82,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 84,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 86,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t42",
+ "group": "g42",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 84
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 84,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 86,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 88,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t43",
+ "group": "g43",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 86
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 86,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 88,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 90,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t44",
+ "group": "g44",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 88
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 88,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 90,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 92,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t45",
+ "group": "g45",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 90
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 90,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 92,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 94,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t46",
+ "group": "g46",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 92
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 92,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 94,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 96,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t47",
+ "group": "g47",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 94
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 94,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 96,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 98,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t48",
+ "group": "g48",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 96
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 96,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 98,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 100,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t49",
+ "group": "g49",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 98
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 98,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 100,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 102,
+ "cost": 2
+ }
+ ]
+ }
+ ]
+ },
+ "result": {
+ "tasks": 50,
+ "input_sha256": "2a68a5c5ab2827f80855542735fe066f931409ed3a3acc05ccbf46e8d8b2b1cd",
+ "milp": {
+ "variables": 150,
+ "best": {
+ "feasible": true,
+ "violations": [],
+ "violation_count": 0,
+ "objective": 100,
+ "preference_cost": 50,
+ "change_cost": 50,
+ "changed_tasks": 25,
+ "max_start_shift": 4,
+ "choices": [
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0,
+ 2,
+ 0
+ ],
+ "schedule": [
+ {
+ "task": "t0",
+ "resource": "oven",
+ "start": 4,
+ "end": 5
+ },
+ {
+ "task": "t1",
+ "resource": "oven",
+ "start": 2,
+ "end": 3
+ },
+ {
+ "task": "t2",
+ "resource": "oven",
+ "start": 8,
+ "end": 9
+ },
+ {
+ "task": "t3",
+ "resource": "oven",
+ "start": 6,
+ "end": 7
+ },
+ {
+ "task": "t4",
+ "resource": "oven",
+ "start": 12,
+ "end": 13
+ },
+ {
+ "task": "t5",
+ "resource": "oven",
+ "start": 10,
+ "end": 11
+ },
+ {
+ "task": "t6",
+ "resource": "oven",
+ "start": 16,
+ "end": 17
+ },
+ {
+ "task": "t7",
+ "resource": "oven",
+ "start": 14,
+ "end": 15
+ },
+ {
+ "task": "t8",
+ "resource": "oven",
+ "start": 20,
+ "end": 21
+ },
+ {
+ "task": "t9",
+ "resource": "oven",
+ "start": 18,
+ "end": 19
+ },
+ {
+ "task": "t10",
+ "resource": "oven",
+ "start": 24,
+ "end": 25
+ },
+ {
+ "task": "t11",
+ "resource": "oven",
+ "start": 22,
+ "end": 23
+ },
+ {
+ "task": "t12",
+ "resource": "oven",
+ "start": 28,
+ "end": 29
+ },
+ {
+ "task": "t13",
+ "resource": "oven",
+ "start": 26,
+ "end": 27
+ },
+ {
+ "task": "t14",
+ "resource": "oven",
+ "start": 32,
+ "end": 33
+ },
+ {
+ "task": "t15",
+ "resource": "oven",
+ "start": 30,
+ "end": 31
+ },
+ {
+ "task": "t16",
+ "resource": "oven",
+ "start": 36,
+ "end": 37
+ },
+ {
+ "task": "t17",
+ "resource": "oven",
+ "start": 34,
+ "end": 35
+ },
+ {
+ "task": "t18",
+ "resource": "oven",
+ "start": 40,
+ "end": 41
+ },
+ {
+ "task": "t19",
+ "resource": "oven",
+ "start": 38,
+ "end": 39
+ },
+ {
+ "task": "t20",
+ "resource": "oven",
+ "start": 44,
+ "end": 45
+ },
+ {
+ "task": "t21",
+ "resource": "oven",
+ "start": 42,
+ "end": 43
+ },
+ {
+ "task": "t22",
+ "resource": "oven",
+ "start": 48,
+ "end": 49
+ },
+ {
+ "task": "t23",
+ "resource": "oven",
+ "start": 46,
+ "end": 47
+ },
+ {
+ "task": "t24",
+ "resource": "oven",
+ "start": 52,
+ "end": 53
+ },
+ {
+ "task": "t25",
+ "resource": "oven",
+ "start": 50,
+ "end": 51
+ },
+ {
+ "task": "t26",
+ "resource": "oven",
+ "start": 56,
+ "end": 57
+ },
+ {
+ "task": "t27",
+ "resource": "oven",
+ "start": 54,
+ "end": 55
+ },
+ {
+ "task": "t28",
+ "resource": "oven",
+ "start": 60,
+ "end": 61
+ },
+ {
+ "task": "t29",
+ "resource": "oven",
+ "start": 58,
+ "end": 59
+ },
+ {
+ "task": "t30",
+ "resource": "oven",
+ "start": 64,
+ "end": 65
+ },
+ {
+ "task": "t31",
+ "resource": "oven",
+ "start": 62,
+ "end": 63
+ },
+ {
+ "task": "t32",
+ "resource": "oven",
+ "start": 68,
+ "end": 69
+ },
+ {
+ "task": "t33",
+ "resource": "oven",
+ "start": 66,
+ "end": 67
+ },
+ {
+ "task": "t34",
+ "resource": "oven",
+ "start": 72,
+ "end": 73
+ },
+ {
+ "task": "t35",
+ "resource": "oven",
+ "start": 70,
+ "end": 71
+ },
+ {
+ "task": "t36",
+ "resource": "oven",
+ "start": 76,
+ "end": 77
+ },
+ {
+ "task": "t37",
+ "resource": "oven",
+ "start": 74,
+ "end": 75
+ },
+ {
+ "task": "t38",
+ "resource": "oven",
+ "start": 80,
+ "end": 81
+ },
+ {
+ "task": "t39",
+ "resource": "oven",
+ "start": 78,
+ "end": 79
+ },
+ {
+ "task": "t40",
+ "resource": "oven",
+ "start": 84,
+ "end": 85
+ },
+ {
+ "task": "t41",
+ "resource": "oven",
+ "start": 82,
+ "end": 83
+ },
+ {
+ "task": "t42",
+ "resource": "oven",
+ "start": 88,
+ "end": 89
+ },
+ {
+ "task": "t43",
+ "resource": "oven",
+ "start": 86,
+ "end": 87
+ },
+ {
+ "task": "t44",
+ "resource": "oven",
+ "start": 92,
+ "end": 93
+ },
+ {
+ "task": "t45",
+ "resource": "oven",
+ "start": 90,
+ "end": 91
+ },
+ {
+ "task": "t46",
+ "resource": "oven",
+ "start": 96,
+ "end": 97
+ },
+ {
+ "task": "t47",
+ "resource": "oven",
+ "start": 94,
+ "end": 95
+ },
+ {
+ "task": "t48",
+ "resource": "oven",
+ "start": 100,
+ "end": 101
+ },
+ {
+ "task": "t49",
+ "resource": "oven",
+ "start": 98,
+ "end": 99
+ }
+ ]
+ },
+ "dual_bound": 100.0,
+ "gap": 0.0,
+ "status": "optimal",
+ "solver_status": 0,
+ "message": "Optimization terminated successfully. (HiGHS Status 7: Optimal)",
+ "constraints": 196,
+ "runtime_seconds": 0.011087135004345328
+ },
+ "reduction": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 149,
+ "fixed_variables": [],
+ "fixed_cost": 0,
+ "removals": [],
+ "infeasible_task": null,
+ "component_qubits": [
+ 149
+ ],
+ "max_component_qubits": 149,
+ "component_to_original": [
+ [
+ 0,
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 12,
+ 13,
+ 14,
+ 15,
+ 16,
+ 17,
+ 18,
+ 19,
+ 20,
+ 21,
+ 22,
+ 23,
+ 24,
+ 25,
+ 26,
+ 27,
+ 28,
+ 29,
+ 30,
+ 31,
+ 32,
+ 33,
+ 34,
+ 35,
+ 36,
+ 37,
+ 38,
+ 39,
+ 40,
+ 41,
+ 42,
+ 43,
+ 44,
+ 45,
+ 46,
+ 47,
+ 48,
+ 49,
+ 50,
+ 51,
+ 52,
+ 53,
+ 54,
+ 55,
+ 56,
+ 57,
+ 58,
+ 59,
+ 60,
+ 61,
+ 62,
+ 63,
+ 64,
+ 65,
+ 66,
+ 67,
+ 68,
+ 69,
+ 70,
+ 71,
+ 72,
+ 73,
+ 74,
+ 75,
+ 76,
+ 77,
+ 78,
+ 79,
+ 80,
+ 81,
+ 82,
+ 83,
+ 84,
+ 85,
+ 86,
+ 87,
+ 88,
+ 89,
+ 90,
+ 91,
+ 92,
+ 93,
+ 94,
+ 95,
+ 96,
+ 97,
+ 98,
+ 99,
+ 100,
+ 101,
+ 102,
+ 103,
+ 104,
+ 105,
+ 106,
+ 107,
+ 108,
+ 109,
+ 110,
+ 111,
+ 112,
+ 113,
+ 114,
+ 115,
+ 116,
+ 117,
+ 118,
+ 119,
+ 120,
+ 121,
+ 122,
+ 123,
+ 124,
+ 125,
+ 126,
+ 127,
+ 128,
+ 129,
+ 130,
+ 131,
+ 132,
+ 133,
+ 134,
+ 135,
+ 136,
+ 137,
+ 138,
+ 139,
+ 140,
+ 141,
+ 142,
+ 143,
+ 144,
+ 145,
+ 146,
+ 147,
+ 148
+ ]
+ ]
+ },
+ "quantum_executed": false,
+ "scope": "classical-only; connected component exceeds CPU quantum cap"
+ }
+ }
+]
diff --git a/Tutorials/LabScheduling/results/enhanced/execution.json b/Tutorials/LabScheduling/results/enhanced/execution.json
new file mode 100644
index 00000000..8780989b
--- /dev/null
+++ b/Tutorials/LabScheduling/results/enhanced/execution.json
@@ -0,0 +1,6 @@
+{
+ "records": 120,
+ "runtime_seconds": 49.05728125599853,
+ "peak_process_rss_kib_linux": 269832,
+ "rss_scope": "whole process high-water mark on Linux; not per circuit"
+}
diff --git a/Tutorials/LabScheduling/results/enhanced/hit-curves.json b/Tutorials/LabScheduling/results/enhanced/hit-curves.json
new file mode 100644
index 00000000..ce9a15a7
--- /dev/null
+++ b/Tutorials/LabScheduling/results/enhanced/hit-curves.json
@@ -0,0 +1,43 @@
+{
+ "shots": [
+ 8,
+ 16,
+ 32,
+ 64,
+ 128,
+ 512
+ ],
+ "analytic_xy": [
+ 0.613630762546145,
+ 0.7321266776243368,
+ 0.8171758254052552,
+ 0.8889809569617318,
+ 0.9390565681434955,
+ 0.9803791125402586
+ ],
+ "analytic_uniform": [
+ 0.31356659215157656,
+ 0.4649784962121102,
+ 0.6114790721396455,
+ 0.7427043558266522,
+ 0.8448179418522278,
+ 0.9700080263118599
+ ],
+ "observed_xy": [
+ 0.6,
+ 0.7555555555555555,
+ 0.8333333333333334,
+ 0.8888888888888888,
+ 0.9333333333333333,
+ 0.9666666666666666
+ ],
+ "observed_uniform": [
+ 0.32222222222222224,
+ 0.4555555555555555,
+ 0.6333333333333333,
+ 0.7444444444444445,
+ 0.8888888888888888,
+ 0.9777777777777779
+ ],
+ "aggregation": "seed mean within instance, then equal instance mean"
+}
diff --git a/Tutorials/LabScheduling/results/enhanced/hit-curves.svg b/Tutorials/LabScheduling/results/enhanced/hit-curves.svg
new file mode 100644
index 00000000..60b2d935
--- /dev/null
+++ b/Tutorials/LabScheduling/results/enhanced/hit-curves.svg
@@ -0,0 +1,515 @@
+
+
+
diff --git a/Tutorials/LabScheduling/results/enhanced/provenance.json b/Tutorials/LabScheduling/results/enhanced/provenance.json
new file mode 100644
index 00000000..f8660618
--- /dev/null
+++ b/Tutorials/LabScheduling/results/enhanced/provenance.json
@@ -0,0 +1,161 @@
+{
+ "manifest": {
+ "schema_version": 1,
+ "synthetic": true,
+ "generator_sha256": "6188e05164971853337fc04cd9321e2c5365bf027f77a4433e02bde827f32123",
+ "optimization_seeds": [
+ 0,
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9
+ ],
+ "training": {
+ "layers": 1,
+ "maxiter": 60,
+ "restarts": 2
+ },
+ "shots": [
+ 8,
+ 16,
+ 32,
+ 64,
+ 128,
+ 512
+ ],
+ "instances": [
+ {
+ "file": "development-n3-d0.json",
+ "split": "development",
+ "tasks": 3,
+ "density_parameter": 0,
+ "data_seed": 20260921,
+ "sha256": "d827ac7785a07c2ff18c3dc47d1e9345986a6249913826a2518a1d46f3ba7e18"
+ },
+ {
+ "file": "evaluation-n3-d0.json",
+ "split": "evaluation",
+ "tasks": 3,
+ "density_parameter": 0,
+ "data_seed": 20260952,
+ "sha256": "3b20e4e5c9e6ad0bcf04042080562788494a211b81f5b69cb6b200c3c66ecefe"
+ },
+ {
+ "file": "evaluation-n3-d1.json",
+ "split": "evaluation",
+ "tasks": 3,
+ "density_parameter": 1,
+ "data_seed": 20260953,
+ "sha256": "6d4d463f2d2b556e9352777df21317551122163d72f017025cc267fc9313bece"
+ },
+ {
+ "file": "evaluation-n3-d2.json",
+ "split": "evaluation",
+ "tasks": 3,
+ "density_parameter": 2,
+ "data_seed": 20260954,
+ "sha256": "6989a69a0cf7aab50b2b8a14a3a1b148f6301c187f8985ab4fb89d53709165a2"
+ },
+ {
+ "file": "evaluation-n5-d0.json",
+ "split": "evaluation",
+ "tasks": 5,
+ "density_parameter": 0,
+ "data_seed": 20260972,
+ "sha256": "16fb5b30481f7cb6e26893257198d60694a6b3601222700345682b477446f36c"
+ },
+ {
+ "file": "evaluation-n5-d1.json",
+ "split": "evaluation",
+ "tasks": 5,
+ "density_parameter": 1,
+ "data_seed": 20260973,
+ "sha256": "778be907478568fc0cd92503e0ae9e228b7caf62dc8b0c8f6cfe56dc337d42e6"
+ },
+ {
+ "file": "evaluation-n5-d2.json",
+ "split": "evaluation",
+ "tasks": 5,
+ "density_parameter": 2,
+ "data_seed": 20260974,
+ "sha256": "27e8da20697a51e79b1d9cf2f1a5103f183a804008384928ebe157dc6a0766ff"
+ },
+ {
+ "file": "evaluation-n6-d0.json",
+ "split": "evaluation",
+ "tasks": 6,
+ "density_parameter": 0,
+ "data_seed": 20260982,
+ "sha256": "689c6c10d93b32575b84b1a0b9b4ea32c3ac8e9cd35507dcf47df31a996cec46"
+ },
+ {
+ "file": "evaluation-n6-d1.json",
+ "split": "evaluation",
+ "tasks": 6,
+ "density_parameter": 1,
+ "data_seed": 20260983,
+ "sha256": "3670be6577fdf0a72f9099bae3e4264ab4cf1d364f2385a31835d48e0fd2d0b7"
+ },
+ {
+ "file": "evaluation-n6-d2.json",
+ "split": "evaluation",
+ "tasks": 6,
+ "density_parameter": 2,
+ "data_seed": 20260984,
+ "sha256": "9598e15a813425247ee3059d68f9f72d4ed0c80935040d96bc8b959549c5b482"
+ },
+ {
+ "file": "evaluation-n8-d0.json",
+ "split": "evaluation",
+ "tasks": 8,
+ "density_parameter": 0,
+ "data_seed": 20261002,
+ "sha256": "3f0bb0c0f3046ff399ba6cb057cbd4af76f9e58379bf21f3093dd368cce64145"
+ },
+ {
+ "file": "evaluation-n8-d1.json",
+ "split": "evaluation",
+ "tasks": 8,
+ "density_parameter": 1,
+ "data_seed": 20261003,
+ "sha256": "24a78232cc15095f23f1960fce0fa6b469331287e939761855cc9afe88d423e3"
+ },
+ {
+ "file": "evaluation-n8-d2.json",
+ "split": "evaluation",
+ "tasks": 8,
+ "density_parameter": 2,
+ "data_seed": 20261004,
+ "sha256": "829ea1e178a972a60b33f01009260d9577a71277b317cd63e6abab4823d5f8f2"
+ }
+ ]
+ },
+ "split": "evaluation",
+ "benchmark_sha256": "30c66c5a33cbf8c72c62c422a6a442c7504f3359142d1571f2d071e6a0d0ed4e",
+ "python": "3.12.3",
+ "platform": "Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39",
+ "packages": {
+ "numpy": "2.5.3",
+ "scipy": "1.18.1",
+ "pyqpanda3": "0.4.1",
+ "pyqpanda_alg": "2.0.0"
+ },
+ "source_hashes": {
+ "milp.py": "fc3b22b705beb95491b6b9c51f875480a021bbb40607810abdc04fd6dc8b97a2",
+ "__init__.py": "232397fe0094a0c799b939f58da7689a60b8e40b243a7bce1e1cb072ae8056d7",
+ "__main__.py": "9ea4aa0d5ffe882a5e6ffe8eb09b79dcf9dc4de4fbfafbbec33354f8c2ec6046",
+ "classical.py": "d1bd575af9969c49cda59cd15328d98f176bb004ebc22e887be173b43d69aac5",
+ "problem.py": "22ce9db50a98dc8ad8ee8cc1f9b06cef3e5469df4cfe2b043ad87ad360292990",
+ "report.py": "96b5dbc737ea4f80b737b6acfb030fcdb33b0a65b2dbf5eb8ff641e8861df2aa",
+ "model.py": "f442c4751a7f17f66e5fae331e14f75eaa327177af5346a49ceddb87e86ef509",
+ "bookings.py": "dba45010ef9e5f6a1781d8a8d79e9f3faf4fbf90223f526f550687723de1382a",
+ "quantum.py": "3f8469be5a92afbf87eb0c82f7b80282a6443edfbe335a55635717f40501522f",
+ "metrics.py": "b084507c46a7bf6cc1ca2a6a116156e24a23efb3fdea699f02b4a29bdbd503e0",
+ "reduction.py": "99d07b5b02592a30cd8eb8c141e6bddcbdc2e85b366a057bd4b699018cd491e1"
+ }
+}
diff --git a/Tutorials/LabScheduling/results/enhanced/resources.svg b/Tutorials/LabScheduling/results/enhanced/resources.svg
new file mode 100644
index 00000000..39b50e9e
--- /dev/null
+++ b/Tutorials/LabScheduling/results/enhanced/resources.svg
@@ -0,0 +1,512 @@
+
+
+
diff --git a/Tutorials/LabScheduling/results/enhanced/runs.jsonl b/Tutorials/LabScheduling/results/enhanced/runs.jsonl
new file mode 100644
index 00000000..e470677f
--- /dev/null
+++ b/Tutorials/LabScheduling/results/enhanced/runs.jsonl
@@ -0,0 +1,120 @@
+{"input":{"file":"evaluation-n3-d0.json","split":"evaluation","tasks":3,"density_parameter":0,"data_seed":20260952,"sha256":"3b20e4e5c9e6ad0bcf04042080562788494a211b81f5b69cb6b200c3c66ecefe"},"model":{"qubits":6,"penalty":19,"objective_bound":18,"offset":57,"linear":[-15,-13,-19,-13,-15,-13],"quadratic":[[0,1,38],[1,2,19],[1,5,19],[2,3,38],[4,5,38]],"domains":[[0,1],[2,3],[4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":4,"cost":4},{"index":1,"task":"t0","resource":"r2","start":6,"cost":6},{"index":2,"task":"t1","resource":"r0","start":6,"cost":0},{"index":3,"task":"t1","resource":"r1","start":2,"cost":6},{"index":4,"task":"t2","resource":"r2","start":1,"cost":4},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r2","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":false}],"bits":[1,0,1,0,1,0],"qubo_energy":8},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9670374209643198,1.31236946511766],"expected_energy":13.04245176061217,"initial_expected_energy":23.106170157647306,"history":[23.106170157647306,25.003890653739877,21.694355112903335,25.33370346924461,22.355706512769014,22.5264889606055,21.510445615508065,21.150204905565246,20.88139908595652,21.21746154319192,20.82125477846668,20.95284261680885,20.789921612248634,20.72644476928494,20.59173977049425,20.240976374946108,21.008468482867265,21.405335863508427,20.53721430376774,20.18801901560194,20.204641145687066,20.127758709148274,20.157052241738427,20.210149956965726,20.12567394092291,20.090529129745818,20.031406216564974,20.044445173002362,19.981456206387126,19.94813850535715,19.96284168754412,19.90631718582706,19.869912939657087,19.821215025393165,19.866370010737434,19.801780737376358,19.764637877588385,19.711706809542168,19.767478909989073,19.693112373831546,19.649455030043384,19.559910626891934,19.37569423979107,19.042675364407266,17.908586819728473,19.20621008037935,20.895000452794594,17.94068666970145,17.301345437976746,16.030866474282462,13.632711892766334,19.297428964269468,20.254214982360427,19.697759925151537,13.394654757809727,14.418787453808147,13.513601993614259,13.397146265591836,13.41144863146043,13.369855219053258,27.923855897250334,23.836455855722523,22.705142868937763,24.099649531470682,21.913627805453302,19.49156613855801,23.121632281226113,26.52815866483957,18.643102542789336,16.879137565111844,25.391979786744738,19.33241301420334,16.479948650329405,17.987470026261867,16.42475461695642,16.11263970114008,15.594997615209067,17.024406999919236,15.41545487478102,15.045242899488084,14.299822584368576,13.416938868378086,14.5076271757556,14.814583018564438,13.322284288435661,13.426871961103497,13.395731273786406,13.464937718591358,13.278999952647201,13.280846920253548,13.273442107321646,13.259629805702948,13.246528230084273,13.231348404546468,13.205333174995458,13.183352623883103,13.144165336055693,13.088737175438236,13.087350759520742,13.046320224237821,13.176047724110717,13.099253368789087,13.04457268893566,13.058707641661,13.04654914089933,13.04506171201314,13.044382894593085,13.044344099493319,13.044544913725026,13.044368539413522,13.044168293590655,13.043931417308789,13.044131848280198,13.043801727252706,13.043712404192132,13.043584494934503,13.043349698027782,13.042948436670978,13.042817715998195,13.04245176061217],"feasible_probability":0.9748371961666141,"one_hot_probability":1.0,"sampled_feasible_fraction":0.98046875,"counts":{"010101":130,"010110":5,"011001":139,"011010":87,"100101":76,"100110":3,"101001":70,"101010":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09184456900402438},"metrics":{"exact_objective":8,"optimal_count":1,"combinations":8,"optimal_probability":0.2614327980332667,"feasible_probability":0.9748371961666141,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.625,"shots_for_95_percent":10,"hit_curve":[{"shots":8,"quantum":0.911463950047618,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9921613678588294,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999385558461554,"uniform":0.9860601629623169},{"shots":64,"quantum":0.999999996224616,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":7,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":8,"preference_cost":6,"change_cost":2,"changed_tasks":1,"max_start_shift":4,"choices":[1,0,0],"schedule":[{"task":"t0","resource":"r1","start":4,"end":5},{"task":"t1","resource":"r0","start":6,"end":7},{"task":"t2","resource":"r2","start":1,"end":2}]},"dual_bound":8.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":5,"runtime_seconds":0.004502966010477394},"exact":{"status":"optimal","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r2","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":false}],"bits":[1,0,1,0,1,0],"qubo_energy":8},"combinations":8,"feasible_count":5,"runtime_seconds":6.851699436083436e-05},"greedy":{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r2","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":false}],"bits":[1,0,1,0,1,0],"qubo_energy":8},"runtime_seconds":8.500399417243898e-05},"resources":{"full":{"depth":19,"operations":{"RX":15,"I":6,"RZ":14,"CNOT":19,"CRY":3,"X":3},"cnot":19,"cry":3},"auto":{"depth":17,"operations":{"RX":15,"I":6,"RZ":11,"CNOT":13,"CRY":3,"X":3},"cnot":13,"cry":3}},"phase_max_probability_error":2.220446049250313e-16,"samples":[{"shots":8,"quantum_objective":8,"uniform_objective":8},{"shots":16,"quantum_objective":8,"uniform_objective":8},{"shots":32,"quantum_objective":8,"uniform_objective":8},{"shots":64,"quantum_objective":8,"uniform_objective":8},{"shots":128,"quantum_objective":8,"uniform_objective":8},{"shots":512,"quantum_objective":8,"uniform_objective":8}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[6],"max_component_qubits":6,"component_to_original":[[0,1,2,3,4,5]],"components":[{"qubits":6,"penalty":19,"objective_bound":18,"offset":57,"linear":[-15,-13,-19,-13,-15,-13],"quadratic":[[0,1,38],[1,2,19],[1,5,19],[2,3,38],[4,5,38]],"domains":[[0,1],[2,3],[4,5]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":4,"cost":4},{"index":1,"task":"t0","resource":"r2","start":6,"cost":6},{"index":2,"task":"t1","resource":"r0","start":6,"cost":0},{"index":3,"task":"t1","resource":"r1","start":2,"cost":6},{"index":4,"task":"t2","resource":"r2","start":1,"cost":4},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]}]}]},"diagnostic_seconds":0.01224566699238494}
+{"input":{"file":"evaluation-n3-d0.json","split":"evaluation","tasks":3,"density_parameter":0,"data_seed":20260952,"sha256":"3b20e4e5c9e6ad0bcf04042080562788494a211b81f5b69cb6b200c3c66ecefe"},"model":{"qubits":6,"penalty":19,"objective_bound":18,"offset":57,"linear":[-15,-13,-19,-13,-15,-13],"quadratic":[[0,1,38],[1,2,19],[1,5,19],[2,3,38],[4,5,38]],"domains":[[0,1],[2,3],[4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":4,"cost":4},{"index":1,"task":"t0","resource":"r2","start":6,"cost":6},{"index":2,"task":"t1","resource":"r0","start":6,"cost":0},{"index":3,"task":"t1","resource":"r1","start":2,"cost":6},{"index":4,"task":"t2","resource":"r2","start":1,"cost":4},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r2","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":false}],"bits":[1,0,1,0,1,0],"qubo_energy":8},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9686124525553775,1.3102359667129788],"expected_energy":13.04237845309813,"initial_expected_energy":26.32504596684264,"history":[26.32504596684264,23.076988062595245,22.121498396065643,22.54735585861908,20.540199559819584,25.305267324153718,21.807010542943253,20.343337420473134,20.323884870664934,20.166279807466726,19.821200151806494,19.008298239196066,18.320459143974453,17.188198937409332,29.10900347706972,24.13248544386871,15.113762039902024,14.041872392474428,13.590798556937028,13.919571254652155,13.757335349322968,13.490031070690684,13.283751761087384,13.21156888857766,13.5312931438783,13.859160859870853,13.084396225341765,13.09034049659696,13.085794740471762,13.109698528899653,13.079006390797328,13.072550350335234,13.073931729550996,13.067712769867136,13.064392344769022,13.06825271239503,13.060412598028616,13.057803652960018,13.063893013489857,13.055716649604502,13.054134911851175,13.050992205601622,13.046874829359831,13.047831324377855,13.050013371486124,13.047204094874466,13.047356255846767,13.046115300526173,13.045273479968577,13.044600732000246,13.045201997291546,13.044246123524012,13.044422842585817,13.044189129416832,13.044051462941965,13.043783942918031,13.043376383445088,13.04316998622263,13.04237845309813,13.046014464461203,20.993916048072,21.958141303047846,20.64539962461202,28.41221782326149,21.37904392119261,21.215656117423663,21.295226825134712,19.574264398680178,18.56266415560043,19.007218405986016,18.281060460512684,17.99724217778391,17.375042647625943,16.463149907138646,17.83286814241815,19.26632887311019,16.01924563287534,15.821065854640791,14.93683909952793,14.998727080753865,15.686510658048611,15.257344032755153,15.105981426504993,14.646209708742852,14.426586998251281,14.146694745750251,14.011975757073646,14.628081802166577,13.845585577553376,13.751799221156325,13.641803075977165,13.467960365655962,13.547222488784804,13.525471348486853,13.444382059316561,13.539093594745356,13.38752831525004,13.353938141022422,13.315066569153323,13.280135244122249,13.218268852292828,13.121020637535876,13.101240228557199,13.112196429482092,13.269872511307376,13.120557594053354,13.064490793652714,13.060653187414445,13.06943368227493,13.063174927047267,13.054981384868825,13.05673163732664,13.053392823357347,13.052695437429149,13.055388031453308,13.052166765211522,13.05124345692954,13.049880142101049,13.047446863154065,13.048876107661338],"feasible_probability":0.9751319926544493,"one_hot_probability":1.0,"sampled_feasible_fraction":0.978515625,"counts":{"010101":142,"010110":1,"011001":125,"011010":87,"100101":83,"100110":9,"101001":64,"101010":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08878751100564841},"metrics":{"exact_objective":8,"optimal_count":1,"combinations":8,"optimal_probability":0.26174291587784065,"feasible_probability":0.9751319926544494,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.625,"shots_for_95_percent":10,"hit_curve":[{"shots":8,"quantum":0.9117609173867234,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9922138642995674,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999393760908545,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9999999963247417,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":7,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":8,"preference_cost":6,"change_cost":2,"changed_tasks":1,"max_start_shift":4,"choices":[1,0,0],"schedule":[{"task":"t0","resource":"r1","start":4,"end":5},{"task":"t1","resource":"r0","start":6,"end":7},{"task":"t2","resource":"r2","start":1,"end":2}]},"dual_bound":8.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":5,"runtime_seconds":0.004502966010477394},"exact":{"status":"optimal","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r2","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":false}],"bits":[1,0,1,0,1,0],"qubo_energy":8},"combinations":8,"feasible_count":5,"runtime_seconds":6.851699436083436e-05},"greedy":{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r2","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":false}],"bits":[1,0,1,0,1,0],"qubo_energy":8},"runtime_seconds":8.500399417243898e-05},"resources":{"full":{"depth":19,"operations":{"RX":15,"I":6,"RZ":14,"CNOT":19,"CRY":3,"X":3},"cnot":19,"cry":3},"auto":{"depth":17,"operations":{"RX":15,"I":6,"RZ":11,"CNOT":13,"CRY":3,"X":3},"cnot":13,"cry":3}},"phase_max_probability_error":1.6653345369377348e-16,"samples":[{"shots":8,"quantum_objective":8,"uniform_objective":16},{"shots":16,"quantum_objective":8,"uniform_objective":8},{"shots":32,"quantum_objective":8,"uniform_objective":8},{"shots":64,"quantum_objective":8,"uniform_objective":8},{"shots":128,"quantum_objective":8,"uniform_objective":8},{"shots":512,"quantum_objective":8,"uniform_objective":8}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[6],"max_component_qubits":6,"component_to_original":[[0,1,2,3,4,5]],"components":[{"qubits":6,"penalty":19,"objective_bound":18,"offset":57,"linear":[-15,-13,-19,-13,-15,-13],"quadratic":[[0,1,38],[1,2,19],[1,5,19],[2,3,38],[4,5,38]],"domains":[[0,1],[2,3],[4,5]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":4,"cost":4},{"index":1,"task":"t0","resource":"r2","start":6,"cost":6},{"index":2,"task":"t1","resource":"r0","start":6,"cost":0},{"index":3,"task":"t1","resource":"r1","start":2,"cost":6},{"index":4,"task":"t2","resource":"r2","start":1,"cost":4},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]}]}]},"diagnostic_seconds":0.012438880992704071}
+{"input":{"file":"evaluation-n3-d0.json","split":"evaluation","tasks":3,"density_parameter":0,"data_seed":20260952,"sha256":"3b20e4e5c9e6ad0bcf04042080562788494a211b81f5b69cb6b200c3c66ecefe"},"model":{"qubits":6,"penalty":19,"objective_bound":18,"offset":57,"linear":[-15,-13,-19,-13,-15,-13],"quadratic":[[0,1,38],[1,2,19],[1,5,19],[2,3,38],[4,5,38]],"domains":[[0,1],[2,3],[4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":4,"cost":4},{"index":1,"task":"t0","resource":"r2","start":6,"cost":6},{"index":2,"task":"t1","resource":"r0","start":6,"cost":0},{"index":3,"task":"t1","resource":"r1","start":2,"cost":6},{"index":4,"task":"t2","resource":"r2","start":1,"cost":4},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r2","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":false}],"bits":[1,0,1,0,1,0],"qubo_energy":8},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9784289012940155,2.883237114606175],"expected_energy":13.044450747352375,"initial_expected_energy":22.50072371295355,"history":[22.50072371295355,21.41474969628609,24.71233108213994,22.4634176579696,20.940991337299923,24.621038064539214,20.87602180800068,20.759355406993812,20.939607265562813,20.86483410692003,20.627304434072965,20.73000126418214,20.617325302527586,20.630342611492804,20.616158728526308,20.614250903440755,20.6127966564514,20.61423880069701,20.61185768650683,20.61153258820068,20.61054981520269,20.609612491535756,20.607801519120564,20.604419997827673,20.600619231499714,20.595684569470997,20.596582245541246,20.605544918920764,20.595833043891965,20.593577568383665,20.593179682256594,20.59165798189901,20.590453277866054,20.58809557525881,20.583977534867607,20.591299091151807,20.602838755087788,20.586036647441496,20.583655621677785,20.585527372308405,20.58338230688221,20.5829603538728,20.58269669775612,20.583451411941226,20.58242305231417,20.582188189994902,20.581753807028356,20.58088116155311,20.57924914899366,20.578723299229203,20.580629057705476,20.58950943142866,20.57657879336471,20.576272514575326,20.57571472710549,20.574974536565524,20.57972221910055,20.574301718014997,20.5750428261898,20.57450164542221,36.748351278898795,32.58647457172288,22.0675863755876,18.832225266722386,20.91147846948398,29.802821787733834,20.57092415139598,18.827365102505343,18.454397924356098,17.723400709938755,16.44731575375031,14.246544014579321,15.534127535529327,21.27205510750183,15.822612586430129,14.336374236599998,15.903152509894666,13.823817653363516,13.98449079870962,13.943951379508142,13.84198398786203,13.765420383437853,13.697562409684593,13.890790496782197,13.636421992757434,13.584007072304031,13.486437558568495,13.397313444221801,13.263654873510497,13.31443325431692,13.444926416019193,13.227509686386025,13.23720380050021,13.221457977412852,13.212123365576677,13.204181885532753,13.248603316551911,13.188292732256325,13.17574230528004,13.156339349615342,13.119881295951233,13.08051448840557,13.112756499438191,13.163403101687864,13.09031047257142,13.067807527017628,13.06550263921985,13.095272065535731,13.058587435723258,13.055495229243451,13.05234083158815,13.051163434844577,13.04685944714696,13.060345329834082,13.04475285294056,13.044783976242638,13.049439670864048,13.044450747352375,13.045602965121562,13.044704938019589],"feasible_probability":0.9753921540521534,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.96875,"counts":{"010101":119,"010110":10,"011001":124,"011010":100,"100101":80,"100110":5,"101001":73,"101010":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08747898800356779},"metrics":{"exact_objective":8,"optimal_count":1,"combinations":8,"optimal_probability":0.2620056797117026,"feasible_probability":0.9753921540521534,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.625,"shots_for_95_percent":10,"hit_curve":[{"shots":8,"quantum":0.9120118562751907,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9922580865638623,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999400627763474,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9999999964075292,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":7,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":8,"preference_cost":6,"change_cost":2,"changed_tasks":1,"max_start_shift":4,"choices":[1,0,0],"schedule":[{"task":"t0","resource":"r1","start":4,"end":5},{"task":"t1","resource":"r0","start":6,"end":7},{"task":"t2","resource":"r2","start":1,"end":2}]},"dual_bound":8.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":5,"runtime_seconds":0.004502966010477394},"exact":{"status":"optimal","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r2","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":false}],"bits":[1,0,1,0,1,0],"qubo_energy":8},"combinations":8,"feasible_count":5,"runtime_seconds":6.851699436083436e-05},"greedy":{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r2","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":false}],"bits":[1,0,1,0,1,0],"qubo_energy":8},"runtime_seconds":8.500399417243898e-05},"resources":{"full":{"depth":19,"operations":{"RX":15,"I":6,"RZ":14,"CNOT":19,"CRY":3,"X":3},"cnot":19,"cry":3},"auto":{"depth":17,"operations":{"RX":15,"I":6,"RZ":11,"CNOT":13,"CRY":3,"X":3},"cnot":13,"cry":3}},"phase_max_probability_error":2.220446049250313e-16,"samples":[{"shots":8,"quantum_objective":8,"uniform_objective":8},{"shots":16,"quantum_objective":8,"uniform_objective":8},{"shots":32,"quantum_objective":8,"uniform_objective":8},{"shots":64,"quantum_objective":8,"uniform_objective":8},{"shots":128,"quantum_objective":8,"uniform_objective":8},{"shots":512,"quantum_objective":8,"uniform_objective":8}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[6],"max_component_qubits":6,"component_to_original":[[0,1,2,3,4,5]],"components":[{"qubits":6,"penalty":19,"objective_bound":18,"offset":57,"linear":[-15,-13,-19,-13,-15,-13],"quadratic":[[0,1,38],[1,2,19],[1,5,19],[2,3,38],[4,5,38]],"domains":[[0,1],[2,3],[4,5]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":4,"cost":4},{"index":1,"task":"t0","resource":"r2","start":6,"cost":6},{"index":2,"task":"t1","resource":"r0","start":6,"cost":0},{"index":3,"task":"t1","resource":"r1","start":2,"cost":6},{"index":4,"task":"t2","resource":"r2","start":1,"cost":4},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]}]}]},"diagnostic_seconds":0.012507752006058581}
+{"input":{"file":"evaluation-n3-d0.json","split":"evaluation","tasks":3,"density_parameter":0,"data_seed":20260952,"sha256":"3b20e4e5c9e6ad0bcf04042080562788494a211b81f5b69cb6b200c3c66ecefe"},"model":{"qubits":6,"penalty":19,"objective_bound":18,"offset":57,"linear":[-15,-13,-19,-13,-15,-13],"quadratic":[[0,1,38],[1,2,19],[1,5,19],[2,3,38],[4,5,38]],"domains":[[0,1],[2,3],[4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":4,"cost":4},{"index":1,"task":"t0","resource":"r2","start":6,"cost":6},{"index":2,"task":"t1","resource":"r0","start":6,"cost":0},{"index":3,"task":"t1","resource":"r1","start":2,"cost":6},{"index":4,"task":"t2","resource":"r2","start":1,"cost":4},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r2","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":false}],"bits":[1,0,1,0,1,0],"qubo_energy":8},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9642413710680692,1.3108535895297726],"expected_energy":13.042033256750466,"initial_expected_energy":17.844019399206605,"history":[17.844019399206605,20.074426113097548,28.419838817028598,24.450390582255366,17.097388467863574,19.645348012550166,17.843020406001266,16.285043466915635,16.31216861634826,16.973161713266148,15.379635064945111,15.08076612552963,15.462734292488577,14.774741055383208,14.745417768090768,14.338489576091366,14.428662522337437,14.416080864793404,14.249006296138134,14.30787726413304,14.288043481638667,14.190142384559875,14.162956713997817,14.375127693897447,14.08136679169556,13.941816867484711,13.728357484829974,13.412616903957778,13.169443666716,13.053898908911432,13.68103696603606,13.466591706680749,13.067365326868497,13.06141188223333,13.055241164955593,13.048942964927098,13.042737429434318,13.0421007537951,13.045188013700923,13.04239354248661,13.042472433574153,13.04209523055556,13.042055504672886,13.042072605847792,13.042050757792467,13.042057602759256,13.042049587358543,13.04204661579281,13.042044278254211,13.04204554718977,13.042042385499919,13.042040909437318,13.042040372448092,13.042048983638223,13.042039590774746,13.042036795963252,13.042034878215931,13.042035614386746,13.042034040434524,13.042033256750466,23.74032499833304,22.466039664604022,23.532494135656712,22.531043520820724,23.695746373090063,21.40232187187761,20.95111037880961,24.444071284713846,20.956466923281873,20.787814539642444,21.098088106358187,20.8074250967487,20.66873324649447,20.768230448089696,20.686365025060937,20.671728829617035,20.662201705589915,20.664134779850514,20.659468558687262,20.658848234829392,20.663010743288986,20.65551674985678,20.64981439190221,20.63946051120579,20.658060179720177,20.646885427346362,20.63778158675837,20.644616964150302,20.635224451955786,20.633235951330533,20.637918822043158,20.631315826205835,20.629000951502487,20.624674605114375,20.620588875952162,20.614997246181666,20.620295467287935,20.625225812703853,20.614595865378902,20.612024194232106,20.61140118702052,20.61399454529614,20.60938007377392,20.605757434850872,20.59933633284809,20.613478614508473,20.6172178702211,20.60146434237314,20.598741566131714,20.599723736907535,20.597704291939824,20.598223612600854,20.597039578021295,20.596877923974148,20.597893575225783,20.596461379335132,20.59569661763696,20.594350425840933,20.59170894204605,20.588024022724355],"feasible_probability":0.9748421704548531,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.97265625,"counts":{"010101":148,"010110":6,"011001":141,"011010":86,"100101":72,"100110":7,"101001":51,"101010":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09022140198794659},"metrics":{"exact_objective":8,"optimal_count":1,"combinations":8,"optimal_probability":0.2614503472187389,"feasible_probability":0.9748421704548531,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.625,"shots_for_95_percent":10,"hit_curve":[{"shots":8,"quantum":0.9114807783752106,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9921643474029415,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999386025483782,"uniform":0.9860601629623169},{"shots":64,"quantum":0.999999996230353,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":7,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":8,"preference_cost":6,"change_cost":2,"changed_tasks":1,"max_start_shift":4,"choices":[1,0,0],"schedule":[{"task":"t0","resource":"r1","start":4,"end":5},{"task":"t1","resource":"r0","start":6,"end":7},{"task":"t2","resource":"r2","start":1,"end":2}]},"dual_bound":8.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":5,"runtime_seconds":0.004502966010477394},"exact":{"status":"optimal","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r2","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":false}],"bits":[1,0,1,0,1,0],"qubo_energy":8},"combinations":8,"feasible_count":5,"runtime_seconds":6.851699436083436e-05},"greedy":{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r2","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":false}],"bits":[1,0,1,0,1,0],"qubo_energy":8},"runtime_seconds":8.500399417243898e-05},"resources":{"full":{"depth":19,"operations":{"RX":15,"I":6,"RZ":14,"CNOT":19,"CRY":3,"X":3},"cnot":19,"cry":3},"auto":{"depth":17,"operations":{"RX":15,"I":6,"RZ":11,"CNOT":13,"CRY":3,"X":3},"cnot":13,"cry":3}},"phase_max_probability_error":5.551115123125783e-17,"samples":[{"shots":8,"quantum_objective":10,"uniform_objective":8},{"shots":16,"quantum_objective":8,"uniform_objective":8},{"shots":32,"quantum_objective":8,"uniform_objective":8},{"shots":64,"quantum_objective":8,"uniform_objective":8},{"shots":128,"quantum_objective":8,"uniform_objective":8},{"shots":512,"quantum_objective":8,"uniform_objective":8}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[6],"max_component_qubits":6,"component_to_original":[[0,1,2,3,4,5]],"components":[{"qubits":6,"penalty":19,"objective_bound":18,"offset":57,"linear":[-15,-13,-19,-13,-15,-13],"quadratic":[[0,1,38],[1,2,19],[1,5,19],[2,3,38],[4,5,38]],"domains":[[0,1],[2,3],[4,5]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":4,"cost":4},{"index":1,"task":"t0","resource":"r2","start":6,"cost":6},{"index":2,"task":"t1","resource":"r0","start":6,"cost":0},{"index":3,"task":"t1","resource":"r1","start":2,"cost":6},{"index":4,"task":"t2","resource":"r2","start":1,"cost":4},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]}]}]},"diagnostic_seconds":0.012520272997790016}
+{"input":{"file":"evaluation-n3-d0.json","split":"evaluation","tasks":3,"density_parameter":0,"data_seed":20260952,"sha256":"3b20e4e5c9e6ad0bcf04042080562788494a211b81f5b69cb6b200c3c66ecefe"},"model":{"qubits":6,"penalty":19,"objective_bound":18,"offset":57,"linear":[-15,-13,-19,-13,-15,-13],"quadratic":[[0,1,38],[1,2,19],[1,5,19],[2,3,38],[4,5,38]],"domains":[[0,1],[2,3],[4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":4,"cost":4},{"index":1,"task":"t0","resource":"r2","start":6,"cost":6},{"index":2,"task":"t1","resource":"r0","start":6,"cost":0},{"index":3,"task":"t1","resource":"r1","start":2,"cost":6},{"index":4,"task":"t2","resource":"r2","start":1,"cost":4},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r2","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":false}],"bits":[1,0,1,0,1,0],"qubo_energy":8},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0483814729820682,2.8727632458939065],"expected_energy":13.126470418602064,"initial_expected_energy":22.38718560324096,"history":[22.38718560324096,22.12245809671287,22.6987970601691,22.792555567464326,24.792331606977125,21.863416178870757,20.85922424024976,22.303076431047053,20.925087725646243,20.82560236683299,21.02431907732921,20.761842054308396,20.74034508272937,20.71557263399197,20.766287220724195,20.77218101892766,20.70105914967501,20.69190954205994,20.69448118319609,20.68764478276984,20.680806457498562,20.674312097816085,20.680960085768618,20.671047066582474,20.669331136167372,20.6658600990585,20.659806370575183,20.64834309793714,20.64339140576921,20.63676323533815,20.67139289113274,20.6678680674108,20.643520828979398,20.623449071714255,20.620532368592478,20.6171899323104,20.620792702977422,20.61539529796365,20.613833082125645,20.616167325842767,20.61246065786304,20.610738118555354,20.607924488711674,20.621388785991474,20.606622170376383,20.60504666533631,20.601874608142566,20.596028037081144,20.591792752332374,20.615775303105085,20.629854612590563,20.590743676638798,20.584229104312172,20.585853108391117,20.585018745398152,20.584656213169996,20.58406726171164,20.58381588308258,20.583802602052955,20.583705835718398,23.63458791111737,25.7616644194635,21.840212183742427,24.58098309357985,22.596164777177535,22.584638073915936,21.672120651765432,21.362223423516888,21.188514683658592,21.260868334943353,21.13562541396191,21.09343872171168,21.107573836055046,21.05947413341584,21.065175887820075,21.070828942007118,21.04095624544253,21.019412225295,21.051235420949016,20.995093681750795,20.973936716093306,20.93514543989981,20.86134973457696,20.738356835327494,20.617301344513898,20.3748427043736,21.285372085717615,20.60369816175676,20.800089874200687,20.47234432538109,20.19881731082164,20.10145231607728,20.26904435930009,20.03975993878494,19.97380210930762,19.829577371511217,19.600305824192542,18.64207567144966,19.4729011734204,20.75915976706252,18.907894240893775,18.521060397340097,18.459242713613172,19.037528527880973,18.35543984199294,18.1767335071867,17.904939462103126,17.395979195795938,17.86359783702452,17.182289659539784,16.435270227973533,14.992081663760407,13.949208864330886,24.74848792884147,18.58712283664673,13.135975716259647,14.54091793965334,13.212371384409417,13.470053685208262,13.126470418602064],"feasible_probability":0.9771014475922253,"one_hot_probability":1.0,"sampled_feasible_fraction":0.962890625,"counts":{"010101":143,"010110":11,"011001":145,"011010":72,"100101":78,"100110":8,"101001":55},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09245527700113598},"metrics":{"exact_objective":8,"optimal_count":1,"combinations":8,"optimal_probability":0.2653995456431184,"feasible_probability":0.9771014475922252,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.625,"shots_for_95_percent":10,"hit_curve":[{"shots":8,"quantum":0.9151973271056293,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9928085066699703,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999482824236842,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9999999973252923,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":7,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":8,"preference_cost":6,"change_cost":2,"changed_tasks":1,"max_start_shift":4,"choices":[1,0,0],"schedule":[{"task":"t0","resource":"r1","start":4,"end":5},{"task":"t1","resource":"r0","start":6,"end":7},{"task":"t2","resource":"r2","start":1,"end":2}]},"dual_bound":8.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":5,"runtime_seconds":0.004502966010477394},"exact":{"status":"optimal","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r2","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":false}],"bits":[1,0,1,0,1,0],"qubo_energy":8},"combinations":8,"feasible_count":5,"runtime_seconds":6.851699436083436e-05},"greedy":{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r2","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":false}],"bits":[1,0,1,0,1,0],"qubo_energy":8},"runtime_seconds":8.500399417243898e-05},"resources":{"full":{"depth":19,"operations":{"RX":15,"I":6,"RZ":14,"CNOT":19,"CRY":3,"X":3},"cnot":19,"cry":3},"auto":{"depth":17,"operations":{"RX":15,"I":6,"RZ":11,"CNOT":13,"CRY":3,"X":3},"cnot":13,"cry":3}},"phase_max_probability_error":1.1102230246251565e-16,"samples":[{"shots":8,"quantum_objective":8,"uniform_objective":8},{"shots":16,"quantum_objective":8,"uniform_objective":8},{"shots":32,"quantum_objective":8,"uniform_objective":8},{"shots":64,"quantum_objective":8,"uniform_objective":8},{"shots":128,"quantum_objective":8,"uniform_objective":8},{"shots":512,"quantum_objective":8,"uniform_objective":8}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[6],"max_component_qubits":6,"component_to_original":[[0,1,2,3,4,5]],"components":[{"qubits":6,"penalty":19,"objective_bound":18,"offset":57,"linear":[-15,-13,-19,-13,-15,-13],"quadratic":[[0,1,38],[1,2,19],[1,5,19],[2,3,38],[4,5,38]],"domains":[[0,1],[2,3],[4,5]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":4,"cost":4},{"index":1,"task":"t0","resource":"r2","start":6,"cost":6},{"index":2,"task":"t1","resource":"r0","start":6,"cost":0},{"index":3,"task":"t1","resource":"r1","start":2,"cost":6},{"index":4,"task":"t2","resource":"r2","start":1,"cost":4},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]}]}]},"diagnostic_seconds":0.0123240860120859}
+{"input":{"file":"evaluation-n3-d0.json","split":"evaluation","tasks":3,"density_parameter":0,"data_seed":20260952,"sha256":"3b20e4e5c9e6ad0bcf04042080562788494a211b81f5b69cb6b200c3c66ecefe"},"model":{"qubits":6,"penalty":19,"objective_bound":18,"offset":57,"linear":[-15,-13,-19,-13,-15,-13],"quadratic":[[0,1,38],[1,2,19],[1,5,19],[2,3,38],[4,5,38]],"domains":[[0,1],[2,3],[4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":4,"cost":4},{"index":1,"task":"t0","resource":"r2","start":6,"cost":6},{"index":2,"task":"t1","resource":"r0","start":6,"cost":0},{"index":3,"task":"t1","resource":"r1","start":2,"cost":6},{"index":4,"task":"t2","resource":"r2","start":1,"cost":4},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r2","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":false}],"bits":[1,0,1,0,1,0],"qubo_energy":8},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[-0.9604780130529422,0.2598954907250894],"expected_energy":13.042092780723658,"initial_expected_energy":22.29323296433941,"history":[22.29323296433941,22.327439935799163,13.882557041092925,35.40985254469273,15.703473010835275,14.605472467826702,15.232535541296766,13.78251053002947,13.517442542512615,13.676814033762948,13.475251728334403,13.649524666208654,13.462080983749862,13.409695425580114,13.375098808124726,13.415728216297975,13.35885997586444,13.343061944035766,13.312811899593033,13.256199457873436,13.177725092924312,13.138078204338655,13.062775435780788,13.137850447176406,13.27963013040879,13.097468235265634,13.059761980330677,13.08060235077306,13.056854072216861,13.054081421428743,13.058140989043933,13.052284940979474,13.050067228649272,13.051673457319698,13.048634957538994,13.047395043392537,13.051374837250505,13.045781998848348,13.045306148385968,13.044393005387361,13.043688953638274,13.04365057772288,13.042593262648541,13.044300050136021,13.043477966854777,13.042494333137515,13.04261935447307,13.0425034003563,13.042434620693651,13.042398431743283,13.042710341524874,13.042315068805781,13.042265021180164,13.042222659526825,13.042260011595031,13.042205052703254,13.042277695652789,13.042161416121045,13.04212861481128,13.042093402071803,23.134163193975596,25.85910379382512,23.244256087726264,20.862608090754364,22.706493454158895,26.044049714809848,15.483057224373225,16.58451292498134,25.836176189370015,16.570314455763608,14.394173598232221,14.566287680801116,14.965479816088367,14.485452967584031,14.033291324911982,13.793354589866592,14.346909383372976,13.664192341340506,13.555739468250394,13.67370112517834,13.4912875106136,13.386050743497881,13.22184041725501,13.496456964656746,13.389242106819626,13.198460586613317,13.330128004879889,13.169950916896402,13.15222349739671,13.191241783669444,13.14042423750627,13.130408129782104,13.112465924367504,13.105378512040708,13.072990390329887,13.09421655068553,13.070959683656199,13.080781045129314,13.064344615849834,13.05907623458367,13.051525292413718,13.058234483917644,13.059377233272858,13.05263306544185,13.050334012636203,13.052597646052956,13.051857514439192,13.050310581743608,13.04962558319881,13.048379412860335,13.046976793061441,13.045526364626028,13.045094811119542,13.052680539960303,13.043594979488958,13.04346949386241,13.043106985401916,13.042589713485759,13.042092780723658,13.043012579143108],"feasible_probability":0.9746253928045329,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.978515625,"counts":{"010101":144,"010110":5,"011001":120,"011010":91,"100101":73,"100110":4,"101001":73,"101010":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09163637198798824},"metrics":{"exact_objective":8,"optimal_count":1,"combinations":8,"optimal_probability":0.2612440470070083,"feasible_probability":0.974625392804533,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.625,"shots_for_95_percent":10,"hit_curve":[{"shots":8,"quantum":0.9112827751926129,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9921292540224755,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999380513577573,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9999999961623657,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":7,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":8,"preference_cost":6,"change_cost":2,"changed_tasks":1,"max_start_shift":4,"choices":[1,0,0],"schedule":[{"task":"t0","resource":"r1","start":4,"end":5},{"task":"t1","resource":"r0","start":6,"end":7},{"task":"t2","resource":"r2","start":1,"end":2}]},"dual_bound":8.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":5,"runtime_seconds":0.004502966010477394},"exact":{"status":"optimal","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r2","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":false}],"bits":[1,0,1,0,1,0],"qubo_energy":8},"combinations":8,"feasible_count":5,"runtime_seconds":6.851699436083436e-05},"greedy":{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r2","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":false}],"bits":[1,0,1,0,1,0],"qubo_energy":8},"runtime_seconds":8.500399417243898e-05},"resources":{"full":{"depth":19,"operations":{"RX":15,"I":6,"RZ":14,"CNOT":19,"CRY":3,"X":3},"cnot":19,"cry":3},"auto":{"depth":17,"operations":{"RX":15,"I":6,"RZ":11,"CNOT":13,"CRY":3,"X":3},"cnot":13,"cry":3}},"phase_max_probability_error":1.6653345369377348e-16,"samples":[{"shots":8,"quantum_objective":8,"uniform_objective":8},{"shots":16,"quantum_objective":8,"uniform_objective":8},{"shots":32,"quantum_objective":8,"uniform_objective":8},{"shots":64,"quantum_objective":8,"uniform_objective":8},{"shots":128,"quantum_objective":8,"uniform_objective":8},{"shots":512,"quantum_objective":8,"uniform_objective":8}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[6],"max_component_qubits":6,"component_to_original":[[0,1,2,3,4,5]],"components":[{"qubits":6,"penalty":19,"objective_bound":18,"offset":57,"linear":[-15,-13,-19,-13,-15,-13],"quadratic":[[0,1,38],[1,2,19],[1,5,19],[2,3,38],[4,5,38]],"domains":[[0,1],[2,3],[4,5]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":4,"cost":4},{"index":1,"task":"t0","resource":"r2","start":6,"cost":6},{"index":2,"task":"t1","resource":"r0","start":6,"cost":0},{"index":3,"task":"t1","resource":"r1","start":2,"cost":6},{"index":4,"task":"t2","resource":"r2","start":1,"cost":4},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]}]}]},"diagnostic_seconds":0.013102946992148645}
+{"input":{"file":"evaluation-n3-d0.json","split":"evaluation","tasks":3,"density_parameter":0,"data_seed":20260952,"sha256":"3b20e4e5c9e6ad0bcf04042080562788494a211b81f5b69cb6b200c3c66ecefe"},"model":{"qubits":6,"penalty":19,"objective_bound":18,"offset":57,"linear":[-15,-13,-19,-13,-15,-13],"quadratic":[[0,1,38],[1,2,19],[1,5,19],[2,3,38],[4,5,38]],"domains":[[0,1],[2,3],[4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":4,"cost":4},{"index":1,"task":"t0","resource":"r2","start":6,"cost":6},{"index":2,"task":"t1","resource":"r0","start":6,"cost":0},{"index":3,"task":"t1","resource":"r1","start":2,"cost":6},{"index":4,"task":"t2","resource":"r2","start":1,"cost":4},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r2","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":false}],"bits":[1,0,1,0,1,0],"qubo_energy":8},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.7696199520342386,0.587969054644381],"expected_energy":20.587898809556,"initial_expected_energy":23.26222865383474,"history":[23.26222865383474,21.571604278473373,22.562671329187996,22.24709903756701,22.80284444796064,22.17059895744932,21.49814517948586,21.463045367455894,21.331203335670615,21.112908058660203,21.05949695862033,21.342312487650624,21.948840381352724,20.828686867013428,20.78881194452859,20.76780998662231,20.997439850004994,20.721727234398628,20.72565192347661,20.718719312477692,20.72155889752321,20.716350471388004,20.711889100347307,20.704465529673563,20.691291198911387,20.740689990688573,20.689995644586215,20.680048553148943,20.664719201852456,20.645825007134743,20.644181302617984,20.622331776478983,20.63503210394355,20.644623619649174,20.62537252116139,20.621925067653926,20.61969488662256,20.617589116748277,20.613691720595497,20.607588902246945,20.653246271892417,20.611334444599457,20.60678242223408,20.615494978733974,20.60505296669918,20.602908943855,20.601646711161727,20.603716452458066,20.600861439518436,20.60008703785795,20.598879212725297,20.596466352641595,20.593661798915715,20.588559747518495,20.59016503567119,20.600537900839285,20.593412512616084,20.587898809556,20.588404026184918,20.587968003456247,24.481920097860513,23.267522569182027,22.511018138618837,26.374211868564203,22.76987188047501,23.228695812591255,21.305660078082127,22.137558927850172,21.519287761996544,21.483623319854885,21.080865157195884,21.075682043241468,21.173484534710973,20.99900316390422,20.88985189331017,21.41093716659303,20.976260676532213,21.034393169686034,20.918793920140303,20.87080681488633,20.83923354031297,20.806850678007994,20.779624785138765,20.765394167150284,20.737485708717077,20.723488485118306,20.692957603404754,20.7642269292153,20.74851219720214,20.67825212951235,20.668542194385118,20.667153997489905,20.6532801470247,20.661942026346825,20.653744533467115,20.650773254277574,20.649980341334974,20.65359045991107,20.646869671100156,20.644142962969113,20.63897197887445,20.63504666317193,20.625915528326267,20.632675321221093,20.623020141041938,20.631811621145665,20.620607141157414,20.61866385502681,20.61848153753685,20.614836144872676,20.612130666972547,20.609311430077415,20.61224972065049,20.60731963636939,20.605475890930563,20.61038422523596,20.602898376625063,20.60187343465684,20.600240154280158,20.59727377844129],"feasible_probability":0.7103145400422374,"one_hot_probability":1.0,"sampled_feasible_fraction":0.751953125,"counts":{"010101":145,"010110":3,"011001":58,"011010":108,"100101":13,"100110":35,"101001":61,"101010":89},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09251792100258172},"metrics":{"exact_objective":8,"optimal_count":1,"combinations":8,"optimal_probability":0.2958152020794941,"feasible_probability":0.7103145400422374,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.625,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9395365169298572,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9963441672150265,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999866348866483,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9999999998213738,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":7,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":8,"preference_cost":6,"change_cost":2,"changed_tasks":1,"max_start_shift":4,"choices":[1,0,0],"schedule":[{"task":"t0","resource":"r1","start":4,"end":5},{"task":"t1","resource":"r0","start":6,"end":7},{"task":"t2","resource":"r2","start":1,"end":2}]},"dual_bound":8.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":5,"runtime_seconds":0.004502966010477394},"exact":{"status":"optimal","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r2","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":false}],"bits":[1,0,1,0,1,0],"qubo_energy":8},"combinations":8,"feasible_count":5,"runtime_seconds":6.851699436083436e-05},"greedy":{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r2","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":false}],"bits":[1,0,1,0,1,0],"qubo_energy":8},"runtime_seconds":8.500399417243898e-05},"resources":{"full":{"depth":19,"operations":{"RX":15,"I":6,"RZ":14,"CNOT":19,"CRY":3,"X":3},"cnot":19,"cry":3},"auto":{"depth":17,"operations":{"RX":15,"I":6,"RZ":11,"CNOT":13,"CRY":3,"X":3},"cnot":13,"cry":3}},"phase_max_probability_error":2.220446049250313e-16,"samples":[{"shots":8,"quantum_objective":8,"uniform_objective":10},{"shots":16,"quantum_objective":8,"uniform_objective":8},{"shots":32,"quantum_objective":8,"uniform_objective":8},{"shots":64,"quantum_objective":8,"uniform_objective":8},{"shots":128,"quantum_objective":8,"uniform_objective":8},{"shots":512,"quantum_objective":8,"uniform_objective":8}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[6],"max_component_qubits":6,"component_to_original":[[0,1,2,3,4,5]],"components":[{"qubits":6,"penalty":19,"objective_bound":18,"offset":57,"linear":[-15,-13,-19,-13,-15,-13],"quadratic":[[0,1,38],[1,2,19],[1,5,19],[2,3,38],[4,5,38]],"domains":[[0,1],[2,3],[4,5]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":4,"cost":4},{"index":1,"task":"t0","resource":"r2","start":6,"cost":6},{"index":2,"task":"t1","resource":"r0","start":6,"cost":0},{"index":3,"task":"t1","resource":"r1","start":2,"cost":6},{"index":4,"task":"t2","resource":"r2","start":1,"cost":4},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]}]}]},"diagnostic_seconds":0.013166610995540395}
+{"input":{"file":"evaluation-n3-d0.json","split":"evaluation","tasks":3,"density_parameter":0,"data_seed":20260952,"sha256":"3b20e4e5c9e6ad0bcf04042080562788494a211b81f5b69cb6b200c3c66ecefe"},"model":{"qubits":6,"penalty":19,"objective_bound":18,"offset":57,"linear":[-15,-13,-19,-13,-15,-13],"quadratic":[[0,1,38],[1,2,19],[1,5,19],[2,3,38],[4,5,38]],"domains":[[0,1],[2,3],[4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":4,"cost":4},{"index":1,"task":"t0","resource":"r2","start":6,"cost":6},{"index":2,"task":"t1","resource":"r0","start":6,"cost":0},{"index":3,"task":"t1","resource":"r1","start":2,"cost":6},{"index":4,"task":"t2","resource":"r2","start":1,"cost":4},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r2","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":false}],"bits":[1,0,1,0,1,0],"qubo_energy":8},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9659903610202122,2.8812926555981826],"expected_energy":13.042119321570988,"initial_expected_energy":25.092143058334212,"history":[25.092143058334212,23.818585464379236,21.77033798362038,23.901617309934323,22.390894708088133,22.271523977452308,21.668910494176416,21.577250115662665,21.456567327361057,21.42665329478404,21.269078093051892,21.201010985579906,21.087111060303137,20.94649213992023,20.89405288057409,20.737395214079697,21.180490202575882,21.088196020153696,20.867211156684213,20.711849963156425,20.823500170075302,20.71901334612518,20.7141631399119,20.701868256354707,20.684220503592847,20.70602972491028,20.693271425256697,20.685863714162462,20.686347740765292,20.681204673091678,20.680420835013432,20.693354646424787,20.675876223342847,20.671998649504992,20.66568733041056,20.65395265286404,20.655247018020617,20.659772592313683,20.65463132630798,20.657458932702472,20.651691503206678,20.650982616414986,20.655144637648256,20.647720681275878,20.645039283252213,20.639952674524245,20.63687880982635,20.626888152327858,20.63705554225499,20.624247830071965,20.632974457543604,20.62177191232852,20.619720795080177,20.617724082348552,20.613107832462767,20.61292612527232,20.609702256717974,20.607141419584323,20.60432819573999,20.60357276034001,19.068900412468935,20.70480543377466,26.215039250333646,25.097360496814503,17.594093343383904,24.666794295432325,18.394818663014043,17.50257449351756,17.261369226140168,17.085995502424236,17.169508240210856,16.569030846978098,16.291522835554105,15.948290015390414,15.666818423957496,15.066783808544429,14.206512773283698,17.73900961266719,13.954202734650462,13.936652367430119,15.251547449290566,13.949414834335453,13.358084255263211,13.4562630291788,13.433047031211762,13.390195043909417,13.309441462865815,13.279648296395148,13.246380814993737,13.214636706992263,13.165519611865221,13.149525902353648,13.0915910587083,13.372652922423526,13.06164874034726,13.12267226674945,13.07741802423065,13.055387001800915,13.066771017062717,13.058824811044303,13.05164361688875,13.049842656791428,13.056206532993206,13.04835358105064,13.047437281895302,13.046325758853474,13.044574238314002,13.042484513092626,13.051083260449442,13.046756061045727,13.04232646132806,13.042710832851512,13.042479229826275,13.042262011832875,13.042172047166273,13.042199862398588,13.042123033776548,13.042141593438748,13.042138521817979,13.042119321570988],"feasible_probability":0.9749706421556402,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.962890625,"counts":{"010101":132,"010110":8,"011001":140,"011010":80,"100101":87,"100110":9,"101001":54,"101010":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09397686300508212},"metrics":{"exact_objective":8,"optimal_count":1,"combinations":8,"optimal_probability":0.26157994996609263,"feasible_probability":0.9749706421556402,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.625,"shots_for_95_percent":10,"hit_curve":[{"shots":8,"quantum":0.9116049708711974,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9921863188253182,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999389463865004,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9999999962724563,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":7,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":8,"preference_cost":6,"change_cost":2,"changed_tasks":1,"max_start_shift":4,"choices":[1,0,0],"schedule":[{"task":"t0","resource":"r1","start":4,"end":5},{"task":"t1","resource":"r0","start":6,"end":7},{"task":"t2","resource":"r2","start":1,"end":2}]},"dual_bound":8.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":5,"runtime_seconds":0.004502966010477394},"exact":{"status":"optimal","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r2","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":false}],"bits":[1,0,1,0,1,0],"qubo_energy":8},"combinations":8,"feasible_count":5,"runtime_seconds":6.851699436083436e-05},"greedy":{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r2","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":false}],"bits":[1,0,1,0,1,0],"qubo_energy":8},"runtime_seconds":8.500399417243898e-05},"resources":{"full":{"depth":19,"operations":{"RX":15,"I":6,"RZ":14,"CNOT":19,"CRY":3,"X":3},"cnot":19,"cry":3},"auto":{"depth":17,"operations":{"RX":15,"I":6,"RZ":11,"CNOT":13,"CRY":3,"X":3},"cnot":13,"cry":3}},"phase_max_probability_error":1.3877787807814457e-16,"samples":[{"shots":8,"quantum_objective":8,"uniform_objective":8},{"shots":16,"quantum_objective":8,"uniform_objective":8},{"shots":32,"quantum_objective":8,"uniform_objective":8},{"shots":64,"quantum_objective":8,"uniform_objective":8},{"shots":128,"quantum_objective":8,"uniform_objective":8},{"shots":512,"quantum_objective":8,"uniform_objective":8}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[6],"max_component_qubits":6,"component_to_original":[[0,1,2,3,4,5]],"components":[{"qubits":6,"penalty":19,"objective_bound":18,"offset":57,"linear":[-15,-13,-19,-13,-15,-13],"quadratic":[[0,1,38],[1,2,19],[1,5,19],[2,3,38],[4,5,38]],"domains":[[0,1],[2,3],[4,5]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":4,"cost":4},{"index":1,"task":"t0","resource":"r2","start":6,"cost":6},{"index":2,"task":"t1","resource":"r0","start":6,"cost":0},{"index":3,"task":"t1","resource":"r1","start":2,"cost":6},{"index":4,"task":"t2","resource":"r2","start":1,"cost":4},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]}]}]},"diagnostic_seconds":0.01314561499748379}
+{"input":{"file":"evaluation-n3-d0.json","split":"evaluation","tasks":3,"density_parameter":0,"data_seed":20260952,"sha256":"3b20e4e5c9e6ad0bcf04042080562788494a211b81f5b69cb6b200c3c66ecefe"},"model":{"qubits":6,"penalty":19,"objective_bound":18,"offset":57,"linear":[-15,-13,-19,-13,-15,-13],"quadratic":[[0,1,38],[1,2,19],[1,5,19],[2,3,38],[4,5,38]],"domains":[[0,1],[2,3],[4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":4,"cost":4},{"index":1,"task":"t0","resource":"r2","start":6,"cost":6},{"index":2,"task":"t1","resource":"r0","start":6,"cost":0},{"index":3,"task":"t1","resource":"r1","start":2,"cost":6},{"index":4,"task":"t2","resource":"r2","start":1,"cost":4},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r2","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":false}],"bits":[1,0,1,0,1,0],"qubo_energy":8},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.963715053179823,1.3107438324708824],"expected_energy":13.042025088856118,"initial_expected_energy":20.708983374743283,"history":[20.708983374743283,21.52342938045512,17.986926366690202,35.64452416568822,15.266910946364039,15.142101538147475,13.569981899961856,21.21979519480267,14.914584727673436,13.485609208260538,13.940245560275473,13.515466138578704,13.562534768369533,13.483111611521029,13.514074142065777,13.480294323425383,13.452655704653505,13.410468501042743,13.342520621649587,13.33432737984523,13.2927308534016,13.235329118924358,13.195594650825115,13.27685785442011,13.176107826818882,13.158280078262703,13.169826992806303,13.146341090607779,13.163578444518013,13.136426487852553,13.12739667192312,13.11292190192798,13.091049693980056,13.065280149364947,13.042926464117098,13.224734891393334,13.101402261946888,13.042235444361193,13.053890029867548,13.046147717914373,13.042663520722844,13.042452916854268,13.042277616479304,13.042190800371792,13.04215893878269,13.042196100440798,13.042143284534719,13.042127386896546,13.042109809146265,13.04208347808957,13.042075586895606,13.042151478385836,13.04205879669346,13.042052799861839,13.04204437541229,13.042033037297013,13.042068065561937,13.042032195522994,13.042029418242297,13.042025088856118,36.0059774516883,31.75037719881898,21.549481812108446,19.041652804681853,23.435747391054228,20.01048483617445,19.58880449209602,18.938138348895677,19.02996936301873,18.730345740652353,18.565729066990443,18.760584399537162,18.299750975995316,18.093786693912627,18.69742609885313,17.829517342727907,17.56079842466118,17.3659695619832,16.592658398241134,16.75961609767338,16.39333939590554,16.683795941799783,16.066648735923817,15.740801560001177,15.339687666389302,14.782179816842175,14.89573477083032,15.464108767715917,14.634162495797696,14.631726437110162,14.72204186820798,14.637843490934355,14.595722724031349,14.530221167021093,14.450962472053682,14.336577081697374,14.22469984175353,14.018932646039865,13.682857730026083,13.37732197745131,13.82877892473876,14.709973742567774,13.321050400996292,13.123593659942657,13.281198364594713,13.164879940134394,13.128156456765844,13.107975841495112,13.097229686971474,13.085891279544011,13.077923341960712,13.097187221079398,13.07142022294282,13.067718204926354,13.062878481867884,13.055028827461483,13.045055181688529,13.080451724971613,13.061340149094484,13.045732095876621],"feasible_probability":0.9748235918381696,"one_hot_probability":1.0,"sampled_feasible_fraction":0.970703125,"counts":{"010101":125,"010110":9,"011001":157,"011010":80,"100101":66,"100110":4,"101001":69,"101010":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09181333499145694},"metrics":{"exact_objective":8,"optimal_count":1,"combinations":8,"optimal_probability":0.26143408993850714,"feasible_probability":0.9748235918381696,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.625,"shots_for_95_percent":10,"hit_curve":[{"shots":8,"quantum":0.9114651889814492,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9921615872379095,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999385592853711,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9999999962250385,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":7,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":8,"preference_cost":6,"change_cost":2,"changed_tasks":1,"max_start_shift":4,"choices":[1,0,0],"schedule":[{"task":"t0","resource":"r1","start":4,"end":5},{"task":"t1","resource":"r0","start":6,"end":7},{"task":"t2","resource":"r2","start":1,"end":2}]},"dual_bound":8.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":5,"runtime_seconds":0.004502966010477394},"exact":{"status":"optimal","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r2","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":false}],"bits":[1,0,1,0,1,0],"qubo_energy":8},"combinations":8,"feasible_count":5,"runtime_seconds":6.851699436083436e-05},"greedy":{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r2","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":false}],"bits":[1,0,1,0,1,0],"qubo_energy":8},"runtime_seconds":8.500399417243898e-05},"resources":{"full":{"depth":19,"operations":{"RX":15,"I":6,"RZ":14,"CNOT":19,"CRY":3,"X":3},"cnot":19,"cry":3},"auto":{"depth":17,"operations":{"RX":15,"I":6,"RZ":11,"CNOT":13,"CRY":3,"X":3},"cnot":13,"cry":3}},"phase_max_probability_error":1.6653345369377348e-16,"samples":[{"shots":8,"quantum_objective":8,"uniform_objective":10},{"shots":16,"quantum_objective":8,"uniform_objective":8},{"shots":32,"quantum_objective":8,"uniform_objective":8},{"shots":64,"quantum_objective":8,"uniform_objective":8},{"shots":128,"quantum_objective":8,"uniform_objective":8},{"shots":512,"quantum_objective":8,"uniform_objective":8}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[6],"max_component_qubits":6,"component_to_original":[[0,1,2,3,4,5]],"components":[{"qubits":6,"penalty":19,"objective_bound":18,"offset":57,"linear":[-15,-13,-19,-13,-15,-13],"quadratic":[[0,1,38],[1,2,19],[1,5,19],[2,3,38],[4,5,38]],"domains":[[0,1],[2,3],[4,5]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":4,"cost":4},{"index":1,"task":"t0","resource":"r2","start":6,"cost":6},{"index":2,"task":"t1","resource":"r0","start":6,"cost":0},{"index":3,"task":"t1","resource":"r1","start":2,"cost":6},{"index":4,"task":"t2","resource":"r2","start":1,"cost":4},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]}]}]},"diagnostic_seconds":0.012252526008524}
+{"input":{"file":"evaluation-n3-d0.json","split":"evaluation","tasks":3,"density_parameter":0,"data_seed":20260952,"sha256":"3b20e4e5c9e6ad0bcf04042080562788494a211b81f5b69cb6b200c3c66ecefe"},"model":{"qubits":6,"penalty":19,"objective_bound":18,"offset":57,"linear":[-15,-13,-19,-13,-15,-13],"quadratic":[[0,1,38],[1,2,19],[1,5,19],[2,3,38],[4,5,38]],"domains":[[0,1],[2,3],[4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":4,"cost":4},{"index":1,"task":"t0","resource":"r2","start":6,"cost":6},{"index":2,"task":"t1","resource":"r0","start":6,"cost":0},{"index":3,"task":"t1","resource":"r1","start":2,"cost":6},{"index":4,"task":"t2","resource":"r2","start":1,"cost":4},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r2","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":false}],"bits":[1,0,1,0,1,0],"qubo_energy":8},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9644881421119214,1.3113632361356957],"expected_energy":13.04207626721714,"initial_expected_energy":14.719119411287071,"history":[14.719119411287071,15.24750721664457,35.35189615622876,20.71197990906856,28.012720221829092,13.263254384180462,15.319834715811679,13.32090190420654,13.283103580089957,13.320156690243122,13.342203915525182,13.259743400283003,13.288583804876609,13.24997651151031,13.220708374450663,13.177070665512124,13.142880803920187,13.218928812763398,13.121858989783547,13.107963663599909,13.093059946001382,13.083037481343853,13.103013264272235,13.076714950627615,13.071904859367216,13.074764691983626,13.069461650027804,13.068515397820494,13.071597721129368,13.068194887793032,13.06679575698993,13.064349220059487,13.05988777476951,13.055463088797762,13.049799711546227,13.049285505439016,13.060040898866337,13.049442224325414,13.046166479446706,13.04463405675595,13.04524494064469,13.044232882382417,13.043893714220467,13.043984927812112,13.04374034471972,13.043953930321358,13.043822020952893,13.04361402867572,13.043563646118526,13.043684815347838,13.043443873443564,13.043225584091038,13.042926070401528,13.042722948885022,13.042475229514816,13.042592694948496,13.042464897858665,13.042320285204017,13.0421151637469,13.04207626721714,22.547313649613884,22.796037088637743,20.645953658166363,24.85306558123802,20.99258130677889,20.852902799878898,20.992361272527233,20.616044585856994,20.533976127717438,20.54867888962498,20.513675592853158,20.532345881136084,20.524549253323606,20.496704554294265,20.489830007002176,20.549774016855473,20.466349408827764,20.423495619359514,20.346801279539147,20.15806770932872,19.858661280707402,18.936023601216867,19.689112082477145,21.704170882453482,18.825469214748978,18.5917812929765,18.084549198183076,16.847935008229435,14.392419999753137,19.939318121884362,19.926614467209717,21.430412342796743,13.965945129193026,14.44470606210472,13.907080544272482,14.91464888125366,13.657670097702454,13.55437134301713,13.482425479739089,13.58253337550789,13.436617454633659,13.39681402911517,13.411693352160764,13.370068607946573,13.37523185276622,13.379175098291618,13.35447988707162,13.33328018725369,13.336288304154827,13.318459956065642,13.306708040718014,13.297164544064575,13.340617510602943,13.279931870599237,13.264544304113997,13.237506837390656,13.189596657135787,13.224700508592228,13.199511177115706,13.180993327370214],"feasible_probability":0.9748055492264389,"one_hot_probability":1.0,"sampled_feasible_fraction":0.96484375,"counts":{"010101":133,"010110":11,"011001":137,"011010":88,"100101":78,"100110":3,"101001":58,"101010":4},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09004280899534933},"metrics":{"exact_objective":8,"optimal_count":1,"combinations":8,"optimal_probability":0.26140880097434704,"feasible_probability":0.974805549226439,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.625,"shots_for_95_percent":10,"hit_curve":[{"shots":8,"quantum":0.9114409341711819,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9921572918595271,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999384919290234,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9999999962167572,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":7,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":8,"preference_cost":6,"change_cost":2,"changed_tasks":1,"max_start_shift":4,"choices":[1,0,0],"schedule":[{"task":"t0","resource":"r1","start":4,"end":5},{"task":"t1","resource":"r0","start":6,"end":7},{"task":"t2","resource":"r2","start":1,"end":2}]},"dual_bound":8.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":5,"runtime_seconds":0.004502966010477394},"exact":{"status":"optimal","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r2","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":false}],"bits":[1,0,1,0,1,0],"qubo_energy":8},"combinations":8,"feasible_count":5,"runtime_seconds":6.851699436083436e-05},"greedy":{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r2","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":false}],"bits":[1,0,1,0,1,0],"qubo_energy":8},"runtime_seconds":8.500399417243898e-05},"resources":{"full":{"depth":19,"operations":{"RX":15,"I":6,"RZ":14,"CNOT":19,"CRY":3,"X":3},"cnot":19,"cry":3},"auto":{"depth":17,"operations":{"RX":15,"I":6,"RZ":11,"CNOT":13,"CRY":3,"X":3},"cnot":13,"cry":3}},"phase_max_probability_error":2.220446049250313e-16,"samples":[{"shots":8,"quantum_objective":8,"uniform_objective":8},{"shots":16,"quantum_objective":8,"uniform_objective":8},{"shots":32,"quantum_objective":8,"uniform_objective":8},{"shots":64,"quantum_objective":8,"uniform_objective":8},{"shots":128,"quantum_objective":8,"uniform_objective":8},{"shots":512,"quantum_objective":8,"uniform_objective":8}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[6],"max_component_qubits":6,"component_to_original":[[0,1,2,3,4,5]],"components":[{"qubits":6,"penalty":19,"objective_bound":18,"offset":57,"linear":[-15,-13,-19,-13,-15,-13],"quadratic":[[0,1,38],[1,2,19],[1,5,19],[2,3,38],[4,5,38]],"domains":[[0,1],[2,3],[4,5]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":4,"cost":4},{"index":1,"task":"t0","resource":"r2","start":6,"cost":6},{"index":2,"task":"t1","resource":"r0","start":6,"cost":0},{"index":3,"task":"t1","resource":"r1","start":2,"cost":6},{"index":4,"task":"t2","resource":"r2","start":1,"cost":4},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]}]}]},"diagnostic_seconds":0.012417439007549547}
+{"input":{"file":"evaluation-n3-d1.json","split":"evaluation","tasks":3,"density_parameter":1,"data_seed":20260953,"sha256":"6d4d463f2d2b556e9352777df21317551122163d72f017025cc267fc9313bece"},"model":{"qubits":6,"penalty":12,"objective_bound":11,"offset":36,"linear":[-9,-10,-8,-10,-12,-8],"quadratic":[[0,1,24],[0,2,12],[1,2,12],[1,3,12],[2,3,24],[4,5,24]],"domains":[[0,1],[2,3],[4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":2},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":4,"cost":2},{"index":4,"task":"t2","resource":"r0","start":1,"cost":0},{"index":5,"task":"t2","resource":"r1","start":1,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["resource","group","precedence"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":5,"raw_cost":5,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true}],"bits":[1,0,0,1,1,0],"qubo_energy":5},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.0054660221900535,1.2365692795929777],"expected_energy":9.724472134290442,"initial_expected_energy":13.343135862992211,"history":[13.343135862992211,13.77926579536173,15.645306673697217,16.538395145257873,11.849636037881414,17.101984606252817,12.392063442355072,12.029090288551227,12.307295218810001,11.553661674852137,11.571855841372239,11.625597358084217,11.572216137541924,11.510076485241669,11.441035033209813,11.295574651448783,11.040349850190397,10.858960144241117,10.739741267625433,10.248242826275076,11.21918478513564,13.827284706520462,10.192071829302858,9.936537583841151,11.024524554214533,10.034288836294097,10.041366784533581,9.910138317409533,9.864299502110184,9.838108297311159,9.843114299400339,9.831820495211563,9.826256320661985,9.816149412871505,9.800338928576274,9.828198983052,9.801628393167839,9.79807297496512,9.80436214877445,9.803275878766346,9.790084831684947,9.786001746590594,9.798402394294175,9.781976417178782,9.779101282803804,9.780442966461248,9.774628433426459,9.773366714351553,9.778934089836078,9.769093108951502,9.765218582751128,9.757971202038188,9.748946945343256,9.740408192979606,9.734268624853401,9.77546465003586,9.725346165654914,9.72941509557204,9.724472134290442,9.726934907548753,17.974342290741294,16.58783090878781,15.022915773569828,12.764881680648472,15.116754551396646,16.489499060533635,13.968977818619152,12.252075356521226,12.202748045313381,11.965042609101694,11.75598781319859,11.404637114000124,10.838002287445534,13.844198007422602,12.91506430993212,11.47429575872566,10.887466450367668,10.96266222543137,10.82580366328542,10.961548568311393,10.777890695752799,10.74014743806106,10.684537208609216,10.56190299571644,10.360302437879477,10.706837979986503,10.709827493252625,10.59892690335575,10.40038143269457,10.327535286877977,10.284268674656772,10.281772721257228,10.236442113133368,10.191285657222314,10.16569646614903,10.270014431990859,10.136043294504223,10.116678066824786,10.095269075042903,10.05917413216627,10.053747762534828,9.97031178083091,9.963271646124404,9.9396678070032,9.90070138342777,9.846346290213148,9.838919447801327,9.787093817936231,9.861388370834177,9.841418584638038,9.793252069253803,9.791385105565865,9.7882176787036,9.783066396674542,9.78196076016368,9.801449424784867,9.77586252155703,9.771234992949037,9.76382283241636,9.750236566853054],"feasible_probability":0.6878877797733494,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.65625,"counts":{"010101":4,"010110":115,"011001":279,"011010":25,"100110":26,"101001":57,"101010":6},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09222971499548294},"metrics":{"exact_objective":5,"optimal_count":1,"combinations":8,"optimal_probability":0.5513163029630032,"feasible_probability":0.6878877797733494,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.25,"shots_for_95_percent":4,"hit_curve":[{"shots":8,"quantum":0.9983574359344244,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9999973019832905,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999999999927207,"uniform":0.9860601629623169},{"shots":64,"quantum":1.0,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":7,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":5,"preference_cost":3,"change_cost":2,"changed_tasks":2,"max_start_shift":3,"choices":[1,1,0],"schedule":[{"task":"t0","resource":"r1","start":3,"end":4},{"task":"t1","resource":"r0","start":4,"end":5},{"task":"t2","resource":"r0","start":1,"end":2}]},"dual_bound":5.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":6,"runtime_seconds":0.0010963259992422536},"exact":{"status":"optimal","best":{"feasible":true,"objective":5,"raw_cost":5,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true}],"bits":[1,0,0,1,1,0],"qubo_energy":5},"combinations":8,"feasible_count":2,"runtime_seconds":5.920299736317247e-05},"greedy":{"status":"dead_end","best":null,"runtime_seconds":6.621005013585091e-06},"resources":{"full":{"depth":19,"operations":{"RX":15,"I":6,"RZ":14,"CNOT":21,"CRY":3,"X":3},"cnot":21,"cry":3},"auto":{"depth":19,"operations":{"RX":15,"I":6,"RZ":11,"CNOT":15,"CRY":3,"X":3},"cnot":15,"cry":3}},"phase_max_probability_error":1.942890293094024e-16,"samples":[{"shots":8,"quantum_objective":5,"uniform_objective":null},{"shots":16,"quantum_objective":5,"uniform_objective":9},{"shots":32,"quantum_objective":5,"uniform_objective":5},{"shots":64,"quantum_objective":5,"uniform_objective":5},{"shots":128,"quantum_objective":5,"uniform_objective":5},{"shots":512,"quantum_objective":5,"uniform_objective":5}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[4,2],"max_component_qubits":4,"component_to_original":[[0,1,2,3],[4,5]],"components":[{"qubits":4,"penalty":8,"objective_bound":7,"offset":16,"linear":[-5,-6,-4,-6],"quadratic":[[0,1,16],[0,2,8],[1,2,8],[1,3,8],[2,3,16]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":2},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":4,"cost":2}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["resource","group","precedence"]}]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-5,-1],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":1,"cost":0},{"index":1,"task":"t2","resource":"r1","start":1,"cost":4}],"conflicts":[]}]},"diagnostic_seconds":0.012640166998608038}
+{"input":{"file":"evaluation-n3-d1.json","split":"evaluation","tasks":3,"density_parameter":1,"data_seed":20260953,"sha256":"6d4d463f2d2b556e9352777df21317551122163d72f017025cc267fc9313bece"},"model":{"qubits":6,"penalty":12,"objective_bound":11,"offset":36,"linear":[-9,-10,-8,-10,-12,-8],"quadratic":[[0,1,24],[0,2,12],[1,2,12],[1,3,12],[2,3,24],[4,5,24]],"domains":[[0,1],[2,3],[4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":2},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":4,"cost":2},{"index":4,"task":"t2","resource":"r0","start":1,"cost":0},{"index":5,"task":"t2","resource":"r1","start":1,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["resource","group","precedence"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":5,"raw_cost":5,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true}],"bits":[1,0,0,1,1,0],"qubo_energy":5},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.9225359627297502,1.2418356963844372],"expected_energy":9.701999165835339,"initial_expected_energy":17.325433315250045,"history":[17.325433315250045,16.84622872624375,12.246572042426115,16.138188240757913,14.297540207115473,13.222800089982856,10.948082347606398,11.30823523765337,10.983917850853699,11.255183673496738,10.855421166730885,10.806427169051226,11.211401154478532,10.699366900717962,10.651036359795643,10.595463761588695,10.539121069630717,10.77201298994881,10.455452754427519,10.4217568116434,10.362236374018234,10.255242731634986,10.07188926940778,10.844857826556407,10.865774756739473,10.182513637139373,10.05560212737631,10.124034354790094,10.037996348487741,10.022336491207975,10.044590848708204,10.007844948182782,9.990701959761939,9.96738952656692,10.063424529854919,9.944986150847846,9.934277350010353,9.915886461323256,9.88491563330105,9.83081222916785,9.820258360029314,9.758557340418317,10.020787031179035,9.74071596554779,9.748794132208095,9.735139804072704,9.74443471666436,9.731033605344194,9.72559821132992,9.725126706335368,9.723570785338701,9.723907847603538,9.725377592416699,9.72360599305365,9.722866951704653,9.721805595929375,9.719744756193194,9.718113710843161,9.714848204502989,9.71788391138408,12.972992406447421,12.903259060538407,15.199149816693422,16.969379307700883,10.655585989891867,18.087951839930952,12.031709167618601,11.164987469317754,10.289911467602685,11.23289087632967,10.201598862544298,10.304794416207665,10.128175165774135,10.338132542501498,10.084214163113344,10.076599479995487,10.19261440713902,10.042952700555446,10.022274825868065,10.006149221581166,10.051212985731643,9.992848372005593,9.974771568499106,9.941114487142281,9.908407741910608,9.896858109368274,9.86214817482209,9.784547628062427,9.767879811369173,10.081105548453039,10.132005930412149,9.717233398559237,9.753973976613302,9.715967807501997,9.73526663499791,9.714827379998678,9.713973998243137,9.71203513884451,9.710032106012138,9.707834677759962,9.707001620439243,9.722956581576398,9.704944891261082,9.706409061904877,9.704595583584545,9.707317380930235,9.704405869130369,9.703972244819765,9.70318088192489,9.70206959517327,9.702812461885637,9.70387294676707,9.702185414647339,9.702595465839018,9.70208733700612,9.702048943159088,9.70206269892526,9.70207742213157,9.702009089633343,9.701999165835339],"feasible_probability":0.6924020462119727,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.701171875,"counts":{"010101":2,"010110":94,"011001":285,"011010":23,"100110":27,"101001":74,"101010":7},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.0933053420012584},"metrics":{"exact_objective":5,"optimal_count":1,"combinations":8,"optimal_probability":0.5464945765855659,"feasible_probability":0.6924020462119727,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.25,"shots_for_95_percent":4,"hit_curve":[{"shots":8,"quantum":0.9982107959160428,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9999967987487459,"uniform":0.8819329129787512},{"shots":32,"quantum":0.999999999989752,"uniform":0.9860601629623169},{"shots":64,"quantum":1.0,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":7,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":5,"preference_cost":3,"change_cost":2,"changed_tasks":2,"max_start_shift":3,"choices":[1,1,0],"schedule":[{"task":"t0","resource":"r1","start":3,"end":4},{"task":"t1","resource":"r0","start":4,"end":5},{"task":"t2","resource":"r0","start":1,"end":2}]},"dual_bound":5.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":6,"runtime_seconds":0.0010963259992422536},"exact":{"status":"optimal","best":{"feasible":true,"objective":5,"raw_cost":5,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true}],"bits":[1,0,0,1,1,0],"qubo_energy":5},"combinations":8,"feasible_count":2,"runtime_seconds":5.920299736317247e-05},"greedy":{"status":"dead_end","best":null,"runtime_seconds":6.621005013585091e-06},"resources":{"full":{"depth":19,"operations":{"RX":15,"I":6,"RZ":14,"CNOT":21,"CRY":3,"X":3},"cnot":21,"cry":3},"auto":{"depth":19,"operations":{"RX":15,"I":6,"RZ":11,"CNOT":15,"CRY":3,"X":3},"cnot":15,"cry":3}},"phase_max_probability_error":8.326672684688674e-17,"samples":[{"shots":8,"quantum_objective":5,"uniform_objective":9},{"shots":16,"quantum_objective":5,"uniform_objective":9},{"shots":32,"quantum_objective":5,"uniform_objective":5},{"shots":64,"quantum_objective":5,"uniform_objective":5},{"shots":128,"quantum_objective":5,"uniform_objective":5},{"shots":512,"quantum_objective":5,"uniform_objective":5}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[4,2],"max_component_qubits":4,"component_to_original":[[0,1,2,3],[4,5]],"components":[{"qubits":4,"penalty":8,"objective_bound":7,"offset":16,"linear":[-5,-6,-4,-6],"quadratic":[[0,1,16],[0,2,8],[1,2,8],[1,3,8],[2,3,16]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":2},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":4,"cost":2}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["resource","group","precedence"]}]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-5,-1],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":1,"cost":0},{"index":1,"task":"t2","resource":"r1","start":1,"cost":4}],"conflicts":[]}]},"diagnostic_seconds":0.013453567997203209}
+{"input":{"file":"evaluation-n3-d1.json","split":"evaluation","tasks":3,"density_parameter":1,"data_seed":20260953,"sha256":"6d4d463f2d2b556e9352777df21317551122163d72f017025cc267fc9313bece"},"model":{"qubits":6,"penalty":12,"objective_bound":11,"offset":36,"linear":[-9,-10,-8,-10,-12,-8],"quadratic":[[0,1,24],[0,2,12],[1,2,12],[1,3,12],[2,3,24],[4,5,24]],"domains":[[0,1],[2,3],[4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":2},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":4,"cost":2},{"index":4,"task":"t2","resource":"r0","start":1,"cost":0},{"index":5,"task":"t2","resource":"r1","start":1,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["resource","group","precedence"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":5,"raw_cost":5,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true}],"bits":[1,0,0,1,1,0],"qubo_energy":5},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.9076823480724605,2.8132139566609515],"expected_energy":9.701247442005965,"initial_expected_energy":16.29533931807844,"history":[16.29533931807844,15.806067770749934,14.154408273547833,16.456024475961552,16.07679912663837,14.865598635567416,13.095500511233201,13.245453890737299,13.125971981855608,13.304096686503058,12.989880470951766,13.142711675900241,12.933326908608958,12.869614495892474,12.758088854437087,13.10574622577148,12.693200166945562,12.560702713230475,12.269514416094195,11.648265288206542,11.211321510845432,14.631396264852112,14.795340394431792,11.168544250951003,10.422567508291447,11.006387553777687,10.358072996048937,10.490531347733018,10.34856319668893,10.307602887343812,10.28127516024172,10.259070385072462,10.233793125476076,10.188661304018627,10.104524208158416,10.434449983255384,10.17033618018861,10.09159261704078,10.17247851284176,10.07763345248786,10.05745509648327,10.03829286792038,10.029276850011563,9.979689580188252,9.97990000960978,9.971804939718906,9.976961483261578,9.976840617003973,9.963812261826266,9.95667682954597,9.973657544882427,9.948999159430063,9.941822765339772,9.928262049114021,9.906119033896697,9.892441883738304,9.82925760694308,9.986556904137307,9.918870768630441,9.820831403286334,20.28489258320652,19.634561787686078,16.1994038940303,10.115122313472083,17.102769213514083,12.502866806598565,15.361251997127638,9.945866152180928,10.078781430767243,10.188971484520225,9.71007503903806,9.867044258196852,9.703458918040754,9.717292925657185,9.703056112690145,9.704721161908314,9.70431011628045,9.703530485429935,9.703066193282572,9.702886137413914,9.702633688584719,9.702254680917083,9.701767909537125,9.702263801984763,9.703299995969179,9.70170811476743,9.702515765060266,9.701659824960734,9.701647836427206,9.701978673257955,9.701581092975957,9.701547415019984,9.701530238717272,9.701575719466453,9.701515303430813,9.701502132512372,9.701476792962659,9.701441905762465,9.70140726435468,9.701380406363633,9.701469819686139,9.701353951529676,9.701353220027038,9.701339153295926,9.701323115443309,9.701311687539349,9.701341636388786,9.701303415784352,9.701298668041296,9.701309862473439,9.701294702924121,9.70129116788204,9.701284321531503,9.70127461040125,9.701265086058626,9.701257169345368,9.701310883596218,9.701253579053628,9.701250106797897,9.701247442005965],"feasible_probability":0.6929208640332477,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.71484375,"counts":{"010101":4,"010110":82,"011001":290,"011010":34,"100101":2,"100110":16,"101001":76,"101010":8},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09018810799170751},"metrics":{"exact_objective":5,"optimal_count":1,"combinations":8,"optimal_probability":0.5454496837929579,"feasible_probability":0.6929208640332477,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.25,"shots_for_95_percent":4,"hit_curve":[{"shots":8,"quantum":0.9981775496151492,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9999966786745947,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999999999889688,"uniform":0.9860601629623169},{"shots":64,"quantum":1.0,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":7,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":5,"preference_cost":3,"change_cost":2,"changed_tasks":2,"max_start_shift":3,"choices":[1,1,0],"schedule":[{"task":"t0","resource":"r1","start":3,"end":4},{"task":"t1","resource":"r0","start":4,"end":5},{"task":"t2","resource":"r0","start":1,"end":2}]},"dual_bound":5.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":6,"runtime_seconds":0.0010963259992422536},"exact":{"status":"optimal","best":{"feasible":true,"objective":5,"raw_cost":5,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true}],"bits":[1,0,0,1,1,0],"qubo_energy":5},"combinations":8,"feasible_count":2,"runtime_seconds":5.920299736317247e-05},"greedy":{"status":"dead_end","best":null,"runtime_seconds":6.621005013585091e-06},"resources":{"full":{"depth":19,"operations":{"RX":15,"I":6,"RZ":14,"CNOT":21,"CRY":3,"X":3},"cnot":21,"cry":3},"auto":{"depth":19,"operations":{"RX":15,"I":6,"RZ":11,"CNOT":15,"CRY":3,"X":3},"cnot":15,"cry":3}},"phase_max_probability_error":1.1102230246251565e-16,"samples":[{"shots":8,"quantum_objective":5,"uniform_objective":9},{"shots":16,"quantum_objective":5,"uniform_objective":5},{"shots":32,"quantum_objective":5,"uniform_objective":5},{"shots":64,"quantum_objective":5,"uniform_objective":5},{"shots":128,"quantum_objective":5,"uniform_objective":5},{"shots":512,"quantum_objective":5,"uniform_objective":5}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[4,2],"max_component_qubits":4,"component_to_original":[[0,1,2,3],[4,5]],"components":[{"qubits":4,"penalty":8,"objective_bound":7,"offset":16,"linear":[-5,-6,-4,-6],"quadratic":[[0,1,16],[0,2,8],[1,2,8],[1,3,8],[2,3,16]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":2},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":4,"cost":2}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["resource","group","precedence"]}]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-5,-1],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":1,"cost":0},{"index":1,"task":"t2","resource":"r1","start":1,"cost":4}],"conflicts":[]}]},"diagnostic_seconds":0.012891985999885947}
+{"input":{"file":"evaluation-n3-d1.json","split":"evaluation","tasks":3,"density_parameter":1,"data_seed":20260953,"sha256":"6d4d463f2d2b556e9352777df21317551122163d72f017025cc267fc9313bece"},"model":{"qubits":6,"penalty":12,"objective_bound":11,"offset":36,"linear":[-9,-10,-8,-10,-12,-8],"quadratic":[[0,1,24],[0,2,12],[1,2,12],[1,3,12],[2,3,24],[4,5,24]],"domains":[[0,1],[2,3],[4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":2},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":4,"cost":2},{"index":4,"task":"t2","resource":"r0","start":1,"cost":0},{"index":5,"task":"t2","resource":"r1","start":1,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["resource","group","precedence"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":5,"raw_cost":5,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true}],"bits":[1,0,0,1,1,0],"qubo_energy":5},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.9226936950585598,1.2415331738161857],"expected_energy":9.702000686521792,"initial_expected_energy":10.078307534144647,"history":[10.078307534144647,10.0111614739903,18.62825789205523,17.019844785742247,13.060080569734264,11.703437163573355,10.03410394667411,9.89686579484852,10.109764194135176,9.941293573279928,9.908393438483644,9.879802285764626,9.867131151608664,9.8770882076568,9.861777844420448,9.861246721198256,9.854992811739448,9.849136707228352,9.838184770192878,9.817529027166826,9.798663404139576,9.789975324947193,9.747585750555755,9.755749546998594,9.920510836969147,9.747830843177052,9.754564351614954,9.736502175912545,9.72521656064512,9.717044013127293,9.737191553364084,9.719357993017589,9.717971475030968,9.719976621625099,9.716004029380553,9.716023501815181,9.716211508080038,9.715611500888919,9.714897919430452,9.713902489217226,9.716441778123833,9.712784464983361,9.712227474299187,9.711434423031026,9.709989626023551,9.70855692856275,9.708228388412023,9.706206965653339,9.703936086250534,9.702828236056671,9.713426401292168,9.703107736481662,9.702770234810597,9.70381552787807,9.702418964978161,9.702298224308016,9.702180197082496,9.702169466819122,9.702089471932474,9.702000686521792,16.476527017504907,15.31056777625135,15.454735008757256,14.562093915574739,14.63486608141842,15.920349280536811,14.649760385370492,15.426440902358756,14.492693952990514,14.570972498018746,14.5183413539022,14.497045222786355,14.490229229862528,14.486875814781856,14.486471418087065,14.483424706048524,14.480559226382415,14.475442554508863,14.474415724604734,14.464653392927858,14.464940491653305,14.465061387500507,14.466472215100945,14.462303043128301,14.461742094178094,14.465089997761076,14.45930062769899,14.457180724698034,14.453311949051699,14.446797950063832,14.471623390249272,14.466231078358135,14.448410664939491,14.446825883821365,14.447722765900224,14.44589669488794,14.446308428485722,14.446808718985798,14.445879525325331,14.445504060329561,14.44488257616632,14.445061920060958,14.44440331873114,14.444276415260918,14.445388558904078,14.443843497565423,14.443468556076006,14.442848181666317,14.441752276126335,14.443047704986743,14.441613316979007,14.440867812880562,14.439757680350578,14.438437655464838,14.438082212596921,14.436123686435337,14.440887365466637,14.440455636880543,14.436972093418794,14.436019731808573],"feasible_probability":0.6923588718980391,"one_hot_probability":1.0,"sampled_feasible_fraction":0.669921875,"counts":{"010101":3,"010110":89,"011001":267,"011010":42,"100101":2,"100110":29,"101001":76,"101010":4},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09045115299522877},"metrics":{"exact_objective":5,"optimal_count":1,"combinations":8,"optimal_probability":0.5465376407753609,"feasible_probability":0.6923588718980391,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.25,"shots_for_95_percent":4,"hit_curve":[{"shots":8,"quantum":0.9982121546653233,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9999968036090593,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999999999897831,"uniform":0.9860601629623169},{"shots":64,"quantum":1.0,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":7,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":5,"preference_cost":3,"change_cost":2,"changed_tasks":2,"max_start_shift":3,"choices":[1,1,0],"schedule":[{"task":"t0","resource":"r1","start":3,"end":4},{"task":"t1","resource":"r0","start":4,"end":5},{"task":"t2","resource":"r0","start":1,"end":2}]},"dual_bound":5.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":6,"runtime_seconds":0.0010963259992422536},"exact":{"status":"optimal","best":{"feasible":true,"objective":5,"raw_cost":5,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true}],"bits":[1,0,0,1,1,0],"qubo_energy":5},"combinations":8,"feasible_count":2,"runtime_seconds":5.920299736317247e-05},"greedy":{"status":"dead_end","best":null,"runtime_seconds":6.621005013585091e-06},"resources":{"full":{"depth":19,"operations":{"RX":15,"I":6,"RZ":14,"CNOT":21,"CRY":3,"X":3},"cnot":21,"cry":3},"auto":{"depth":19,"operations":{"RX":15,"I":6,"RZ":11,"CNOT":15,"CRY":3,"X":3},"cnot":15,"cry":3}},"phase_max_probability_error":1.6653345369377348e-16,"samples":[{"shots":8,"quantum_objective":5,"uniform_objective":5},{"shots":16,"quantum_objective":5,"uniform_objective":5},{"shots":32,"quantum_objective":5,"uniform_objective":5},{"shots":64,"quantum_objective":5,"uniform_objective":5},{"shots":128,"quantum_objective":5,"uniform_objective":5},{"shots":512,"quantum_objective":5,"uniform_objective":5}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[4,2],"max_component_qubits":4,"component_to_original":[[0,1,2,3],[4,5]],"components":[{"qubits":4,"penalty":8,"objective_bound":7,"offset":16,"linear":[-5,-6,-4,-6],"quadratic":[[0,1,16],[0,2,8],[1,2,8],[1,3,8],[2,3,16]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":2},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":4,"cost":2}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["resource","group","precedence"]}]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-5,-1],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":1,"cost":0},{"index":1,"task":"t2","resource":"r1","start":1,"cost":4}],"conflicts":[]}]},"diagnostic_seconds":0.013013364005018957}
+{"input":{"file":"evaluation-n3-d1.json","split":"evaluation","tasks":3,"density_parameter":1,"data_seed":20260953,"sha256":"6d4d463f2d2b556e9352777df21317551122163d72f017025cc267fc9313bece"},"model":{"qubits":6,"penalty":12,"objective_bound":11,"offset":36,"linear":[-9,-10,-8,-10,-12,-8],"quadratic":[[0,1,24],[0,2,12],[1,2,12],[1,3,12],[2,3,24],[4,5,24]],"domains":[[0,1],[2,3],[4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":2},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":4,"cost":2},{"index":4,"task":"t2","resource":"r0","start":1,"cost":0},{"index":5,"task":"t2","resource":"r1","start":1,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["resource","group","precedence"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":5,"raw_cost":5,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true}],"bits":[1,0,0,1,1,0],"qubo_energy":5},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.9725172928835937,1.2393780418848626],"expected_energy":9.711788461044161,"initial_expected_energy":16.74192856285819,"history":[16.74192856285819,16.76430835776752,11.635659920911966,17.11698124267067,10.967408722577538,14.969959256212489,11.005814386052894,10.883039816129926,11.429586169082532,10.926277812902404,10.610512198076657,10.685601943336508,10.669593854336709,10.624518171059472,10.578484033617833,10.5615883780172,10.492745733617124,10.440829646628202,10.329205224563964,10.131869290399695,9.991775029891787,11.28935923057529,11.414466596821086,9.833354961266576,10.010514312257012,9.819394224705944,9.871164907525467,9.815834704578787,9.800591599895245,9.796218859795655,9.7710889784315,9.873285816428673,9.79211909531912,9.783899716398455,9.773982112706204,9.767826081226367,9.7710569206859,9.764124804274552,9.760739146855691,9.753715569613604,9.741047704692612,9.787450578785215,9.768147218317239,9.745811995209163,9.74042049441277,9.745996701669284,9.736929319310583,9.734553707104276,9.731867778782032,9.726932417857071,9.725852583955447,9.721579203836818,9.759485298653235,9.714177546798787,9.718727914597341,9.713514622368496,9.716328803957579,9.712588627406227,9.715409141882951,9.711788461044161,13.368975037693641,13.88141911256885,15.990679672310332,16.41941712765308,12.477371335908071,15.644261612308641,12.10353943733025,12.027034422961712,11.899819592561958,11.832168191727416,12.073027464533242,11.521948193237156,11.46560845851095,11.29920202109665,11.153303295977821,10.937724619161092,11.277356633632003,11.790981351791476,10.847550479129403,10.789208692760404,11.11188424641524,10.688635657294475,10.64391120828057,10.58499754610694,10.490765595944634,11.037536853425795,10.472952279620833,10.401885643330306,10.270917317488637,10.09281471049747,10.031864386933297,9.96888468245984,10.023018962301421,10.417453503034746,9.864552082659856,9.86067004638852,9.878612609846808,9.865354239042752,9.85128251248707,9.83981857671018,9.829234094127631,9.821916848296276,9.811115335001318,9.795704170071154,9.774769990141948,9.740650156754526,9.83818078084775,9.840980808640722,9.73632215027759,9.785204503193123,9.733762536457963,9.732207597028882,9.733053875592775,9.728830510844404,9.729234441896407,9.7299831200406,9.729021083347474,9.728207512541644,9.7271096725202,9.727319891861846],"feasible_probability":0.6900499217374824,"one_hot_probability":1.0,"sampled_feasible_fraction":0.712890625,"counts":{"010101":1,"010110":84,"011001":283,"011010":26,"100110":27,"101001":82,"101010":9},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08799156101304106},"metrics":{"exact_objective":5,"optimal_count":1,"combinations":8,"optimal_probability":0.5495819258955149,"feasible_probability":0.6900499217374824,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.25,"shots_for_95_percent":4,"hit_curve":[{"shots":8,"quantum":0.9983059490248942,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9999971301912938,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999999999917641,"uniform":0.9860601629623169},{"shots":64,"quantum":1.0,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":7,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":5,"preference_cost":3,"change_cost":2,"changed_tasks":2,"max_start_shift":3,"choices":[1,1,0],"schedule":[{"task":"t0","resource":"r1","start":3,"end":4},{"task":"t1","resource":"r0","start":4,"end":5},{"task":"t2","resource":"r0","start":1,"end":2}]},"dual_bound":5.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":6,"runtime_seconds":0.0010963259992422536},"exact":{"status":"optimal","best":{"feasible":true,"objective":5,"raw_cost":5,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true}],"bits":[1,0,0,1,1,0],"qubo_energy":5},"combinations":8,"feasible_count":2,"runtime_seconds":5.920299736317247e-05},"greedy":{"status":"dead_end","best":null,"runtime_seconds":6.621005013585091e-06},"resources":{"full":{"depth":19,"operations":{"RX":15,"I":6,"RZ":14,"CNOT":21,"CRY":3,"X":3},"cnot":21,"cry":3},"auto":{"depth":19,"operations":{"RX":15,"I":6,"RZ":11,"CNOT":15,"CRY":3,"X":3},"cnot":15,"cry":3}},"phase_max_probability_error":2.220446049250313e-16,"samples":[{"shots":8,"quantum_objective":5,"uniform_objective":5},{"shots":16,"quantum_objective":5,"uniform_objective":5},{"shots":32,"quantum_objective":5,"uniform_objective":5},{"shots":64,"quantum_objective":5,"uniform_objective":5},{"shots":128,"quantum_objective":5,"uniform_objective":5},{"shots":512,"quantum_objective":5,"uniform_objective":5}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[4,2],"max_component_qubits":4,"component_to_original":[[0,1,2,3],[4,5]],"components":[{"qubits":4,"penalty":8,"objective_bound":7,"offset":16,"linear":[-5,-6,-4,-6],"quadratic":[[0,1,16],[0,2,8],[1,2,8],[1,3,8],[2,3,16]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":2},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":4,"cost":2}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["resource","group","precedence"]}]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-5,-1],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":1,"cost":0},{"index":1,"task":"t2","resource":"r1","start":1,"cost":4}],"conflicts":[]}]},"diagnostic_seconds":0.012676525002461858}
+{"input":{"file":"evaluation-n3-d1.json","split":"evaluation","tasks":3,"density_parameter":1,"data_seed":20260953,"sha256":"6d4d463f2d2b556e9352777df21317551122163d72f017025cc267fc9313bece"},"model":{"qubits":6,"penalty":12,"objective_bound":11,"offset":36,"linear":[-9,-10,-8,-10,-12,-8],"quadratic":[[0,1,24],[0,2,12],[1,2,12],[1,3,12],[2,3,24],[4,5,24]],"domains":[[0,1],[2,3],[4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":2},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":4,"cost":2},{"index":4,"task":"t2","resource":"r0","start":1,"cost":0},{"index":5,"task":"t2","resource":"r1","start":1,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["resource","group","precedence"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":5,"raw_cost":5,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true}],"bits":[1,0,0,1,1,0],"qubo_energy":5},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.8635338196890292,2.8150265865085724],"expected_energy":9.70493841403637,"initial_expected_energy":16.428471798531795,"history":[16.428471798531795,16.40971237718794,9.946923503647774,20.1679973649029,10.127661195901014,9.769966077592022,10.535962707554777,9.77685180353582,9.961966965149834,9.784174724796548,9.788764195730025,9.76630803948889,9.767272868478978,9.762708322824626,9.760100638818137,9.766852079882037,9.756871689991995,9.754031664554244,9.757663681076945,9.751566803474521,9.748476470351786,9.743501556669665,9.768542757211858,9.741213154102006,9.73847044041046,9.7331015591399,9.724177722005297,9.754310971393444,9.735639271922444,9.735845909703503,9.72092983155289,9.720155127220988,9.724415574791317,9.718821809681991,9.717744115543594,9.715889648404236,9.712715011040652,9.709485049316399,9.710828858240003,9.722682617553929,9.711101043774296,9.707284568400578,9.707254719355223,9.708879994943745,9.707380894889955,9.706659592798763,9.706304121399652,9.706463806123965,9.706262809124059,9.706144970420244,9.705939393220463,9.706053191463711,9.705785114956658,9.70573730591041,9.70606870177364,9.705604423133828,9.70548768032176,9.705290056205865,9.70493841403637,9.705304105236404,16.686687753281618,17.536671938690418,16.68498331552359,15.683251349798406,13.714271696652178,14.080358186403295,16.612201926673926,13.600942128697731,13.828891742289777,17.33880198623291,13.193156577154342,13.99059770249242,14.327979168802795,11.010167376344135,11.853455900061228,11.394783276615023,11.373685951775794,10.458329409077402,10.396429227804713,10.550442841631405,10.620612470217281,10.208458423759346,10.269826162586346,10.276108827175076,10.215520665329574,10.181456895298975,10.130089012707415,10.036109529652993,9.88246608362872,12.738175665277508,10.612702949678154,9.851793145637448,10.06853696136293,9.879170698881284,9.855168154027899,9.854840209898764,9.847790406490986,9.846963337021329,9.85554249416098,9.840132472390806,9.829582520239995,9.810553056012601,9.844957936762118,9.81610084239066,9.810760479553256,9.817917123903992,9.805775125848108,9.803662994214468,9.808055627785006,9.798563382787329,9.793893615068406,9.784837992670285,9.770469520195885,9.774103324082976,9.800522819439504,9.767649073891953,9.762122742023312,9.767913159809204,9.758445635387956,9.755441715849784],"feasible_probability":0.6940308941802624,"one_hot_probability":1.0,"sampled_feasible_fraction":0.7109375,"counts":{"010101":2,"010110":87,"011001":288,"011010":29,"100101":1,"100110":22,"101001":76,"101010":7},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08604533500329126},"metrics":{"exact_objective":5,"optimal_count":1,"combinations":8,"optimal_probability":0.5419509537750821,"feasible_probability":0.6940308941802624,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.25,"shots_for_95_percent":4,"hit_curve":[{"shots":8,"quantum":0.9980622583892578,"uniform":0.6563910841941833},{"shots":16,"quantum":0.99999624515745,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999999999859012,"uniform":0.9860601629623169},{"shots":64,"quantum":1.0,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":7,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":5,"preference_cost":3,"change_cost":2,"changed_tasks":2,"max_start_shift":3,"choices":[1,1,0],"schedule":[{"task":"t0","resource":"r1","start":3,"end":4},{"task":"t1","resource":"r0","start":4,"end":5},{"task":"t2","resource":"r0","start":1,"end":2}]},"dual_bound":5.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":6,"runtime_seconds":0.0010963259992422536},"exact":{"status":"optimal","best":{"feasible":true,"objective":5,"raw_cost":5,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true}],"bits":[1,0,0,1,1,0],"qubo_energy":5},"combinations":8,"feasible_count":2,"runtime_seconds":5.920299736317247e-05},"greedy":{"status":"dead_end","best":null,"runtime_seconds":6.621005013585091e-06},"resources":{"full":{"depth":19,"operations":{"RX":15,"I":6,"RZ":14,"CNOT":21,"CRY":3,"X":3},"cnot":21,"cry":3},"auto":{"depth":19,"operations":{"RX":15,"I":6,"RZ":11,"CNOT":15,"CRY":3,"X":3},"cnot":15,"cry":3}},"phase_max_probability_error":1.1102230246251565e-16,"samples":[{"shots":8,"quantum_objective":5,"uniform_objective":5},{"shots":16,"quantum_objective":5,"uniform_objective":5},{"shots":32,"quantum_objective":5,"uniform_objective":5},{"shots":64,"quantum_objective":5,"uniform_objective":5},{"shots":128,"quantum_objective":5,"uniform_objective":5},{"shots":512,"quantum_objective":5,"uniform_objective":5}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[4,2],"max_component_qubits":4,"component_to_original":[[0,1,2,3],[4,5]],"components":[{"qubits":4,"penalty":8,"objective_bound":7,"offset":16,"linear":[-5,-6,-4,-6],"quadratic":[[0,1,16],[0,2,8],[1,2,8],[1,3,8],[2,3,16]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":2},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":4,"cost":2}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["resource","group","precedence"]}]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-5,-1],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":1,"cost":0},{"index":1,"task":"t2","resource":"r1","start":1,"cost":4}],"conflicts":[]}]},"diagnostic_seconds":0.01289618801092729}
+{"input":{"file":"evaluation-n3-d1.json","split":"evaluation","tasks":3,"density_parameter":1,"data_seed":20260953,"sha256":"6d4d463f2d2b556e9352777df21317551122163d72f017025cc267fc9313bece"},"model":{"qubits":6,"penalty":12,"objective_bound":11,"offset":36,"linear":[-9,-10,-8,-10,-12,-8],"quadratic":[[0,1,24],[0,2,12],[1,2,12],[1,3,12],[2,3,24],[4,5,24]],"domains":[[0,1],[2,3],[4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":2},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":4,"cost":2},{"index":4,"task":"t2","resource":"r0","start":1,"cost":0},{"index":5,"task":"t2","resource":"r1","start":1,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["resource","group","precedence"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":5,"raw_cost":5,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true}],"bits":[1,0,0,1,1,0],"qubo_energy":5},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.177711050362734,1.238115703393079],"expected_energy":9.870340305410387,"initial_expected_energy":17.05273854633586,"history":[17.05273854633586,16.985967434868922,11.992997928993743,16.718248179580957,13.301830421852532,12.345929324361833,12.17158245847353,12.098260656887645,11.899647549028629,11.770150310878567,11.729615075952449,11.524647968861395,11.509506650295506,11.315963205826165,11.240003162105715,10.900819184477358,11.958627740055737,11.210012555690867,11.055257189065713,11.053006685279133,10.851764836362717,10.794847686114634,10.769306883781478,10.606621859705088,10.653902857015204,10.582255286063624,10.678104017191885,10.567117641428036,10.53722537151699,10.510421084710565,10.51290003370082,10.488582756824083,10.476042504923676,10.491288158921996,10.46886232490556,10.456243331180428,10.440871899814544,10.455669321599395,10.42955814788088,10.419138415445357,10.40368455201494,10.361349572704812,10.320836010770607,10.28335605220287,10.199428171295772,10.217185416605624,10.179338811148568,10.223692490812894,10.16845761711081,10.148888653411394,10.113048971222167,10.062372566964292,10.018321260273233,9.980147191137979,10.082895516289192,9.93569527021201,9.935015562276996,9.91434913861475,9.88816744344632,9.870340305410387,16.993018851083878,15.409247887716635,16.490578029287114,16.47229000245877,16.555999829458056,15.538850740287366,15.362207097048284,15.382264745028701,15.459643201399166,15.24518584704936,15.26038850648742,15.299025659907953,15.251680143382917,15.217922848336944,15.16496057832561,15.069944429435477,15.011769408572736,14.781284165481933,15.115386780474582,15.046962548972072,14.830026147573884,14.801965960694039,14.774202219407893,14.836235575549345,14.751537909645245,14.731015636176892,14.694631274852902,14.631230582239374,14.535863535329085,14.692832287312442,14.670280060378085,14.523469139666414,14.531858378446092,14.518551094367762,14.52807045999591,14.515584380033298,14.510479794684855,14.503521525351559,14.49696780072593,14.493670133533511,14.478571281793084,14.48282138777925,14.476638822542624,14.487060581993592,14.475485049854484,14.472527844352157,14.470310257592438,14.471579728649704,14.469102981626232,14.468217132223781,14.468795778819471,14.467061590712277,14.466190489975123,14.466021534135443,14.46781262766979,14.466090527887363,14.46521508751458,14.463846441216809,14.462981237723643,14.460657003496],"feasible_probability":0.6725371739136137,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.65625,"counts":{"010101":2,"010110":117,"011001":283,"011010":25,"100101":1,"100110":27,"101001":53,"101010":4},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08862348301045131},"metrics":{"exact_objective":5,"optimal_count":1,"combinations":8,"optimal_probability":0.5530857421908109,"feasible_probability":0.6725371739136137,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.25,"shots_for_95_percent":4,"hit_curve":[{"shots":8,"quantum":0.9984085475003996,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9999974672789416,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999999999935854,"uniform":0.9860601629623169},{"shots":64,"quantum":1.0,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":7,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":5,"preference_cost":3,"change_cost":2,"changed_tasks":2,"max_start_shift":3,"choices":[1,1,0],"schedule":[{"task":"t0","resource":"r1","start":3,"end":4},{"task":"t1","resource":"r0","start":4,"end":5},{"task":"t2","resource":"r0","start":1,"end":2}]},"dual_bound":5.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":6,"runtime_seconds":0.0010963259992422536},"exact":{"status":"optimal","best":{"feasible":true,"objective":5,"raw_cost":5,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true}],"bits":[1,0,0,1,1,0],"qubo_energy":5},"combinations":8,"feasible_count":2,"runtime_seconds":5.920299736317247e-05},"greedy":{"status":"dead_end","best":null,"runtime_seconds":6.621005013585091e-06},"resources":{"full":{"depth":19,"operations":{"RX":15,"I":6,"RZ":14,"CNOT":21,"CRY":3,"X":3},"cnot":21,"cry":3},"auto":{"depth":19,"operations":{"RX":15,"I":6,"RZ":11,"CNOT":15,"CRY":3,"X":3},"cnot":15,"cry":3}},"phase_max_probability_error":1.5265566588595902e-16,"samples":[{"shots":8,"quantum_objective":5,"uniform_objective":null},{"shots":16,"quantum_objective":5,"uniform_objective":5},{"shots":32,"quantum_objective":5,"uniform_objective":5},{"shots":64,"quantum_objective":5,"uniform_objective":5},{"shots":128,"quantum_objective":5,"uniform_objective":5},{"shots":512,"quantum_objective":5,"uniform_objective":5}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[4,2],"max_component_qubits":4,"component_to_original":[[0,1,2,3],[4,5]],"components":[{"qubits":4,"penalty":8,"objective_bound":7,"offset":16,"linear":[-5,-6,-4,-6],"quadratic":[[0,1,16],[0,2,8],[1,2,8],[1,3,8],[2,3,16]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":2},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":4,"cost":2}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["resource","group","precedence"]}]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-5,-1],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":1,"cost":0},{"index":1,"task":"t2","resource":"r1","start":1,"cost":4}],"conflicts":[]}]},"diagnostic_seconds":0.012474068003939465}
+{"input":{"file":"evaluation-n3-d1.json","split":"evaluation","tasks":3,"density_parameter":1,"data_seed":20260953,"sha256":"6d4d463f2d2b556e9352777df21317551122163d72f017025cc267fc9313bece"},"model":{"qubits":6,"penalty":12,"objective_bound":11,"offset":36,"linear":[-9,-10,-8,-10,-12,-8],"quadratic":[[0,1,24],[0,2,12],[1,2,12],[1,3,12],[2,3,24],[4,5,24]],"domains":[[0,1],[2,3],[4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":2},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":4,"cost":2},{"index":4,"task":"t2","resource":"r0","start":1,"cost":0},{"index":5,"task":"t2","resource":"r1","start":1,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["resource","group","precedence"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":5,"raw_cost":5,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true}],"bits":[1,0,0,1,1,0],"qubo_energy":5},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.8962338669162664,2.8135830507556974],"expected_energy":9.701345853403351,"initial_expected_energy":18.173552104153995,"history":[18.173552104153995,16.647172826629987,17.04592929306981,16.32134363057682,14.259607904186138,15.031973895008088,15.381566739341867,14.449157480892854,14.290558530445372,15.38583572153058,13.867519136860208,13.745839361816179,14.145949061270084,13.660601394152861,13.70702201975055,13.521508343679272,13.630874308660994,13.575195840124586,13.521392181392395,13.493685294399445,13.437431925090621,13.322002504855192,13.106568189613075,12.550110294620554,14.04440069233222,13.891863206971415,13.078484467591785,12.477021108101589,12.543985801279732,12.43410677168751,12.467461697171057,12.41300366333076,12.379782644594156,12.365968942489197,12.462129419824587,12.368936036747504,12.325251026131342,12.264246698750934,12.390909449503619,12.20439857673226,12.129448533498632,11.979601182406608,11.682803421539683,11.101381074077224,11.33420216602676,13.06803802693325,11.63460852479291,11.03550676521231,11.198143104780133,10.998370071559817,10.925087225646383,10.791114217550833,10.551593053541245,10.123476594841286,13.76098687003899,12.638559493325126,10.745923257531494,10.302552603205896,10.100958157345733,10.134478294629325,10.265160482198365,10.412372998621818,18.613727363965786,17.14199594176005,11.86814678369915,10.333277093477783,12.439192535336066,9.805609741741621,9.722540519569833,9.744890487078196,10.014799198439334,9.713018550905495,9.736883796923223,9.715764754660794,9.706602336573928,9.704394035360563,9.703775556178561,9.706967958769596,9.703501755275731,9.703293530447699,9.70396359509522,9.703055950439616,9.702974879209734,9.702801636575845,9.702523127915118,9.702086499387581,9.70281299592133,9.704631711922172,9.702161452234087,9.702068763719872,9.702327518915203,9.702027423155592,9.70196736245579,9.70191364294345,9.701833981787008,9.701763306772765,9.70178698744503,9.701763260473102,9.701826380460354,9.70171128519441,9.701640160389154,9.701591915559327,9.701541331003742,9.70150297262469,9.701600060326042,9.701474339522576,9.701463245799506,9.70151291161282,9.701448198124563,9.701436291903544,9.701414979509774,9.701374961218562,9.70145099909633,9.701411441523522,9.701368542658123,9.701401198324975,9.701363528281053,9.70135508235224,9.701345853403351,9.701391867248208],"feasible_probability":0.6932597151041332,"one_hot_probability":1.0,"sampled_feasible_fraction":0.6875,"counts":{"010110":85,"011001":276,"011010":29,"100101":1,"100110":29,"101001":76,"101010":16},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08940487200743519},"metrics":{"exact_objective":5,"optimal_count":1,"combinations":8,"optimal_probability":0.5446086065929655,"feasible_probability":0.6932597151041332,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.25,"shots_for_95_percent":4,"hit_curve":[{"shots":8,"quantum":0.9981503968863032,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9999965789683218,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999999999882966,"uniform":0.9860601629623169},{"shots":64,"quantum":1.0,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":7,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":5,"preference_cost":3,"change_cost":2,"changed_tasks":2,"max_start_shift":3,"choices":[1,1,0],"schedule":[{"task":"t0","resource":"r1","start":3,"end":4},{"task":"t1","resource":"r0","start":4,"end":5},{"task":"t2","resource":"r0","start":1,"end":2}]},"dual_bound":5.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":6,"runtime_seconds":0.0010963259992422536},"exact":{"status":"optimal","best":{"feasible":true,"objective":5,"raw_cost":5,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true}],"bits":[1,0,0,1,1,0],"qubo_energy":5},"combinations":8,"feasible_count":2,"runtime_seconds":5.920299736317247e-05},"greedy":{"status":"dead_end","best":null,"runtime_seconds":6.621005013585091e-06},"resources":{"full":{"depth":19,"operations":{"RX":15,"I":6,"RZ":14,"CNOT":21,"CRY":3,"X":3},"cnot":21,"cry":3},"auto":{"depth":19,"operations":{"RX":15,"I":6,"RZ":11,"CNOT":15,"CRY":3,"X":3},"cnot":15,"cry":3}},"phase_max_probability_error":1.1102230246251565e-16,"samples":[{"shots":8,"quantum_objective":5,"uniform_objective":5},{"shots":16,"quantum_objective":5,"uniform_objective":9},{"shots":32,"quantum_objective":5,"uniform_objective":5},{"shots":64,"quantum_objective":5,"uniform_objective":5},{"shots":128,"quantum_objective":5,"uniform_objective":5},{"shots":512,"quantum_objective":5,"uniform_objective":5}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[4,2],"max_component_qubits":4,"component_to_original":[[0,1,2,3],[4,5]],"components":[{"qubits":4,"penalty":8,"objective_bound":7,"offset":16,"linear":[-5,-6,-4,-6],"quadratic":[[0,1,16],[0,2,8],[1,2,8],[1,3,8],[2,3,16]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":2},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":4,"cost":2}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["resource","group","precedence"]}]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-5,-1],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":1,"cost":0},{"index":1,"task":"t2","resource":"r1","start":1,"cost":4}],"conflicts":[]}]},"diagnostic_seconds":0.013422372008790262}
+{"input":{"file":"evaluation-n3-d1.json","split":"evaluation","tasks":3,"density_parameter":1,"data_seed":20260953,"sha256":"6d4d463f2d2b556e9352777df21317551122163d72f017025cc267fc9313bece"},"model":{"qubits":6,"penalty":12,"objective_bound":11,"offset":36,"linear":[-9,-10,-8,-10,-12,-8],"quadratic":[[0,1,24],[0,2,12],[1,2,12],[1,3,12],[2,3,24],[4,5,24]],"domains":[[0,1],[2,3],[4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":2},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":4,"cost":2},{"index":4,"task":"t2","resource":"r0","start":1,"cost":0},{"index":5,"task":"t2","resource":"r1","start":1,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["resource","group","precedence"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":5,"raw_cost":5,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true}],"bits":[1,0,0,1,1,0],"qubo_energy":5},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.9697973346118138,1.2379449828171791],"expected_energy":9.71116520109223,"initial_expected_energy":14.29835485612078,"history":[14.29835485612078,13.99169383206626,13.398251361194642,17.994213877953772,13.499081868133517,16.484482805709696,13.190532172654905,11.95007093427262,10.230327418506466,9.989311208209854,10.071298241045007,10.069441434613772,10.016549360742683,9.98082378791317,9.98540690294822,9.979088927172894,9.971666889351233,9.95712354994183,9.929598625663818,9.887280634394585,10.061425361992093,10.06992290395343,9.87425836384644,9.858171438791018,9.863943937514762,9.843074461921107,9.842894954095925,9.849909301172588,9.836420049521358,9.824688420291531,9.805401576271983,9.771792184144765,9.792627571599748,9.90247559695741,9.785787000925726,9.769238648735536,9.781933031278543,9.767241070689447,9.763868132122953,9.760173076129096,9.778178116377724,9.755632512859677,9.752752349999854,9.749511142865497,9.743854158508396,9.760650013947615,9.743825328793275,9.739484027476033,9.733058286807168,9.7254315419218,9.724624280100585,9.715526010486645,9.720008215023043,9.725281689074128,9.716856483793473,9.715105647678635,9.7135171085205,9.712346602815122,9.7164473610524,9.71116520109223,19.689504173487954,18.94403289988054,15.389983813418157,11.170727502431308,16.372219152858726,10.655290912302892,16.701945213607278,17.67341371311784,12.757733188130983,10.765825331415408,12.460914626748774,10.445331049097675,10.516241214595055,10.420976769260434,10.463065037323261,10.415410450227043,10.400299046146358,10.375120212673943,10.387421772930427,10.355008112155048,10.338366599542564,10.322982540246043,10.416407392141405,10.306564762039208,10.279872772563811,10.245871156820403,10.206673425676192,10.140572032882972,10.117097181946843,10.05576432838422,10.609777981755578,10.219950175947833,10.007486768191747,9.974869321592948,9.973982498836092,10.037594625494224,9.973993222005483,9.947846720700507,9.90697723242016,9.883091857269704,9.867912048622724,9.922503123773687,9.854834233126915,9.846352113385796,9.834807424746758,9.815600358773022,9.784798330041417,9.7685444031348,9.882192297439921,10.022607627394368,9.772579388888303,9.72903873281832,9.754547415080296,9.734514514572634,9.730274030815956,9.727241213617713,9.730594475092321,9.726007891918766,9.724847524985929,9.72298034857625],"feasible_probability":0.6899881537906702,"one_hot_probability":1.0,"sampled_feasible_fraction":0.65625,"counts":{"010101":2,"010110":112,"011001":248,"011010":30,"100101":1,"100110":24,"101001":88,"101010":7},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.0911469999991823},"metrics":{"exact_objective":5,"optimal_count":1,"combinations":8,"optimal_probability":0.5495820626263523,"feasible_probability":0.6899881537906702,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.25,"shots_for_95_percent":4,"hit_curve":[{"shots":8,"quantum":0.9983059531389168,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9999971302052325,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999999999917643,"uniform":0.9860601629623169},{"shots":64,"quantum":1.0,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":7,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":5,"preference_cost":3,"change_cost":2,"changed_tasks":2,"max_start_shift":3,"choices":[1,1,0],"schedule":[{"task":"t0","resource":"r1","start":3,"end":4},{"task":"t1","resource":"r0","start":4,"end":5},{"task":"t2","resource":"r0","start":1,"end":2}]},"dual_bound":5.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":6,"runtime_seconds":0.0010963259992422536},"exact":{"status":"optimal","best":{"feasible":true,"objective":5,"raw_cost":5,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true}],"bits":[1,0,0,1,1,0],"qubo_energy":5},"combinations":8,"feasible_count":2,"runtime_seconds":5.920299736317247e-05},"greedy":{"status":"dead_end","best":null,"runtime_seconds":6.621005013585091e-06},"resources":{"full":{"depth":19,"operations":{"RX":15,"I":6,"RZ":14,"CNOT":21,"CRY":3,"X":3},"cnot":21,"cry":3},"auto":{"depth":19,"operations":{"RX":15,"I":6,"RZ":11,"CNOT":15,"CRY":3,"X":3},"cnot":15,"cry":3}},"phase_max_probability_error":1.6653345369377348e-16,"samples":[{"shots":8,"quantum_objective":5,"uniform_objective":9},{"shots":16,"quantum_objective":5,"uniform_objective":5},{"shots":32,"quantum_objective":5,"uniform_objective":5},{"shots":64,"quantum_objective":5,"uniform_objective":5},{"shots":128,"quantum_objective":5,"uniform_objective":5},{"shots":512,"quantum_objective":5,"uniform_objective":5}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[4,2],"max_component_qubits":4,"component_to_original":[[0,1,2,3],[4,5]],"components":[{"qubits":4,"penalty":8,"objective_bound":7,"offset":16,"linear":[-5,-6,-4,-6],"quadratic":[[0,1,16],[0,2,8],[1,2,8],[1,3,8],[2,3,16]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":2},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":4,"cost":2}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["resource","group","precedence"]}]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-5,-1],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":1,"cost":0},{"index":1,"task":"t2","resource":"r1","start":1,"cost":4}],"conflicts":[]}]},"diagnostic_seconds":0.01270540700352285}
+{"input":{"file":"evaluation-n3-d1.json","split":"evaluation","tasks":3,"density_parameter":1,"data_seed":20260953,"sha256":"6d4d463f2d2b556e9352777df21317551122163d72f017025cc267fc9313bece"},"model":{"qubits":6,"penalty":12,"objective_bound":11,"offset":36,"linear":[-9,-10,-8,-10,-12,-8],"quadratic":[[0,1,24],[0,2,12],[1,2,12],[1,3,12],[2,3,24],[4,5,24]],"domains":[[0,1],[2,3],[4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":2},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":4,"cost":2},{"index":4,"task":"t2","resource":"r0","start":1,"cost":0},{"index":5,"task":"t2","resource":"r1","start":1,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["resource","group","precedence"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":5,"raw_cost":5,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true}],"bits":[1,0,0,1,1,0],"qubo_energy":5},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7656576094087757,1.2508298862360614],"expected_energy":9.746046495260515,"initial_expected_energy":13.322586682566442,"history":[13.322586682566442,12.164675951845837,20.123020113613762,15.14906300527959,18.482773075865712,10.475188389202433,11.014237811707883,10.435695236649915,10.847798422989326,10.338291088628463,10.379261934118354,10.445887179661689,10.339522797569987,10.301348754205595,10.274933158263227,10.218751927468748,10.134368303052574,10.152694256361912,10.319007242201701,10.100469312453821,10.067185721992459,10.089346461115632,10.04050716859215,10.038990117858443,10.049750952994447,10.041197488451619,10.028850466485377,10.014809959705246,10.028293650126084,10.006419969316482,10.000504040568698,9.992037330210753,9.975719613117096,9.944632482590972,9.912734047403081,9.867881028813077,9.881356569462788,9.939691271447048,9.852803582650942,9.854305636088458,9.855550542777223,9.848125034627632,9.840781010786898,9.843964487437823,9.83070597915584,9.824429314557548,9.841776158644794,9.818194973046534,9.813186214715893,9.803554763205735,9.795594155653708,9.778594733251918,9.788238860564503,9.795294145605206,9.778859577297247,9.773497499031736,9.770271074035147,9.766278740796988,9.758791651246561,9.746046495260515,16.229519987926935,16.21593624123477,13.85016500683611,15.603127234647738,13.629850741438498,13.10482285357173,15.791691108908882,13.515148090195943,13.202816229316426,12.964675580186881,12.90024062391127,12.733889029058876,12.739376195501986,12.729049694876705,13.031928010901424,12.53858457345837,12.455392995543395,12.290942107236658,12.03689577752665,11.41652979517675,11.440213226508648,13.31952872040816,11.828940070721655,11.35520758829562,11.543352379068379,11.295292486507076,11.565335524267315,11.209345250950388,11.146729604998871,11.076728512445367,10.941656194747571,10.741623026127618,11.563109498615992,11.706816721893265,10.65319848988382,10.618874550577445,11.054073488437142,10.511077925393716,10.467438939750208,10.418075286680644,10.389814232694937,10.26470167347269,10.376392872977643,10.239008253757381,10.333405844154207,10.223959951680596,10.197865432613245,10.150871306885438,10.091432250915721,10.042314818806066,10.000725996322549,10.194484486015082,9.931407101215152,9.941664768139855,9.926161833900078,9.934384315214169,9.92270791604789,9.915764610570776,9.903399707175428,9.88038775320474],"feasible_probability":0.6943879464483694,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.685546875,"counts":{"010101":2,"010110":81,"011001":267,"011010":36,"100110":30,"101001":84,"101010":12},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09305438799492549},"metrics":{"exact_objective":5,"optimal_count":1,"combinations":8,"optimal_probability":0.5318416213709359,"feasible_probability":0.6943879464483694,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.25,"shots_for_95_percent":4,"hit_curve":[{"shots":8,"quantum":0.9976924963170748,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9999946754267532,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999999999716489,"uniform":0.9860601629623169},{"shots":64,"quantum":1.0,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":7,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":5,"preference_cost":3,"change_cost":2,"changed_tasks":2,"max_start_shift":3,"choices":[1,1,0],"schedule":[{"task":"t0","resource":"r1","start":3,"end":4},{"task":"t1","resource":"r0","start":4,"end":5},{"task":"t2","resource":"r0","start":1,"end":2}]},"dual_bound":5.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":6,"runtime_seconds":0.0010963259992422536},"exact":{"status":"optimal","best":{"feasible":true,"objective":5,"raw_cost":5,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true}],"bits":[1,0,0,1,1,0],"qubo_energy":5},"combinations":8,"feasible_count":2,"runtime_seconds":5.920299736317247e-05},"greedy":{"status":"dead_end","best":null,"runtime_seconds":6.621005013585091e-06},"resources":{"full":{"depth":19,"operations":{"RX":15,"I":6,"RZ":14,"CNOT":21,"CRY":3,"X":3},"cnot":21,"cry":3},"auto":{"depth":19,"operations":{"RX":15,"I":6,"RZ":11,"CNOT":15,"CRY":3,"X":3},"cnot":15,"cry":3}},"phase_max_probability_error":1.1102230246251565e-16,"samples":[{"shots":8,"quantum_objective":5,"uniform_objective":5},{"shots":16,"quantum_objective":5,"uniform_objective":9},{"shots":32,"quantum_objective":5,"uniform_objective":5},{"shots":64,"quantum_objective":5,"uniform_objective":5},{"shots":128,"quantum_objective":5,"uniform_objective":5},{"shots":512,"quantum_objective":5,"uniform_objective":5}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[4,2],"max_component_qubits":4,"component_to_original":[[0,1,2,3],[4,5]],"components":[{"qubits":4,"penalty":8,"objective_bound":7,"offset":16,"linear":[-5,-6,-4,-6],"quadratic":[[0,1,16],[0,2,8],[1,2,8],[1,3,8],[2,3,16]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":2},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":4,"cost":2}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["resource","group","precedence"]}]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-5,-1],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":1,"cost":0},{"index":1,"task":"t2","resource":"r1","start":1,"cost":4}],"conflicts":[]}]},"diagnostic_seconds":0.013421390001894906}
+{"input":{"file":"evaluation-n3-d2.json","split":"evaluation","tasks":3,"density_parameter":2,"data_seed":20260954,"sha256":"6989a69a0cf7aab50b2b8a14a3a1b148f6301c187f8985ab4fb89d53709165a2"},"model":{"qubits":6,"penalty":16,"objective_bound":15,"offset":48,"linear":[-12,-9,-12,-11,-16,-13],"quadratic":[[0,1,32],[0,2,16],[0,5,16],[2,3,32],[2,5,16],[3,4,16],[4,5,32]],"domains":[[0,1],[2,3],[4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":2,"cost":4},{"index":1,"task":"t0","resource":"r0","start":1,"cost":7},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":3,"cost":5},{"index":4,"task":"t2","resource":"r0","start":3,"cost":0},{"index":5,"task":"t2","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false}],"bits":[0,1,1,0,1,0],"qubo_energy":11},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.5565450483154004,0.3267819244345524],"expected_energy":23.857953722424277,"initial_expected_energy":27.397667501850027,"history":[27.397667501850027,28.00186638102886,27.55318606128211,27.353623983621254,24.083594400525982,27.026414155068196,28.402314865603223,25.181365066145457,24.16979514740849,24.9551901978692,23.946349941502227,24.074107316641292,23.898918964394735,23.914688216400123,23.885732492502413,23.889586681425993,23.882538543847552,23.877745254074483,23.87482814451597,23.89029771441901,23.86954168354263,23.865412094148162,23.860178677751023,23.863296376314718,23.85933293656401,23.86003561677863,23.85858178446115,23.858647269552165,23.859550593560407,23.85862672890373,23.858300824241276,23.858138070513345,23.858049725120324,23.857985150956686,23.85795618005423,23.858044364613825,23.85795771013092,23.85795731611352,23.857966718891884,23.857958033760063,23.857957334319916,23.857955537384367,23.857954513555335,23.85795374620784,23.857954626607338,23.85795373526514,23.857954003236895,23.857953973473315,23.857953807120616,23.85795374819069,23.857953740103454,23.857953731748516,23.857953745156735,23.857953724841945,23.857953722606727,23.857953722589315,23.857953722424277,23.857953727235703,25.226025348040938,24.542930951512304,27.364836366560404,27.774274772244926,26.726879707219684,24.74521164246016,24.663193764069923,24.40509799507536,24.433260039033918,24.159366615786496,24.101338123867343,24.36357317680087,23.94995284245679,23.877251604327856,24.02936415900107,23.916229009543784,23.905371399934438,23.89105707959557,23.874506976827135,23.868784204720626,23.8647810626933,23.859866179007586,23.859383653578725,23.857982494649097,23.858667939850754,23.858253756119296,23.858530563531666,23.85838278064667,23.857967792369834,23.857980216532162,23.857980996312847,23.857958865219643,23.857977435628285,23.857955803216598,23.857959142660526,23.857954688075786,23.857954052850957,23.857955027445897,23.857953877309562,23.85795373759337,23.85795386669973,23.857953750739053,23.857953742631118,23.857953754609735,23.85795372794413,23.85795372472792,23.857953734026374],"feasible_probability":0.4253369328933362,"one_hot_probability":1.0,"sampled_feasible_fraction":0.466796875,"counts":{"010101":5,"010110":145,"011001":159,"011010":3,"100101":59,"100110":18,"101001":29,"101010":94},"circuit_evaluations":105,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":58},{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":47}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07833943000878207},"metrics":{"exact_objective":11,"optimal_count":1,"combinations":8,"optimal_probability":0.247290458699881,"feasible_probability":0.4253369328933362,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.25,"shots_for_95_percent":11,"hit_curve":[{"shots":8,"quantum":0.8969567923925231,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9893820973659624,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9998872601436541,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9999999872897248,"uniform":0.9998056809433629},{"shots":128,"quantum":0.9999999999999999,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":7,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":11,"preference_cost":7,"change_cost":4,"changed_tasks":1,"max_start_shift":1,"choices":[2,0,0],"schedule":[{"task":"t0","resource":"r0","start":1,"end":2},{"task":"t1","resource":"r0","start":2,"end":3},{"task":"t2","resource":"r0","start":3,"end":4}]},"dual_bound":11.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.001244475002749823},"exact":{"status":"optimal","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false}],"bits":[0,1,1,0,1,0],"qubo_energy":11},"combinations":8,"feasible_count":2,"runtime_seconds":5.5931988754309714e-05},"greedy":{"status":"dead_end","best":null,"runtime_seconds":8.841001545079052e-06},"resources":{"full":{"depth":25,"operations":{"RX":15,"I":6,"RZ":16,"CNOT":23,"CRY":3,"X":3},"cnot":23,"cry":3},"auto":{"depth":20,"operations":{"RX":15,"I":6,"RZ":13,"CNOT":17,"CRY":3,"X":3},"cnot":17,"cry":3}},"phase_max_probability_error":1.6653345369377348e-16,"samples":[{"shots":8,"quantum_objective":11,"uniform_objective":11},{"shots":16,"quantum_objective":11,"uniform_objective":11},{"shots":32,"quantum_objective":11,"uniform_objective":11},{"shots":64,"quantum_objective":11,"uniform_objective":11},{"shots":128,"quantum_objective":11,"uniform_objective":11},{"shots":512,"quantum_objective":11,"uniform_objective":11}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[6],"max_component_qubits":6,"component_to_original":[[0,1,2,3,4,5]],"components":[{"qubits":6,"penalty":16,"objective_bound":15,"offset":48,"linear":[-12,-9,-12,-11,-16,-13],"quadratic":[[0,1,32],[0,2,16],[0,5,16],[2,3,32],[2,5,16],[3,4,16],[4,5,32]],"domains":[[0,1],[2,3],[4,5]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":2,"cost":4},{"index":1,"task":"t0","resource":"r0","start":1,"cost":7},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":3,"cost":5},{"index":4,"task":"t2","resource":"r0","start":3,"cost":0},{"index":5,"task":"t2","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]}]}]},"diagnostic_seconds":0.012892905986518599}
+{"input":{"file":"evaluation-n3-d2.json","split":"evaluation","tasks":3,"density_parameter":2,"data_seed":20260954,"sha256":"6989a69a0cf7aab50b2b8a14a3a1b148f6301c187f8985ab4fb89d53709165a2"},"model":{"qubits":6,"penalty":16,"objective_bound":15,"offset":48,"linear":[-12,-9,-12,-11,-16,-13],"quadratic":[[0,1,32],[0,2,16],[0,5,16],[2,3,32],[2,5,16],[3,4,16],[4,5,32]],"domains":[[0,1],[2,3],[4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":2,"cost":4},{"index":1,"task":"t0","resource":"r0","start":1,"cost":7},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":3,"cost":5},{"index":4,"task":"t2","resource":"r0","start":3,"cost":0},{"index":5,"task":"t2","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false}],"bits":[0,1,1,0,1,0],"qubo_energy":11},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.5565783413418055,0.32677872602454017],"expected_energy":23.857953732119736,"initial_expected_energy":26.357434403360596,"history":[26.357434403360596,25.751859019278633,26.850866179993478,26.919962608483758,27.496267393809124,24.52326898270583,25.372027891631465,24.771273637148447,25.04215997847274,24.223185240886487,24.058234112565366,24.245136949449808,23.986346247927713,23.946269120499693,23.89808419751329,23.869377536803327,23.89128205758979,23.86775829564133,23.873947651325125,23.868326890873043,23.863433152516563,23.861330416488762,23.863650322576923,23.859519642182498,23.859456575425952,23.858119185855305,23.858362112688088,23.858346748096398,23.858197937930882,23.858084499358803,23.85825245783058,23.858087210857505,23.858041597929443,23.858014513916928,23.858034122171155,23.857989226838985,23.857980429336852,23.85796280091204,23.85795639489951,23.857957074338003,23.85796532607362,23.857957978282823,23.8579575085065,23.8579570411789,23.857955385619114,23.85795498587243,23.857956664153942,23.857955146516215,23.857954438111715,23.857954281677305,23.857953926413852,23.85795376069973,23.857953855125523,23.857953954402685,23.857953823774746,23.85795377492149,23.857953738197605,23.85795374627219,23.857953732119736,23.857953737290487,28.657388960415293,26.870472789010705,28.172422877313622,27.170993205281142,27.50334185358482,26.935547751466185,26.869619183626206,26.9917669721003,26.835244201968482,26.914048261962684,26.857926523618147,26.832022514343183,26.823604715072612,26.821339415716835,26.814502729538276,26.810163076282723,26.80816043362718,26.80605389178863,26.80562253870233,26.81110937460135,26.80569814653007,26.805726312957248,26.805810154014363,26.80583297507188,26.80569139682641,26.805517143598244,26.805482932051763,26.805513867848667,26.80548033815079,26.805485952026537,26.805485776162044,26.805481373615983,26.805480204693943,26.80548077405221,26.805480087013795,26.80547996762694,26.80548001243811,26.805479963953516,26.805480160393685,26.805479867610863,26.80547983806944,26.80547990981008,26.80547997963534,26.80547985773361,26.805479839435534,26.805479845534343,26.805479838646622],"feasible_probability":0.4253415472726614,"one_hot_probability":1.0,"sampled_feasible_fraction":0.455078125,"counts":{"010101":2,"010110":129,"011001":172,"011010":1,"100101":53,"100110":16,"101001":35,"101010":104},"circuit_evaluations":107,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":47}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07903428698773496},"metrics":{"exact_objective":11,"optimal_count":1,"combinations":8,"optimal_probability":0.24729430531657298,"feasible_probability":0.4253415472726614,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.25,"shots_for_95_percent":11,"hit_curve":[{"shots":8,"quantum":0.8969610050202226,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9893829655135574,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9998872785787137,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9999999872938812,"uniform":0.9998056809433629},{"shots":128,"quantum":0.9999999999999999,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":7,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":11,"preference_cost":7,"change_cost":4,"changed_tasks":1,"max_start_shift":1,"choices":[2,0,0],"schedule":[{"task":"t0","resource":"r0","start":1,"end":2},{"task":"t1","resource":"r0","start":2,"end":3},{"task":"t2","resource":"r0","start":3,"end":4}]},"dual_bound":11.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.001244475002749823},"exact":{"status":"optimal","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false}],"bits":[0,1,1,0,1,0],"qubo_energy":11},"combinations":8,"feasible_count":2,"runtime_seconds":5.5931988754309714e-05},"greedy":{"status":"dead_end","best":null,"runtime_seconds":8.841001545079052e-06},"resources":{"full":{"depth":25,"operations":{"RX":15,"I":6,"RZ":16,"CNOT":23,"CRY":3,"X":3},"cnot":23,"cry":3},"auto":{"depth":20,"operations":{"RX":15,"I":6,"RZ":13,"CNOT":17,"CRY":3,"X":3},"cnot":17,"cry":3}},"phase_max_probability_error":1.3877787807814457e-16,"samples":[{"shots":8,"quantum_objective":11,"uniform_objective":15},{"shots":16,"quantum_objective":11,"uniform_objective":15},{"shots":32,"quantum_objective":11,"uniform_objective":11},{"shots":64,"quantum_objective":11,"uniform_objective":11},{"shots":128,"quantum_objective":11,"uniform_objective":11},{"shots":512,"quantum_objective":11,"uniform_objective":11}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[6],"max_component_qubits":6,"component_to_original":[[0,1,2,3,4,5]],"components":[{"qubits":6,"penalty":16,"objective_bound":15,"offset":48,"linear":[-12,-9,-12,-11,-16,-13],"quadratic":[[0,1,32],[0,2,16],[0,5,16],[2,3,32],[2,5,16],[3,4,16],[4,5,32]],"domains":[[0,1],[2,3],[4,5]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":2,"cost":4},{"index":1,"task":"t0","resource":"r0","start":1,"cost":7},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":3,"cost":5},{"index":4,"task":"t2","resource":"r0","start":3,"cost":0},{"index":5,"task":"t2","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]}]}]},"diagnostic_seconds":0.012722637999104336}
+{"input":{"file":"evaluation-n3-d2.json","split":"evaluation","tasks":3,"density_parameter":2,"data_seed":20260954,"sha256":"6989a69a0cf7aab50b2b8a14a3a1b148f6301c187f8985ab4fb89d53709165a2"},"model":{"qubits":6,"penalty":16,"objective_bound":15,"offset":48,"linear":[-12,-9,-12,-11,-16,-13],"quadratic":[[0,1,32],[0,2,16],[0,5,16],[2,3,32],[2,5,16],[3,4,16],[4,5,32]],"domains":[[0,1],[2,3],[4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":2,"cost":4},{"index":1,"task":"t0","resource":"r0","start":1,"cost":7},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":3,"cost":5},{"index":4,"task":"t2","resource":"r0","start":3,"cost":0},{"index":5,"task":"t2","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false}],"bits":[0,1,1,0,1,0],"qubo_energy":11},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.556550194461553,0.32678052708258],"expected_energy":23.857953721909617,"initial_expected_energy":25.540450507867178,"history":[25.540450507867178,27.11220670907995,27.45105881049978,26.472195197419648,26.989585390129314,25.834440854374662,25.391859419256157,24.619827612831024,23.88261539970938,26.219459357781574,24.33476884876577,23.91144016268929,24.07157891562765,23.897758090622126,23.898213392266054,23.89836132356421,23.862801271229042,23.858180250812804,23.860693271007563,23.85900518131566,23.85819999234214,23.858580075553874,23.858401407984452,23.85863938195828,23.858303273501125,23.85800636110444,23.858019154740056,23.857988509111788,23.857965112592968,23.85795500573417,23.85796210585457,23.85796098281959,23.857958562774456,23.857955752144164,23.857954009461935,23.857954794620653,23.85795379872141,23.857954037165676,23.857953851020923,23.857953815164134,23.85795384507317,23.85795379715175,23.857953777368817,23.857953751280576,23.857953777276705,23.857953740267163,23.857953742852352,23.857953732316034,23.857953729986114,23.857953744573262,23.857953723482478,23.85795372296392,23.857953721909617,23.85795372587929,40.4162551447586,31.18569285913877,27.894813802548022,27.207620346532423,28.008190785057856,27.41814876639829,27.143968521982277,27.619035839588896,27.15118864218214,27.010503964623265,26.986405732061876,27.12512013604597,26.886996487447586,26.805610230143273,26.870390137415576,26.871682466221927,26.816167971846692,26.80592893865105,26.808172017097576,26.80578364584953,26.806240139968413,26.805772510080267,26.805599563760993,26.805547042280452,26.805511389673157,26.805516555099533,26.80550825898346,26.805512040603126,26.80551538687617,26.80550037777719,26.805504309803002,26.805505754513074,26.805500464446368,26.805497985864136,26.80549373290716,26.80548702197251,26.805494394146578,26.805489934871133,26.80548713779057,26.805484554530018,26.80548141877661,26.805487726268808,26.80548096115436,26.80548048826156,26.80548028309834,26.80548116363437,26.805479993418103,26.805479920450924,26.805479853306075,26.805479876147267,26.805479867247374,26.80547985728694,26.805479859452085,26.80547984933056,26.80547984554118,26.805479845731043,26.80547984401993,26.805479846682335,26.805479846270764,26.805479842289863],"feasible_probability":0.42533694380569803,"one_hot_probability":1.0,"sampled_feasible_fraction":0.4375,"counts":{"010101":3,"010110":122,"011001":170,"011010":2,"100101":60,"100110":14,"101001":39,"101010":102},"circuit_evaluations":114,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":54},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08316879300400615},"metrics":{"exact_objective":11,"optimal_count":1,"combinations":8,"optimal_probability":0.2472908614078306,"feasible_probability":0.42533694380569803,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.25,"shots_for_95_percent":11,"hit_curve":[{"shots":8,"quantum":0.8969572334257649,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9893821882567277,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9998872620737844,"uniform":0.9860601629623169},{"shots":64,"quantum":0.99999998729016,"uniform":0.9998056809433629},{"shots":128,"quantum":0.9999999999999999,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":7,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":11,"preference_cost":7,"change_cost":4,"changed_tasks":1,"max_start_shift":1,"choices":[2,0,0],"schedule":[{"task":"t0","resource":"r0","start":1,"end":2},{"task":"t1","resource":"r0","start":2,"end":3},{"task":"t2","resource":"r0","start":3,"end":4}]},"dual_bound":11.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.001244475002749823},"exact":{"status":"optimal","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false}],"bits":[0,1,1,0,1,0],"qubo_energy":11},"combinations":8,"feasible_count":2,"runtime_seconds":5.5931988754309714e-05},"greedy":{"status":"dead_end","best":null,"runtime_seconds":8.841001545079052e-06},"resources":{"full":{"depth":25,"operations":{"RX":15,"I":6,"RZ":16,"CNOT":23,"CRY":3,"X":3},"cnot":23,"cry":3},"auto":{"depth":20,"operations":{"RX":15,"I":6,"RZ":13,"CNOT":17,"CRY":3,"X":3},"cnot":17,"cry":3}},"phase_max_probability_error":2.220446049250313e-16,"samples":[{"shots":8,"quantum_objective":11,"uniform_objective":11},{"shots":16,"quantum_objective":11,"uniform_objective":11},{"shots":32,"quantum_objective":11,"uniform_objective":11},{"shots":64,"quantum_objective":11,"uniform_objective":11},{"shots":128,"quantum_objective":11,"uniform_objective":11},{"shots":512,"quantum_objective":11,"uniform_objective":11}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[6],"max_component_qubits":6,"component_to_original":[[0,1,2,3,4,5]],"components":[{"qubits":6,"penalty":16,"objective_bound":15,"offset":48,"linear":[-12,-9,-12,-11,-16,-13],"quadratic":[[0,1,32],[0,2,16],[0,5,16],[2,3,32],[2,5,16],[3,4,16],[4,5,32]],"domains":[[0,1],[2,3],[4,5]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":2,"cost":4},{"index":1,"task":"t0","resource":"r0","start":1,"cost":7},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":3,"cost":5},{"index":4,"task":"t2","resource":"r0","start":3,"cost":0},{"index":5,"task":"t2","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]}]}]},"diagnostic_seconds":0.01323337601206731}
+{"input":{"file":"evaluation-n3-d2.json","split":"evaluation","tasks":3,"density_parameter":2,"data_seed":20260954,"sha256":"6989a69a0cf7aab50b2b8a14a3a1b148f6301c187f8985ab4fb89d53709165a2"},"model":{"qubits":6,"penalty":16,"objective_bound":15,"offset":48,"linear":[-12,-9,-12,-11,-16,-13],"quadratic":[[0,1,32],[0,2,16],[0,5,16],[2,3,32],[2,5,16],[3,4,16],[4,5,32]],"domains":[[0,1],[2,3],[4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":2,"cost":4},{"index":1,"task":"t0","resource":"r0","start":1,"cost":7},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":3,"cost":5},{"index":4,"task":"t2","resource":"r0","start":3,"cost":0},{"index":5,"task":"t2","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false}],"bits":[0,1,1,0,1,0],"qubo_energy":11},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.5565492719298955,1.8975767632111438],"expected_energy":23.857953722013562,"initial_expected_energy":28.62914271826109,"history":[28.62914271826109,27.7063952562159,26.850059886093174,24.642346855262602,27.796573918233964,27.580378810801463,25.075810236337666,24.092621507860194,23.999901712792457,24.052756908762404,24.16123024376608,23.859108396574747,23.94917238209361,23.876929686787197,23.863003817320728,23.863106326045664,23.858625512541558,23.86151976612079,23.858044410644414,23.859259076753112,23.85832151386386,23.85814911655481,23.858016514739163,23.857974256171097,23.85796374638877,23.857957174220395,23.8579779975471,23.857954265308393,23.857954767016146,23.857954242449008,23.8579539628268,23.857954501639295,23.857954515082547,23.857953797880484,23.857954114990587,23.857953763312384,23.857954220016914,23.85795372474739,23.857953793534506,23.85795372925609,23.857953734713824,23.857953723966016,23.85795373092355,23.857953722255377,23.857953725069414,24.74590790264321,27.84311278455733,27.48822569161145,27.024113351611117,26.758070485868796,25.035680718431532,24.170434358741595,23.948006679557306,24.003782087687995,24.182357218652946,24.031563972419416,23.883006559361696,24.065090069933408,23.864499392477214,23.911065915605562,23.860985712901588,23.859588951483087,23.860162184763666,23.861154286782302,23.858287013387297,23.859644490635873,23.858720152552188,23.85827286101305,23.85812231712307,23.858020356791457,23.85802545950406,23.858009393123186,23.85800283155663,23.858036180916393,23.85797695163509,23.857962339879435,23.85795696178208,23.85795498654473,23.857957469274133,23.857961764003377,23.857954303722835,23.85795490616753,23.85795391227056,23.857953804043802,23.857954255834635,23.857953733887648,23.85795372287736,23.857953798390096,23.857953731453435,23.857953732094636,23.857953722013562,23.857953729513937,23.85795372436432],"feasible_probability":0.4253366764784746,"one_hot_probability":1.0,"sampled_feasible_fraction":0.416015625,"counts":{"010101":3,"010110":123,"011001":199,"011010":3,"100101":42,"100110":18,"101001":34,"101010":90},"circuit_evaluations":93,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":45},{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":48}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.06882384201162495},"metrics":{"exact_objective":11,"optimal_count":1,"combinations":8,"optimal_probability":0.24729071671511396,"feasible_probability":0.4253366764784746,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.25,"shots_for_95_percent":11,"hit_curve":[{"shots":8,"quantum":0.8969570749629847,"uniform":0.6563910841941833},{"shots":16,"quantum":0.989382155599816,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9998872613802935,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9999999872900036,"uniform":0.9998056809433629},{"shots":128,"quantum":0.9999999999999999,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":7,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":11,"preference_cost":7,"change_cost":4,"changed_tasks":1,"max_start_shift":1,"choices":[2,0,0],"schedule":[{"task":"t0","resource":"r0","start":1,"end":2},{"task":"t1","resource":"r0","start":2,"end":3},{"task":"t2","resource":"r0","start":3,"end":4}]},"dual_bound":11.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.001244475002749823},"exact":{"status":"optimal","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false}],"bits":[0,1,1,0,1,0],"qubo_energy":11},"combinations":8,"feasible_count":2,"runtime_seconds":5.5931988754309714e-05},"greedy":{"status":"dead_end","best":null,"runtime_seconds":8.841001545079052e-06},"resources":{"full":{"depth":25,"operations":{"RX":15,"I":6,"RZ":16,"CNOT":23,"CRY":3,"X":3},"cnot":23,"cry":3},"auto":{"depth":20,"operations":{"RX":15,"I":6,"RZ":13,"CNOT":17,"CRY":3,"X":3},"cnot":17,"cry":3}},"phase_max_probability_error":1.6653345369377348e-16,"samples":[{"shots":8,"quantum_objective":15,"uniform_objective":11},{"shots":16,"quantum_objective":11,"uniform_objective":11},{"shots":32,"quantum_objective":11,"uniform_objective":11},{"shots":64,"quantum_objective":11,"uniform_objective":11},{"shots":128,"quantum_objective":11,"uniform_objective":11},{"shots":512,"quantum_objective":11,"uniform_objective":11}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[6],"max_component_qubits":6,"component_to_original":[[0,1,2,3,4,5]],"components":[{"qubits":6,"penalty":16,"objective_bound":15,"offset":48,"linear":[-12,-9,-12,-11,-16,-13],"quadratic":[[0,1,32],[0,2,16],[0,5,16],[2,3,32],[2,5,16],[3,4,16],[4,5,32]],"domains":[[0,1],[2,3],[4,5]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":2,"cost":4},{"index":1,"task":"t0","resource":"r0","start":1,"cost":7},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":3,"cost":5},{"index":4,"task":"t2","resource":"r0","start":3,"cost":0},{"index":5,"task":"t2","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]}]}]},"diagnostic_seconds":0.013021372011280619}
+{"input":{"file":"evaluation-n3-d2.json","split":"evaluation","tasks":3,"density_parameter":2,"data_seed":20260954,"sha256":"6989a69a0cf7aab50b2b8a14a3a1b148f6301c187f8985ab4fb89d53709165a2"},"model":{"qubits":6,"penalty":16,"objective_bound":15,"offset":48,"linear":[-12,-9,-12,-11,-16,-13],"quadratic":[[0,1,32],[0,2,16],[0,5,16],[2,3,32],[2,5,16],[3,4,16],[4,5,32]],"domains":[[0,1],[2,3],[4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":2,"cost":4},{"index":1,"task":"t0","resource":"r0","start":1,"cost":7},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":3,"cost":5},{"index":4,"task":"t2","resource":"r0","start":3,"cost":0},{"index":5,"task":"t2","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false}],"bits":[0,1,1,0,1,0],"qubo_energy":11},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.8196289968374644,4.451421728506865],"expected_energy":23.582126610363368,"initial_expected_energy":27.4228100150967,"history":[27.4228100150967,27.25441283288533,25.39403228486905,29.34751657565153,26.447193783442195,25.959262420735612,25.168497129204617,26.213657418637105,25.021631257770068,24.819876145320556,24.776118167127567,25.388784471369206,24.389939004688138,24.242142505966445,24.045825246336147,23.91682450054065,23.80377256092833,23.729741005675173,24.005044553700756,23.66784921904441,23.659134816086617,23.617416282769323,23.61463476200627,23.59523369713743,23.601959519738877,23.60547912803226,23.59770933591531,23.59290208859339,23.596113360833915,23.590229129699278,23.58941120437828,23.586699122638343,23.58560246882357,23.584002616745124,23.583128043707006,23.585909856909293,23.582832381689,23.58258023225899,23.582963528309236,23.58242085221012,23.582362673859905,23.582616786317434,23.582308183577922,23.582268579896066,23.582207796342665,23.58234432296994,23.582239086862916,23.582204027790045,23.58225451120825,23.58217525012532,23.582160549472366,23.58214504192815,23.582134833885878,23.582140257000013,23.582137003230496,23.582137081436123,23.582134750687196,23.58213364390131,23.58213177998337,23.58213211851536,27.68305699456231,27.81275913952003,27.103603943060005,25.824215846039905,24.48466105452622,26.898599524444503,24.37640955797272,28.099453727170562,26.77876767335355,25.195213508126592,24.585943079997442,25.35466715357836,23.933812427547956,23.754686142787868,23.66093312053932,23.844335076027974,23.64986701762059,23.628965663267515,23.599697439812836,23.587039276071184,23.610175084260405,23.603459643105502,23.584806463807144,23.584023129215392,23.58762681874271,23.583316286548012,23.582972818575847,23.582611077676553,23.58235546368728,23.58266689910268,23.582327087448597,23.582283002400185,23.582213325069002,23.582146509754686,23.58250511293076,23.582132675634984,23.582173492997043,23.582147683344413,23.58212883482308,23.58212858050979,23.58213207761799,23.58212870656743,23.582127497667003,23.58212713656215,23.58212751561031,23.582127018663122,23.582127823735494,23.582126844854983,23.582126770036908,23.58212668628351,23.582126633265197,23.582126638319366,23.582126639226303,23.582126644694675,23.582126641918677,23.582126619959052,23.582126610363368,23.58212661909383],"feasible_probability":0.28385595827653864,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.29296875,"counts":{"010101":56,"010110":27,"011001":196,"011010":8,"100101":13,"100110":89,"101010":123},"circuit_evaluations":118,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":58}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09146997799689416},"metrics":{"exact_objective":11,"optimal_count":1,"combinations":8,"optimal_probability":0.05419523134910682,"feasible_probability":0.28385595827653864,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.25,"shots_for_95_percent":54,"hit_curve":[{"shots":8,"quantum":0.35965799010010013,"uniform":0.6563910841941833},{"shots":16,"quantum":0.5899621103573566,"uniform":0.8819329129787512},{"shots":32,"quantum":0.8318689290574074,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9717319429836969,"uniform":0.9998056809433629},{"shots":128,"quantum":0.999200916952523,"uniform":0.9999999622401042},{"shots":512,"quantum":0.9999999999995923,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":7,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":11,"preference_cost":7,"change_cost":4,"changed_tasks":1,"max_start_shift":1,"choices":[2,0,0],"schedule":[{"task":"t0","resource":"r0","start":1,"end":2},{"task":"t1","resource":"r0","start":2,"end":3},{"task":"t2","resource":"r0","start":3,"end":4}]},"dual_bound":11.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.001244475002749823},"exact":{"status":"optimal","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false}],"bits":[0,1,1,0,1,0],"qubo_energy":11},"combinations":8,"feasible_count":2,"runtime_seconds":5.5931988754309714e-05},"greedy":{"status":"dead_end","best":null,"runtime_seconds":8.841001545079052e-06},"resources":{"full":{"depth":25,"operations":{"RX":15,"I":6,"RZ":16,"CNOT":23,"CRY":3,"X":3},"cnot":23,"cry":3},"auto":{"depth":20,"operations":{"RX":15,"I":6,"RZ":13,"CNOT":17,"CRY":3,"X":3},"cnot":17,"cry":3}},"phase_max_probability_error":1.1102230246251565e-16,"samples":[{"shots":8,"quantum_objective":15,"uniform_objective":15},{"shots":16,"quantum_objective":11,"uniform_objective":11},{"shots":32,"quantum_objective":11,"uniform_objective":11},{"shots":64,"quantum_objective":11,"uniform_objective":11},{"shots":128,"quantum_objective":11,"uniform_objective":11},{"shots":512,"quantum_objective":11,"uniform_objective":11}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[6],"max_component_qubits":6,"component_to_original":[[0,1,2,3,4,5]],"components":[{"qubits":6,"penalty":16,"objective_bound":15,"offset":48,"linear":[-12,-9,-12,-11,-16,-13],"quadratic":[[0,1,32],[0,2,16],[0,5,16],[2,3,32],[2,5,16],[3,4,16],[4,5,32]],"domains":[[0,1],[2,3],[4,5]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":2,"cost":4},{"index":1,"task":"t0","resource":"r0","start":1,"cost":7},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":3,"cost":5},{"index":4,"task":"t2","resource":"r0","start":3,"cost":0},{"index":5,"task":"t2","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]}]}]},"diagnostic_seconds":0.012930832002894022}
+{"input":{"file":"evaluation-n3-d2.json","split":"evaluation","tasks":3,"density_parameter":2,"data_seed":20260954,"sha256":"6989a69a0cf7aab50b2b8a14a3a1b148f6301c187f8985ab4fb89d53709165a2"},"model":{"qubits":6,"penalty":16,"objective_bound":15,"offset":48,"linear":[-12,-9,-12,-11,-16,-13],"quadratic":[[0,1,32],[0,2,16],[0,5,16],[2,3,32],[2,5,16],[3,4,16],[4,5,32]],"domains":[[0,1],[2,3],[4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":2,"cost":4},{"index":1,"task":"t0","resource":"r0","start":1,"cost":7},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":3,"cost":5},{"index":4,"task":"t2","resource":"r0","start":3,"cost":0},{"index":5,"task":"t2","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false}],"bits":[0,1,1,0,1,0],"qubo_energy":11},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9337872653687495,2.9546553893909993],"expected_energy":19.142111774764395,"initial_expected_energy":27.834905896335428,"history":[27.834905896335428,27.665334385551684,26.2411984087367,31.991433361175677,28.62925702788978,27.15092689633138,25.18276775676121,26.322229599142673,25.378570524595357,25.19959253930222,24.89632655389882,24.846936677120507,25.695824068680125,24.26489518274749,23.98831229297339,23.535023792811664,22.634915474615674,21.049335783490537,26.710974244288614,28.43560512702038,21.275829252983186,21.598657762899236,21.59454934747213,20.963025169226952,21.27850804471511,20.824343217657056,20.729038634787123,20.647935911085668,20.697419035919822,20.58563002546653,20.58539262742884,20.63755855450593,20.591146796508237,20.537994598975395,20.46544372467343,20.521407112323608,20.40507044860611,20.36681202304504,20.41052463367543,20.327816782381213,20.29264003729892,20.229072853655907,20.105502597324538,19.935835064286614,19.779681597142897,19.64022699864743,20.406095748298327,19.58526954694754,19.52739757997756,19.503929226819622,20.58151386060166,19.365292962224757,19.24087160253241,19.2704814059923,19.273966524430882,19.239050765057666,19.26304627562311,19.220641395041312,19.192871596467768,19.142111774764395,28.37469012811006,32.05705678622101,27.21177530544216,28.824117012592524,26.333030093800474,32.00850588547196,30.447582386973625,27.821751938713884,26.31635170053958,26.150344109584438,26.451224448972734,26.09512894642511,26.065881288344208,26.040053244442433,25.996811142215794,25.907748174775797,25.774756196527083,29.32282908233634,27.380240330600017,25.75215313407774,26.18797903042768,25.827319964020596,25.786090342812038,25.749507979451522,25.748943349972883,25.74464569514995,25.73668589497156,25.724591716441605,25.99793818161133,25.760545685481517,25.72273360884293,25.758073172416967,25.71743473904644,25.718886748701713,25.71665168736331,25.71871295864014,25.716187458718302,25.715459919805603,25.714732470834207,25.714209021290497,25.71245624062953,25.711310470440758,25.709799158293507,25.707109202842215,25.702024479611048,25.69579895725905,25.71641768724026,25.7269853991245,25.694774386679267,25.6925165780033,25.69537705267096,25.694061610683328,25.692772655566152,25.691937657115513,25.6919778250897,25.69177149223757,25.69162181767816,25.691374904796113,25.691363480655994,25.6923385577372],"feasible_probability":0.6086089253670168,"one_hot_probability":1.0,"sampled_feasible_fraction":0.59765625,"counts":{"010101":26,"010110":156,"011001":79,"011010":48,"100101":16,"100110":5,"101001":32,"101010":150},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08892984199337661},"metrics":{"exact_objective":11,"optimal_count":1,"combinations":8,"optimal_probability":0.31783436009462646,"feasible_probability":0.6086089253670168,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.25,"shots_for_95_percent":8,"hit_curve":[{"shots":8,"quantum":0.9531058439105246,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9978009381246559,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999951641268684,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9999999999766144,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":7,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":11,"preference_cost":7,"change_cost":4,"changed_tasks":1,"max_start_shift":1,"choices":[2,0,0],"schedule":[{"task":"t0","resource":"r0","start":1,"end":2},{"task":"t1","resource":"r0","start":2,"end":3},{"task":"t2","resource":"r0","start":3,"end":4}]},"dual_bound":11.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.001244475002749823},"exact":{"status":"optimal","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false}],"bits":[0,1,1,0,1,0],"qubo_energy":11},"combinations":8,"feasible_count":2,"runtime_seconds":5.5931988754309714e-05},"greedy":{"status":"dead_end","best":null,"runtime_seconds":8.841001545079052e-06},"resources":{"full":{"depth":25,"operations":{"RX":15,"I":6,"RZ":16,"CNOT":23,"CRY":3,"X":3},"cnot":23,"cry":3},"auto":{"depth":20,"operations":{"RX":15,"I":6,"RZ":13,"CNOT":17,"CRY":3,"X":3},"cnot":17,"cry":3}},"phase_max_probability_error":5.551115123125783e-17,"samples":[{"shots":8,"quantum_objective":11,"uniform_objective":15},{"shots":16,"quantum_objective":11,"uniform_objective":11},{"shots":32,"quantum_objective":11,"uniform_objective":11},{"shots":64,"quantum_objective":11,"uniform_objective":11},{"shots":128,"quantum_objective":11,"uniform_objective":11},{"shots":512,"quantum_objective":11,"uniform_objective":11}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[6],"max_component_qubits":6,"component_to_original":[[0,1,2,3,4,5]],"components":[{"qubits":6,"penalty":16,"objective_bound":15,"offset":48,"linear":[-12,-9,-12,-11,-16,-13],"quadratic":[[0,1,32],[0,2,16],[0,5,16],[2,3,32],[2,5,16],[3,4,16],[4,5,32]],"domains":[[0,1],[2,3],[4,5]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":2,"cost":4},{"index":1,"task":"t0","resource":"r0","start":1,"cost":7},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":3,"cost":5},{"index":4,"task":"t2","resource":"r0","start":3,"cost":0},{"index":5,"task":"t2","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]}]}]},"diagnostic_seconds":0.012914302991703153}
+{"input":{"file":"evaluation-n3-d2.json","split":"evaluation","tasks":3,"density_parameter":2,"data_seed":20260954,"sha256":"6989a69a0cf7aab50b2b8a14a3a1b148f6301c187f8985ab4fb89d53709165a2"},"model":{"qubits":6,"penalty":16,"objective_bound":15,"offset":48,"linear":[-12,-9,-12,-11,-16,-13],"quadratic":[[0,1,32],[0,2,16],[0,5,16],[2,3,32],[2,5,16],[3,4,16],[4,5,32]],"domains":[[0,1],[2,3],[4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":2,"cost":4},{"index":1,"task":"t0","resource":"r0","start":1,"cost":7},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":3,"cost":5},{"index":4,"task":"t2","resource":"r0","start":3,"cost":0},{"index":5,"task":"t2","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false}],"bits":[0,1,1,0,1,0],"qubo_energy":11},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.5565605447510658,0.3267841008479835],"expected_energy":23.85795372235167,"initial_expected_energy":26.66291648570642,"history":[26.66291648570642,26.554422518589753,26.99887158871961,28.00821591397699,27.762985837624583,26.001883436732992,26.84999027683149,26.157312122020414,26.382631052231673,25.884118851044278,25.68045023547233,25.15040685401344,24.35201057571792,25.163143637905872,26.32249328968011,24.007722814327806,24.05166375472393,24.096273420044895,23.96174019308166,24.266128414322356,23.871265124985023,23.93135056168444,23.916549776801677,23.87263917871277,23.862275813115517,23.860189099645062,23.859169749714052,23.85939713920519,23.860713761919158,23.857956350787006,23.85918521880143,23.858142659985567,23.85796544788571,23.858000374409038,23.857966134158662,23.857965850846643,23.85795606531187,23.85795865410799,23.857956348871593,23.85795500036806,23.857954427699767,23.857954820044515,23.857954060405927,23.85795381918652,23.857953912917935,23.85795380446549,23.85795386968723,23.857953804984316,23.85795377830852,23.857953749846786,23.857953780230886,23.857953738449737,23.85795373337768,23.85795372599084,23.85795372235167,23.857953727961018,24.49126856530121,28.178168282167164,27.500981271338993,27.792010240395545,26.68813124514578,24.426002649291704,24.054821984309154,23.882438939119197,23.874172664957026,24.042139518155107,23.863695537236417,23.896071699473325,23.864961634596504,23.86744003840215,23.864256414610274,23.861067795190813,23.8593019613672,23.859264642787274,23.858068826419583,23.858255660396733,23.858387918318122,23.858138703432438,23.858043130792,23.85798042859105,23.85798158207679,23.858019555872623,23.857986082549655,23.857962550609855,23.857960211152943,23.857984245978102,23.857955100410997,23.857953761381232,23.85795482542298,23.85795488738533,23.857953804605703,23.857953769087278,23.857953877582442,23.857953743972452,23.857953746903295,23.857953753496695,23.857953730578288,23.85795372400023,23.857953723851082,23.85795372943582,23.857953727651058],"feasible_probability":0.4253419314334759,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.392578125,"counts":{"010101":4,"010110":123,"011001":180,"011010":5,"100101":55,"100110":17,"101001":50,"101010":78},"circuit_evaluations":101,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":56},{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":45}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07662301701202523},"metrics":{"exact_objective":11,"optimal_count":1,"combinations":8,"optimal_probability":0.24729302793777916,"feasible_probability":0.4253419314334759,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.25,"shots_for_95_percent":11,"hit_curve":[{"shots":8,"quantum":0.8969596061137459,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9893826772277656,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9998872724571501,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9999999872925011,"uniform":0.9998056809433629},{"shots":128,"quantum":0.9999999999999999,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":7,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":11,"preference_cost":7,"change_cost":4,"changed_tasks":1,"max_start_shift":1,"choices":[2,0,0],"schedule":[{"task":"t0","resource":"r0","start":1,"end":2},{"task":"t1","resource":"r0","start":2,"end":3},{"task":"t2","resource":"r0","start":3,"end":4}]},"dual_bound":11.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.001244475002749823},"exact":{"status":"optimal","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false}],"bits":[0,1,1,0,1,0],"qubo_energy":11},"combinations":8,"feasible_count":2,"runtime_seconds":5.5931988754309714e-05},"greedy":{"status":"dead_end","best":null,"runtime_seconds":8.841001545079052e-06},"resources":{"full":{"depth":25,"operations":{"RX":15,"I":6,"RZ":16,"CNOT":23,"CRY":3,"X":3},"cnot":23,"cry":3},"auto":{"depth":20,"operations":{"RX":15,"I":6,"RZ":13,"CNOT":17,"CRY":3,"X":3},"cnot":17,"cry":3}},"phase_max_probability_error":5.551115123125783e-17,"samples":[{"shots":8,"quantum_objective":11,"uniform_objective":11},{"shots":16,"quantum_objective":11,"uniform_objective":11},{"shots":32,"quantum_objective":11,"uniform_objective":11},{"shots":64,"quantum_objective":11,"uniform_objective":11},{"shots":128,"quantum_objective":11,"uniform_objective":11},{"shots":512,"quantum_objective":11,"uniform_objective":11}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[6],"max_component_qubits":6,"component_to_original":[[0,1,2,3,4,5]],"components":[{"qubits":6,"penalty":16,"objective_bound":15,"offset":48,"linear":[-12,-9,-12,-11,-16,-13],"quadratic":[[0,1,32],[0,2,16],[0,5,16],[2,3,32],[2,5,16],[3,4,16],[4,5,32]],"domains":[[0,1],[2,3],[4,5]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":2,"cost":4},{"index":1,"task":"t0","resource":"r0","start":1,"cost":7},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":3,"cost":5},{"index":4,"task":"t2","resource":"r0","start":3,"cost":0},{"index":5,"task":"t2","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]}]}]},"diagnostic_seconds":0.013276357989525422}
+{"input":{"file":"evaluation-n3-d2.json","split":"evaluation","tasks":3,"density_parameter":2,"data_seed":20260954,"sha256":"6989a69a0cf7aab50b2b8a14a3a1b148f6301c187f8985ab4fb89d53709165a2"},"model":{"qubits":6,"penalty":16,"objective_bound":15,"offset":48,"linear":[-12,-9,-12,-11,-16,-13],"quadratic":[[0,1,32],[0,2,16],[0,5,16],[2,3,32],[2,5,16],[3,4,16],[4,5,32]],"domains":[[0,1],[2,3],[4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":2,"cost":4},{"index":1,"task":"t0","resource":"r0","start":1,"cost":7},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":3,"cost":5},{"index":4,"task":"t2","resource":"r0","start":3,"cost":0},{"index":5,"task":"t2","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false}],"bits":[0,1,1,0,1,0],"qubo_energy":11},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.556546288251996,3.4683792840520726],"expected_energy":23.857953722758616,"initial_expected_energy":25.075567482325773,"history":[25.075567482325773,26.95137085993412,27.027532449577716,27.709442317969874,24.37324996062359,26.15871945638152,24.369314449319482,25.735623837588776,24.17518926153705,23.925900335023194,23.877096779528323,23.86760473528673,23.966032654011308,23.901458023287354,23.873792800916746,23.869817778023975,23.864375669723884,23.86266307354547,23.86617993099844,23.860110989346033,23.858938896587958,23.861145480806634,23.858419739920905,23.858113082718965,23.858079879681767,23.857976185604,23.8579582872846,23.858013248898285,23.85796447343167,23.857955146272435,23.85795825570175,23.85796134443526,23.857955051004648,23.857956291331284,23.857954289396865,23.857954022245494,23.85795441597318,23.857953813201952,23.857954005032987,23.85795377467722,23.857953896051914,23.85795374590829,23.857953732584484,23.85795376160987,23.85795372524758,23.85795372291544,23.857953731859908,28.84394673340311,27.344786926170578,26.46299491311823,24.53402538965053,27.61348055907898,27.280691563394598,28.23774486801576,25.836301249075227,25.273460655091775,24.536787768584247,24.293142937234933,23.95795995546569,24.188466538312817,23.9656315877462,24.010932354985044,23.97076262981082,23.93019831815123,23.89949634560184,23.872211307960818,23.858698840162795,23.88745181231299,23.862706118261745,23.858572515551657,23.861409587489305,23.85811764113064,23.859348903894393,23.858531718539194,23.85821404586118,23.857979115076482,23.858010904673275,23.857962927207918,23.857964672204634,23.857957566473388,23.8579786552476,23.85795985088225,23.85795647740931,23.857954965908995,23.85795411519658,23.85795448609376,23.85795404254713,23.857954722641978,23.85795377182513,23.857953799472774,23.857953797826973,23.85795378815049,23.857953761674256,23.85795380057366,23.8579537463417,23.85795373530641,23.857953727049072,23.857953725439792,23.857953724410436,23.857953730103944,23.857953722758616,23.857953731546907],"feasible_probability":0.4253408576113461,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.416015625,"counts":{"010110":121,"011001":194,"011010":1,"100101":48,"100110":20,"101001":36,"101010":92},"circuit_evaluations":102,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":47},{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":55}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07645209999463987},"metrics":{"exact_objective":11,"optimal_count":1,"combinations":8,"optimal_probability":0.24729162717063713,"feasible_probability":0.4253408576113461,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.25,"shots_for_95_percent":11,"hit_curve":[{"shots":8,"quantum":0.8969580720608565,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9893823610865844,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9998872657439043,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9999999872909875,"uniform":0.9998056809433629},{"shots":128,"quantum":0.9999999999999999,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":7,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":11,"preference_cost":7,"change_cost":4,"changed_tasks":1,"max_start_shift":1,"choices":[2,0,0],"schedule":[{"task":"t0","resource":"r0","start":1,"end":2},{"task":"t1","resource":"r0","start":2,"end":3},{"task":"t2","resource":"r0","start":3,"end":4}]},"dual_bound":11.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.001244475002749823},"exact":{"status":"optimal","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false}],"bits":[0,1,1,0,1,0],"qubo_energy":11},"combinations":8,"feasible_count":2,"runtime_seconds":5.5931988754309714e-05},"greedy":{"status":"dead_end","best":null,"runtime_seconds":8.841001545079052e-06},"resources":{"full":{"depth":25,"operations":{"RX":15,"I":6,"RZ":16,"CNOT":23,"CRY":3,"X":3},"cnot":23,"cry":3},"auto":{"depth":20,"operations":{"RX":15,"I":6,"RZ":13,"CNOT":17,"CRY":3,"X":3},"cnot":17,"cry":3}},"phase_max_probability_error":1.1102230246251565e-16,"samples":[{"shots":8,"quantum_objective":11,"uniform_objective":null},{"shots":16,"quantum_objective":11,"uniform_objective":11},{"shots":32,"quantum_objective":11,"uniform_objective":11},{"shots":64,"quantum_objective":11,"uniform_objective":11},{"shots":128,"quantum_objective":11,"uniform_objective":11},{"shots":512,"quantum_objective":11,"uniform_objective":11}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[6],"max_component_qubits":6,"component_to_original":[[0,1,2,3,4,5]],"components":[{"qubits":6,"penalty":16,"objective_bound":15,"offset":48,"linear":[-12,-9,-12,-11,-16,-13],"quadratic":[[0,1,32],[0,2,16],[0,5,16],[2,3,32],[2,5,16],[3,4,16],[4,5,32]],"domains":[[0,1],[2,3],[4,5]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":2,"cost":4},{"index":1,"task":"t0","resource":"r0","start":1,"cost":7},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":3,"cost":5},{"index":4,"task":"t2","resource":"r0","start":3,"cost":0},{"index":5,"task":"t2","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]}]}]},"diagnostic_seconds":0.013173329993151128}
+{"input":{"file":"evaluation-n3-d2.json","split":"evaluation","tasks":3,"density_parameter":2,"data_seed":20260954,"sha256":"6989a69a0cf7aab50b2b8a14a3a1b148f6301c187f8985ab4fb89d53709165a2"},"model":{"qubits":6,"penalty":16,"objective_bound":15,"offset":48,"linear":[-12,-9,-12,-11,-16,-13],"quadratic":[[0,1,32],[0,2,16],[0,5,16],[2,3,32],[2,5,16],[3,4,16],[4,5,32]],"domains":[[0,1],[2,3],[4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":2,"cost":4},{"index":1,"task":"t0","resource":"r0","start":1,"cost":7},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":3,"cost":5},{"index":4,"task":"t2","resource":"r0","start":3,"cost":0},{"index":5,"task":"t2","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false}],"bits":[0,1,1,0,1,0],"qubo_energy":11},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.8040984247813167,1.3815987026393954],"expected_energy":18.989652676416014,"initial_expected_energy":30.71151293071936,"history":[30.71151293071936,27.794179539971687,27.7561316853296,28.31395925106297,26.496086678518004,23.31555279057111,20.943060630644332,27.93231478637685,29.331916553120585,22.6316295976116,26.457164679312918,21.12348209745117,19.931253538990987,19.643551199189098,25.5683455572426,19.598602268553314,19.122677465159384,19.793644780021076,19.067576554536707,19.13355942957527,19.064269811087122,19.05504905478737,19.050113815790176,19.06480697801443,19.0452265318381,19.041139811467218,19.033592029785325,19.029659377551997,19.01569171280389,19.027400043897174,19.013290327191157,19.024926884596077,19.01334879435353,19.010420095814595,19.00961744503361,19.013764628961745,19.00883936371182,19.007465972331424,19.00509643906252,19.00098477428125,18.994566426976128,19.041595070482018,19.023341498539985,18.99764469281007,18.99413476628694,18.996893290060513,18.99377080357481,18.993232412095473,18.992909982339818,18.99397192126189,18.992764487242894,18.99249970887294,18.992069993910775,18.991276556381045,18.99124943356955,18.98981080288663,18.991738105414733,18.99085620216209,18.989652676416014,18.98975780903267,37.77056181252748,29.512192730349255,28.480723994798712,27.14174709583,27.460676900052732,27.41707745596792,27.322158049035366,26.850870612398694,27.80758485994501,27.064541826994503,26.867775347113668,26.82282124804116,26.898541065284327,26.8129115979102,26.809328199092416,26.837253264159283,26.805853499893132,26.808286922358093,26.80615689048653,26.80633053481722,26.80569381806089,26.8060644872093,26.805536892481463,26.805717107533724,26.805518904136857,26.805524439798496,26.805522332467092,26.805507205354985,26.805495514038427,26.805513295449142,26.805487427354397,26.80549477318092,26.805482862018295,26.805487518506798,26.80548242337249,26.805481489078556,26.80548031518247,26.80547990487345,26.805480849641768,26.805480501949603,26.805479869267103,26.80547988993522,26.805479872730267,26.805479903189337,26.805479867630734,26.805479855136454,26.805479847601447,26.805479849018013,26.80547984325926,26.80547984112357,26.805479839182777,26.80547983798448,26.805479839373138],"feasible_probability":0.577804709352304,"one_hot_probability":1.0,"sampled_feasible_fraction":0.61328125,"counts":{"010101":39,"010110":166,"011001":63,"011010":36,"100101":10,"100110":16,"101001":34,"101010":148},"circuit_evaluations":113,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":53}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08401714700448792},"metrics":{"exact_objective":11,"optimal_count":1,"combinations":8,"optimal_probability":0.3032496871284798,"feasible_probability":0.577804709352304,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.25,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.944458528809484,"uniform":0.6563910841941833},{"shots":16,"quantum":0.996915144977993,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999904836694932,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9999999999094394,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":7,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":11,"preference_cost":7,"change_cost":4,"changed_tasks":1,"max_start_shift":1,"choices":[2,0,0],"schedule":[{"task":"t0","resource":"r0","start":1,"end":2},{"task":"t1","resource":"r0","start":2,"end":3},{"task":"t2","resource":"r0","start":3,"end":4}]},"dual_bound":11.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.001244475002749823},"exact":{"status":"optimal","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false}],"bits":[0,1,1,0,1,0],"qubo_energy":11},"combinations":8,"feasible_count":2,"runtime_seconds":5.5931988754309714e-05},"greedy":{"status":"dead_end","best":null,"runtime_seconds":8.841001545079052e-06},"resources":{"full":{"depth":25,"operations":{"RX":15,"I":6,"RZ":16,"CNOT":23,"CRY":3,"X":3},"cnot":23,"cry":3},"auto":{"depth":20,"operations":{"RX":15,"I":6,"RZ":13,"CNOT":17,"CRY":3,"X":3},"cnot":17,"cry":3}},"phase_max_probability_error":1.3877787807814457e-16,"samples":[{"shots":8,"quantum_objective":11,"uniform_objective":15},{"shots":16,"quantum_objective":11,"uniform_objective":11},{"shots":32,"quantum_objective":11,"uniform_objective":11},{"shots":64,"quantum_objective":11,"uniform_objective":11},{"shots":128,"quantum_objective":11,"uniform_objective":11},{"shots":512,"quantum_objective":11,"uniform_objective":11}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[6],"max_component_qubits":6,"component_to_original":[[0,1,2,3,4,5]],"components":[{"qubits":6,"penalty":16,"objective_bound":15,"offset":48,"linear":[-12,-9,-12,-11,-16,-13],"quadratic":[[0,1,32],[0,2,16],[0,5,16],[2,3,32],[2,5,16],[3,4,16],[4,5,32]],"domains":[[0,1],[2,3],[4,5]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":2,"cost":4},{"index":1,"task":"t0","resource":"r0","start":1,"cost":7},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":3,"cost":5},{"index":4,"task":"t2","resource":"r0","start":3,"cost":0},{"index":5,"task":"t2","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]}]}]},"diagnostic_seconds":0.012833720000344329}
+{"input":{"file":"evaluation-n3-d2.json","split":"evaluation","tasks":3,"density_parameter":2,"data_seed":20260954,"sha256":"6989a69a0cf7aab50b2b8a14a3a1b148f6301c187f8985ab4fb89d53709165a2"},"model":{"qubits":6,"penalty":16,"objective_bound":15,"offset":48,"linear":[-12,-9,-12,-11,-16,-13],"quadratic":[[0,1,32],[0,2,16],[0,5,16],[2,3,32],[2,5,16],[3,4,16],[4,5,32]],"domains":[[0,1],[2,3],[4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":2,"cost":4},{"index":1,"task":"t0","resource":"r0","start":1,"cost":7},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":3,"cost":5},{"index":4,"task":"t2","resource":"r0","start":3,"cost":0},{"index":5,"task":"t2","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false}],"bits":[0,1,1,0,1,0],"qubo_energy":11},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.8076177059718601,1.381793231721299],"expected_energy":18.988838547728935,"initial_expected_energy":19.20012019139225,"history":[19.20012019139225,21.428347277408136,41.33861312817162,31.633417526260626,34.47778655149236,21.162866718292463,19.237957729493665,20.563913835660323,19.11471331073246,19.977857105956538,19.109532975938148,19.28336030907976,19.10646613014292,19.058432287420594,19.02283751734331,18.994422014319422,18.995301216950004,18.993005028814387,18.995024706949472,18.996486148190563,18.993783727252058,18.99445066109648,18.993556969523326,18.992389956881386,18.992853074994624,18.99228867831755,18.992100738892503,18.991891662568264,18.991506932238224,18.99136320931887,18.99042746792163,18.990671981733314,18.990327805888462,18.990953579993356,18.99026395836492,18.99008186720065,18.989950817794547,18.99003926750408,18.989880233608524,18.989826697479543,18.989856953420855,18.989760384843372,18.98970950824473,18.989689993328227,18.98991224082691,18.989692769210404,18.989604163160067,18.989487564047046,18.98956708666416,18.989426139677168,18.989382317166683,18.98940251928886,18.98936607396771,18.98933608132296,18.989287112655965,18.9892758144525,18.989133520580666,18.98903022625491,18.988838547728935,18.988880391836634,27.505798424612664,27.67241492294958,27.88346100641465,23.902178699008115,27.140773039597256,26.785007516299732,25.951518343469992,23.94074767260118,24.8639769394218,23.88825231393489,24.02114389039697,23.88682346955895,23.924505145473546,23.886487469281047,23.87588823432305,23.862246933321348,23.860992183694187,23.86001390505796,23.86214308752292,23.85861637087004,23.858005254921224,23.859297075294066,23.85814891514007,23.85804111705204,23.85802270314743,23.85799025796671,23.858011705668773,23.857970700261138,23.85796112111208,23.857956225304015,23.85795460991745,23.857969162868358,23.857955972876063,23.85795627112803,23.857954627587524,23.857954159611896,23.857954087069558,23.857954668150843,23.857953799869954,23.857953730923576,23.857953841893753,23.857954075715938,23.857953738496715,23.857953755863065,23.85795373710088,23.85795372244295,23.85795372229547,23.85795372756959],"feasible_probability":0.5787273672567317,"one_hot_probability":1.0,"sampled_feasible_fraction":0.533203125,"counts":{"010101":42,"010110":130,"011001":96,"011010":36,"100101":10,"100110":12,"101001":43,"101010":143},"circuit_evaluations":108,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":48}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08025632999488153},"metrics":{"exact_objective":11,"optimal_count":1,"combinations":8,"optimal_probability":0.30369608967564926,"feasible_probability":0.5787273672567317,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.25,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.944742571188893,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9969466165611854,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999906768495755,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9999999999130789,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":7,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":11,"preference_cost":7,"change_cost":4,"changed_tasks":1,"max_start_shift":1,"choices":[2,0,0],"schedule":[{"task":"t0","resource":"r0","start":1,"end":2},{"task":"t1","resource":"r0","start":2,"end":3},{"task":"t2","resource":"r0","start":3,"end":4}]},"dual_bound":11.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.001244475002749823},"exact":{"status":"optimal","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false}],"bits":[0,1,1,0,1,0],"qubo_energy":11},"combinations":8,"feasible_count":2,"runtime_seconds":5.5931988754309714e-05},"greedy":{"status":"dead_end","best":null,"runtime_seconds":8.841001545079052e-06},"resources":{"full":{"depth":25,"operations":{"RX":15,"I":6,"RZ":16,"CNOT":23,"CRY":3,"X":3},"cnot":23,"cry":3},"auto":{"depth":20,"operations":{"RX":15,"I":6,"RZ":13,"CNOT":17,"CRY":3,"X":3},"cnot":17,"cry":3}},"phase_max_probability_error":2.220446049250313e-16,"samples":[{"shots":8,"quantum_objective":11,"uniform_objective":11},{"shots":16,"quantum_objective":11,"uniform_objective":11},{"shots":32,"quantum_objective":11,"uniform_objective":11},{"shots":64,"quantum_objective":11,"uniform_objective":11},{"shots":128,"quantum_objective":11,"uniform_objective":11},{"shots":512,"quantum_objective":11,"uniform_objective":11}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[6],"max_component_qubits":6,"component_to_original":[[0,1,2,3,4,5]],"components":[{"qubits":6,"penalty":16,"objective_bound":15,"offset":48,"linear":[-12,-9,-12,-11,-16,-13],"quadratic":[[0,1,32],[0,2,16],[0,5,16],[2,3,32],[2,5,16],[3,4,16],[4,5,32]],"domains":[[0,1],[2,3],[4,5]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":2,"cost":4},{"index":1,"task":"t0","resource":"r0","start":1,"cost":7},{"index":2,"task":"t1","resource":"r0","start":2,"cost":4},{"index":3,"task":"t1","resource":"r0","start":3,"cost":5},{"index":4,"task":"t2","resource":"r0","start":3,"cost":0},{"index":5,"task":"t2","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]}]}]},"diagnostic_seconds":0.012828537001041695}
+{"input":{"file":"evaluation-n5-d0.json","split":"evaluation","tasks":5,"density_parameter":0,"data_seed":20260972,"sha256":"16fb5b30481f7cb6e26893257198d60694a6b3601222700345682b477446f36c"},"model":{"qubits":10,"penalty":31,"objective_bound":30,"offset":155,"linear":[-24,-28,-29,-27,-27,-25,-29,-25,-28,-24],"quadratic":[[0,1,62],[0,2,31],[1,5,31],[2,3,62],[3,6,31],[4,5,62],[6,7,62],[7,8,31],[8,9,62]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r2","start":5,"cost":7},{"index":1,"task":"t0","resource":"r0","start":4,"cost":3},{"index":2,"task":"t1","resource":"r0","start":5,"cost":2},{"index":3,"task":"t1","resource":"r0","start":8,"cost":4},{"index":4,"task":"t2","resource":"r2","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":4,"cost":6},{"index":6,"task":"t3","resource":"r0","start":8,"cost":2},{"index":7,"task":"t3","resource":"r0","start":2,"cost":6},{"index":8,"task":"t4","resource":"r0","start":2,"cost":3},{"index":9,"task":"t4","resource":"r1","start":5,"cost":7}],"conflicts":[{"i":0,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":7,"j":8,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0],"qubo_energy":14},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7927359988050988,-0.22986156139383537],"expected_energy":32.41021177291615,"initial_expected_energy":55.36249756395674,"history":[55.36249756395674,50.81544068591095,55.803993715764946,58.04473499927495,57.41843389618158,50.14160425883499,51.352377100301965,50.26056855016638,49.79105177209455,50.02442133993224,49.57605043881563,49.535789627106304,49.84552282640085,49.40399290997202,49.159638736689466,48.73766488916009,47.8843072360064,46.59247668919137,65.56994015881085,56.10265614757555,47.26571172156868,46.546219655994804,48.203672441648635,46.12959908983173,46.01364839237655,45.83023338864039,45.70263933220009,45.52236852435905,45.477707704845535,45.116106240496094,45.80664769521497,45.014003145445216,44.914553987187674,45.058774113537226,44.809000979553915,44.7605447010649,44.680167692379655,44.52908875820266,44.24849201638702,44.408376756843275,45.04004815679119,44.334546642095205,44.22260517748727,44.27047780560684,44.210519815677095,44.182999583623854,44.152329589161795,44.09810337653843,44.05082384157713,44.09613045975726,44.02116138099684,44.08006209740586,43.99243785391381,43.96563210339629,43.91400038574399,43.82545306706109,43.73219223515936,43.49658974983486,44.15217572908397,43.86760803811042,58.087514518544154,55.38748688295249,56.50744842480454,52.020419149723004,65.0075324259282,47.725632602666565,57.91015390383389,65.00756261869446,51.31500914831231,46.22082786465111,43.96560186864629,44.379093577567666,43.67142964670897,42.93659212527304,43.06478795497504,42.545644577669066,42.37331555734344,42.84398815371934,42.26647406512318,42.031720825632405,41.60614940311838,41.59244753459808,40.96673464724215,40.457607762136476,39.742811617413125,38.948511198703414,37.51266944104067,41.09571499600507,39.58893200269718,38.51971164359444,37.27910119882357,37.754157833713464,37.09943262025554,36.94503126396171,36.8273376370319,36.410518121170014,36.28132523447215,35.48290770296777,36.74797375282266,36.072600769991425,35.58352372727396,35.56426873115241,35.395733592540566,35.45936495355846,35.36659526953405,35.30729670347103,35.19317747216019,34.979315340920664,34.81892971794101,34.380798857530664,34.70443770301746,34.26581997485951,34.6381043295831,34.155279588298676,34.0595110799694,33.9181889385947,33.71301507633533,33.34022667121389,32.84880306001036,32.41021177291615],"feasible_probability":0.6826006472445605,"one_hot_probability":0.9999999999999996,"sampled_feasible_fraction":0.65625,"counts":{"0101010101":5,"0101010110":71,"0101011001":26,"0101011010":2,"0101100101":23,"0101100110":1,"0101101001":23,"0101101010":9,"0110010101":2,"0110010110":7,"0110011010":8,"0110100101":4,"0110101001":1,"0110101010":1,"1001010101":1,"1001010110":63,"1001011001":5,"1001011010":7,"1001100101":17,"1001100110":6,"1001101001":8,"1010010101":7,"1010010110":48,"1010011001":57,"1010011010":51,"1010100101":2,"1010100110":6,"1010101001":46,"1010101010":5},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1199818029999733},"metrics":{"exact_objective":14,"optimal_count":1,"combinations":32,"optimal_probability":0.14888613732585426,"feasible_probability":0.6826006472445605,"uniform_optimal_probability":0.03125,"uniform_feasible_probability":0.1875,"shots_for_95_percent":19,"hit_curve":[{"shots":8,"quantum":0.7246397078255309,"uniform":0.2243001202577943},{"shots":16,"quantum":0.924176709493591,"uniform":0.3982896965679276},{"shots":32,"quantum":0.9942508286167807,"uniform":0.6379447107436834},{"shots":64,"quantum":0.9999669470284064,"uniform":0.8689159675215249},{"shots":128,"quantum":0.999999998907501,"uniform":0.9828169764291821},{"shots":512,"quantum":1.0,"uniform":0.9999999128237179}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":11,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":14,"preference_cost":11,"change_cost":3,"changed_tasks":1,"max_start_shift":4,"choices":[2,0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":4,"end":5},{"task":"t1","resource":"r0","start":5,"end":6},{"task":"t2","resource":"r2","start":3,"end":4},{"task":"t3","resource":"r0","start":8,"end":9},{"task":"t4","resource":"r0","start":2,"end":3}]},"dual_bound":14.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":9,"runtime_seconds":0.001137906001531519},"exact":{"status":"optimal","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0],"qubo_energy":14},"combinations":32,"feasible_count":6,"runtime_seconds":0.00023214900284074247},"greedy":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0],"qubo_energy":14},"runtime_seconds":2.4753011530265212e-05},"resources":{"full":{"depth":19,"operations":{"RX":25,"I":10,"RZ":24,"CNOT":33,"CRY":5,"X":5},"cnot":33,"cry":5},"auto":{"depth":13,"operations":{"RX":25,"I":10,"RZ":19,"CNOT":23,"CRY":5,"X":5},"cnot":23,"cry":5}},"phase_max_probability_error":6.245004513516506e-17,"samples":[{"shots":8,"quantum_objective":18,"uniform_objective":14},{"shots":16,"quantum_objective":14,"uniform_objective":14},{"shots":32,"quantum_objective":14,"uniform_objective":18},{"shots":64,"quantum_objective":14,"uniform_objective":14},{"shots":128,"quantum_objective":14,"uniform_objective":14},{"shots":512,"quantum_objective":14,"uniform_objective":14}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,8,9]],"components":[{"qubits":10,"penalty":31,"objective_bound":30,"offset":155,"linear":[-24,-28,-29,-27,-27,-25,-29,-25,-28,-24],"quadratic":[[0,1,62],[0,2,31],[1,5,31],[2,3,62],[3,6,31],[4,5,62],[6,7,62],[7,8,31],[8,9,62]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r2","start":5,"cost":7},{"index":1,"task":"t0","resource":"r0","start":4,"cost":3},{"index":2,"task":"t1","resource":"r0","start":5,"cost":2},{"index":3,"task":"t1","resource":"r0","start":8,"cost":4},{"index":4,"task":"t2","resource":"r2","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":4,"cost":6},{"index":6,"task":"t3","resource":"r0","start":8,"cost":2},{"index":7,"task":"t3","resource":"r0","start":2,"cost":6},{"index":8,"task":"t4","resource":"r0","start":2,"cost":3},{"index":9,"task":"t4","resource":"r1","start":5,"cost":7}],"conflicts":[{"i":0,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":7,"j":8,"reasons":["resource"]}]}]},"diagnostic_seconds":0.021225111006060615}
+{"input":{"file":"evaluation-n5-d0.json","split":"evaluation","tasks":5,"density_parameter":0,"data_seed":20260972,"sha256":"16fb5b30481f7cb6e26893257198d60694a6b3601222700345682b477446f36c"},"model":{"qubits":10,"penalty":31,"objective_bound":30,"offset":155,"linear":[-24,-28,-29,-27,-27,-25,-29,-25,-28,-24],"quadratic":[[0,1,62],[0,2,31],[1,5,31],[2,3,62],[3,6,31],[4,5,62],[6,7,62],[7,8,31],[8,9,62]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r2","start":5,"cost":7},{"index":1,"task":"t0","resource":"r0","start":4,"cost":3},{"index":2,"task":"t1","resource":"r0","start":5,"cost":2},{"index":3,"task":"t1","resource":"r0","start":8,"cost":4},{"index":4,"task":"t2","resource":"r2","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":4,"cost":6},{"index":6,"task":"t3","resource":"r0","start":8,"cost":2},{"index":7,"task":"t3","resource":"r0","start":2,"cost":6},{"index":8,"task":"t4","resource":"r0","start":2,"cost":3},{"index":9,"task":"t4","resource":"r1","start":5,"cost":7}],"conflicts":[{"i":0,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":7,"j":8,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0],"qubo_energy":14},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.6173339116665548,1.35933963871402],"expected_energy":31.842498961144823,"initial_expected_energy":45.656024208181684,"history":[45.656024208181684,48.78232559418581,58.51268260910612,60.99970828954055,53.632191752227314,45.97136756111864,54.750773689622086,44.73080179477247,44.24616823284401,45.01497354475464,44.232201422878546,46.0622997035211,43.893045361371406,43.971411490540405,43.87207566016011,43.95029046217927,43.856987769283336,43.829515685687326,43.783755998404985,43.89518429513476,43.757932777338056,43.70363065717906,43.603355293273395,43.42680434193822,43.09798414602182,45.21794637546354,45.709035080011155,43.024543004612454,43.644623082930536,43.18099573685135,43.039597272570774,43.01756898091304,43.01851587571896,43.02829130304966,43.00401062859189,43.00171627644956,43.03555128871584,42.979716767564724,42.96598044836027,42.94978921665903,42.91937202476403,42.89564257566887,42.85900077406049,42.950264686351225,42.93913229813171,42.87076325707331,42.82994513253582,42.824099373139205,42.80986399671957,42.79964649025716,42.81420759724092,42.787618670192884,42.77832744678311,42.79248880738969,42.770808077339545,42.76469362646869,42.7516614577837,42.72874228182751,42.725395074209644,42.67215621686451,61.33363044552317,58.653248092567296,47.37893498799869,54.47896977565095,44.9875009518066,51.837505812655934,46.29644128195405,46.61580042842245,44.79939859139134,43.9895884466486,43.92242310613748,46.05159841568979,42.31127957196712,41.424739808964844,39.68902403445247,36.39045946217064,32.88883420424758,70.81135850436533,51.2830116443126,35.34566415546455,32.86582603500159,35.470450061075255,32.63398664504546,34.69751661956745,32.33034614455704,32.25936076445802,32.26388729277474,32.24911362998868,32.24444340402565,32.27989930816891,32.219776389992404,32.19911104668982,32.15953907465921,32.122748110638476,32.09089266566697,32.07959248411045,32.54822568379737,31.99026726269407,31.999011627494383,31.98613850844536,31.99691912021643,32.00009625369736,31.9730876224768,31.99103576701773,31.96621905220674,31.961149840556693,31.954184376324054,31.942339705835096,31.918338396574534,31.87781686301904,32.23429396068735,32.10746540118642,31.91290921587003,31.890552193732333,31.88066202994278,31.87665902096363,31.871764532361848,31.86283759990977,31.84766167796911,31.842498961144823],"feasible_probability":0.689817871812032,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.697265625,"counts":{"0101010101":7,"0101010110":82,"0101011001":27,"0101011010":9,"0101100101":25,"0101100110":4,"0101101001":16,"0101101010":4,"0110010110":1,"0110011001":6,"0110011010":5,"0110100101":4,"0110101001":3,"1001010101":5,"1001010110":71,"1001011001":6,"1001011010":1,"1001100101":15,"1001100110":3,"1001101001":5,"1001101010":4,"1010010110":36,"1010011001":68,"1010011010":54,"1010100101":2,"1010100110":3,"1010101001":46},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1220032509882003},"metrics":{"exact_objective":14,"optimal_count":1,"combinations":32,"optimal_probability":0.15391007374171398,"feasible_probability":0.6898178718120321,"uniform_optimal_probability":0.03125,"uniform_feasible_probability":0.1875,"shots_for_95_percent":18,"hit_curve":[{"shots":8,"quantum":0.7373773409956521,"uniform":0.2243001202577943},{"shots":16,"quantum":0.931029338977486,"uniform":0.3982896965679276},{"shots":32,"quantum":0.9952430479181175,"uniform":0.6379447107436834},{"shots":64,"quantum":0.9999773714068907,"uniform":0.8689159675215249},{"shots":128,"quantum":0.9999999994879468,"uniform":0.9828169764291821},{"shots":512,"quantum":1.0,"uniform":0.9999999128237179}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":11,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":14,"preference_cost":11,"change_cost":3,"changed_tasks":1,"max_start_shift":4,"choices":[2,0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":4,"end":5},{"task":"t1","resource":"r0","start":5,"end":6},{"task":"t2","resource":"r2","start":3,"end":4},{"task":"t3","resource":"r0","start":8,"end":9},{"task":"t4","resource":"r0","start":2,"end":3}]},"dual_bound":14.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":9,"runtime_seconds":0.001137906001531519},"exact":{"status":"optimal","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0],"qubo_energy":14},"combinations":32,"feasible_count":6,"runtime_seconds":0.00023214900284074247},"greedy":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0],"qubo_energy":14},"runtime_seconds":2.4753011530265212e-05},"resources":{"full":{"depth":19,"operations":{"RX":25,"I":10,"RZ":24,"CNOT":33,"CRY":5,"X":5},"cnot":33,"cry":5},"auto":{"depth":13,"operations":{"RX":25,"I":10,"RZ":19,"CNOT":23,"CRY":5,"X":5},"cnot":23,"cry":5}},"phase_max_probability_error":6.938893903907228e-17,"samples":[{"shots":8,"quantum_objective":14,"uniform_objective":24},{"shots":16,"quantum_objective":14,"uniform_objective":14},{"shots":32,"quantum_objective":14,"uniform_objective":14},{"shots":64,"quantum_objective":14,"uniform_objective":14},{"shots":128,"quantum_objective":14,"uniform_objective":14},{"shots":512,"quantum_objective":14,"uniform_objective":14}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,8,9]],"components":[{"qubits":10,"penalty":31,"objective_bound":30,"offset":155,"linear":[-24,-28,-29,-27,-27,-25,-29,-25,-28,-24],"quadratic":[[0,1,62],[0,2,31],[1,5,31],[2,3,62],[3,6,31],[4,5,62],[6,7,62],[7,8,31],[8,9,62]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r2","start":5,"cost":7},{"index":1,"task":"t0","resource":"r0","start":4,"cost":3},{"index":2,"task":"t1","resource":"r0","start":5,"cost":2},{"index":3,"task":"t1","resource":"r0","start":8,"cost":4},{"index":4,"task":"t2","resource":"r2","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":4,"cost":6},{"index":6,"task":"t3","resource":"r0","start":8,"cost":2},{"index":7,"task":"t3","resource":"r0","start":2,"cost":6},{"index":8,"task":"t4","resource":"r0","start":2,"cost":3},{"index":9,"task":"t4","resource":"r1","start":5,"cost":7}],"conflicts":[{"i":0,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":7,"j":8,"reasons":["resource"]}]}]},"diagnostic_seconds":0.023217552006826736}
+{"input":{"file":"evaluation-n5-d0.json","split":"evaluation","tasks":5,"density_parameter":0,"data_seed":20260972,"sha256":"16fb5b30481f7cb6e26893257198d60694a6b3601222700345682b477446f36c"},"model":{"qubits":10,"penalty":31,"objective_bound":30,"offset":155,"linear":[-24,-28,-29,-27,-27,-25,-29,-25,-28,-24],"quadratic":[[0,1,62],[0,2,31],[1,5,31],[2,3,62],[3,6,31],[4,5,62],[6,7,62],[7,8,31],[8,9,62]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r2","start":5,"cost":7},{"index":1,"task":"t0","resource":"r0","start":4,"cost":3},{"index":2,"task":"t1","resource":"r0","start":5,"cost":2},{"index":3,"task":"t1","resource":"r0","start":8,"cost":4},{"index":4,"task":"t2","resource":"r2","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":4,"cost":6},{"index":6,"task":"t3","resource":"r0","start":8,"cost":2},{"index":7,"task":"t3","resource":"r0","start":2,"cost":6},{"index":8,"task":"t4","resource":"r0","start":2,"cost":3},{"index":9,"task":"t4","resource":"r1","start":5,"cost":7}],"conflicts":[{"i":0,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":7,"j":8,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0],"qubo_energy":14},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.643328877962789,2.9250130992891674],"expected_energy":31.857666205026568,"initial_expected_energy":52.430102779470175,"history":[52.430102779470175,52.82843295914116,55.66635354499126,51.47493495643111,55.184659054161926,52.36702617423269,48.546289681509506,47.07594317588236,37.51721269966211,57.517699525150746,40.604623397922246,38.69811501764714,39.83529869093283,37.24542696167429,39.18385045010781,36.759741262962635,36.420116494932266,36.10511209810113,35.86498158043728,35.242812340559084,35.64596883912834,35.09882238155363,35.65762957329073,35.01371036747483,34.87043800435376,34.63094043197823,34.83797254054501,34.55045013822025,34.27222943600856,33.766881104669984,32.97603865138744,33.07462228742823,37.46589044669585,34.00903378711439,32.903236340155104,33.32925945747169,32.88282415349778,32.81360896140996,32.75657919116678,33.442006093618126,32.629433584890826,32.616108859480946,32.525006104341486,32.443446887298805,32.30567767231892,32.491005349560204,32.48703465929485,32.3835470990216,32.32079890194914,32.2936879361611,32.271952476877395,32.25438928859297,32.279113129808394,32.23739865678165,32.22008812454275,32.218853667271745,32.18070406452895,32.159923522172775,32.146356001052595,32.17143940969611,68.17286995045879,67.66085690726288,55.94889287967474,33.51200381134602,43.2797339352163,44.77971907708189,43.47352541140866,43.75016429491938,33.73371399276016,32.99113329714663,34.14180362071835,33.26649836144125,33.061142199594556,32.95286327703218,32.89318245764187,32.86004338278176,32.93345557059694,32.83392235535376,32.82237817746775,32.873383377299476,32.782436574672154,32.752899000184286,32.69368897466235,32.63467126409434,32.53637928334817,32.571534818173674,32.65205325311216,32.53885482902545,32.50182989780069,32.48021470160731,32.45378186913187,32.42819883358007,32.37898869477196,32.28568126413298,32.14916468755935,32.214574290395944,32.4252770964469,32.18337948442108,32.12734720627291,32.105947588369816,32.168170086984794,32.08136679249061,32.07236327618536,32.053775340034704,32.022593200572175,31.96637912511073,31.948539991820294,32.187958249348455,32.39423010079422,31.956133663009854,31.87698360116717,31.912436243642297,31.88692541904764,31.88930126171575,31.874064522880623,31.870194868168813,31.867005835233137,31.88587064414553,31.860216515815942,31.857666205026568],"feasible_probability":0.6912794720883982,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.673828125,"counts":{"0101010101":4,"0101010110":81,"0101011001":32,"0101011010":6,"0101100101":13,"0101100110":5,"0101101001":25,"0101101010":1,"0110010101":2,"0110011001":6,"0110011010":3,"0110100110":1,"0110101001":2,"1001010101":2,"1001010110":60,"1001011001":7,"1001011010":4,"1001100101":19,"1001100110":10,"1001101001":4,"1001101010":3,"1010010101":6,"1010010110":47,"1010011001":66,"1010011010":44,"1010100101":5,"1010100110":7,"1010101001":47},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1287448140064953},"metrics":{"exact_objective":14,"optimal_count":1,"combinations":32,"optimal_probability":0.15375650706760255,"feasible_probability":0.6912794720883982,"uniform_optimal_probability":0.03125,"uniform_feasible_probability":0.1875,"shots_for_95_percent":18,"hit_curve":[{"shots":8,"quantum":0.7369957672054096,"uniform":0.2243001202577943},{"shots":16,"quantum":0.9308287735321289,"uniform":0.3982896965679276},{"shots":32,"quantum":0.9952153414289305,"uniform":0.6379447107436834},{"shots":64,"quantum":0.9999771070423583,"uniform":0.8689159675215249},{"shots":128,"quantum":0.9999999994759124,"uniform":0.9828169764291821},{"shots":512,"quantum":1.0,"uniform":0.9999999128237179}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":11,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":14,"preference_cost":11,"change_cost":3,"changed_tasks":1,"max_start_shift":4,"choices":[2,0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":4,"end":5},{"task":"t1","resource":"r0","start":5,"end":6},{"task":"t2","resource":"r2","start":3,"end":4},{"task":"t3","resource":"r0","start":8,"end":9},{"task":"t4","resource":"r0","start":2,"end":3}]},"dual_bound":14.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":9,"runtime_seconds":0.001137906001531519},"exact":{"status":"optimal","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0],"qubo_energy":14},"combinations":32,"feasible_count":6,"runtime_seconds":0.00023214900284074247},"greedy":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0],"qubo_energy":14},"runtime_seconds":2.4753011530265212e-05},"resources":{"full":{"depth":19,"operations":{"RX":25,"I":10,"RZ":24,"CNOT":33,"CRY":5,"X":5},"cnot":33,"cry":5},"auto":{"depth":13,"operations":{"RX":25,"I":10,"RZ":19,"CNOT":23,"CRY":5,"X":5},"cnot":23,"cry":5}},"phase_max_probability_error":2.220446049250313e-16,"samples":[{"shots":8,"quantum_objective":14,"uniform_objective":14},{"shots":16,"quantum_objective":14,"uniform_objective":18},{"shots":32,"quantum_objective":14,"uniform_objective":14},{"shots":64,"quantum_objective":14,"uniform_objective":14},{"shots":128,"quantum_objective":14,"uniform_objective":14},{"shots":512,"quantum_objective":14,"uniform_objective":14}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,8,9]],"components":[{"qubits":10,"penalty":31,"objective_bound":30,"offset":155,"linear":[-24,-28,-29,-27,-27,-25,-29,-25,-28,-24],"quadratic":[[0,1,62],[0,2,31],[1,5,31],[2,3,62],[3,6,31],[4,5,62],[6,7,62],[7,8,31],[8,9,62]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r2","start":5,"cost":7},{"index":1,"task":"t0","resource":"r0","start":4,"cost":3},{"index":2,"task":"t1","resource":"r0","start":5,"cost":2},{"index":3,"task":"t1","resource":"r0","start":8,"cost":4},{"index":4,"task":"t2","resource":"r2","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":4,"cost":6},{"index":6,"task":"t3","resource":"r0","start":8,"cost":2},{"index":7,"task":"t3","resource":"r0","start":2,"cost":6},{"index":8,"task":"t4","resource":"r0","start":2,"cost":3},{"index":9,"task":"t4","resource":"r1","start":5,"cost":7}],"conflicts":[{"i":0,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":7,"j":8,"reasons":["resource"]}]}]},"diagnostic_seconds":0.02494009298970923}
+{"input":{"file":"evaluation-n5-d0.json","split":"evaluation","tasks":5,"density_parameter":0,"data_seed":20260972,"sha256":"16fb5b30481f7cb6e26893257198d60694a6b3601222700345682b477446f36c"},"model":{"qubits":10,"penalty":31,"objective_bound":30,"offset":155,"linear":[-24,-28,-29,-27,-27,-25,-29,-25,-28,-24],"quadratic":[[0,1,62],[0,2,31],[1,5,31],[2,3,62],[3,6,31],[4,5,62],[6,7,62],[7,8,31],[8,9,62]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r2","start":5,"cost":7},{"index":1,"task":"t0","resource":"r0","start":4,"cost":3},{"index":2,"task":"t1","resource":"r0","start":5,"cost":2},{"index":3,"task":"t1","resource":"r0","start":8,"cost":4},{"index":4,"task":"t2","resource":"r2","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":4,"cost":6},{"index":6,"task":"t3","resource":"r0","start":8,"cost":2},{"index":7,"task":"t3","resource":"r0","start":2,"cost":6},{"index":8,"task":"t4","resource":"r0","start":2,"cost":3},{"index":9,"task":"t4","resource":"r1","start":5,"cost":7}],"conflicts":[{"i":0,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":7,"j":8,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0],"qubo_energy":14},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.5579282140815793,1.353018613730555],"expected_energy":31.79727013707459,"initial_expected_energy":43.783229365125365,"history":[43.783229365125365,45.59160780232435,68.78309924086068,45.124458315857595,31.851364863906458,36.342782118887314,56.30227381811627,31.98159986367959,39.647936910859805,32.81396685400529,33.42126558789967,32.0115276120722,31.855380227641007,31.99740211863426,31.83943254772624,31.83519744767233,31.848675586625802,31.83060090107819,31.840940118352027,31.82656960458399,31.826719381664624,31.827258060911003,31.825742351139652,31.824220469611802,31.82170854972658,31.81674892466797,31.811205953735545,31.830406218989804,31.836163817247435,31.810135965854865,31.80756765275006,31.809144132200558,31.80873552212421,31.807393183813872,31.80705118013032,31.806735073757395,31.80628906577563,31.80563015095773,31.805218536526127,31.804601351132362,31.80418585693487,31.803608134901623,31.803010599183615,31.801975034862874,31.79995863548329,31.798815536302698,31.81740048550305,31.804308690662392,31.800166690176326,31.799001776992714,31.802865219405327,31.797633430746004,31.79752073505105,31.79766803964065,31.797489591330468,31.797866177038962,31.797294767674835,31.79731913329598,31.79727013707459,31.797305537899124,56.12848772977456,51.37807749949336,52.252123753957235,42.613978182394135,35.28589652670562,46.447810412523026,60.18438134030675,61.212181481162716,35.30677725530386,36.52118415733241,38.530472091817295,34.15170281354939,35.22059718997905,34.22995315663957,34.16793042021942,34.21164997599962,34.150904757513075,34.15307270307049,34.157436856007436,34.14955748613474,34.149411265455704,34.14889434384262,34.14799606453206,34.14678487176729,34.15317371779792,34.15072659196738,34.146621715812,34.14674431605331,34.146754825836105,34.14647395620621,34.14643882316694,34.14668785004504,34.14636624646599,34.146313862457504,34.146225870230694,34.146053245114395,34.14640916518654,34.14623173167607,34.14602758481534,34.146238093155716,34.14597349805355,34.14594830420662,34.14590438642912,34.14586478148196,34.14578834749315,34.14564352939626,34.14548450229428,34.14600044946269,34.14630131005502,34.14545652226794,34.14537913297039,34.14545189152277,34.145414120189294,34.14537849940548,34.145367273563664,34.145359581685604,34.14537248446741,34.1453519593433,34.14534538001513,34.14533245411421],"feasible_probability":0.6903619461773606,"one_hot_probability":1.0,"sampled_feasible_fraction":0.69921875,"counts":{"0101010101":5,"0101010110":86,"0101011001":20,"0101011010":3,"0101100101":22,"0101100110":5,"0101101001":17,"0101101010":1,"0110010101":3,"0110010110":1,"0110011001":4,"0110011010":8,"0110100101":2,"0110100110":1,"0110101001":4,"1001010101":4,"1001010110":60,"1001011001":6,"1001011010":3,"1001100101":20,"1001100110":5,"1001101001":12,"1001101010":1,"1010010101":2,"1010010110":49,"1010011001":60,"1010011010":51,"1010100101":1,"1010100110":3,"1010101001":52,"1010101010":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13007842599472497},"metrics":{"exact_objective":14,"optimal_count":1,"combinations":32,"optimal_probability":0.15439933176326684,"feasible_probability":0.6903619461773607,"uniform_optimal_probability":0.03125,"uniform_feasible_probability":0.1875,"shots_for_95_percent":18,"hit_curve":[{"shots":8,"quantum":0.7385897935963526,"uniform":0.2243001202577943},{"shots":16,"quantum":0.9316647039880024,"uniform":0.3982896965679276},{"shots":32,"quantum":0.9953302873189527,"uniform":0.6379447107436834},{"shots":64,"quantum":0.9999781937834765,"uniform":0.8689159675215249},{"shots":128,"quantum":0.9999999995244889,"uniform":0.9828169764291821},{"shots":512,"quantum":1.0,"uniform":0.9999999128237179}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":11,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":14,"preference_cost":11,"change_cost":3,"changed_tasks":1,"max_start_shift":4,"choices":[2,0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":4,"end":5},{"task":"t1","resource":"r0","start":5,"end":6},{"task":"t2","resource":"r2","start":3,"end":4},{"task":"t3","resource":"r0","start":8,"end":9},{"task":"t4","resource":"r0","start":2,"end":3}]},"dual_bound":14.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":9,"runtime_seconds":0.001137906001531519},"exact":{"status":"optimal","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0],"qubo_energy":14},"combinations":32,"feasible_count":6,"runtime_seconds":0.00023214900284074247},"greedy":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0],"qubo_energy":14},"runtime_seconds":2.4753011530265212e-05},"resources":{"full":{"depth":19,"operations":{"RX":25,"I":10,"RZ":24,"CNOT":33,"CRY":5,"X":5},"cnot":33,"cry":5},"auto":{"depth":13,"operations":{"RX":25,"I":10,"RZ":19,"CNOT":23,"CRY":5,"X":5},"cnot":23,"cry":5}},"phase_max_probability_error":8.326672684688674e-17,"samples":[{"shots":8,"quantum_objective":18,"uniform_objective":14},{"shots":16,"quantum_objective":14,"uniform_objective":14},{"shots":32,"quantum_objective":14,"uniform_objective":22},{"shots":64,"quantum_objective":14,"uniform_objective":14},{"shots":128,"quantum_objective":14,"uniform_objective":14},{"shots":512,"quantum_objective":14,"uniform_objective":14}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,8,9]],"components":[{"qubits":10,"penalty":31,"objective_bound":30,"offset":155,"linear":[-24,-28,-29,-27,-27,-25,-29,-25,-28,-24],"quadratic":[[0,1,62],[0,2,31],[1,5,31],[2,3,62],[3,6,31],[4,5,62],[6,7,62],[7,8,31],[8,9,62]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r2","start":5,"cost":7},{"index":1,"task":"t0","resource":"r0","start":4,"cost":3},{"index":2,"task":"t1","resource":"r0","start":5,"cost":2},{"index":3,"task":"t1","resource":"r0","start":8,"cost":4},{"index":4,"task":"t2","resource":"r2","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":4,"cost":6},{"index":6,"task":"t3","resource":"r0","start":8,"cost":2},{"index":7,"task":"t3","resource":"r0","start":2,"cost":6},{"index":8,"task":"t4","resource":"r0","start":2,"cost":3},{"index":9,"task":"t4","resource":"r1","start":5,"cost":7}],"conflicts":[{"i":0,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":7,"j":8,"reasons":["resource"]}]}]},"diagnostic_seconds":0.023320077991229482}
+{"input":{"file":"evaluation-n5-d0.json","split":"evaluation","tasks":5,"density_parameter":0,"data_seed":20260972,"sha256":"16fb5b30481f7cb6e26893257198d60694a6b3601222700345682b477446f36c"},"model":{"qubits":10,"penalty":31,"objective_bound":30,"offset":155,"linear":[-24,-28,-29,-27,-27,-25,-29,-25,-28,-24],"quadratic":[[0,1,62],[0,2,31],[1,5,31],[2,3,62],[3,6,31],[4,5,62],[6,7,62],[7,8,31],[8,9,62]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r2","start":5,"cost":7},{"index":1,"task":"t0","resource":"r0","start":4,"cost":3},{"index":2,"task":"t1","resource":"r0","start":5,"cost":2},{"index":3,"task":"t1","resource":"r0","start":8,"cost":4},{"index":4,"task":"t2","resource":"r2","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":4,"cost":6},{"index":6,"task":"t3","resource":"r0","start":8,"cost":2},{"index":7,"task":"t3","resource":"r0","start":2,"cost":6},{"index":8,"task":"t4","resource":"r0","start":2,"cost":3},{"index":9,"task":"t4","resource":"r1","start":5,"cost":7}],"conflicts":[{"i":0,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":7,"j":8,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0],"qubo_energy":14},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7772575928557472,1.3581311580464033],"expected_energy":32.272553205877585,"initial_expected_energy":52.059428129192035,"history":[52.059428129192035,53.32316586230007,47.96561515048505,61.6554054140919,54.19824085021632,50.06484386657478,46.34120579657984,49.29969108534395,45.86306879873832,45.47649372952792,47.04801626213008,44.357603398361796,43.6598226067393,42.71707114688803,40.9500357762645,38.08094077309933,58.14296199253582,52.00439892591751,39.21048921962182,37.929026399225485,39.970103343837074,37.21581109092378,37.66057497300002,37.70905989909858,37.2325811522396,37.026237314888164,36.72410883183521,36.0646402170514,34.889069760657875,42.672024248609326,39.023737356608784,35.73716502180677,34.769799984854046,35.091859246095396,34.739755897468974,34.61459204959224,34.396834128678364,34.723277718898196,34.33275487634245,34.188481849922255,33.91355407827759,33.490059653810576,33.06543790762653,33.83580293180211,35.386499522830896,32.96051477209109,32.691120731656326,32.86328270940663,32.786840635673464,32.69454898742755,32.65981858144907,32.601995866064485,32.49051910866168,32.365438259105545,32.45249892471374,32.69343738860026,32.41586484867911,32.29640626587316,32.272553205877585,32.38184751946538,53.9051621796055,49.48254855631757,56.9415579311481,58.053818913923905,59.26497894807866,50.00775736071519,49.628979842231146,49.97978238679074,49.921585896436994,49.04690527912114,49.624598088416036,48.824916962440184,48.710337388944765,48.46018526642287,48.11428256752405,47.66465616495989,46.92106247337829,45.89572688743388,46.3847278027169,50.456398126449876,46.26205616755952,45.51217371274475,45.658877043002875,45.844181075062316,45.43583870799674,45.47181536303512,45.42069422120256,45.389388103966084,45.32306172520954,45.193823706291774,45.0368966478876,44.852823925553366,44.83774865571106,45.340743797152015,44.84252419588755,44.669500332070314,44.561169475483325,44.56377179944083,44.52161447339667,44.486998507762934,44.429740234086395,44.32712697431241,44.531159006715754,44.319861854926415,44.2395029139957,44.116391078272194,43.96168692209092,43.81454668238105,43.68754536971973,44.9194395782239,43.67654668040959,43.54762921419741,43.30055040044151,42.95199304600719,43.97645087674822,45.330141315933176,43.38445683948907,42.92656316994332,43.16475120521104,42.909309041373376],"feasible_probability":0.6832910928158356,"one_hot_probability":1.0,"sampled_feasible_fraction":0.69921875,"counts":{"0101010101":4,"0101010110":85,"0101011001":32,"0101011010":4,"0101100101":23,"0101100110":4,"0101101001":19,"0101101010":1,"0110010110":1,"0110011001":2,"0110011010":8,"0110100101":3,"0110101001":2,"1001010101":2,"1001010110":63,"1001011001":7,"1001011010":3,"1001100101":18,"1001100110":2,"1001101001":6,"1010010101":1,"1010010110":37,"1010011001":58,"1010011010":52,"1010100101":7,"1010100110":4,"1010101001":63,"1010101010":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13068487998680212},"metrics":{"exact_objective":14,"optimal_count":1,"combinations":32,"optimal_probability":0.15019233115370492,"feasible_probability":0.6832910928158356,"uniform_optimal_probability":0.03125,"uniform_feasible_probability":0.1875,"shots_for_95_percent":19,"hit_curve":[{"shots":8,"quantum":0.7280023401928548,"uniform":0.2243001202577943},{"shots":16,"quantum":0.9260172730594365,"uniform":0.3982896965679276},{"shots":32,"quantum":0.994526556114438,"uniform":0.6379447107436834},{"shots":64,"quantum":0.9999700414120316,"uniform":0.8689159675215249},{"shots":128,"quantum":0.999999999102483,"uniform":0.9828169764291821},{"shots":512,"quantum":1.0,"uniform":0.9999999128237179}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":11,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":14,"preference_cost":11,"change_cost":3,"changed_tasks":1,"max_start_shift":4,"choices":[2,0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":4,"end":5},{"task":"t1","resource":"r0","start":5,"end":6},{"task":"t2","resource":"r2","start":3,"end":4},{"task":"t3","resource":"r0","start":8,"end":9},{"task":"t4","resource":"r0","start":2,"end":3}]},"dual_bound":14.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":9,"runtime_seconds":0.001137906001531519},"exact":{"status":"optimal","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0],"qubo_energy":14},"combinations":32,"feasible_count":6,"runtime_seconds":0.00023214900284074247},"greedy":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0],"qubo_energy":14},"runtime_seconds":2.4753011530265212e-05},"resources":{"full":{"depth":19,"operations":{"RX":25,"I":10,"RZ":24,"CNOT":33,"CRY":5,"X":5},"cnot":33,"cry":5},"auto":{"depth":13,"operations":{"RX":25,"I":10,"RZ":19,"CNOT":23,"CRY":5,"X":5},"cnot":23,"cry":5}},"phase_max_probability_error":8.326672684688674e-17,"samples":[{"shots":8,"quantum_objective":18,"uniform_objective":18},{"shots":16,"quantum_objective":14,"uniform_objective":24},{"shots":32,"quantum_objective":14,"uniform_objective":14},{"shots":64,"quantum_objective":14,"uniform_objective":14},{"shots":128,"quantum_objective":14,"uniform_objective":14},{"shots":512,"quantum_objective":14,"uniform_objective":14}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,8,9]],"components":[{"qubits":10,"penalty":31,"objective_bound":30,"offset":155,"linear":[-24,-28,-29,-27,-27,-25,-29,-25,-28,-24],"quadratic":[[0,1,62],[0,2,31],[1,5,31],[2,3,62],[3,6,31],[4,5,62],[6,7,62],[7,8,31],[8,9,62]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r2","start":5,"cost":7},{"index":1,"task":"t0","resource":"r0","start":4,"cost":3},{"index":2,"task":"t1","resource":"r0","start":5,"cost":2},{"index":3,"task":"t1","resource":"r0","start":8,"cost":4},{"index":4,"task":"t2","resource":"r2","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":4,"cost":6},{"index":6,"task":"t3","resource":"r0","start":8,"cost":2},{"index":7,"task":"t3","resource":"r0","start":2,"cost":6},{"index":8,"task":"t4","resource":"r0","start":2,"cost":3},{"index":9,"task":"t4","resource":"r1","start":5,"cost":7}],"conflicts":[{"i":0,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":7,"j":8,"reasons":["resource"]}]}]},"diagnostic_seconds":0.02318086200102698}
+{"input":{"file":"evaluation-n5-d0.json","split":"evaluation","tasks":5,"density_parameter":0,"data_seed":20260972,"sha256":"16fb5b30481f7cb6e26893257198d60694a6b3601222700345682b477446f36c"},"model":{"qubits":10,"penalty":31,"objective_bound":30,"offset":155,"linear":[-24,-28,-29,-27,-27,-25,-29,-25,-28,-24],"quadratic":[[0,1,62],[0,2,31],[1,5,31],[2,3,62],[3,6,31],[4,5,62],[6,7,62],[7,8,31],[8,9,62]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r2","start":5,"cost":7},{"index":1,"task":"t0","resource":"r0","start":4,"cost":3},{"index":2,"task":"t1","resource":"r0","start":5,"cost":2},{"index":3,"task":"t1","resource":"r0","start":8,"cost":4},{"index":4,"task":"t2","resource":"r2","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":4,"cost":6},{"index":6,"task":"t3","resource":"r0","start":8,"cost":2},{"index":7,"task":"t3","resource":"r0","start":2,"cost":6},{"index":8,"task":"t4","resource":"r0","start":2,"cost":3},{"index":9,"task":"t4","resource":"r1","start":5,"cost":7}],"conflicts":[{"i":0,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":7,"j":8,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0],"qubo_energy":14},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4623044856300378,2.9234710206729217],"expected_energy":31.91404154098347,"initial_expected_energy":54.00474576093846,"history":[54.00474576093846,54.03842852101358,34.33595623198713,72.78564652162694,48.22949676732903,38.105676853521786,34.918422751506874,34.36736064728647,32.741799432512856,33.61219500469085,32.74951249701623,32.81447504121044,32.694987735647054,32.78942625908483,32.71379673712688,32.67303625749481,32.644392629684404,32.60570063017913,32.62323000987217,32.574702317327336,32.5664583754624,32.60458363922919,32.53604765233571,32.50766728029119,32.453783277929375,32.360235268710596,32.33703047548721,32.15281674133897,32.670772519986585,32.33777185325781,32.13455590167986,32.18899519562501,32.133303573097805,32.11443407770923,32.07841062150308,32.01500036621144,32.407478485469596,32.2456977814361,32.03673867705717,32.0094829286955,32.024358275125536,31.99878507520356,32.01214556981378,31.992016568224166,31.993607989330602,31.990272424572872,31.98729564801443,31.983222657488476,31.98754430215596,31.98132141321596,31.97754345329507,31.97080115037091,31.957771504360096,31.943979803195276,31.92709629686329,31.93079006877214,31.960072687000526,31.9274843459326,31.918230649670893,31.91404154098347,53.967891729599295,58.46123731393758,52.06782936780854,53.831418412931136,51.005619874560445,52.516651240526926,52.55661052198303,49.956946680258866,52.55369640874533,49.844596194704486,49.321671525009606,49.14147957201706,50.07289292867578,48.82191964726262,48.569737510786645,48.16207459397157,47.2741702785125,45.85313341188252,60.60796846664151,53.69606947264411,49.983281976293824,45.63803146846585,45.58909312355304,45.411961129713376,45.093177520050524,44.69278210020981,49.04743694068714,44.27434219999171,45.24588337362893,44.42273139999004,44.23409307232029,44.17622278940721,44.15606119026491,44.36049677051578,44.13838790475952,44.081109695780505,44.03784893041017,44.047929956902806,44.00399709378099,43.9730465200636,43.9166498326107,43.812365411030314,43.637451305377766,43.51964070501361,43.71780883952941,44.8863120739513,43.468802392288836,43.24007314955776,43.29803842373249,43.27360420341073,43.25269859697617,43.21886668201729,43.20093753373004,43.16128357787517,43.086472203889095,43.082687159645246,42.930534762330026,43.42637549701013,43.0675226451347,42.91602295587441],"feasible_probability":0.683896815326513,"one_hot_probability":1.0,"sampled_feasible_fraction":0.654296875,"counts":{"0101010101":7,"0101010110":79,"0101011001":27,"0101011010":3,"0101100101":25,"0101100110":3,"0101101001":22,"0110010101":1,"0110010110":1,"0110011001":7,"0110011010":8,"0110101001":6,"1001010101":7,"1001010110":58,"1001011001":10,"1001011010":4,"1001100101":23,"1001100110":6,"1001101001":6,"1001101010":1,"1010010101":5,"1010010110":34,"1010011001":61,"1010011010":63,"1010100101":1,"1010100110":3,"1010101001":40,"1010101010":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12346870900364593},"metrics":{"exact_objective":14,"optimal_count":1,"combinations":32,"optimal_probability":0.15360566390143654,"feasible_probability":0.683896815326513,"uniform_optimal_probability":0.03125,"uniform_feasible_probability":0.1875,"shots_for_95_percent":18,"hit_curve":[{"shots":8,"quantum":0.7366204884493237,"uniform":0.2243001202577943},{"shots":16,"quantum":0.9306312328953271,"uniform":0.3982896965679276},{"shots":32,"quantum":0.9951879741503776,"uniform":0.6379447107436834},{"shots":64,"quantum":0.9999768444072226,"uniform":0.8689159675215249},{"shots":128,"quantum":0.9999999994638186,"uniform":0.9828169764291821},{"shots":512,"quantum":1.0,"uniform":0.9999999128237179}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":11,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":14,"preference_cost":11,"change_cost":3,"changed_tasks":1,"max_start_shift":4,"choices":[2,0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":4,"end":5},{"task":"t1","resource":"r0","start":5,"end":6},{"task":"t2","resource":"r2","start":3,"end":4},{"task":"t3","resource":"r0","start":8,"end":9},{"task":"t4","resource":"r0","start":2,"end":3}]},"dual_bound":14.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":9,"runtime_seconds":0.001137906001531519},"exact":{"status":"optimal","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0],"qubo_energy":14},"combinations":32,"feasible_count":6,"runtime_seconds":0.00023214900284074247},"greedy":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0],"qubo_energy":14},"runtime_seconds":2.4753011530265212e-05},"resources":{"full":{"depth":19,"operations":{"RX":25,"I":10,"RZ":24,"CNOT":33,"CRY":5,"X":5},"cnot":33,"cry":5},"auto":{"depth":13,"operations":{"RX":25,"I":10,"RZ":19,"CNOT":23,"CRY":5,"X":5},"cnot":23,"cry":5}},"phase_max_probability_error":1.1102230246251565e-16,"samples":[{"shots":8,"quantum_objective":14,"uniform_objective":28},{"shots":16,"quantum_objective":14,"uniform_objective":22},{"shots":32,"quantum_objective":14,"uniform_objective":18},{"shots":64,"quantum_objective":14,"uniform_objective":14},{"shots":128,"quantum_objective":14,"uniform_objective":14},{"shots":512,"quantum_objective":14,"uniform_objective":14}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,8,9]],"components":[{"qubits":10,"penalty":31,"objective_bound":30,"offset":155,"linear":[-24,-28,-29,-27,-27,-25,-29,-25,-28,-24],"quadratic":[[0,1,62],[0,2,31],[1,5,31],[2,3,62],[3,6,31],[4,5,62],[6,7,62],[7,8,31],[8,9,62]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r2","start":5,"cost":7},{"index":1,"task":"t0","resource":"r0","start":4,"cost":3},{"index":2,"task":"t1","resource":"r0","start":5,"cost":2},{"index":3,"task":"t1","resource":"r0","start":8,"cost":4},{"index":4,"task":"t2","resource":"r2","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":4,"cost":6},{"index":6,"task":"t3","resource":"r0","start":8,"cost":2},{"index":7,"task":"t3","resource":"r0","start":2,"cost":6},{"index":8,"task":"t4","resource":"r0","start":2,"cost":3},{"index":9,"task":"t4","resource":"r1","start":5,"cost":7}],"conflicts":[{"i":0,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":7,"j":8,"reasons":["resource"]}]}]},"diagnostic_seconds":0.023021407003398053}
+{"input":{"file":"evaluation-n5-d0.json","split":"evaluation","tasks":5,"density_parameter":0,"data_seed":20260972,"sha256":"16fb5b30481f7cb6e26893257198d60694a6b3601222700345682b477446f36c"},"model":{"qubits":10,"penalty":31,"objective_bound":30,"offset":155,"linear":[-24,-28,-29,-27,-27,-25,-29,-25,-28,-24],"quadratic":[[0,1,62],[0,2,31],[1,5,31],[2,3,62],[3,6,31],[4,5,62],[6,7,62],[7,8,31],[8,9,62]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r2","start":5,"cost":7},{"index":1,"task":"t0","resource":"r0","start":4,"cost":3},{"index":2,"task":"t1","resource":"r0","start":5,"cost":2},{"index":3,"task":"t1","resource":"r0","start":8,"cost":4},{"index":4,"task":"t2","resource":"r2","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":4,"cost":6},{"index":6,"task":"t3","resource":"r0","start":8,"cost":2},{"index":7,"task":"t3","resource":"r0","start":2,"cost":6},{"index":8,"task":"t4","resource":"r0","start":2,"cost":3},{"index":9,"task":"t4","resource":"r1","start":5,"cost":7}],"conflicts":[{"i":0,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":7,"j":8,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0],"qubo_energy":14},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.525098785312987,0.2286960402779334],"expected_energy":34.70372663360695,"initial_expected_energy":46.761830582201384,"history":[46.761830582201384,51.31118639804933,52.36564089162895,69.16743475044339,57.64985946958508,49.369255680649374,46.618089621266456,47.80941564055222,46.461999277938084,46.182626509910946,45.935712075396204,51.62297416025954,45.132745525436526,45.789524480141836,44.98514082624924,46.01436978955415,44.95290798716239,44.84041362654223,44.65626787924259,44.42667523465665,44.240033655675724,43.96726332357301,43.38354046097194,43.84592386441851,46.97173196040545,44.27265680815576,43.33610901724515,43.6594308908865,43.32870071027482,43.30026781152476,43.25016288489058,43.17960231861044,43.043159712693935,42.78159129139818,42.88728531448884,45.3666450160165,43.37792706030136,42.75925880007345,42.99025673168401,42.75950001457665,42.75417461644456,42.75273826326841,42.78991739412184,42.72802349645849,42.720829634995,42.70786223126671,42.6966710302666,42.69681803626557,42.69126825894088,42.70216185032127,42.69967031549738,42.68551156639904,42.70750278599277,42.67882274625253,42.67292126947503,42.662792255082,42.672905930479466,42.657863991440614,42.64693055867978,42.62516131666196,60.016855003225274,51.62559776560457,52.996294134957154,42.79985867262235,46.68119336203858,60.02981406324904,42.11465005147679,38.600177317499394,53.39255556203681,42.62913126405523,38.346017774057216,39.62998764376731,38.36947911708589,38.54370633856536,38.44266413755192,38.18040117237378,37.928096973867895,37.39697309703374,36.56374266482669,45.30871091555943,41.45324600150519,36.3374448054721,36.63526530857707,36.47653727731645,36.199698677827186,36.2003329104236,36.21871838372637,36.1624952582539,36.09082439759608,35.961461464511785,35.84751757150239,37.24751049578883,35.58966032622963,35.59125740129846,35.570892678870514,35.552924485668925,35.60496491845685,35.52516784826631,35.48227268604323,35.46813568667952,35.43522181163024,35.40632963158998,35.38939165812268,35.310794614578974,35.26345993188028,35.200852813442076,35.083627822211156,34.88021345026354,35.50034291801975,35.63477435896787,34.942772078581655,34.8938328796921,34.8964068697349,34.85969925085631,34.858356986198274,34.8928787170087,34.82978084075066,34.78486907066231,34.70372663360695,34.9032786034595],"feasible_probability":0.6598172328124025,"one_hot_probability":1.0,"sampled_feasible_fraction":0.67578125,"counts":{"0101010101":10,"0101010110":27,"0101011001":11,"0101011010":2,"0101100101":10,"0101100110":2,"0101101001":22,"0101101010":2,"0110010101":2,"0110011001":6,"0110011010":9,"0110100101":2,"0110101001":5,"0110101010":2,"1001010101":10,"1001010110":39,"1001011001":1,"1001011010":6,"1001100101":31,"1001100110":1,"1001101001":4,"1001101010":5,"1010010101":6,"1010010110":76,"1010011001":81,"1010011010":31,"1010100101":3,"1010100110":5,"1010101001":92,"1010101010":9},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.128270942994277},"metrics":{"exact_objective":14,"optimal_count":1,"combinations":32,"optimal_probability":0.07105348656912548,"feasible_probability":0.6598172328124025,"uniform_optimal_probability":0.03125,"uniform_feasible_probability":0.1875,"shots_for_95_percent":41,"hit_curve":[{"shots":8,"quantum":0.445469200660387,"uniform":0.2243001202577943},{"shots":16,"quantum":0.6924955925837699,"uniform":0.3982896965679276},{"shots":32,"quantum":0.9054410394195931,"uniform":0.6379447107436834},{"shots":64,"quantum":0.9910586029739531,"uniform":0.8689159675215249},{"shots":128,"quantum":0.9999200514192226,"uniform":0.9828169764291821},{"shots":512,"quantum":1.0,"uniform":0.9999999128237179}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":11,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":14,"preference_cost":11,"change_cost":3,"changed_tasks":1,"max_start_shift":4,"choices":[2,0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":4,"end":5},{"task":"t1","resource":"r0","start":5,"end":6},{"task":"t2","resource":"r2","start":3,"end":4},{"task":"t3","resource":"r0","start":8,"end":9},{"task":"t4","resource":"r0","start":2,"end":3}]},"dual_bound":14.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":9,"runtime_seconds":0.001137906001531519},"exact":{"status":"optimal","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0],"qubo_energy":14},"combinations":32,"feasible_count":6,"runtime_seconds":0.00023214900284074247},"greedy":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0],"qubo_energy":14},"runtime_seconds":2.4753011530265212e-05},"resources":{"full":{"depth":19,"operations":{"RX":25,"I":10,"RZ":24,"CNOT":33,"CRY":5,"X":5},"cnot":33,"cry":5},"auto":{"depth":13,"operations":{"RX":25,"I":10,"RZ":19,"CNOT":23,"CRY":5,"X":5},"cnot":23,"cry":5}},"phase_max_probability_error":9.71445146547012e-17,"samples":[{"shots":8,"quantum_objective":14,"uniform_objective":22},{"shots":16,"quantum_objective":18,"uniform_objective":22},{"shots":32,"quantum_objective":14,"uniform_objective":14},{"shots":64,"quantum_objective":14,"uniform_objective":14},{"shots":128,"quantum_objective":14,"uniform_objective":14},{"shots":512,"quantum_objective":14,"uniform_objective":14}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,8,9]],"components":[{"qubits":10,"penalty":31,"objective_bound":30,"offset":155,"linear":[-24,-28,-29,-27,-27,-25,-29,-25,-28,-24],"quadratic":[[0,1,62],[0,2,31],[1,5,31],[2,3,62],[3,6,31],[4,5,62],[6,7,62],[7,8,31],[8,9,62]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r2","start":5,"cost":7},{"index":1,"task":"t0","resource":"r0","start":4,"cost":3},{"index":2,"task":"t1","resource":"r0","start":5,"cost":2},{"index":3,"task":"t1","resource":"r0","start":8,"cost":4},{"index":4,"task":"t2","resource":"r2","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":4,"cost":6},{"index":6,"task":"t3","resource":"r0","start":8,"cost":2},{"index":7,"task":"t3","resource":"r0","start":2,"cost":6},{"index":8,"task":"t4","resource":"r0","start":2,"cost":3},{"index":9,"task":"t4","resource":"r1","start":5,"cost":7}],"conflicts":[{"i":0,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":7,"j":8,"reasons":["resource"]}]}]},"diagnostic_seconds":0.02089628799876664}
+{"input":{"file":"evaluation-n5-d0.json","split":"evaluation","tasks":5,"density_parameter":0,"data_seed":20260972,"sha256":"16fb5b30481f7cb6e26893257198d60694a6b3601222700345682b477446f36c"},"model":{"qubits":10,"penalty":31,"objective_bound":30,"offset":155,"linear":[-24,-28,-29,-27,-27,-25,-29,-25,-28,-24],"quadratic":[[0,1,62],[0,2,31],[1,5,31],[2,3,62],[3,6,31],[4,5,62],[6,7,62],[7,8,31],[8,9,62]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r2","start":5,"cost":7},{"index":1,"task":"t0","resource":"r0","start":4,"cost":3},{"index":2,"task":"t1","resource":"r0","start":5,"cost":2},{"index":3,"task":"t1","resource":"r0","start":8,"cost":4},{"index":4,"task":"t2","resource":"r2","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":4,"cost":6},{"index":6,"task":"t3","resource":"r0","start":8,"cost":2},{"index":7,"task":"t3","resource":"r0","start":2,"cost":6},{"index":8,"task":"t4","resource":"r0","start":2,"cost":3},{"index":9,"task":"t4","resource":"r1","start":5,"cost":7}],"conflicts":[{"i":0,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":7,"j":8,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0],"qubo_energy":14},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.6794982459820926,2.1815104868749295],"expected_energy":42.45077775258885,"initial_expected_energy":64.70107968574067,"history":[64.70107968574067,56.189739253989,51.23837095070648,50.995998637613,53.51235722449968,55.04409983511002,51.867809612055304,50.730147967581296,50.3115389166068,50.24922349213206,49.5850016695858,49.654724528253894,49.591853948542635,49.39719258348828,49.32863420145428,49.617338089789776,49.26031597561285,49.133387691183366,48.90390015824852,48.49790640632531,47.68551622631965,46.11774936882111,47.87573503263599,53.62959492225545,49.20966152961461,46.447783807678704,46.046605196844226,46.262171064524715,45.95683397493808,45.88792240179474,45.94239766895924,45.85245415762568,45.82949866546917,45.842941737062034,45.79434874821133,45.761678090796266,45.71043479299396,45.889958626416096,45.64743392921595,45.58350316101702,45.50182816531963,45.3647764251345,45.29199878091352,45.148495251162096,45.07951148134286,44.93532451876667,44.864238758269956,44.59830646007006,44.87998082191905,44.5425352033826,44.778174927722446,44.50549622315228,44.44488856955798,44.345917569112586,44.48673618982241,44.3069540587284,44.194212783492176,43.9665852431453,43.558070010399305,43.624391070370834,47.79414479945589,49.31626230773689,65.00635482730928,43.726810905210144,73.45750310365568,57.58157038242399,46.308078910637136,45.03519690808233,43.682500200337145,46.637368654115065,42.56104021809744,43.5991239395785,42.5984827223683,42.58626122184542,42.6111117608788,42.555641814674374,42.5481514291364,42.54724553537912,42.57505266362257,42.53965753979653,42.5358240938924,42.532935777990986,42.536497557150675,42.53090552579803,42.529049803292125,42.52807424899448,42.523387368082766,42.520304168600305,42.51649909934646,42.50914507037468,42.495492048549366,42.53793390886061,42.53701173320925,42.50214539031728,42.4959790256731,42.49633468964497,42.49438672582569,42.494149856443016,42.4968940434531,42.493703108727615,42.492876979942295,42.491437224164244,42.489146594033784,42.484109509834,42.47472631768986,42.46100268466576,42.75670636508343,42.61260179400239,42.45765478649987,42.46406548432224,42.46468887112455,42.45322025875728,42.45665019176491,42.45619686762244,42.453198092183825,42.45231512104998,42.451736313014685,42.45262608858532,42.451241467944904,42.45077775258885],"feasible_probability":0.37150630481066577,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.3828125,"counts":{"0101010110":54,"0101011001":7,"0101011010":4,"0101100101":44,"0101100110":47,"0101101001":53,"0110010101":1,"0110010110":7,"0110011001":10,"0110011010":19,"0110100110":4,"0110101001":50,"0110101010":11,"1001010110":7,"1001011010":1,"1001100101":8,"1001100110":2,"1001101001":2,"1001101010":1,"1010010110":18,"1010011001":19,"1010011010":30,"1010100101":10,"1010100110":31,"1010101001":68,"1010101010":4},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11623611400136724},"metrics":{"exact_objective":14,"optimal_count":1,"combinations":32,"optimal_probability":0.11073812351617535,"feasible_probability":0.3715063048106658,"uniform_optimal_probability":0.03125,"uniform_feasible_probability":0.1875,"shots_for_95_percent":26,"hit_curve":[{"shots":8,"quantum":0.6089454055495873,"uniform":0.2243001202577943},{"shots":16,"quantum":0.8470763041592233,"uniform":0.3982896965679276},{"shots":32,"quantum":0.9766143432503976,"uniform":0.6379447107436834},{"shots":64,"quantum":0.9994531110583897,"uniform":0.8689159675215249},{"shots":128,"quantum":0.9999997009124856,"uniform":0.9828169764291821},{"shots":512,"quantum":1.0,"uniform":0.9999999128237179}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":11,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":14,"preference_cost":11,"change_cost":3,"changed_tasks":1,"max_start_shift":4,"choices":[2,0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":4,"end":5},{"task":"t1","resource":"r0","start":5,"end":6},{"task":"t2","resource":"r2","start":3,"end":4},{"task":"t3","resource":"r0","start":8,"end":9},{"task":"t4","resource":"r0","start":2,"end":3}]},"dual_bound":14.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":9,"runtime_seconds":0.001137906001531519},"exact":{"status":"optimal","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0],"qubo_energy":14},"combinations":32,"feasible_count":6,"runtime_seconds":0.00023214900284074247},"greedy":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0],"qubo_energy":14},"runtime_seconds":2.4753011530265212e-05},"resources":{"full":{"depth":19,"operations":{"RX":25,"I":10,"RZ":24,"CNOT":33,"CRY":5,"X":5},"cnot":33,"cry":5},"auto":{"depth":13,"operations":{"RX":25,"I":10,"RZ":19,"CNOT":23,"CRY":5,"X":5},"cnot":23,"cry":5}},"phase_max_probability_error":1.1102230246251565e-16,"samples":[{"shots":8,"quantum_objective":14,"uniform_objective":null},{"shots":16,"quantum_objective":14,"uniform_objective":14},{"shots":32,"quantum_objective":14,"uniform_objective":24},{"shots":64,"quantum_objective":14,"uniform_objective":18},{"shots":128,"quantum_objective":14,"uniform_objective":14},{"shots":512,"quantum_objective":14,"uniform_objective":14}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,8,9]],"components":[{"qubits":10,"penalty":31,"objective_bound":30,"offset":155,"linear":[-24,-28,-29,-27,-27,-25,-29,-25,-28,-24],"quadratic":[[0,1,62],[0,2,31],[1,5,31],[2,3,62],[3,6,31],[4,5,62],[6,7,62],[7,8,31],[8,9,62]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r2","start":5,"cost":7},{"index":1,"task":"t0","resource":"r0","start":4,"cost":3},{"index":2,"task":"t1","resource":"r0","start":5,"cost":2},{"index":3,"task":"t1","resource":"r0","start":8,"cost":4},{"index":4,"task":"t2","resource":"r2","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":4,"cost":6},{"index":6,"task":"t3","resource":"r0","start":8,"cost":2},{"index":7,"task":"t3","resource":"r0","start":2,"cost":6},{"index":8,"task":"t4","resource":"r0","start":2,"cost":3},{"index":9,"task":"t4","resource":"r1","start":5,"cost":7}],"conflicts":[{"i":0,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":7,"j":8,"reasons":["resource"]}]}]},"diagnostic_seconds":0.021564703012700193}
+{"input":{"file":"evaluation-n5-d0.json","split":"evaluation","tasks":5,"density_parameter":0,"data_seed":20260972,"sha256":"16fb5b30481f7cb6e26893257198d60694a6b3601222700345682b477446f36c"},"model":{"qubits":10,"penalty":31,"objective_bound":30,"offset":155,"linear":[-24,-28,-29,-27,-27,-25,-29,-25,-28,-24],"quadratic":[[0,1,62],[0,2,31],[1,5,31],[2,3,62],[3,6,31],[4,5,62],[6,7,62],[7,8,31],[8,9,62]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r2","start":5,"cost":7},{"index":1,"task":"t0","resource":"r0","start":4,"cost":3},{"index":2,"task":"t1","resource":"r0","start":5,"cost":2},{"index":3,"task":"t1","resource":"r0","start":8,"cost":4},{"index":4,"task":"t2","resource":"r2","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":4,"cost":6},{"index":6,"task":"t3","resource":"r0","start":8,"cost":2},{"index":7,"task":"t3","resource":"r0","start":2,"cost":6},{"index":8,"task":"t4","resource":"r0","start":2,"cost":3},{"index":9,"task":"t4","resource":"r1","start":5,"cost":7}],"conflicts":[{"i":0,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":7,"j":8,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0],"qubo_energy":14},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7734966759549682,2.930889153118287],"expected_energy":32.2681640048022,"initial_expected_energy":63.207650709699166,"history":[63.207650709699166,61.573668732444006,39.93448581563385,59.59989440291481,38.73680467120873,43.70019149734,39.197997079290865,39.13922480502905,38.37989162371434,39.865674443981064,37.84899797659435,37.58553983310266,37.23774335471771,36.61704421584989,37.009222735722275,36.7250412476241,36.56729585989949,37.286092869460774,36.285952880266024,36.09246115143532,35.95186337057778,35.64527268266126,35.120714802499016,34.83933145841811,34.26481360634326,37.019997736145484,36.30422286375169,34.56245456647354,33.60525866164467,33.59628938209928,33.51688626355436,33.45442306259106,33.44914540638305,33.83402071355374,33.45174967306127,33.3344914853969,33.174748878105106,33.16127507638649,33.13063312170226,33.11275938466465,33.133882405687515,33.07343766755102,33.03910336564634,32.96973371526579,32.85485623808074,32.89423631846173,33.01067194611801,32.83099338410911,32.779552829306766,32.7905226871006,32.75140134871789,32.74186332086522,32.78375614228145,32.707389076459066,32.676971985774045,32.618944785583665,32.570324041016136,32.46465079649714,32.525942612086695,32.4325294357569,61.431048048495484,60.819821866397284,60.4287360599188,49.98942858071272,54.491274634208665,61.35665056683206,57.280984016419055,39.97892422051228,47.915089511535996,40.60698189676863,41.57391067538125,37.88601025152952,37.611003431102695,38.69390883955783,37.03678576765733,36.97015259149299,39.80166076180407,35.92274718779653,36.65245328972554,35.80269441519734,36.451352647837716,35.60754092050762,35.45077211366761,35.17531711883411,34.64030929243363,33.69191192356425,35.696576794319924,38.466686399567166,34.43684898516514,33.6150036780499,34.11341606690891,33.521004823240055,33.458183751479226,33.608977721419734,33.40976723084457,33.36875763500682,33.29343803857512,33.142510313525825,32.86398361925591,32.88586899681081,33.52193790840265,32.80398211231647,33.053751669648804,32.793503325768334,32.729478632883456,32.60810232025407,32.40283893307882,33.8884212611861,33.363915721017264,32.34992257451914,32.47821623867307,32.37717403308296,32.32641986284776,32.33696987368495,32.366952973385764,32.304080132195374,32.305077087931394,32.31498336353732,32.28649837869299,32.2681640048022],"feasible_probability":0.6829355076852326,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.646484375,"counts":{"0101010101":2,"0101010110":68,"0101011001":34,"0101011010":6,"0101100101":28,"0101100110":4,"0101101001":22,"0101101010":2,"0110010110":2,"0110011001":3,"0110011010":8,"0110100101":4,"0110101001":5,"1001010101":3,"1001010110":61,"1001011001":5,"1001011010":2,"1001100101":25,"1001100110":5,"1001101001":9,"1001101010":1,"1010010101":3,"1010010110":34,"1010011001":69,"1010011010":57,"1010100101":2,"1010100110":5,"1010101001":42,"1010101010":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12447628499649},"metrics":{"exact_objective":14,"optimal_count":1,"combinations":32,"optimal_probability":0.1502393752132088,"feasible_probability":0.6829355076852326,"uniform_optimal_probability":0.03125,"uniform_feasible_probability":0.1875,"shots_for_95_percent":19,"hit_curve":[{"shots":8,"quantum":0.7281227758686053,"uniform":0.2243001202577943},{"shots":16,"quantum":0.9260827749986074,"uniform":0.3982896965679276},{"shots":32,"quantum":0.9945362438480935,"uniform":0.6379447107436834},{"shots":64,"quantum":0.9999701473687125,"uniform":0.8689159675215249},{"shots":128,"quantum":0.9999999991088204,"uniform":0.9828169764291821},{"shots":512,"quantum":1.0,"uniform":0.9999999128237179}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":11,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":14,"preference_cost":11,"change_cost":3,"changed_tasks":1,"max_start_shift":4,"choices":[2,0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":4,"end":5},{"task":"t1","resource":"r0","start":5,"end":6},{"task":"t2","resource":"r2","start":3,"end":4},{"task":"t3","resource":"r0","start":8,"end":9},{"task":"t4","resource":"r0","start":2,"end":3}]},"dual_bound":14.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":9,"runtime_seconds":0.001137906001531519},"exact":{"status":"optimal","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0],"qubo_energy":14},"combinations":32,"feasible_count":6,"runtime_seconds":0.00023214900284074247},"greedy":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0],"qubo_energy":14},"runtime_seconds":2.4753011530265212e-05},"resources":{"full":{"depth":19,"operations":{"RX":25,"I":10,"RZ":24,"CNOT":33,"CRY":5,"X":5},"cnot":33,"cry":5},"auto":{"depth":13,"operations":{"RX":25,"I":10,"RZ":19,"CNOT":23,"CRY":5,"X":5},"cnot":23,"cry":5}},"phase_max_probability_error":8.326672684688674e-17,"samples":[{"shots":8,"quantum_objective":14,"uniform_objective":18},{"shots":16,"quantum_objective":14,"uniform_objective":30},{"shots":32,"quantum_objective":14,"uniform_objective":14},{"shots":64,"quantum_objective":14,"uniform_objective":14},{"shots":128,"quantum_objective":14,"uniform_objective":14},{"shots":512,"quantum_objective":14,"uniform_objective":14}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,8,9]],"components":[{"qubits":10,"penalty":31,"objective_bound":30,"offset":155,"linear":[-24,-28,-29,-27,-27,-25,-29,-25,-28,-24],"quadratic":[[0,1,62],[0,2,31],[1,5,31],[2,3,62],[3,6,31],[4,5,62],[6,7,62],[7,8,31],[8,9,62]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r2","start":5,"cost":7},{"index":1,"task":"t0","resource":"r0","start":4,"cost":3},{"index":2,"task":"t1","resource":"r0","start":5,"cost":2},{"index":3,"task":"t1","resource":"r0","start":8,"cost":4},{"index":4,"task":"t2","resource":"r2","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":4,"cost":6},{"index":6,"task":"t3","resource":"r0","start":8,"cost":2},{"index":7,"task":"t3","resource":"r0","start":2,"cost":6},{"index":8,"task":"t4","resource":"r0","start":2,"cost":3},{"index":9,"task":"t4","resource":"r1","start":5,"cost":7}],"conflicts":[{"i":0,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":7,"j":8,"reasons":["resource"]}]}]},"diagnostic_seconds":0.020865438011242077}
+{"input":{"file":"evaluation-n5-d0.json","split":"evaluation","tasks":5,"density_parameter":0,"data_seed":20260972,"sha256":"16fb5b30481f7cb6e26893257198d60694a6b3601222700345682b477446f36c"},"model":{"qubits":10,"penalty":31,"objective_bound":30,"offset":155,"linear":[-24,-28,-29,-27,-27,-25,-29,-25,-28,-24],"quadratic":[[0,1,62],[0,2,31],[1,5,31],[2,3,62],[3,6,31],[4,5,62],[6,7,62],[7,8,31],[8,9,62]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r2","start":5,"cost":7},{"index":1,"task":"t0","resource":"r0","start":4,"cost":3},{"index":2,"task":"t1","resource":"r0","start":5,"cost":2},{"index":3,"task":"t1","resource":"r0","start":8,"cost":4},{"index":4,"task":"t2","resource":"r2","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":4,"cost":6},{"index":6,"task":"t3","resource":"r0","start":8,"cost":2},{"index":7,"task":"t3","resource":"r0","start":2,"cost":6},{"index":8,"task":"t4","resource":"r0","start":2,"cost":3},{"index":9,"task":"t4","resource":"r1","start":5,"cost":7}],"conflicts":[{"i":0,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":7,"j":8,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0],"qubo_energy":14},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.492348045709356,1.3538117543523265],"expected_energy":31.85650513082247,"initial_expected_energy":38.582178793868266,"history":[38.582178793868266,34.118689535677426,65.92037834310878,62.40322841797901,65.27551032529891,34.541079905259146,34.1201367681865,38.272094838755756,32.382699392799836,33.218121525402836,32.531129581386026,32.453474581819954,32.33086908654869,32.301566947683895,32.460833543528736,32.26607172735983,32.24699658219319,32.22782898337814,32.21839525408767,32.16620093485298,32.172963383560884,32.15780337360459,32.17534388782501,32.13741782958337,32.12095965151819,32.08518143825576,32.023344175308,32.61063854804577,32.15276511776895,32.08882470348752,32.01457540784523,32.001456246635605,31.985806637566817,32.085206494630185,31.965894031597955,31.962883983479244,31.946523965043344,31.932928212441908,31.906852822350245,31.944136383503455,31.933966195546077,31.917523652931003,31.91940172509483,31.90362946278365,31.910543344916903,31.902252303157386,31.89965582955828,31.89530053273632,31.90116360171386,31.89190778686634,31.887457911461823,31.880548298875325,31.92854144825717,31.87634617953279,31.87313045298698,31.870380161929724,31.904306081232697,31.86769200534663,31.859712062813045,31.85650513082247,54.04260597801281,52.94011691370904,54.10877440129599,52.36525746408791,58.629476636741266,48.76647417115248,51.52816641005383,44.50717634637829,53.69267969632179,51.9104666617246,45.6592658297498,46.57602610646276,44.40688741025146,43.686688421724156,43.058364454142115,47.82487867691619,41.863406564021005,41.47773326893352,40.67655912776347,39.322502096568705,37.152150268400405,52.017701240574,52.181767203965755,39.395259744099725,37.00486868911852,38.797691091607334,36.92002740810997,36.39579025868613,35.49954326601596,34.56914569082275,37.25085955401007,39.988709262893565,34.68416143110958,35.07080061647231,35.01484744936077,34.48222099972902,34.499141031834526,34.48877588717419,34.486538998104066,34.49149286731411,34.47194138817784,34.47828509292291,34.48207063202213,34.47176601020951,34.467390197760814,34.45968557350078,34.45421310149084,34.43586823977124,34.423300650457435,34.40758671488747,34.37915068358171,34.329075019985524,34.32658522629161,34.245076680674345,34.9769930860215,34.32532495356629,34.24051713210228,34.335971522925824,34.229668528714264,34.222479937003556],"feasible_probability":0.6863067919577166,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.68359375,"counts":{"0101010101":4,"0101010110":78,"0101011001":33,"0101011010":3,"0101100101":21,"0101100110":9,"0101101001":13,"0101101010":2,"0110010101":1,"0110011001":4,"0110011010":5,"0110100101":1,"0110101001":4,"1001010101":7,"1001010110":60,"1001011001":10,"1001011010":4,"1001100101":19,"1001100110":1,"1001101001":9,"1001101010":1,"1010010101":4,"1010010110":62,"1010011001":60,"1010011010":50,"1010100101":5,"1010100110":2,"1010101001":40},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12005432599107735},"metrics":{"exact_objective":14,"optimal_count":1,"combinations":32,"optimal_probability":0.1540201372801822,"feasible_probability":0.6863067919577166,"uniform_optimal_probability":0.03125,"uniform_feasible_probability":0.1875,"shots_for_95_percent":18,"hit_curve":[{"shots":8,"quantum":0.7376505225685437,"uniform":0.2243001202577943},{"shots":16,"quantum":0.9311727516914418,"uniform":0.3982896965679276},{"shots":32,"quantum":0.995262809890272,"uniform":0.6379447107436834},{"shots":64,"quantum":0.9999775590298643,"uniform":0.8689159675215249},{"shots":128,"quantum":0.9999999994964028,"uniform":0.9828169764291821},{"shots":512,"quantum":1.0,"uniform":0.9999999128237179}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":11,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":14,"preference_cost":11,"change_cost":3,"changed_tasks":1,"max_start_shift":4,"choices":[2,0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":4,"end":5},{"task":"t1","resource":"r0","start":5,"end":6},{"task":"t2","resource":"r2","start":3,"end":4},{"task":"t3","resource":"r0","start":8,"end":9},{"task":"t4","resource":"r0","start":2,"end":3}]},"dual_bound":14.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":9,"runtime_seconds":0.001137906001531519},"exact":{"status":"optimal","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0],"qubo_energy":14},"combinations":32,"feasible_count":6,"runtime_seconds":0.00023214900284074247},"greedy":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0],"qubo_energy":14},"runtime_seconds":2.4753011530265212e-05},"resources":{"full":{"depth":19,"operations":{"RX":25,"I":10,"RZ":24,"CNOT":33,"CRY":5,"X":5},"cnot":33,"cry":5},"auto":{"depth":13,"operations":{"RX":25,"I":10,"RZ":19,"CNOT":23,"CRY":5,"X":5},"cnot":23,"cry":5}},"phase_max_probability_error":8.326672684688674e-17,"samples":[{"shots":8,"quantum_objective":22,"uniform_objective":14},{"shots":16,"quantum_objective":14,"uniform_objective":14},{"shots":32,"quantum_objective":14,"uniform_objective":14},{"shots":64,"quantum_objective":14,"uniform_objective":14},{"shots":128,"quantum_objective":14,"uniform_objective":14},{"shots":512,"quantum_objective":14,"uniform_objective":14}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,8,9]],"components":[{"qubits":10,"penalty":31,"objective_bound":30,"offset":155,"linear":[-24,-28,-29,-27,-27,-25,-29,-25,-28,-24],"quadratic":[[0,1,62],[0,2,31],[1,5,31],[2,3,62],[3,6,31],[4,5,62],[6,7,62],[7,8,31],[8,9,62]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r2","start":5,"cost":7},{"index":1,"task":"t0","resource":"r0","start":4,"cost":3},{"index":2,"task":"t1","resource":"r0","start":5,"cost":2},{"index":3,"task":"t1","resource":"r0","start":8,"cost":4},{"index":4,"task":"t2","resource":"r2","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":4,"cost":6},{"index":6,"task":"t3","resource":"r0","start":8,"cost":2},{"index":7,"task":"t3","resource":"r0","start":2,"cost":6},{"index":8,"task":"t4","resource":"r0","start":2,"cost":3},{"index":9,"task":"t4","resource":"r1","start":5,"cost":7}],"conflicts":[{"i":0,"j":2,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":7,"j":8,"reasons":["resource"]}]}]},"diagnostic_seconds":0.021632294010487385}
+{"input":{"file":"evaluation-n5-d1.json","split":"evaluation","tasks":5,"density_parameter":1,"data_seed":20260973,"sha256":"778be907478568fc0cd92503e0ae9e228b7caf62dc8b0c8f6cfe56dc337d42e6"},"model":{"qubits":10,"penalty":25,"objective_bound":24,"offset":125,"linear":[-20,-19,-22,-23,-22,-21,-22,-18,-22,-21],"quadratic":[[0,1,50],[0,2,25],[0,8,25],[1,2,25],[2,3,50],[2,6,25],[3,5,25],[4,5,50],[4,7,25],[4,9,25],[6,7,50],[8,9,50]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":4,"cost":5},{"index":1,"task":"t0","resource":"r1","start":4,"cost":6},{"index":2,"task":"t1","resource":"r0","start":1,"cost":3},{"index":3,"task":"t1","resource":"r0","start":5,"cost":2},{"index":4,"task":"t2","resource":"r0","start":2,"cost":3},{"index":5,"task":"t2","resource":"r0","start":5,"cost":4},{"index":6,"task":"t3","resource":"r0","start":1,"cost":3},{"index":7,"task":"t3","resource":"r1","start":2,"cost":7},{"index":8,"task":"t4","resource":"r0","start":4,"cost":3},{"index":9,"task":"t4","resource":"r0","start":2,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":4,"j":7,"reasons":["group"]},{"i":4,"j":9,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true}],"bits":[0,1,0,1,1,0,1,0,1,0],"qubo_energy":17},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.163618165527268,1.3289078036680597],"expected_energy":41.779025712745906,"initial_expected_energy":67.50019406970333,"history":[67.50019406970333,66.17450768599217,65.09304821280028,60.50728169756189,58.03212096313297,79.34519360533125,67.14611994393766,66.1401819715563,58.16713629824285,48.960583895695635,55.10446629213188,50.71080889159332,47.744844356825624,46.28567967957876,46.213329718357755,47.33570200212432,45.87446413777782,45.647887798699514,45.48718408022771,45.46332112960511,45.28515188313465,45.63051356151898,45.4090508493844,45.30831696087885,45.29860875576655,45.26973141428614,45.275902586805884,45.24699263221122,45.23208575502653,45.24801707811942,45.20938614506516,45.188469758409724,45.17560300885662,45.12563802646037,45.105115871893645,45.064263726379906,45.0308605142216,44.98823823739704,45.00358743186888,45.07370228991499,44.98834000055976,44.967972309951165,44.96275824499611,44.95071774091408,44.94054113992906,44.93074545535062,44.91721154683811,44.9227826973475,44.93815346893214,44.91257495804396,44.91299052138008,44.913405973055866,44.91112816502499,44.90870313667344,44.90737959666702,44.93179181847804,44.901522177994885,44.899341809735986,44.89717970728735,44.89743485734804,71.05985233581404,70.08974924179708,65.7396006832172,64.1919062595043,65.99086164088772,70.20548110306204,65.9888425975843,62.648045414731456,63.578002755441204,62.90218739849556,64.64371103933706,62.49449155613079,62.17639410535996,61.398787246575445,60.61415591790984,57.504311100219844,67.06676691888794,60.179606615000864,57.17606653266942,60.59417180117971,56.11368658369956,55.568552987718505,54.658196085139565,52.852461064426464,49.434853649692755,43.941792361596654,66.15105427859508,82.77775303498618,50.9726583493277,50.564797784781746,43.549697283383324,43.22375705650426,43.24199714679389,43.84061005751161,43.24303433624993,43.05546405574735,42.96599391075355,42.8564040060992,42.74995740987388,42.55580200011888,42.29052034003123,42.13541807350562,41.8476108360248,42.3616050846458,42.864486055977956,41.81739605571248,42.10914382737671,41.85883905795693,41.82540285913498,41.81203370308881,41.81566033505911,41.81751554316065,41.8126463159667,41.80939689715429,41.80436752134536,41.79630108959512,41.79451433688283,41.779025712745906,41.77931552597939,41.786269893657554],"feasible_probability":0.20868812498041134,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.197265625,"counts":{"0101010101":1,"0101010110":2,"0101011001":13,"0101011010":101,"0101100110":6,"0101101001":10,"0101101010":24,"0110011010":14,"0110100101":4,"0110100110":35,"0110101001":2,"0110101010":35,"1001010101":4,"1001010110":1,"1001011001":22,"1001011010":9,"1001100101":5,"1001101001":41,"1001101010":37,"1010010110":1,"1010011001":1,"1010011010":1,"1010100101":31,"1010100110":29,"1010101001":42,"1010101010":41},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12320387500221841},"metrics":{"exact_objective":17,"optimal_count":1,"combinations":32,"optimal_probability":0.20868812498041134,"feasible_probability":0.20868812498041134,"uniform_optimal_probability":0.03125,"uniform_feasible_probability":0.03125,"shots_for_95_percent":13,"hit_curve":[{"shots":8,"quantum":0.8462619157380301,"uniform":0.2243001202577943},{"shots":16,"quantum":0.9763646014474594,"uniform":0.3982896965679276},{"shots":32,"quantum":0.9994413679352626,"uniform":0.6379447107436834},{"shots":64,"quantum":0.9999996879302162,"uniform":0.8689159675215249},{"shots":128,"quantum":0.9999999999999026,"uniform":0.9828169764291821},{"shots":512,"quantum":1.0,"uniform":0.9999999128237179}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":11,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":17,"preference_cost":12,"change_cost":5,"changed_tasks":2,"max_start_shift":4,"choices":[2,1,0,0,0],"schedule":[{"task":"t0","resource":"r1","start":4,"end":5},{"task":"t1","resource":"r0","start":5,"end":6},{"task":"t2","resource":"r0","start":2,"end":3},{"task":"t3","resource":"r0","start":1,"end":2},{"task":"t4","resource":"r0","start":4,"end":5}]},"dual_bound":17.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":12,"runtime_seconds":0.0012583929928950965},"exact":{"status":"optimal","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true}],"bits":[0,1,0,1,1,0,1,0,1,0],"qubo_energy":17},"combinations":32,"feasible_count":1,"runtime_seconds":0.00028245199064258486},"greedy":{"status":"dead_end","best":null,"runtime_seconds":1.0172007023356855e-05},"resources":{"full":{"depth":25,"operations":{"RX":25,"I":10,"RZ":27,"CNOT":39,"CRY":5,"X":5},"cnot":39,"cry":5},"auto":{"depth":22,"operations":{"RX":25,"I":10,"RZ":22,"CNOT":29,"CRY":5,"X":5},"cnot":29,"cry":5}},"phase_max_probability_error":4.85722573273506e-17,"samples":[{"shots":8,"quantum_objective":17,"uniform_objective":17},{"shots":16,"quantum_objective":17,"uniform_objective":null},{"shots":32,"quantum_objective":17,"uniform_objective":17},{"shots":64,"quantum_objective":17,"uniform_objective":17},{"shots":128,"quantum_objective":17,"uniform_objective":17},{"shots":512,"quantum_objective":17,"uniform_objective":17}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,8,9]],"components":[{"qubits":10,"penalty":25,"objective_bound":24,"offset":125,"linear":[-20,-19,-22,-23,-22,-21,-22,-18,-22,-21],"quadratic":[[0,1,50],[0,2,25],[0,8,25],[1,2,25],[2,3,50],[2,6,25],[3,5,25],[4,5,50],[4,7,25],[4,9,25],[6,7,50],[8,9,50]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":4,"cost":5},{"index":1,"task":"t0","resource":"r1","start":4,"cost":6},{"index":2,"task":"t1","resource":"r0","start":1,"cost":3},{"index":3,"task":"t1","resource":"r0","start":5,"cost":2},{"index":4,"task":"t2","resource":"r0","start":2,"cost":3},{"index":5,"task":"t2","resource":"r0","start":5,"cost":4},{"index":6,"task":"t3","resource":"r0","start":1,"cost":3},{"index":7,"task":"t3","resource":"r1","start":2,"cost":7},{"index":8,"task":"t4","resource":"r0","start":4,"cost":3},{"index":9,"task":"t4","resource":"r0","start":2,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":4,"j":7,"reasons":["group"]},{"i":4,"j":9,"reasons":["resource"]}]}]},"diagnostic_seconds":0.024415295993094333}
+{"input":{"file":"evaluation-n5-d1.json","split":"evaluation","tasks":5,"density_parameter":1,"data_seed":20260973,"sha256":"778be907478568fc0cd92503e0ae9e228b7caf62dc8b0c8f6cfe56dc337d42e6"},"model":{"qubits":10,"penalty":25,"objective_bound":24,"offset":125,"linear":[-20,-19,-22,-23,-22,-21,-22,-18,-22,-21],"quadratic":[[0,1,50],[0,2,25],[0,8,25],[1,2,25],[2,3,50],[2,6,25],[3,5,25],[4,5,50],[4,7,25],[4,9,25],[6,7,50],[8,9,50]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":4,"cost":5},{"index":1,"task":"t0","resource":"r1","start":4,"cost":6},{"index":2,"task":"t1","resource":"r0","start":1,"cost":3},{"index":3,"task":"t1","resource":"r0","start":5,"cost":2},{"index":4,"task":"t2","resource":"r0","start":2,"cost":3},{"index":5,"task":"t2","resource":"r0","start":5,"cost":4},{"index":6,"task":"t3","resource":"r0","start":1,"cost":3},{"index":7,"task":"t3","resource":"r1","start":2,"cost":7},{"index":8,"task":"t4","resource":"r0","start":4,"cost":3},{"index":9,"task":"t4","resource":"r0","start":2,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":4,"j":7,"reasons":["group"]},{"i":4,"j":9,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true}],"bits":[0,1,0,1,1,0,1,0,1,0],"qubo_energy":17},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.1677718593261206,1.3264810297171035],"expected_energy":41.78374459441663,"initial_expected_energy":64.19251197022375,"history":[64.19251197022375,65.9882700161659,66.47166332601986,76.20570416887377,64.04035049771193,64.30488042674384,64.72455345163809,62.809899724063804,61.93996127756573,63.52065891770179,61.85541344605838,62.438323130821075,61.91763393927378,61.91401015024742,61.902064461282805,61.791227840965945,61.7619096032963,61.722072452493194,61.65283609649617,61.80083283852522,61.644588704595776,61.58981461280397,61.49717505022427,61.368713322972575,61.234926286521215,61.09345421005189,64.3538753476027,60.981650192807834,61.14917517550839,61.03197490427025,60.905895775923845,60.908265035973784,60.89653495486512,60.8793350764244,60.8490343890489,60.79941442426059,60.6989406316223,60.5146921499403,61.58953523009228,62.02036783181165,60.840745219846944,60.592957910838905,60.504783708653775,60.52644316058793,60.498695159116295,60.487928309149474,60.46702172363615,60.428438486099715,60.39118976438635,60.40796392584868,60.54377404315717,60.414646226049875,60.35946414739443,60.35204995615285,60.39858017401909,60.34038946138735,60.33258172496814,60.32462240336653,60.312380623886085,60.31266011062276,66.6508731847419,67.83245602101167,58.78088934026738,70.02895661584616,49.517590907132856,51.96108801585946,51.07486012968848,50.1903359635452,50.140641858999814,48.774731680711895,48.33035928753362,50.04025308513514,47.76253436552636,47.37703940634451,46.989418525664874,46.549139713682465,45.76211040090401,45.58438835410979,44.69797106961742,44.8607550661761,44.578359537017,45.04563051279945,44.486968015180956,44.33306195965022,44.187234216599194,44.14794352712749,43.76239155740987,43.56807365541296,43.280194777020355,42.822287909370466,42.49691321363913,43.11821997909811,44.5811087360246,42.4124045311403,42.076909020225926,42.1880608293578,42.13313438386637,42.089742012678,42.051796001391985,42.007570776799,41.928395110599595,42.179275622951096,42.03065281824222,41.95741380526151,41.919183449695126,41.919008371213735,41.89848186885015,41.881604567004516,41.85310488542143,41.80494673748896,42.16258599891026,41.952885287565856,41.84323183073027,41.800092294526635,41.80947799877305,41.79707049828346,41.81099735799797,41.79111594192616,41.78776852906951,41.78374459441663],"feasible_probability":0.20895347370594453,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.171875,"counts":{"0101010101":2,"0101010110":3,"0101011001":16,"0101011010":88,"0101100101":1,"0101100110":4,"0101101001":5,"0101101010":33,"0110010101":2,"0110010110":4,"0110011001":1,"0110011010":9,"0110100101":1,"0110100110":47,"0110101001":2,"0110101010":42,"1001010101":1,"1001010110":2,"1001011001":23,"1001011010":17,"1001100110":1,"1001101001":37,"1001101010":31,"1010010101":1,"1010011001":1,"1010011010":1,"1010100101":29,"1010100110":25,"1010101001":46,"1010101010":37},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.18161357899953146},"metrics":{"exact_objective":17,"optimal_count":1,"combinations":32,"optimal_probability":0.20895347370594453,"feasible_probability":0.20895347370594453,"uniform_optimal_probability":0.03125,"uniform_feasible_probability":0.03125,"shots_for_95_percent":13,"hit_curve":[{"shots":8,"quantum":0.846673853029762,"uniform":0.2243001202577943},{"shots":16,"quantum":0.976491092655261,"uniform":0.3982896965679276},{"shots":32,"quantum":0.9994473312754565,"uniform":0.6379447107436834},{"shots":64,"quantum":0.9999996945572809,"uniform":0.8689159675215249},{"shots":128,"quantum":0.9999999999999067,"uniform":0.9828169764291821},{"shots":512,"quantum":1.0,"uniform":0.9999999128237179}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":11,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":17,"preference_cost":12,"change_cost":5,"changed_tasks":2,"max_start_shift":4,"choices":[2,1,0,0,0],"schedule":[{"task":"t0","resource":"r1","start":4,"end":5},{"task":"t1","resource":"r0","start":5,"end":6},{"task":"t2","resource":"r0","start":2,"end":3},{"task":"t3","resource":"r0","start":1,"end":2},{"task":"t4","resource":"r0","start":4,"end":5}]},"dual_bound":17.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":12,"runtime_seconds":0.0012583929928950965},"exact":{"status":"optimal","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true}],"bits":[0,1,0,1,1,0,1,0,1,0],"qubo_energy":17},"combinations":32,"feasible_count":1,"runtime_seconds":0.00028245199064258486},"greedy":{"status":"dead_end","best":null,"runtime_seconds":1.0172007023356855e-05},"resources":{"full":{"depth":25,"operations":{"RX":25,"I":10,"RZ":27,"CNOT":39,"CRY":5,"X":5},"cnot":39,"cry":5},"auto":{"depth":22,"operations":{"RX":25,"I":10,"RZ":22,"CNOT":29,"CRY":5,"X":5},"cnot":29,"cry":5}},"phase_max_probability_error":8.326672684688674e-17,"samples":[{"shots":8,"quantum_objective":17,"uniform_objective":null},{"shots":16,"quantum_objective":17,"uniform_objective":null},{"shots":32,"quantum_objective":17,"uniform_objective":17},{"shots":64,"quantum_objective":17,"uniform_objective":17},{"shots":128,"quantum_objective":17,"uniform_objective":17},{"shots":512,"quantum_objective":17,"uniform_objective":17}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,8,9]],"components":[{"qubits":10,"penalty":25,"objective_bound":24,"offset":125,"linear":[-20,-19,-22,-23,-22,-21,-22,-18,-22,-21],"quadratic":[[0,1,50],[0,2,25],[0,8,25],[1,2,25],[2,3,50],[2,6,25],[3,5,25],[4,5,50],[4,7,25],[4,9,25],[6,7,50],[8,9,50]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":4,"cost":5},{"index":1,"task":"t0","resource":"r1","start":4,"cost":6},{"index":2,"task":"t1","resource":"r0","start":1,"cost":3},{"index":3,"task":"t1","resource":"r0","start":5,"cost":2},{"index":4,"task":"t2","resource":"r0","start":2,"cost":3},{"index":5,"task":"t2","resource":"r0","start":5,"cost":4},{"index":6,"task":"t3","resource":"r0","start":1,"cost":3},{"index":7,"task":"t3","resource":"r1","start":2,"cost":7},{"index":8,"task":"t4","resource":"r0","start":4,"cost":3},{"index":9,"task":"t4","resource":"r0","start":2,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":4,"j":7,"reasons":["group"]},{"i":4,"j":9,"reasons":["resource"]}]}]},"diagnostic_seconds":0.024040611009695567}
+{"input":{"file":"evaluation-n5-d1.json","split":"evaluation","tasks":5,"density_parameter":1,"data_seed":20260973,"sha256":"778be907478568fc0cd92503e0ae9e228b7caf62dc8b0c8f6cfe56dc337d42e6"},"model":{"qubits":10,"penalty":25,"objective_bound":24,"offset":125,"linear":[-20,-19,-22,-23,-22,-21,-22,-18,-22,-21],"quadratic":[[0,1,50],[0,2,25],[0,8,25],[1,2,25],[2,3,50],[2,6,25],[3,5,25],[4,5,50],[4,7,25],[4,9,25],[6,7,50],[8,9,50]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":4,"cost":5},{"index":1,"task":"t0","resource":"r1","start":4,"cost":6},{"index":2,"task":"t1","resource":"r0","start":1,"cost":3},{"index":3,"task":"t1","resource":"r0","start":5,"cost":2},{"index":4,"task":"t2","resource":"r0","start":2,"cost":3},{"index":5,"task":"t2","resource":"r0","start":5,"cost":4},{"index":6,"task":"t3","resource":"r0","start":1,"cost":3},{"index":7,"task":"t3","resource":"r1","start":2,"cost":7},{"index":8,"task":"t4","resource":"r0","start":4,"cost":3},{"index":9,"task":"t4","resource":"r0","start":2,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":4,"j":7,"reasons":["group"]},{"i":4,"j":9,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true}],"bits":[0,1,0,1,1,0,1,0,1,0],"qubo_energy":17},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.145236959163858,2.897867117881772],"expected_energy":41.75872082774145,"initial_expected_energy":68.7187947543029,"history":[68.7187947543029,67.8045452013778,65.52030658869806,67.7374473444462,67.30096948974489,64.44202518555251,63.78622664699826,64.14924106871192,63.940818930523115,63.74387668653961,63.82410864266538,63.82161816111303,63.79113052401226,63.753712345431325,63.73625582031446,63.7237717823718,63.71175629622783,63.71617998988501,63.710597810553885,63.70816892948524,63.70591704498558,63.70017339842822,63.70098194696612,63.69864264704867,63.70084664020028,63.70036465299717,63.69701128758027,63.701152007875834,63.6954335775389,63.693942983043726,63.69102466289978,63.68550191021618,63.67983840191947,63.66949296143961,63.68668852997206,63.68589453810287,63.67111659831202,63.66378411490441,63.66192461234863,63.65804549731123,63.65429723734835,63.64623677440343,63.631823744482155,63.59637171875001,63.621192557545946,63.66362876811889,63.590471488528024,63.65560792237232,63.57841728085845,63.57445067301677,63.56168069131834,63.552625797999,63.52800450339072,63.486040257555445,63.36455197992094,64.20654240865036,63.74971152564078,63.55088255368685,63.347495993616874,63.35681784657836,80.69093997710819,76.80443829018012,64.84279721244141,53.83240180455584,65.33070121308563,58.91293529390222,57.73732355292728,56.327605025657846,51.039580294628664,49.23861562021929,47.756189396700094,46.066496891728406,45.96589149815374,56.668309198041555,46.14127822243375,43.3111964938518,42.45919880616649,42.952367063940784,42.98358453699744,42.56333211702989,42.430542383185184,42.616153993770304,42.403516262647955,42.358394680381565,42.29669333598342,42.24139745025603,42.260606987607645,42.21120392512857,42.263172342441905,42.228792186537525,42.18707431774813,42.19567244967598,42.1599291556853,42.13686949105706,42.12431241735983,42.059340434649556,42.03616737148731,41.98516735264138,41.92795268457868,41.87123546747338,41.83299827361242,42.0386600483883,41.80810858485138,41.829403264140595,41.82540145426399,41.804145195984546,41.8085309116108,41.80169589160652,41.79982789696146,41.79740696880756,41.79287518305014,41.784603641619306,41.779286160522034,41.77124430384213,41.78741084119274,41.79195511477663,41.76604600308298,41.76270312491681,41.76135966351138,41.75872082774145],"feasible_probability":0.20765894433039456,"one_hot_probability":1.0,"sampled_feasible_fraction":0.21875,"counts":{"0101010101":1,"0101010110":2,"0101011001":11,"0101011010":112,"0101100110":7,"0101101001":3,"0101101010":32,"0110010101":2,"0110010110":5,"0110011001":1,"0110011010":10,"0110100101":2,"0110100110":38,"0110101001":6,"0110101010":35,"1001010101":2,"1001011001":32,"1001011010":13,"1001100101":2,"1001100110":2,"1001101001":35,"1001101010":37,"1010010101":1,"1010010110":2,"1010011010":3,"1010100101":24,"1010100110":26,"1010101001":32,"1010101010":34},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12733137600298505},"metrics":{"exact_objective":17,"optimal_count":1,"combinations":32,"optimal_probability":0.20765894433039456,"feasible_probability":0.20765894433039456,"uniform_optimal_probability":0.03125,"uniform_feasible_probability":0.03125,"shots_for_95_percent":13,"hit_curve":[{"shots":8,"quantum":0.8446550004770211,"uniform":0.2243001202577943},{"shots":16,"quantum":0.9758679311232057,"uniform":0.3982896965679276},{"shots":32,"quantum":0.9994176432517257,"uniform":0.6379447107436834},{"shots":64,"quantum":0.9999996608606178,"uniform":0.8689159675215249},{"shots":128,"quantum":0.999999999999885,"uniform":0.9828169764291821},{"shots":512,"quantum":1.0,"uniform":0.9999999128237179}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":11,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":17,"preference_cost":12,"change_cost":5,"changed_tasks":2,"max_start_shift":4,"choices":[2,1,0,0,0],"schedule":[{"task":"t0","resource":"r1","start":4,"end":5},{"task":"t1","resource":"r0","start":5,"end":6},{"task":"t2","resource":"r0","start":2,"end":3},{"task":"t3","resource":"r0","start":1,"end":2},{"task":"t4","resource":"r0","start":4,"end":5}]},"dual_bound":17.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":12,"runtime_seconds":0.0012583929928950965},"exact":{"status":"optimal","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true}],"bits":[0,1,0,1,1,0,1,0,1,0],"qubo_energy":17},"combinations":32,"feasible_count":1,"runtime_seconds":0.00028245199064258486},"greedy":{"status":"dead_end","best":null,"runtime_seconds":1.0172007023356855e-05},"resources":{"full":{"depth":25,"operations":{"RX":25,"I":10,"RZ":27,"CNOT":39,"CRY":5,"X":5},"cnot":39,"cry":5},"auto":{"depth":22,"operations":{"RX":25,"I":10,"RZ":22,"CNOT":29,"CRY":5,"X":5},"cnot":29,"cry":5}},"phase_max_probability_error":8.326672684688674e-17,"samples":[{"shots":8,"quantum_objective":17,"uniform_objective":null},{"shots":16,"quantum_objective":17,"uniform_objective":17},{"shots":32,"quantum_objective":17,"uniform_objective":null},{"shots":64,"quantum_objective":17,"uniform_objective":17},{"shots":128,"quantum_objective":17,"uniform_objective":17},{"shots":512,"quantum_objective":17,"uniform_objective":17}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,8,9]],"components":[{"qubits":10,"penalty":25,"objective_bound":24,"offset":125,"linear":[-20,-19,-22,-23,-22,-21,-22,-18,-22,-21],"quadratic":[[0,1,50],[0,2,25],[0,8,25],[1,2,25],[2,3,50],[2,6,25],[3,5,25],[4,5,50],[4,7,25],[4,9,25],[6,7,50],[8,9,50]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":4,"cost":5},{"index":1,"task":"t0","resource":"r1","start":4,"cost":6},{"index":2,"task":"t1","resource":"r0","start":1,"cost":3},{"index":3,"task":"t1","resource":"r0","start":5,"cost":2},{"index":4,"task":"t2","resource":"r0","start":2,"cost":3},{"index":5,"task":"t2","resource":"r0","start":5,"cost":4},{"index":6,"task":"t3","resource":"r0","start":1,"cost":3},{"index":7,"task":"t3","resource":"r1","start":2,"cost":7},{"index":8,"task":"t4","resource":"r0","start":4,"cost":3},{"index":9,"task":"t4","resource":"r0","start":2,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":4,"j":7,"reasons":["group"]},{"i":4,"j":9,"reasons":["resource"]}]}]},"diagnostic_seconds":0.02290454199828673}
+{"input":{"file":"evaluation-n5-d1.json","split":"evaluation","tasks":5,"density_parameter":1,"data_seed":20260973,"sha256":"778be907478568fc0cd92503e0ae9e228b7caf62dc8b0c8f6cfe56dc337d42e6"},"model":{"qubits":10,"penalty":25,"objective_bound":24,"offset":125,"linear":[-20,-19,-22,-23,-22,-21,-22,-18,-22,-21],"quadratic":[[0,1,50],[0,2,25],[0,8,25],[1,2,25],[2,3,50],[2,6,25],[3,5,25],[4,5,50],[4,7,25],[4,9,25],[6,7,50],[8,9,50]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":4,"cost":5},{"index":1,"task":"t0","resource":"r1","start":4,"cost":6},{"index":2,"task":"t1","resource":"r0","start":1,"cost":3},{"index":3,"task":"t1","resource":"r0","start":5,"cost":2},{"index":4,"task":"t2","resource":"r0","start":2,"cost":3},{"index":5,"task":"t2","resource":"r0","start":5,"cost":4},{"index":6,"task":"t3","resource":"r0","start":1,"cost":3},{"index":7,"task":"t3","resource":"r1","start":2,"cost":7},{"index":8,"task":"t4","resource":"r0","start":4,"cost":3},{"index":9,"task":"t4","resource":"r0","start":2,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":4,"j":7,"reasons":["group"]},{"i":4,"j":9,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true}],"bits":[0,1,0,1,1,0,1,0,1,0],"qubo_energy":17},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.2178742132458642,1.326830887576159],"expected_energy":41.90913020078625,"initial_expected_energy":53.42183722392015,"history":[53.42183722392015,61.17714795692966,75.76699911285577,61.36707129692245,46.490968589232025,83.88646420662695,52.007388460531075,46.23205035551949,52.942993101086714,45.70183728562191,45.96057573687264,46.0803282452796,45.76539315925967,45.5119175514115,45.30109079544094,45.52510692895996,45.10884887675891,45.025199304462205,45.21192862522944,44.990126762227874,44.920058655991554,44.78404836464317,44.5237223253147,44.09367489978143,44.1727064015805,44.46548444926942,43.90063998526472,44.12733189128165,43.783707356517354,43.67821558647671,43.45826840046995,43.058020364307346,43.865397883084796,43.395314927652386,43.09212724017092,43.16140918784034,43.06627332604386,43.01026122008949,42.91818494702934,42.74432003301525,42.668295019929786,42.342878926593826,42.727717283860926,42.29163659319921,42.40332314881874,42.29870318782783,42.24973414047659,42.21245420683205,42.296410106099145,42.182076538000516,42.15530913156795,42.11877934914578,42.06536174647723,42.035682749815294,41.992013844848046,41.96435742868243,42.04603270095325,41.942461608609236,41.92745326568442,41.90913020078625,70.30871955625831,68.22229696697121,64.2375533197708,69.67410763996878,65.63745258192046,65.5957002394168,64.02235769596464,63.752112046528914,63.81270655622481,63.74964730437355,63.75224232408074,63.750979318555785,63.748460498794515,63.74861484503043,63.748111128170144,63.75205201069708,63.74768466083722,63.74760998105387,63.748109522460176,63.747527609536945,63.74738787803449,63.74721067964977,63.74710021394956,63.74722339642799,63.7470400791902,63.746975395308496,63.74684606668952,63.74659013379281,63.74613353723552,63.747169048833015,63.747969076491685,63.745937009602514,63.74592752475313,63.74575841830007,63.74541701201994,63.74471250552821,63.74326092895194,63.74117147091704,63.763345926321826,63.77357533853469,63.74037978300746,63.739536888689514,63.73948731182257,63.74150996823583,63.739451294414614,63.73865010809,63.73749425760679,63.736153109294094,63.737372367612146,63.73574753884911,63.736303360433965,63.73544651574825,63.73515978060824,63.73458216172618,63.73351080053834,63.732581835148274,63.72896236825744,63.731446930941104,63.73245612198394,63.72907959939584],"feasible_probability":0.21105362119707766,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.20703125,"counts":{"0101010110":6,"0101011001":20,"0101011010":106,"0101100110":4,"0101101001":5,"0101101010":23,"0110010101":2,"0110010110":5,"0110011001":2,"0110011010":11,"0110100101":1,"0110100110":32,"0110101001":2,"0110101010":39,"1001010101":3,"1001011001":29,"1001011010":15,"1001100101":1,"1001100110":2,"1001101001":47,"1001101010":34,"1010010101":1,"1010010110":2,"1010011010":2,"1010100101":23,"1010100110":34,"1010101001":35,"1010101010":26},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1356646149943117},"metrics":{"exact_objective":17,"optimal_count":1,"combinations":32,"optimal_probability":0.21105362119707766,"feasible_probability":0.21105362119707766,"uniform_optimal_probability":0.03125,"uniform_feasible_probability":0.03125,"shots_for_95_percent":13,"hit_curve":[{"shots":8,"quantum":0.8499002748177353,"uniform":0.2243001202577943},{"shots":16,"quantum":0.9774700725002086,"uniform":0.3982896965679276},{"shots":32,"quantum":0.9994924023668541,"uniform":0.6379447107436834},{"shots":64,"quantum":0.9999997423446428,"uniform":0.8689159675215249},{"shots":128,"quantum":0.9999999999999336,"uniform":0.9828169764291821},{"shots":512,"quantum":1.0,"uniform":0.9999999128237179}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":11,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":17,"preference_cost":12,"change_cost":5,"changed_tasks":2,"max_start_shift":4,"choices":[2,1,0,0,0],"schedule":[{"task":"t0","resource":"r1","start":4,"end":5},{"task":"t1","resource":"r0","start":5,"end":6},{"task":"t2","resource":"r0","start":2,"end":3},{"task":"t3","resource":"r0","start":1,"end":2},{"task":"t4","resource":"r0","start":4,"end":5}]},"dual_bound":17.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":12,"runtime_seconds":0.0012583929928950965},"exact":{"status":"optimal","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true}],"bits":[0,1,0,1,1,0,1,0,1,0],"qubo_energy":17},"combinations":32,"feasible_count":1,"runtime_seconds":0.00028245199064258486},"greedy":{"status":"dead_end","best":null,"runtime_seconds":1.0172007023356855e-05},"resources":{"full":{"depth":25,"operations":{"RX":25,"I":10,"RZ":27,"CNOT":39,"CRY":5,"X":5},"cnot":39,"cry":5},"auto":{"depth":22,"operations":{"RX":25,"I":10,"RZ":22,"CNOT":29,"CRY":5,"X":5},"cnot":29,"cry":5}},"phase_max_probability_error":8.326672684688674e-17,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":17,"uniform_objective":17},{"shots":32,"quantum_objective":17,"uniform_objective":17},{"shots":64,"quantum_objective":17,"uniform_objective":null},{"shots":128,"quantum_objective":17,"uniform_objective":17},{"shots":512,"quantum_objective":17,"uniform_objective":17}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,8,9]],"components":[{"qubits":10,"penalty":25,"objective_bound":24,"offset":125,"linear":[-20,-19,-22,-23,-22,-21,-22,-18,-22,-21],"quadratic":[[0,1,50],[0,2,25],[0,8,25],[1,2,25],[2,3,50],[2,6,25],[3,5,25],[4,5,50],[4,7,25],[4,9,25],[6,7,50],[8,9,50]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":4,"cost":5},{"index":1,"task":"t0","resource":"r1","start":4,"cost":6},{"index":2,"task":"t1","resource":"r0","start":1,"cost":3},{"index":3,"task":"t1","resource":"r0","start":5,"cost":2},{"index":4,"task":"t2","resource":"r0","start":2,"cost":3},{"index":5,"task":"t2","resource":"r0","start":5,"cost":4},{"index":6,"task":"t3","resource":"r0","start":1,"cost":3},{"index":7,"task":"t3","resource":"r1","start":2,"cost":7},{"index":8,"task":"t4","resource":"r0","start":4,"cost":3},{"index":9,"task":"t4","resource":"r0","start":2,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":4,"j":7,"reasons":["group"]},{"i":4,"j":9,"reasons":["resource"]}]}]},"diagnostic_seconds":0.02471733099082485}
+{"input":{"file":"evaluation-n5-d1.json","split":"evaluation","tasks":5,"density_parameter":1,"data_seed":20260973,"sha256":"778be907478568fc0cd92503e0ae9e228b7caf62dc8b0c8f6cfe56dc337d42e6"},"model":{"qubits":10,"penalty":25,"objective_bound":24,"offset":125,"linear":[-20,-19,-22,-23,-22,-21,-22,-18,-22,-21],"quadratic":[[0,1,50],[0,2,25],[0,8,25],[1,2,25],[2,3,50],[2,6,25],[3,5,25],[4,5,50],[4,7,25],[4,9,25],[6,7,50],[8,9,50]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":4,"cost":5},{"index":1,"task":"t0","resource":"r1","start":4,"cost":6},{"index":2,"task":"t1","resource":"r0","start":1,"cost":3},{"index":3,"task":"t1","resource":"r0","start":5,"cost":2},{"index":4,"task":"t2","resource":"r0","start":2,"cost":3},{"index":5,"task":"t2","resource":"r0","start":5,"cost":4},{"index":6,"task":"t3","resource":"r0","start":1,"cost":3},{"index":7,"task":"t3","resource":"r1","start":2,"cost":7},{"index":8,"task":"t4","resource":"r0","start":4,"cost":3},{"index":9,"task":"t4","resource":"r0","start":2,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":4,"j":7,"reasons":["group"]},{"i":4,"j":9,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true}],"bits":[0,1,0,1,1,0,1,0,1,0],"qubo_energy":17},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[5.129916526075748,3.377021212535811],"expected_energy":44.88094787603685,"initial_expected_energy":63.53259773155137,"history":[63.53259773155137,63.85406212267823,66.67674320251768,70.28720613989464,67.87967791124862,64.44195320105375,63.51982313356979,64.01266323665934,63.484216899436646,63.720831750570284,63.55076436032475,63.512619336764324,63.44040652278753,63.4213273459151,63.40439803842496,63.389180255886515,63.37026073231929,63.33029957905019,63.26852342466138,63.21307787584167,62.96444576935508,66.31594120980196,63.488763278717094,62.92666932422073,63.5430587842892,62.820929706088364,62.83302578139053,62.80413681136986,62.8162655190019,62.813135980238016,62.78941423872504,62.77462729521297,62.798500098402656,62.76134021369182,62.74852561966521,62.724108169157724,62.68710574982361,62.623210029598454,62.511809188011156,62.2485739525661,62.43355086378653,62.99061255478785,62.19927815904628,62.51853224504769,62.17969939838014,62.1331321069144,62.19697259599228,62.10011778090848,62.04415782379801,61.928325434537086,61.674090803012504,61.39591316821695,62.04473053374827,63.74146458742699,61.33940185514531,61.10868085499222,61.37610301728807,61.18305518337649,61.120741152189375,61.08227553452279,67.30640715397499,65.81127948757623,65.54685298446927,62.73103032165939,50.87833437261067,63.45522454358718,68.25880160481492,80.63436041782853,50.00618555870979,52.2797706588146,51.8780009424003,46.863278769132265,45.13061849077478,46.68096874535275,46.09837376744976,44.88208245894256,44.96564342081144,44.88118924453548,44.933844418304645,44.88489656740589,44.88791730018339,44.88488245724247,44.88113983691794,44.88111500978426,44.88115802503245,44.88125180511719,44.88097926362395,44.88103744928697,44.880997033765354,44.88098470139694,44.88097315990099,44.880969441319245,44.88097802573211,44.8809669737729,44.88096519781452,44.88096797743951,44.880963916659894,44.880962825759205,44.88096059896464,44.880956924832226,44.88096160589943,44.88096478876052,44.88095641370378,44.88095539501158,44.8809535638498,44.88095079085548,44.88095394984841,44.880957709589495,44.88095167756935,44.88095056813168,44.88095108631813,44.880950314023664,44.88095005644403,44.88094976292366,44.880949237132455,44.880948998360054,44.88094852172871,44.88094835339072,44.880947920541345,44.88094787603685],"feasible_probability":0.12173111461468031,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.103515625,"counts":{"0101010110":2,"0101011001":3,"0101011010":53,"0101100110":2,"0101101010":5,"0110010101":1,"0110010110":3,"0110011001":4,"0110011010":49,"0110100101":1,"0110100110":42,"0110101001":1,"0110101010":60,"1001010110":1,"1001011001":20,"1001011010":21,"1001100101":1,"1001100110":1,"1001101001":18,"1001101010":20,"1010010101":3,"1010010110":4,"1010011001":4,"1010011010":2,"1010100101":31,"1010100110":47,"1010101001":41,"1010101010":72},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12897052899643313},"metrics":{"exact_objective":17,"optimal_count":1,"combinations":32,"optimal_probability":0.12173111461468031,"feasible_probability":0.12173111461468031,"uniform_optimal_probability":0.03125,"uniform_feasible_probability":0.03125,"shots_for_95_percent":24,"hit_curve":[{"shots":8,"quantum":0.6459863747272773,"uniform":0.2243001202577943},{"shots":16,"quantum":0.8746743531212642,"uniform":0.3982896965679276},{"shots":32,"quantum":0.9842934822344265,"uniform":0.6379447107436834},{"shots":64,"quantum":0.9997533052996798,"uniform":0.8689159675215249},{"shots":128,"quantum":0.9999999391417248,"uniform":0.9828169764291821},{"shots":512,"quantum":1.0,"uniform":0.9999999128237179}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":11,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":17,"preference_cost":12,"change_cost":5,"changed_tasks":2,"max_start_shift":4,"choices":[2,1,0,0,0],"schedule":[{"task":"t0","resource":"r1","start":4,"end":5},{"task":"t1","resource":"r0","start":5,"end":6},{"task":"t2","resource":"r0","start":2,"end":3},{"task":"t3","resource":"r0","start":1,"end":2},{"task":"t4","resource":"r0","start":4,"end":5}]},"dual_bound":17.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":12,"runtime_seconds":0.0012583929928950965},"exact":{"status":"optimal","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true}],"bits":[0,1,0,1,1,0,1,0,1,0],"qubo_energy":17},"combinations":32,"feasible_count":1,"runtime_seconds":0.00028245199064258486},"greedy":{"status":"dead_end","best":null,"runtime_seconds":1.0172007023356855e-05},"resources":{"full":{"depth":25,"operations":{"RX":25,"I":10,"RZ":27,"CNOT":39,"CRY":5,"X":5},"cnot":39,"cry":5},"auto":{"depth":22,"operations":{"RX":25,"I":10,"RZ":22,"CNOT":29,"CRY":5,"X":5},"cnot":29,"cry":5}},"phase_max_probability_error":1.8041124150158794e-16,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":17,"uniform_objective":null},{"shots":32,"quantum_objective":17,"uniform_objective":17},{"shots":64,"quantum_objective":17,"uniform_objective":17},{"shots":128,"quantum_objective":17,"uniform_objective":17},{"shots":512,"quantum_objective":17,"uniform_objective":17}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,8,9]],"components":[{"qubits":10,"penalty":25,"objective_bound":24,"offset":125,"linear":[-20,-19,-22,-23,-22,-21,-22,-18,-22,-21],"quadratic":[[0,1,50],[0,2,25],[0,8,25],[1,2,25],[2,3,50],[2,6,25],[3,5,25],[4,5,50],[4,7,25],[4,9,25],[6,7,50],[8,9,50]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":4,"cost":5},{"index":1,"task":"t0","resource":"r1","start":4,"cost":6},{"index":2,"task":"t1","resource":"r0","start":1,"cost":3},{"index":3,"task":"t1","resource":"r0","start":5,"cost":2},{"index":4,"task":"t2","resource":"r0","start":2,"cost":3},{"index":5,"task":"t2","resource":"r0","start":5,"cost":4},{"index":6,"task":"t3","resource":"r0","start":1,"cost":3},{"index":7,"task":"t3","resource":"r1","start":2,"cost":7},{"index":8,"task":"t4","resource":"r0","start":4,"cost":3},{"index":9,"task":"t4","resource":"r0","start":2,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":4,"j":7,"reasons":["group"]},{"i":4,"j":9,"reasons":["resource"]}]}]},"diagnostic_seconds":0.024347694998141378}
+{"input":{"file":"evaluation-n5-d1.json","split":"evaluation","tasks":5,"density_parameter":1,"data_seed":20260973,"sha256":"778be907478568fc0cd92503e0ae9e228b7caf62dc8b0c8f6cfe56dc337d42e6"},"model":{"qubits":10,"penalty":25,"objective_bound":24,"offset":125,"linear":[-20,-19,-22,-23,-22,-21,-22,-18,-22,-21],"quadratic":[[0,1,50],[0,2,25],[0,8,25],[1,2,25],[2,3,50],[2,6,25],[3,5,25],[4,5,50],[4,7,25],[4,9,25],[6,7,50],[8,9,50]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":4,"cost":5},{"index":1,"task":"t0","resource":"r1","start":4,"cost":6},{"index":2,"task":"t1","resource":"r0","start":1,"cost":3},{"index":3,"task":"t1","resource":"r0","start":5,"cost":2},{"index":4,"task":"t2","resource":"r0","start":2,"cost":3},{"index":5,"task":"t2","resource":"r0","start":5,"cost":4},{"index":6,"task":"t3","resource":"r0","start":1,"cost":3},{"index":7,"task":"t3","resource":"r1","start":2,"cost":7},{"index":8,"task":"t4","resource":"r0","start":4,"cost":3},{"index":9,"task":"t4","resource":"r0","start":2,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":4,"j":7,"reasons":["group"]},{"i":4,"j":9,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true}],"bits":[0,1,0,1,1,0,1,0,1,0],"qubo_energy":17},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.1279275791790544,1.3268030165640887],"expected_energy":41.7530995193387,"initial_expected_energy":64.18617861196985,"history":[64.18617861196985,64.14340450265567,48.892401695439744,79.7041415740745,59.517916415404116,50.383995133809364,49.126453425972024,49.68878395884725,48.047747032897696,49.234988145577475,47.2059827547267,47.01277813264704,45.97750115625653,46.486692802581274,46.26740482710919,45.94476418163591,47.805739338989945,45.34650856571872,44.9403919640738,44.65244997286257,44.315426734055116,43.72065720218548,43.459162032918414,43.18888365624305,44.08074661737684,45.01734706666765,43.494708453231716,42.51557293447703,42.38099627676954,42.268295284146234,42.38770250853877,42.245331640858296,42.20829557089048,42.17740927559272,42.17068154486266,42.14187325870638,42.114840049278655,42.06466043203633,41.997263008773174,41.950459567618985,41.883463476208185,41.80439730865939,42.56624361495389,41.83142279717356,41.80198917425709,41.9129812006239,41.77477473908173,41.768343630821526,41.76389822096735,41.7740299991013,41.76249074214666,41.76133917971774,41.76486837936101,41.7599631220652,41.75939781615297,41.758494617505576,41.75697362134645,41.756847657016834,41.75448613658703,41.76302995403462,65.0163620132198,70.40183584110471,63.67892633765588,65.09155587629299,62.849639769968995,58.04400875783646,66.13157732410542,64.27541241290646,53.992920847573075,53.303566232686464,63.40803716338762,53.03812228342089,48.53713759585051,42.5306845002972,42.24605508266678,44.01629329541895,41.755828785877654,42.102753160485584,41.91773753908156,41.878404362032306,41.98604331745614,41.82594759315194,41.75401577886388,41.76103922315166,41.75957083339938,41.756468890459416,41.75389304785985,41.75387405867069,41.7542175109045,41.753949579237066,41.75365801032934,41.753669953651,41.753609863012876,41.753570602041734,41.753530542404775,41.75378527492947,41.75350006902345,41.75343600515601,41.75340147980799,41.753447392548225,41.75338229306401,41.753364640688005,41.75332971421063,41.753266561405,41.75327883870173,41.753327335638836,41.753255140925035,41.753287618024515,41.753250699493506,41.75323770936873,41.75321728995026,41.75333468710316,41.75320767394439,41.75318492955472,41.75314605136916,41.75312546380977,41.75332865647025,41.75333167429457,41.753124623693004,41.7530995193387],"feasible_probability":0.20652699885007852,"one_hot_probability":1.0,"sampled_feasible_fraction":0.216796875,"counts":{"0101010101":1,"0101010110":4,"0101011001":16,"0101011010":111,"0101100101":1,"0101100110":7,"0101101001":7,"0101101010":28,"0110010110":2,"0110011001":1,"0110011010":14,"0110100101":1,"0110100110":38,"0110101001":3,"0110101010":39,"1001010101":2,"1001010110":1,"1001011001":28,"1001011010":8,"1001100101":1,"1001101001":43,"1001101010":33,"1010011001":1,"1010011010":4,"1010100101":33,"1010100110":30,"1010101001":31,"1010101010":24},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12436825600161683},"metrics":{"exact_objective":17,"optimal_count":1,"combinations":32,"optimal_probability":0.20652699885007852,"feasible_probability":0.20652699885007852,"uniform_optimal_probability":0.03125,"uniform_feasible_probability":0.03125,"shots_for_95_percent":13,"hit_curve":[{"shots":8,"quantum":0.8428706797590967,"uniform":0.2243001202577943},{"shots":16,"quantum":0.9753103767206317,"uniform":0.3982896965679276},{"shots":32,"quantum":0.9993904225023229,"uniform":0.6379447107436834},{"shots":64,"quantum":0.9999996284152743,"uniform":0.8689159675215249},{"shots":128,"quantum":0.9999999999998619,"uniform":0.9828169764291821},{"shots":512,"quantum":1.0,"uniform":0.9999999128237179}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":11,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":17,"preference_cost":12,"change_cost":5,"changed_tasks":2,"max_start_shift":4,"choices":[2,1,0,0,0],"schedule":[{"task":"t0","resource":"r1","start":4,"end":5},{"task":"t1","resource":"r0","start":5,"end":6},{"task":"t2","resource":"r0","start":2,"end":3},{"task":"t3","resource":"r0","start":1,"end":2},{"task":"t4","resource":"r0","start":4,"end":5}]},"dual_bound":17.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":12,"runtime_seconds":0.0012583929928950965},"exact":{"status":"optimal","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true}],"bits":[0,1,0,1,1,0,1,0,1,0],"qubo_energy":17},"combinations":32,"feasible_count":1,"runtime_seconds":0.00028245199064258486},"greedy":{"status":"dead_end","best":null,"runtime_seconds":1.0172007023356855e-05},"resources":{"full":{"depth":25,"operations":{"RX":25,"I":10,"RZ":27,"CNOT":39,"CRY":5,"X":5},"cnot":39,"cry":5},"auto":{"depth":22,"operations":{"RX":25,"I":10,"RZ":22,"CNOT":29,"CRY":5,"X":5},"cnot":29,"cry":5}},"phase_max_probability_error":5.551115123125783e-17,"samples":[{"shots":8,"quantum_objective":17,"uniform_objective":17},{"shots":16,"quantum_objective":17,"uniform_objective":17},{"shots":32,"quantum_objective":17,"uniform_objective":17},{"shots":64,"quantum_objective":17,"uniform_objective":null},{"shots":128,"quantum_objective":17,"uniform_objective":17},{"shots":512,"quantum_objective":17,"uniform_objective":17}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,8,9]],"components":[{"qubits":10,"penalty":25,"objective_bound":24,"offset":125,"linear":[-20,-19,-22,-23,-22,-21,-22,-18,-22,-21],"quadratic":[[0,1,50],[0,2,25],[0,8,25],[1,2,25],[2,3,50],[2,6,25],[3,5,25],[4,5,50],[4,7,25],[4,9,25],[6,7,50],[8,9,50]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":4,"cost":5},{"index":1,"task":"t0","resource":"r1","start":4,"cost":6},{"index":2,"task":"t1","resource":"r0","start":1,"cost":3},{"index":3,"task":"t1","resource":"r0","start":5,"cost":2},{"index":4,"task":"t2","resource":"r0","start":2,"cost":3},{"index":5,"task":"t2","resource":"r0","start":5,"cost":4},{"index":6,"task":"t3","resource":"r0","start":1,"cost":3},{"index":7,"task":"t3","resource":"r1","start":2,"cost":7},{"index":8,"task":"t4","resource":"r0","start":4,"cost":3},{"index":9,"task":"t4","resource":"r0","start":2,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":4,"j":7,"reasons":["group"]},{"i":4,"j":9,"reasons":["resource"]}]}]},"diagnostic_seconds":0.022368388992617838}
+{"input":{"file":"evaluation-n5-d1.json","split":"evaluation","tasks":5,"density_parameter":1,"data_seed":20260973,"sha256":"778be907478568fc0cd92503e0ae9e228b7caf62dc8b0c8f6cfe56dc337d42e6"},"model":{"qubits":10,"penalty":25,"objective_bound":24,"offset":125,"linear":[-20,-19,-22,-23,-22,-21,-22,-18,-22,-21],"quadratic":[[0,1,50],[0,2,25],[0,8,25],[1,2,25],[2,3,50],[2,6,25],[3,5,25],[4,5,50],[4,7,25],[4,9,25],[6,7,50],[8,9,50]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":4,"cost":5},{"index":1,"task":"t0","resource":"r1","start":4,"cost":6},{"index":2,"task":"t1","resource":"r0","start":1,"cost":3},{"index":3,"task":"t1","resource":"r0","start":5,"cost":2},{"index":4,"task":"t2","resource":"r0","start":2,"cost":3},{"index":5,"task":"t2","resource":"r0","start":5,"cost":4},{"index":6,"task":"t3","resource":"r0","start":1,"cost":3},{"index":7,"task":"t3","resource":"r1","start":2,"cost":7},{"index":8,"task":"t4","resource":"r0","start":4,"cost":3},{"index":9,"task":"t4","resource":"r0","start":2,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":4,"j":7,"reasons":["group"]},{"i":4,"j":9,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true}],"bits":[0,1,0,1,1,0,1,0,1,0],"qubo_energy":17},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.9264190022655825,0.6604716208648921],"expected_energy":61.12748648812933,"initial_expected_energy":63.52158764597658,"history":[63.52158764597658,65.05628198717739,67.03998204478509,71.92258932313808,65.69224776773451,66.62135715558074,63.313527105499766,62.89367745105325,62.94425550295409,62.9330936726788,62.92249843726268,62.88539470914855,62.87198116743508,62.86903493654003,62.85696351697382,62.84546763996658,62.825087594238596,62.831072503804506,62.80553453821402,62.803068932882915,62.845466550832526,62.786417031754574,62.7581119290777,62.715286994998976,62.60317552878331,62.442610528565,62.68680514997858,63.70798782557405,62.37523591083093,62.35774132472806,62.52342925771033,62.337542945325204,62.2819870010942,62.244587669667496,62.257939119613454,62.228441268500234,62.21291561755584,62.182283803055284,62.121301373303616,61.99975549948333,61.7650807515313,63.60030073360963,62.432773239709924,62.11852636277531,61.72516089737915,61.71287036487398,61.68045598796101,61.618594538235214,61.50257038087845,61.381330642617705,62.994001560131906,61.23137124391336,61.47224234465903,61.28760622056332,61.21551425325222,61.18647040086418,61.16426023381081,61.16476650121646,61.13004380821522,61.12748648812933,70.75016015901495,67.76881072405435,63.750690918332225,69.85449737516376,64.44933892321326,64.59460692195887,63.76002851846812,63.83555038069873,63.95769910777952,63.76239306117621,63.77426275598246,63.74861177769971,63.74803744442867,63.749430975191515,63.748659483206126,63.747947905041144,63.7479631983679,63.747960389104676,63.74789024219224,63.74785560435671,63.74805113549756,63.74778697702895,63.74772673813672,63.747618027186796,63.747395338491096,63.74692908702639,63.74638700647601,63.74532184321794,63.75481773863025,63.747244840804186,63.74516832268043,63.74833759261314,63.74475722615817,63.744370109771125,63.74414499339285,63.74478769435033,63.74394569047965,63.74379183179495,63.74342900366025,63.742656961796555,63.74132763007479,63.737734576382266,63.75704433386595,63.75287395681268,63.73702272486999,63.7466120823105,63.736056022631864,63.73623372025599,63.73685269473748,63.73610349742873,63.73575956330539,63.7352676704568,63.734120914849655,63.73176195496832,63.72835093076429,63.747991307294626,63.763465616573086,63.72655619583526,63.72677218816387,63.72728217491483],"feasible_probability":0.04492129182463776,"one_hot_probability":1.0,"sampled_feasible_fraction":0.041015625,"counts":{"0101010101":21,"0101010110":27,"0101011001":22,"0101011010":21,"0101100101":3,"0101100110":15,"0101101001":7,"0101101010":12,"0110010101":35,"0110010110":23,"0110011001":10,"0110011010":10,"0110100101":2,"0110100110":25,"0110101001":8,"0110101010":19,"1001010101":41,"1001010110":2,"1001011001":30,"1001011010":5,"1001100101":15,"1001100110":10,"1001101001":8,"1001101010":2,"1010010101":9,"1010010110":7,"1010011001":6,"1010100101":53,"1010100110":6,"1010101001":46,"1010101010":12},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12145106100069825},"metrics":{"exact_objective":17,"optimal_count":1,"combinations":32,"optimal_probability":0.04492129182463776,"feasible_probability":0.04492129182463776,"uniform_optimal_probability":0.03125,"uniform_feasible_probability":0.03125,"shots_for_95_percent":66,"hit_curve":[{"shots":8,"quantum":0.3076697516316439,"uniform":0.2243001202577943},{"shots":16,"quantum":0.5206788271942103,"uniform":0.3982896965679276},{"shots":32,"quantum":0.7702512133000823,"uniform":0.6379447107436834},{"shots":64,"quantum":0.9472154950099158,"uniform":0.8689159675215249},{"shots":128,"quantum":0.9972137960329518,"uniform":0.9828169764291821},{"shots":512,"quantum":0.9999999999397369,"uniform":0.9999999128237179}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":11,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":17,"preference_cost":12,"change_cost":5,"changed_tasks":2,"max_start_shift":4,"choices":[2,1,0,0,0],"schedule":[{"task":"t0","resource":"r1","start":4,"end":5},{"task":"t1","resource":"r0","start":5,"end":6},{"task":"t2","resource":"r0","start":2,"end":3},{"task":"t3","resource":"r0","start":1,"end":2},{"task":"t4","resource":"r0","start":4,"end":5}]},"dual_bound":17.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":12,"runtime_seconds":0.0012583929928950965},"exact":{"status":"optimal","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true}],"bits":[0,1,0,1,1,0,1,0,1,0],"qubo_energy":17},"combinations":32,"feasible_count":1,"runtime_seconds":0.00028245199064258486},"greedy":{"status":"dead_end","best":null,"runtime_seconds":1.0172007023356855e-05},"resources":{"full":{"depth":25,"operations":{"RX":25,"I":10,"RZ":27,"CNOT":39,"CRY":5,"X":5},"cnot":39,"cry":5},"auto":{"depth":22,"operations":{"RX":25,"I":10,"RZ":22,"CNOT":29,"CRY":5,"X":5},"cnot":29,"cry":5}},"phase_max_probability_error":1.249000902703301e-16,"samples":[{"shots":8,"quantum_objective":17,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":17,"uniform_objective":17},{"shots":64,"quantum_objective":17,"uniform_objective":17},{"shots":128,"quantum_objective":17,"uniform_objective":17},{"shots":512,"quantum_objective":17,"uniform_objective":17}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,8,9]],"components":[{"qubits":10,"penalty":25,"objective_bound":24,"offset":125,"linear":[-20,-19,-22,-23,-22,-21,-22,-18,-22,-21],"quadratic":[[0,1,50],[0,2,25],[0,8,25],[1,2,25],[2,3,50],[2,6,25],[3,5,25],[4,5,50],[4,7,25],[4,9,25],[6,7,50],[8,9,50]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":4,"cost":5},{"index":1,"task":"t0","resource":"r1","start":4,"cost":6},{"index":2,"task":"t1","resource":"r0","start":1,"cost":3},{"index":3,"task":"t1","resource":"r0","start":5,"cost":2},{"index":4,"task":"t2","resource":"r0","start":2,"cost":3},{"index":5,"task":"t2","resource":"r0","start":5,"cost":4},{"index":6,"task":"t3","resource":"r0","start":1,"cost":3},{"index":7,"task":"t3","resource":"r1","start":2,"cost":7},{"index":8,"task":"t4","resource":"r0","start":4,"cost":3},{"index":9,"task":"t4","resource":"r0","start":2,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":4,"j":7,"reasons":["group"]},{"i":4,"j":9,"reasons":["resource"]}]}]},"diagnostic_seconds":0.025112627001362853}
+{"input":{"file":"evaluation-n5-d1.json","split":"evaluation","tasks":5,"density_parameter":1,"data_seed":20260973,"sha256":"778be907478568fc0cd92503e0ae9e228b7caf62dc8b0c8f6cfe56dc337d42e6"},"model":{"qubits":10,"penalty":25,"objective_bound":24,"offset":125,"linear":[-20,-19,-22,-23,-22,-21,-22,-18,-22,-21],"quadratic":[[0,1,50],[0,2,25],[0,8,25],[1,2,25],[2,3,50],[2,6,25],[3,5,25],[4,5,50],[4,7,25],[4,9,25],[6,7,50],[8,9,50]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":4,"cost":5},{"index":1,"task":"t0","resource":"r1","start":4,"cost":6},{"index":2,"task":"t1","resource":"r0","start":1,"cost":3},{"index":3,"task":"t1","resource":"r0","start":5,"cost":2},{"index":4,"task":"t2","resource":"r0","start":2,"cost":3},{"index":5,"task":"t2","resource":"r0","start":5,"cost":4},{"index":6,"task":"t3","resource":"r0","start":1,"cost":3},{"index":7,"task":"t3","resource":"r1","start":2,"cost":7},{"index":8,"task":"t4","resource":"r0","start":4,"cost":3},{"index":9,"task":"t4","resource":"r0","start":2,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":4,"j":7,"reasons":["group"]},{"i":4,"j":9,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true}],"bits":[0,1,0,1,1,0,1,0,1,0],"qubo_energy":17},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.1319406093766489,2.89758293662544],"expected_energy":41.753349971835846,"initial_expected_energy":70.37547946424561,"history":[70.37547946424561,67.01987903953356,64.28959503957228,66.1352445187453,63.85611837862634,63.19424488046884,66.15771655567272,69.08053148673216,63.368998903947244,63.29030213551166,63.21562936858566,63.494757203252846,63.00031181946457,63.315106679039026,62.95781905901615,62.893059094420295,62.76783773039071,62.498662045453216,63.89474181001519,63.48289259865594,62.86580954224862,62.46100584386095,62.51126873151107,62.44496666088273,62.500154646902274,62.43565510306655,62.418469810456514,62.388908512822695,62.335905655310384,62.228893177014484,62.23418308999974,62.26577886431775,62.24419035875521,62.26881439803735,62.22462078653662,62.206516351408325,62.18163661147668,62.20832756301478,62.16630791307909,62.15100190979355,62.11994268590898,62.057934210514674,61.93240741469023,61.723806576862266,61.8702245182172,63.08400067159468,61.637572393906915,61.785820679573035,61.67394542982666,61.59973741422705,61.610345212368614,61.6490197287176,61.601282892016584,61.580752076667224,61.55171953300258,61.488631676005255,61.38057408066483,61.38184136967507,61.64544338006819,61.34221706262273,57.82711096498997,64.4909512139134,71.95636150609387,61.18850185334668,46.923426484546084,70.09285440435538,52.102323049889215,48.33210064951282,47.26023337512118,48.0046969739234,46.20466650928209,45.653015899583266,44.91059019875064,43.61454682731999,43.57962801296964,42.44697525531033,48.99481765102873,42.1723785291295,42.09006774725717,42.3309912634348,42.26695851997097,42.14155412684905,42.04549272328643,41.970115059848986,41.883520376815454,41.89441022089066,41.87625287605189,41.859899034892344,41.85205895358356,41.876796580734286,41.84420544103588,41.83758296223666,41.825328188693035,41.816846063694186,41.79667634371923,41.812569487433706,41.79175399354112,41.81121626039183,41.791167490135784,41.78601703537853,41.783815352836726,41.77992819180779,41.776592139219574,41.77141464172436,41.76551369248314,41.75886042669907,41.75633022504614,41.76613213618475,41.760056605319136,41.75734719473282,41.75374926809853,41.75620991729956,41.753623068037776,41.75441857169746,41.753612670813055,41.75351432435283,41.753349971835846,41.75341292610454,41.75365763543141,41.753425450442926],"feasible_probability":0.2068007802411285,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.208984375,"counts":{"0101011001":14,"0101011010":107,"0101100101":2,"0101100110":3,"0101101001":9,"0101101010":22,"0110010101":1,"0110010110":3,"0110011010":19,"0110100101":2,"0110100110":37,"0110101001":1,"0110101010":40,"1001010101":3,"1001010110":1,"1001011001":33,"1001011010":20,"1001100101":1,"1001100110":1,"1001101001":33,"1001101010":36,"1010010110":2,"1010011010":1,"1010100101":31,"1010100110":20,"1010101001":39,"1010101010":31},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12487438000971451},"metrics":{"exact_objective":17,"optimal_count":1,"combinations":32,"optimal_probability":0.2068007802411285,"feasible_probability":0.2068007802411285,"uniform_optimal_probability":0.03125,"uniform_feasible_probability":0.03125,"shots_for_95_percent":13,"hit_curve":[{"shots":8,"quantum":0.84330388585734,"uniform":0.2243001202577943},{"shots":16,"quantum":0.9754463278125904,"uniform":0.3982896965679276},{"shots":32,"quantum":0.9993971171821132,"uniform":0.6379447107436834},{"shots":64,"quantum":0.999999636532308,"uniform":0.8689159675215249},{"shots":128,"quantum":0.9999999999998679,"uniform":0.9828169764291821},{"shots":512,"quantum":1.0,"uniform":0.9999999128237179}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":11,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":17,"preference_cost":12,"change_cost":5,"changed_tasks":2,"max_start_shift":4,"choices":[2,1,0,0,0],"schedule":[{"task":"t0","resource":"r1","start":4,"end":5},{"task":"t1","resource":"r0","start":5,"end":6},{"task":"t2","resource":"r0","start":2,"end":3},{"task":"t3","resource":"r0","start":1,"end":2},{"task":"t4","resource":"r0","start":4,"end":5}]},"dual_bound":17.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":12,"runtime_seconds":0.0012583929928950965},"exact":{"status":"optimal","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true}],"bits":[0,1,0,1,1,0,1,0,1,0],"qubo_energy":17},"combinations":32,"feasible_count":1,"runtime_seconds":0.00028245199064258486},"greedy":{"status":"dead_end","best":null,"runtime_seconds":1.0172007023356855e-05},"resources":{"full":{"depth":25,"operations":{"RX":25,"I":10,"RZ":27,"CNOT":39,"CRY":5,"X":5},"cnot":39,"cry":5},"auto":{"depth":22,"operations":{"RX":25,"I":10,"RZ":22,"CNOT":29,"CRY":5,"X":5},"cnot":29,"cry":5}},"phase_max_probability_error":5.551115123125783e-17,"samples":[{"shots":8,"quantum_objective":17,"uniform_objective":17},{"shots":16,"quantum_objective":17,"uniform_objective":17},{"shots":32,"quantum_objective":17,"uniform_objective":17},{"shots":64,"quantum_objective":17,"uniform_objective":17},{"shots":128,"quantum_objective":17,"uniform_objective":17},{"shots":512,"quantum_objective":17,"uniform_objective":17}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,8,9]],"components":[{"qubits":10,"penalty":25,"objective_bound":24,"offset":125,"linear":[-20,-19,-22,-23,-22,-21,-22,-18,-22,-21],"quadratic":[[0,1,50],[0,2,25],[0,8,25],[1,2,25],[2,3,50],[2,6,25],[3,5,25],[4,5,50],[4,7,25],[4,9,25],[6,7,50],[8,9,50]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":4,"cost":5},{"index":1,"task":"t0","resource":"r1","start":4,"cost":6},{"index":2,"task":"t1","resource":"r0","start":1,"cost":3},{"index":3,"task":"t1","resource":"r0","start":5,"cost":2},{"index":4,"task":"t2","resource":"r0","start":2,"cost":3},{"index":5,"task":"t2","resource":"r0","start":5,"cost":4},{"index":6,"task":"t3","resource":"r0","start":1,"cost":3},{"index":7,"task":"t3","resource":"r1","start":2,"cost":7},{"index":8,"task":"t4","resource":"r0","start":4,"cost":3},{"index":9,"task":"t4","resource":"r0","start":2,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":4,"j":7,"reasons":["group"]},{"i":4,"j":9,"reasons":["resource"]}]}]},"diagnostic_seconds":0.022345020988723263}
+{"input":{"file":"evaluation-n5-d1.json","split":"evaluation","tasks":5,"density_parameter":1,"data_seed":20260973,"sha256":"778be907478568fc0cd92503e0ae9e228b7caf62dc8b0c8f6cfe56dc337d42e6"},"model":{"qubits":10,"penalty":25,"objective_bound":24,"offset":125,"linear":[-20,-19,-22,-23,-22,-21,-22,-18,-22,-21],"quadratic":[[0,1,50],[0,2,25],[0,8,25],[1,2,25],[2,3,50],[2,6,25],[3,5,25],[4,5,50],[4,7,25],[4,9,25],[6,7,50],[8,9,50]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":4,"cost":5},{"index":1,"task":"t0","resource":"r1","start":4,"cost":6},{"index":2,"task":"t1","resource":"r0","start":1,"cost":3},{"index":3,"task":"t1","resource":"r0","start":5,"cost":2},{"index":4,"task":"t2","resource":"r0","start":2,"cost":3},{"index":5,"task":"t2","resource":"r0","start":5,"cost":4},{"index":6,"task":"t3","resource":"r0","start":1,"cost":3},{"index":7,"task":"t3","resource":"r1","start":2,"cost":7},{"index":8,"task":"t4","resource":"r0","start":4,"cost":3},{"index":9,"task":"t4","resource":"r0","start":2,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":4,"j":7,"reasons":["group"]},{"i":4,"j":9,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true}],"bits":[0,1,0,1,1,0,1,0,1,0],"qubo_energy":17},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.133114205658528,1.3267168479530227],"expected_energy":41.7535487995051,"initial_expected_energy":66.85192078384769,"history":[66.85192078384769,67.2799706605233,51.7251272715711,74.4602098682576,43.8422984084838,42.251969253769516,61.43217781211118,45.6731081363657,42.29205922177103,44.32860194693407,42.06789121775566,44.00098401295382,41.95722627860438,42.0613203427205,41.923249397495326,41.864826671452775,41.82043149176831,41.80561522209514,41.8312699869966,41.80213043832081,41.79303946784428,41.79287884232398,41.8182137573899,41.78539678885311,41.78127855277392,41.77864986458395,41.78355674822927,41.7768598876557,41.77524557252511,41.774453346704725,41.77061718684678,41.768674940365365,41.76577176480949,41.7618448855015,41.75992790864464,41.75595153739806,41.76243295079352,41.7645331417661,41.75832106610706,41.75632079166819,41.75620312959788,41.755985685664385,41.75572692599214,41.7555842578393,41.75659798417077,41.75528693896358,41.75507411919035,41.754735952846666,41.75412026415667,41.75699593851285,41.75508713789895,41.754580541395605,41.754034200926,41.75402919894937,41.75388623478848,41.75375825306642,41.7535487995051,41.75391366667376,41.75378187233514,41.7536135551474,75.75520977135335,73.09777447093772,66.48535141023692,54.71809816197296,61.408397677735145,61.44118330241143,62.68203576645197,58.09455886488187,55.190919473953926,54.493489683351186,53.516900275626895,51.62340252479112,48.34741602760842,48.39552559993895,58.42057072494469,48.778461195857744,48.529518075934135,49.536050904019284,47.87463503845321,47.74926181202054,48.345477971429546,47.51489055521694,47.292822808446125,46.86679615138604,46.06446639970214,44.75015861591089,47.65930569209776,49.368758008438896,44.72834726329278,44.276041076478464,43.56406718973341,42.73139410641273,43.42959470090737,44.16541793017684,42.80359375196449,42.64753391528579,42.53572391331427,42.46479995515011,42.373591309438574,42.223053997229805,42.182879956028344,42.062485730147415,43.0275712845726,41.87528886933791,42.114803352430954,41.853148655837856,41.9139471889849,41.85359351375102,41.84261499741214,41.83960820021867,41.87132670419364,41.82348806744244,41.8189260438368,41.80616195864313,41.79445825164812,41.78008091764523,41.778761610450545,41.8126365341932,41.76454894604447,41.76950108481877],"feasible_probability":0.2068797945002781,"one_hot_probability":1.0,"sampled_feasible_fraction":0.18359375,"counts":{"0101010110":4,"0101011001":23,"0101011010":94,"0101100110":3,"0101101001":3,"0101101010":29,"0110010101":1,"0110010110":5,"0110011001":2,"0110011010":12,"0110100101":6,"0110100110":42,"0110101001":2,"0110101010":33,"1001010101":5,"1001011001":29,"1001011010":11,"1001100101":4,"1001100110":3,"1001101001":31,"1001101010":32,"1010010101":1,"1010011001":2,"1010011010":1,"1010100101":22,"1010100110":34,"1010101001":34,"1010101010":44},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1267120429984061},"metrics":{"exact_objective":17,"optimal_count":1,"combinations":32,"optimal_probability":0.2068797945002781,"feasible_probability":0.2068797945002781,"uniform_optimal_probability":0.03125,"uniform_feasible_probability":0.03125,"shots_for_95_percent":13,"hit_curve":[{"shots":8,"quantum":0.8434287161515882,"uniform":0.2243001202577943},{"shots":16,"quantum":0.9754854330740601,"uniform":0.3982896965679276},{"shots":32,"quantum":0.9993990360084336,"uniform":0.6379447107436834},{"shots":64,"quantum":0.9999996388422808,"uniform":0.8689159675215249},{"shots":128,"quantum":0.9999999999998695,"uniform":0.9828169764291821},{"shots":512,"quantum":1.0,"uniform":0.9999999128237179}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":11,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":17,"preference_cost":12,"change_cost":5,"changed_tasks":2,"max_start_shift":4,"choices":[2,1,0,0,0],"schedule":[{"task":"t0","resource":"r1","start":4,"end":5},{"task":"t1","resource":"r0","start":5,"end":6},{"task":"t2","resource":"r0","start":2,"end":3},{"task":"t3","resource":"r0","start":1,"end":2},{"task":"t4","resource":"r0","start":4,"end":5}]},"dual_bound":17.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":12,"runtime_seconds":0.0012583929928950965},"exact":{"status":"optimal","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true}],"bits":[0,1,0,1,1,0,1,0,1,0],"qubo_energy":17},"combinations":32,"feasible_count":1,"runtime_seconds":0.00028245199064258486},"greedy":{"status":"dead_end","best":null,"runtime_seconds":1.0172007023356855e-05},"resources":{"full":{"depth":25,"operations":{"RX":25,"I":10,"RZ":27,"CNOT":39,"CRY":5,"X":5},"cnot":39,"cry":5},"auto":{"depth":22,"operations":{"RX":25,"I":10,"RZ":22,"CNOT":29,"CRY":5,"X":5},"cnot":29,"cry":5}},"phase_max_probability_error":1.1102230246251565e-16,"samples":[{"shots":8,"quantum_objective":17,"uniform_objective":null},{"shots":16,"quantum_objective":17,"uniform_objective":null},{"shots":32,"quantum_objective":17,"uniform_objective":17},{"shots":64,"quantum_objective":17,"uniform_objective":17},{"shots":128,"quantum_objective":17,"uniform_objective":17},{"shots":512,"quantum_objective":17,"uniform_objective":17}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,8,9]],"components":[{"qubits":10,"penalty":25,"objective_bound":24,"offset":125,"linear":[-20,-19,-22,-23,-22,-21,-22,-18,-22,-21],"quadratic":[[0,1,50],[0,2,25],[0,8,25],[1,2,25],[2,3,50],[2,6,25],[3,5,25],[4,5,50],[4,7,25],[4,9,25],[6,7,50],[8,9,50]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":4,"cost":5},{"index":1,"task":"t0","resource":"r1","start":4,"cost":6},{"index":2,"task":"t1","resource":"r0","start":1,"cost":3},{"index":3,"task":"t1","resource":"r0","start":5,"cost":2},{"index":4,"task":"t2","resource":"r0","start":2,"cost":3},{"index":5,"task":"t2","resource":"r0","start":5,"cost":4},{"index":6,"task":"t3","resource":"r0","start":1,"cost":3},{"index":7,"task":"t3","resource":"r1","start":2,"cost":7},{"index":8,"task":"t4","resource":"r0","start":4,"cost":3},{"index":9,"task":"t4","resource":"r0","start":2,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":4,"j":7,"reasons":["group"]},{"i":4,"j":9,"reasons":["resource"]}]}]},"diagnostic_seconds":0.024186965994886123}
+{"input":{"file":"evaluation-n5-d1.json","split":"evaluation","tasks":5,"density_parameter":1,"data_seed":20260973,"sha256":"778be907478568fc0cd92503e0ae9e228b7caf62dc8b0c8f6cfe56dc337d42e6"},"model":{"qubits":10,"penalty":25,"objective_bound":24,"offset":125,"linear":[-20,-19,-22,-23,-22,-21,-22,-18,-22,-21],"quadratic":[[0,1,50],[0,2,25],[0,8,25],[1,2,25],[2,3,50],[2,6,25],[3,5,25],[4,5,50],[4,7,25],[4,9,25],[6,7,50],[8,9,50]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":4,"cost":5},{"index":1,"task":"t0","resource":"r1","start":4,"cost":6},{"index":2,"task":"t1","resource":"r0","start":1,"cost":3},{"index":3,"task":"t1","resource":"r0","start":5,"cost":2},{"index":4,"task":"t2","resource":"r0","start":2,"cost":3},{"index":5,"task":"t2","resource":"r0","start":5,"cost":4},{"index":6,"task":"t3","resource":"r0","start":1,"cost":3},{"index":7,"task":"t3","resource":"r1","start":2,"cost":7},{"index":8,"task":"t4","resource":"r0","start":4,"cost":3},{"index":9,"task":"t4","resource":"r0","start":2,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":4,"j":7,"reasons":["group"]},{"i":4,"j":9,"reasons":["resource"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true}],"bits":[0,1,0,1,1,0,1,0,1,0],"qubo_energy":17},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.1387344527777106,1.3269167463276903],"expected_energy":41.755220300678204,"initial_expected_energy":46.36059252768247,"history":[46.36059252768247,45.45717016563117,79.39273904977154,66.91087269642439,75.2757682620781,43.30895879543647,51.949252066361765,43.43113276188322,42.53777038148946,43.56969203408276,42.78213143328743,42.57590242437011,42.45839531278888,42.517505011472906,42.42481855266143,42.41166603112906,42.37509486713688,42.30934084689592,42.18979586897947,42.284745884597335,42.253025844157335,42.18641682847988,42.238359197737736,42.145859182117356,42.09120069524071,42.05515767979434,42.01085679051983,41.97706864716821,42.14142036044892,41.958275192327235,41.92302877921894,41.86478705556632,41.979461212567486,41.918629225978904,41.91259857095005,41.87898992825787,41.8484203366966,41.86067038242295,41.835703558978096,41.82433701080129,41.80301422970074,41.775819151008605,41.82053712951155,41.841462193096234,41.77180983098373,41.7708957688585,41.766578876132286,41.764719494868096,41.78703228707509,41.75956951329968,41.771292340071035,41.75780894080175,41.7591473278048,41.75774312809794,41.7574002338208,41.75713901685451,41.75663166147643,41.756116396069494,41.755220300678204,41.75720982361739,64.12346624565909,63.83473747486522,67.94035805885979,68.02950416163051,68.19016086361832,64.4447142426395,63.824481587830086,64.2700199397375,63.78455729107457,64.11332505481997,63.78260484668805,63.83882155986,63.78148070689203,63.76635055795731,63.755457636959015,63.74644299333292,63.74924968202225,63.745334090074564,63.74698721426415,63.74501352156052,63.74434360419795,63.74430118881763,63.75009570423891,63.74252439843693,63.74467968694669,63.742264203026565,63.74336096477412,63.74194759348556,63.74168024397336,63.741157034680406,63.740040537707074,63.73867993091712,63.73682972669155,63.73845845477179,63.741622538209796,63.73674533472437,63.73578170678347,63.73575304563752,63.73624302069896,63.735800188586545,63.7355593385322,63.73525580602391,63.735455199531984,63.734986311736215,63.734753863141194,63.73446100085242,63.735395945419214,63.73430188078174,63.73395488903899,63.73366027618192,63.73369259269934,63.733412566577925,63.73319366043222,63.73289001342545,63.73335761431368,63.732677061980326,63.73235010749854,63.732288885553054,63.731984676255756,63.73168836170934],"feasible_probability":0.20724863406064953,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.212890625,"counts":{"0101010110":2,"0101011001":10,"0101011010":109,"0101100110":7,"0101101001":9,"0101101010":29,"0110010101":3,"0110010110":2,"0110011010":16,"0110100101":2,"0110100110":32,"0110101001":3,"0110101010":43,"1001010101":2,"1001010110":1,"1001011001":23,"1001011010":23,"1001100101":1,"1001101001":45,"1001101010":26,"1010010110":1,"1010011001":1,"1010011010":1,"1010100101":27,"1010100110":31,"1010101001":34,"1010101010":29},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13200859499920625},"metrics":{"exact_objective":17,"optimal_count":1,"combinations":32,"optimal_probability":0.20724863406064953,"feasible_probability":0.20724863406064953,"uniform_optimal_probability":0.03125,"uniform_feasible_probability":0.03125,"shots_for_95_percent":13,"hit_curve":[{"shots":8,"quantum":0.8440102751436719,"uniform":0.2243001202577943},{"shots":16,"quantum":0.975667205739247,"uniform":0.3982896965679276},{"shots":32,"quantum":0.9994079151234638,"uniform":0.6379447107436834},{"shots":64,"quantum":0.999999649435499,"uniform":0.8689159675215249},{"shots":128,"quantum":0.9999999999998771,"uniform":0.9828169764291821},{"shots":512,"quantum":1.0,"uniform":0.9999999128237179}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":11,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":17,"preference_cost":12,"change_cost":5,"changed_tasks":2,"max_start_shift":4,"choices":[2,1,0,0,0],"schedule":[{"task":"t0","resource":"r1","start":4,"end":5},{"task":"t1","resource":"r0","start":5,"end":6},{"task":"t2","resource":"r0","start":2,"end":3},{"task":"t3","resource":"r0","start":1,"end":2},{"task":"t4","resource":"r0","start":4,"end":5}]},"dual_bound":17.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":12,"runtime_seconds":0.0012583929928950965},"exact":{"status":"optimal","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true}],"bits":[0,1,0,1,1,0,1,0,1,0],"qubo_energy":17},"combinations":32,"feasible_count":1,"runtime_seconds":0.00028245199064258486},"greedy":{"status":"dead_end","best":null,"runtime_seconds":1.0172007023356855e-05},"resources":{"full":{"depth":25,"operations":{"RX":25,"I":10,"RZ":27,"CNOT":39,"CRY":5,"X":5},"cnot":39,"cry":5},"auto":{"depth":22,"operations":{"RX":25,"I":10,"RZ":22,"CNOT":29,"CRY":5,"X":5},"cnot":29,"cry":5}},"phase_max_probability_error":1.1102230246251565e-16,"samples":[{"shots":8,"quantum_objective":17,"uniform_objective":null},{"shots":16,"quantum_objective":17,"uniform_objective":17},{"shots":32,"quantum_objective":17,"uniform_objective":17},{"shots":64,"quantum_objective":17,"uniform_objective":null},{"shots":128,"quantum_objective":17,"uniform_objective":17},{"shots":512,"quantum_objective":17,"uniform_objective":17}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,8,9]],"components":[{"qubits":10,"penalty":25,"objective_bound":24,"offset":125,"linear":[-20,-19,-22,-23,-22,-21,-22,-18,-22,-21],"quadratic":[[0,1,50],[0,2,25],[0,8,25],[1,2,25],[2,3,50],[2,6,25],[3,5,25],[4,5,50],[4,7,25],[4,9,25],[6,7,50],[8,9,50]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":4,"cost":5},{"index":1,"task":"t0","resource":"r1","start":4,"cost":6},{"index":2,"task":"t1","resource":"r0","start":1,"cost":3},{"index":3,"task":"t1","resource":"r0","start":5,"cost":2},{"index":4,"task":"t2","resource":"r0","start":2,"cost":3},{"index":5,"task":"t2","resource":"r0","start":5,"cost":4},{"index":6,"task":"t3","resource":"r0","start":1,"cost":3},{"index":7,"task":"t3","resource":"r1","start":2,"cost":7},{"index":8,"task":"t4","resource":"r0","start":4,"cost":3},{"index":9,"task":"t4","resource":"r0","start":2,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":4,"j":7,"reasons":["group"]},{"i":4,"j":9,"reasons":["resource"]}]}]},"diagnostic_seconds":0.023559199005831033}
+{"input":{"file":"evaluation-n5-d2.json","split":"evaluation","tasks":5,"density_parameter":2,"data_seed":20260974,"sha256":"27e8da20697a51e79b1d9cf2f1a5103f183a804008384928ebe157dc6a0766ff"},"model":{"qubits":10,"penalty":23,"objective_bound":22,"offset":115,"linear":[-15,-15,-19,-22,-19,-17,-22,-22,-23,-20],"quadratic":[[0,1,46],[0,3,23],[0,5,23],[0,6,23],[0,8,23],[1,2,23],[1,7,23],[1,9,23],[2,3,46],[2,7,23],[2,9,23],[3,5,23],[3,6,23],[3,8,23],[4,5,46],[5,6,23],[5,8,23],[6,7,46],[6,8,23],[7,9,23],[8,9,46]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":8},{"index":1,"task":"t0","resource":"r0","start":3,"cost":8},{"index":2,"task":"t1","resource":"r0","start":3,"cost":4},{"index":3,"task":"t1","resource":"r0","start":1,"cost":1},{"index":4,"task":"t2","resource":"r0","start":2,"cost":4},{"index":5,"task":"t2","resource":"r0","start":1,"cost":6},{"index":6,"task":"t3","resource":"r0","start":1,"cost":1},{"index":7,"task":"t3","resource":"r0","start":3,"cost":1},{"index":8,"task":"t4","resource":"r0","start":1,"cost":0},{"index":9,"task":"t4","resource":"r0","start":3,"cost":3}],"conflicts":[{"i":0,"j":3,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource","group"]},{"i":1,"j":7,"reasons":["resource"]},{"i":1,"j":9,"reasons":["resource"]},{"i":2,"j":7,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]},{"i":5,"j":8,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":7,"j":9,"reasons":["resource"]}]},"quantum":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":14,"violation_count":2,"violations":[{"kind":"conflict","tasks":["t0","t3"],"variables":[1,7],"reasons":["resource"]},{"kind":"conflict","tasks":["t1","t4"],"variables":[3,8],"reasons":["resource"]}],"schedule":[{"variable":3,"task":"t1","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true}],"bits":[0,1,0,1,1,0,0,1,1,0],"qubo_energy":60},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.0848119145327093,1.7100843060421407],"expected_energy":108.28303804062884,"initial_expected_energy":113.11353237100101,"history":[113.11353237100101,114.63016671481408,112.81389264921408,110.28737833751566,115.33537881624748,130.66224297836925,117.38603354217969,113.52351882548773,111.05364202685683,110.04404407728748,110.91753081034949,110.31414820543478,110.00196664660413,110.03048434145882,110.00263358470853,110.0409176766255,109.99474184263038,110.01855671126505,109.9928675223229,109.99320679692084,109.99275694880816,109.99281410848883,109.99283547891255,109.99267181499002,109.99278457770181,109.99256105832531,109.99248876603822,109.99241056213951,109.99228800247177,109.99248874888583,109.99218289982454,109.99204959958425,109.99194818260119,109.99346146176599,109.9916231938079,109.99154089123431,109.99135349608,109.99097963425072,109.99023319874671,109.98872817115489,109.98646443610917,110.0879100128422,110.0417371418749,109.98589791821394,109.98806619565636,109.99145518063278,109.9845059449323,109.98430607089006,109.98380319601256,109.98339145592172,109.98384413870374,109.98322548238616,109.98276537772392,109.98177490774059,109.97963577204723,109.97885128377777,109.99193050871662,110.00076472050405,109.979013809934,109.97539824571041,148.5161576633971,128.89623848822384,113.72423898944558,111.77208863855881,109.02173664792477,118.46599572295024,111.87759928617092,109.71808350737457,109.65105276078256,109.62773543194834,108.92744129830298,109.89248138017376,108.73511158080501,108.69804954634498,108.55911561307255,108.41717737770037,108.29012284755288,108.34760115672077,108.394821108881,108.29647143022643,108.29206663137413,108.2935680346746,108.28560969968997,108.28366656762394,108.28771901213838,108.28324043633071,108.28304792509321,108.28363517115719,108.28319582634076,108.28308685580313,108.2830491027547,108.28304866684132,108.28305769267229,108.28304722267946,108.28305033590867,108.28304418668182,108.28304188069926,108.28303907349866,108.28303889000127,108.28303810689627,108.28303819677605,108.28303830652195,108.28303820541252,108.28303843180754,108.28303812584045,108.28303804062884,108.28303804154123,108.28303804250254],"feasible_probability":0.0,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.0,"counts":{"0101010101":19,"0101010110":5,"0101011001":20,"0101011010":19,"0101100101":13,"0101100110":24,"0101101001":12,"0101101010":9,"0110010101":14,"0110010110":16,"0110011001":25,"0110011010":9,"0110100101":26,"0110100110":15,"0110101001":2,"0110101010":20,"1001010101":1,"1001010110":15,"1001011001":25,"1001011010":8,"1001100101":28,"1001100110":17,"1001101001":10,"1001101010":23,"1010010101":23,"1010010110":7,"1010011001":7,"1010011010":21,"1010100101":17,"1010100110":34,"1010101001":19,"1010101010":9},"circuit_evaluations":108,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":48}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1358335239929147},"metrics":{"exact_objective":null,"optimal_count":0,"combinations":32,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":11,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":21,"runtime_seconds":0.0012513070105342194},"exact":{"status":"infeasible","best":null,"combinations":32,"feasible_count":0,"runtime_seconds":0.00038583800778724253},"greedy":{"status":"dead_end","best":null,"runtime_seconds":1.6581994714215398e-05},"resources":{"full":{"depth":49,"operations":{"RX":25,"I":10,"RZ":36,"CNOT":57,"CRY":5,"X":5},"cnot":57,"cry":5},"auto":{"depth":36,"operations":{"RX":25,"I":10,"RZ":31,"CNOT":47,"CRY":5,"X":5},"cnot":47,"cry":5}},"phase_max_probability_error":9.020562075079397e-17,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":null,"uniform_objective":null},{"shots":64,"quantum_objective":null,"uniform_objective":null},{"shots":128,"quantum_objective":null,"uniform_objective":null},{"shots":512,"quantum_objective":null,"uniform_objective":null}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,8,9]],"components":[{"qubits":10,"penalty":23,"objective_bound":22,"offset":115,"linear":[-15,-15,-19,-22,-19,-17,-22,-22,-23,-20],"quadratic":[[0,1,46],[0,3,23],[0,5,23],[0,6,23],[0,8,23],[1,2,23],[1,7,23],[1,9,23],[2,3,46],[2,7,23],[2,9,23],[3,5,23],[3,6,23],[3,8,23],[4,5,46],[5,6,23],[5,8,23],[6,7,46],[6,8,23],[7,9,23],[8,9,46]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":8},{"index":1,"task":"t0","resource":"r0","start":3,"cost":8},{"index":2,"task":"t1","resource":"r0","start":3,"cost":4},{"index":3,"task":"t1","resource":"r0","start":1,"cost":1},{"index":4,"task":"t2","resource":"r0","start":2,"cost":4},{"index":5,"task":"t2","resource":"r0","start":1,"cost":6},{"index":6,"task":"t3","resource":"r0","start":1,"cost":1},{"index":7,"task":"t3","resource":"r0","start":3,"cost":1},{"index":8,"task":"t4","resource":"r0","start":1,"cost":0},{"index":9,"task":"t4","resource":"r0","start":3,"cost":3}],"conflicts":[{"i":0,"j":3,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource","group"]},{"i":1,"j":7,"reasons":["resource"]},{"i":1,"j":9,"reasons":["resource"]},{"i":2,"j":7,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]},{"i":5,"j":8,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":7,"j":9,"reasons":["resource"]}]}]},"diagnostic_seconds":0.026765688991872594}
+{"input":{"file":"evaluation-n5-d2.json","split":"evaluation","tasks":5,"density_parameter":2,"data_seed":20260974,"sha256":"27e8da20697a51e79b1d9cf2f1a5103f183a804008384928ebe157dc6a0766ff"},"model":{"qubits":10,"penalty":23,"objective_bound":22,"offset":115,"linear":[-15,-15,-19,-22,-19,-17,-22,-22,-23,-20],"quadratic":[[0,1,46],[0,3,23],[0,5,23],[0,6,23],[0,8,23],[1,2,23],[1,7,23],[1,9,23],[2,3,46],[2,7,23],[2,9,23],[3,5,23],[3,6,23],[3,8,23],[4,5,46],[5,6,23],[5,8,23],[6,7,46],[6,8,23],[7,9,23],[8,9,46]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":8},{"index":1,"task":"t0","resource":"r0","start":3,"cost":8},{"index":2,"task":"t1","resource":"r0","start":3,"cost":4},{"index":3,"task":"t1","resource":"r0","start":1,"cost":1},{"index":4,"task":"t2","resource":"r0","start":2,"cost":4},{"index":5,"task":"t2","resource":"r0","start":1,"cost":6},{"index":6,"task":"t3","resource":"r0","start":1,"cost":1},{"index":7,"task":"t3","resource":"r0","start":3,"cost":1},{"index":8,"task":"t4","resource":"r0","start":1,"cost":0},{"index":9,"task":"t4","resource":"r0","start":3,"cost":3}],"conflicts":[{"i":0,"j":3,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource","group"]},{"i":1,"j":7,"reasons":["resource"]},{"i":1,"j":9,"reasons":["resource"]},{"i":2,"j":7,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]},{"i":5,"j":8,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":7,"j":9,"reasons":["resource"]}]},"quantum":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":14,"violation_count":2,"violations":[{"kind":"conflict","tasks":["t0","t3"],"variables":[1,7],"reasons":["resource"]},{"kind":"conflict","tasks":["t1","t4"],"variables":[3,8],"reasons":["resource"]}],"schedule":[{"variable":3,"task":"t1","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true}],"bits":[0,1,0,1,1,0,0,1,1,0],"qubo_energy":60},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.084813441022849,0.13928259539979654],"expected_energy":108.28303803383116,"initial_expected_energy":130.97597417525935,"history":[130.97597417525935,126.3767540424711,132.0249376661055,108.76608919895833,110.48662658614063,125.13272660514062,113.08731003621708,113.38191379519587,108.86824101090224,108.33398631539362,108.57296099416301,108.29727280042134,108.33779395748336,108.29427103114605,108.28756702689853,108.28484308915294,108.28948791837335,108.28374971040552,108.28345988367644,108.28306516524788,108.283373456089,108.28332175553375,108.28304931687553,108.28308059983016,108.28305033989673,108.28306456665914,108.28305098514872,108.28304474847538,108.28304142009455,108.2830421563797,108.2830402558886,108.28303997671114,108.28304196125845,108.28303879141971,108.28303823518763,108.28303809262535,108.2830381973637,108.2830383835878,108.28303807281662,108.28303813286364,108.28303804904186,108.28303804992085,108.28303805703067,108.2830380395363,108.28303803851747,108.28303806541292,108.28303803383116,108.28303804999274,135.6504359302449,135.52830168303984,112.69219608776123,142.4211926313676,124.45283772636733,118.2712954345275,111.8278539783075,112.88078599492474,113.63368079350991,110.01414822887378,110.94759042796173,109.99837800577802,110.09988205982347,109.99842035565744,110.00732336038857,110.01778675652477,109.99931893778724,110.0005784426904,109.99800166292678,109.99790526047306,109.9979424870314,109.99809132492214,109.99787664221546,109.99793853422938,109.99786279569277,109.99783719745237,109.9977900809367,109.99773861039748,109.99763006071737,109.99764983215822,109.9975983714508,109.99763845652107,109.9976138623543,109.99757712332519,109.99758239218755,109.99756254994816,109.99754920805941,109.99752708257171,109.99753512538963,109.99749972404764,109.99748841141691,109.99752292062945,109.99747088029724,109.99745429791946,109.99742253564136,109.99736134987751,109.99723400293819,109.99697318725332,109.99655702328567,110.00083548717221,110.00100540460636,109.99653938634133,109.99632140983576,109.99590480199535,109.99525904374912,109.9941336002188,109.99242293431186,109.98862757472313,110.11674448136569,110.00625952316848],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"0101010101":16,"0101010110":8,"0101011001":28,"0101011010":30,"0101100101":9,"0101100110":14,"0101101001":9,"0110010101":13,"0110010110":24,"0110011001":34,"0110011010":13,"0110100101":20,"0110100110":17,"0110101001":2,"0110101010":17,"1001010101":2,"1001010110":18,"1001011001":19,"1001011010":4,"1001100101":30,"1001100110":19,"1001101001":11,"1001101010":22,"1010010101":19,"1010010110":12,"1010011001":6,"1010011010":17,"1010100101":23,"1010100110":23,"1010101001":20,"1010101010":13},"circuit_evaluations":108,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":48},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1288047169946367},"metrics":{"exact_objective":null,"optimal_count":0,"combinations":32,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":11,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":21,"runtime_seconds":0.0012513070105342194},"exact":{"status":"infeasible","best":null,"combinations":32,"feasible_count":0,"runtime_seconds":0.00038583800778724253},"greedy":{"status":"dead_end","best":null,"runtime_seconds":1.6581994714215398e-05},"resources":{"full":{"depth":49,"operations":{"RX":25,"I":10,"RZ":36,"CNOT":57,"CRY":5,"X":5},"cnot":57,"cry":5},"auto":{"depth":36,"operations":{"RX":25,"I":10,"RZ":31,"CNOT":47,"CRY":5,"X":5},"cnot":47,"cry":5}},"phase_max_probability_error":6.938893903907228e-17,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":null,"uniform_objective":null},{"shots":64,"quantum_objective":null,"uniform_objective":null},{"shots":128,"quantum_objective":null,"uniform_objective":null},{"shots":512,"quantum_objective":null,"uniform_objective":null}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,8,9]],"components":[{"qubits":10,"penalty":23,"objective_bound":22,"offset":115,"linear":[-15,-15,-19,-22,-19,-17,-22,-22,-23,-20],"quadratic":[[0,1,46],[0,3,23],[0,5,23],[0,6,23],[0,8,23],[1,2,23],[1,7,23],[1,9,23],[2,3,46],[2,7,23],[2,9,23],[3,5,23],[3,6,23],[3,8,23],[4,5,46],[5,6,23],[5,8,23],[6,7,46],[6,8,23],[7,9,23],[8,9,46]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":8},{"index":1,"task":"t0","resource":"r0","start":3,"cost":8},{"index":2,"task":"t1","resource":"r0","start":3,"cost":4},{"index":3,"task":"t1","resource":"r0","start":1,"cost":1},{"index":4,"task":"t2","resource":"r0","start":2,"cost":4},{"index":5,"task":"t2","resource":"r0","start":1,"cost":6},{"index":6,"task":"t3","resource":"r0","start":1,"cost":1},{"index":7,"task":"t3","resource":"r0","start":3,"cost":1},{"index":8,"task":"t4","resource":"r0","start":1,"cost":0},{"index":9,"task":"t4","resource":"r0","start":3,"cost":3}],"conflicts":[{"i":0,"j":3,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource","group"]},{"i":1,"j":7,"reasons":["resource"]},{"i":1,"j":9,"reasons":["resource"]},{"i":2,"j":7,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]},{"i":5,"j":8,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":7,"j":9,"reasons":["resource"]}]}]},"diagnostic_seconds":0.02609074499923736}
+{"input":{"file":"evaluation-n5-d2.json","split":"evaluation","tasks":5,"density_parameter":2,"data_seed":20260974,"sha256":"27e8da20697a51e79b1d9cf2f1a5103f183a804008384928ebe157dc6a0766ff"},"model":{"qubits":10,"penalty":23,"objective_bound":22,"offset":115,"linear":[-15,-15,-19,-22,-19,-17,-22,-22,-23,-20],"quadratic":[[0,1,46],[0,3,23],[0,5,23],[0,6,23],[0,8,23],[1,2,23],[1,7,23],[1,9,23],[2,3,46],[2,7,23],[2,9,23],[3,5,23],[3,6,23],[3,8,23],[4,5,46],[5,6,23],[5,8,23],[6,7,46],[6,8,23],[7,9,23],[8,9,46]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":8},{"index":1,"task":"t0","resource":"r0","start":3,"cost":8},{"index":2,"task":"t1","resource":"r0","start":3,"cost":4},{"index":3,"task":"t1","resource":"r0","start":1,"cost":1},{"index":4,"task":"t2","resource":"r0","start":2,"cost":4},{"index":5,"task":"t2","resource":"r0","start":1,"cost":6},{"index":6,"task":"t3","resource":"r0","start":1,"cost":1},{"index":7,"task":"t3","resource":"r0","start":3,"cost":1},{"index":8,"task":"t4","resource":"r0","start":1,"cost":0},{"index":9,"task":"t4","resource":"r0","start":3,"cost":3}],"conflicts":[{"i":0,"j":3,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource","group"]},{"i":1,"j":7,"reasons":["resource"]},{"i":1,"j":9,"reasons":["resource"]},{"i":2,"j":7,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]},{"i":5,"j":8,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":7,"j":9,"reasons":["resource"]}]},"quantum":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":14,"violation_count":2,"violations":[{"kind":"conflict","tasks":["t0","t3"],"variables":[1,7],"reasons":["resource"]},{"kind":"conflict","tasks":["t1","t4"],"variables":[3,8],"reasons":["resource"]}],"schedule":[{"variable":3,"task":"t1","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true}],"bits":[0,1,0,1,1,0,0,1,1,0],"qubo_energy":60},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.184999356795261,0.9455524091057844],"expected_energy":108.3367394302723,"initial_expected_energy":118.64680869172304,"history":[118.64680869172304,123.1940958818576,112.57874981939474,129.72115464721355,108.55670341744829,115.09178355262243,108.45638573150396,108.80052301855929,108.64456023973403,108.41717418081899,108.79235482913388,108.3625678569185,108.40435457086326,108.381128525422,108.34287952797845,108.3496419858767,108.34003548309019,108.33804833657729,108.34187030018654,108.33695666944315,108.34015750938545,108.33686186394675,108.33712182665133,108.33689535041877,108.33679195300611,108.33675253377208,108.3367445453508,108.33674558077384,108.33675563491019,108.33674660111961,108.33674089718583,108.33673948003934,108.33674010546368,108.3367397884202,108.33673969117802,108.33673946634492,108.3367394302723,108.33673944038182,108.33673943576585,136.70640420974019,136.6669840307879,111.04839215901923,133.4943546502803,110.52508747942547,122.15734589865238,111.04505916299985,109.46638377522243,110.99728906727196,109.47282393747328,109.668771565333,109.46636785294281,109.44016876627008,109.44417874284667,109.44257344806672,109.44175849992108,109.4380267895435,109.43715803693702,109.43578984803027,109.43451869203557,109.43276000568005,109.4304792781975,109.42965860236491,109.43864274812326,109.42767962160845,109.4270248281363,109.42585251460052,109.42360504561543,109.41962708975524,109.4546860997187,109.42954898096947,109.42468364743063,109.41908409003042,109.41827227652212,109.41763715361509,109.4264798791863,109.41587975496981,109.41561311349824,109.4145070479953,109.41280960627638,109.40943047065771,109.40433797692233,109.5489101340608,109.47978702032864,109.41339717011925,109.4040076426093,109.41166672854123,109.40300817128704,109.40356272777751,109.40286351329286,109.40320151102168,109.40262510859289,109.4024144261654,109.4025566886358,109.40228785936276,109.40252142870577,109.40205348407103,109.40183213552973,109.40161909622844,109.40114847410118],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"0101010101":14,"0101010110":17,"0101011001":34,"0101011010":11,"0101100101":12,"0101100110":10,"0101101001":7,"0101101010":14,"0110010101":18,"0110010110":15,"0110011001":19,"0110011010":19,"0110100101":15,"0110100110":19,"0110101001":18,"0110101010":8,"1001010101":9,"1001010110":8,"1001011001":10,"1001011010":22,"1001100101":18,"1001100110":31,"1001101001":20,"1001101010":8,"1010010101":12,"1010010110":19,"1010011001":14,"1010011010":20,"1010100101":22,"1010100110":18,"1010101001":11,"1010101010":20},"circuit_evaluations":99,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":39},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11825067800236866},"metrics":{"exact_objective":null,"optimal_count":0,"combinations":32,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":11,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":21,"runtime_seconds":0.0012513070105342194},"exact":{"status":"infeasible","best":null,"combinations":32,"feasible_count":0,"runtime_seconds":0.00038583800778724253},"greedy":{"status":"dead_end","best":null,"runtime_seconds":1.6581994714215398e-05},"resources":{"full":{"depth":49,"operations":{"RX":25,"I":10,"RZ":36,"CNOT":57,"CRY":5,"X":5},"cnot":57,"cry":5},"auto":{"depth":36,"operations":{"RX":25,"I":10,"RZ":31,"CNOT":47,"CRY":5,"X":5},"cnot":47,"cry":5}},"phase_max_probability_error":4.163336342344337e-17,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":null,"uniform_objective":null},{"shots":64,"quantum_objective":null,"uniform_objective":null},{"shots":128,"quantum_objective":null,"uniform_objective":null},{"shots":512,"quantum_objective":null,"uniform_objective":null}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,8,9]],"components":[{"qubits":10,"penalty":23,"objective_bound":22,"offset":115,"linear":[-15,-15,-19,-22,-19,-17,-22,-22,-23,-20],"quadratic":[[0,1,46],[0,3,23],[0,5,23],[0,6,23],[0,8,23],[1,2,23],[1,7,23],[1,9,23],[2,3,46],[2,7,23],[2,9,23],[3,5,23],[3,6,23],[3,8,23],[4,5,46],[5,6,23],[5,8,23],[6,7,46],[6,8,23],[7,9,23],[8,9,46]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":8},{"index":1,"task":"t0","resource":"r0","start":3,"cost":8},{"index":2,"task":"t1","resource":"r0","start":3,"cost":4},{"index":3,"task":"t1","resource":"r0","start":1,"cost":1},{"index":4,"task":"t2","resource":"r0","start":2,"cost":4},{"index":5,"task":"t2","resource":"r0","start":1,"cost":6},{"index":6,"task":"t3","resource":"r0","start":1,"cost":1},{"index":7,"task":"t3","resource":"r0","start":3,"cost":1},{"index":8,"task":"t4","resource":"r0","start":1,"cost":0},{"index":9,"task":"t4","resource":"r0","start":3,"cost":3}],"conflicts":[{"i":0,"j":3,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource","group"]},{"i":1,"j":7,"reasons":["resource"]},{"i":1,"j":9,"reasons":["resource"]},{"i":2,"j":7,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]},{"i":5,"j":8,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":7,"j":9,"reasons":["resource"]}]}]},"diagnostic_seconds":0.027070518990512937}
+{"input":{"file":"evaluation-n5-d2.json","split":"evaluation","tasks":5,"density_parameter":2,"data_seed":20260974,"sha256":"27e8da20697a51e79b1d9cf2f1a5103f183a804008384928ebe157dc6a0766ff"},"model":{"qubits":10,"penalty":23,"objective_bound":22,"offset":115,"linear":[-15,-15,-19,-22,-19,-17,-22,-22,-23,-20],"quadratic":[[0,1,46],[0,3,23],[0,5,23],[0,6,23],[0,8,23],[1,2,23],[1,7,23],[1,9,23],[2,3,46],[2,7,23],[2,9,23],[3,5,23],[3,6,23],[3,8,23],[4,5,46],[5,6,23],[5,8,23],[6,7,46],[6,8,23],[7,9,23],[8,9,46]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":8},{"index":1,"task":"t0","resource":"r0","start":3,"cost":8},{"index":2,"task":"t1","resource":"r0","start":3,"cost":4},{"index":3,"task":"t1","resource":"r0","start":1,"cost":1},{"index":4,"task":"t2","resource":"r0","start":2,"cost":4},{"index":5,"task":"t2","resource":"r0","start":1,"cost":6},{"index":6,"task":"t3","resource":"r0","start":1,"cost":1},{"index":7,"task":"t3","resource":"r0","start":3,"cost":1},{"index":8,"task":"t4","resource":"r0","start":1,"cost":0},{"index":9,"task":"t4","resource":"r0","start":3,"cost":3}],"conflicts":[{"i":0,"j":3,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource","group"]},{"i":1,"j":7,"reasons":["resource"]},{"i":1,"j":9,"reasons":["resource"]},{"i":2,"j":7,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]},{"i":5,"j":8,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":7,"j":9,"reasons":["resource"]}]},"quantum":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":14,"violation_count":2,"violations":[{"kind":"conflict","tasks":["t0","t3"],"variables":[1,7],"reasons":["resource"]},{"kind":"conflict","tasks":["t1","t4"],"variables":[3,8],"reasons":["resource"]}],"schedule":[{"variable":3,"task":"t1","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true}],"bits":[0,1,0,1,1,0,0,1,1,0],"qubo_energy":60},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.185003413639006,2.5163540260104575],"expected_energy":108.33673942983206,"initial_expected_energy":140.44113042474618,"history":[140.44113042474618,152.23128487221453,113.72916412955533,128.14380753623502,125.24782191222792,109.68315765633406,116.97908802762473,109.63576453064249,110.51347200017938,110.86988526269437,109.80385757101172,109.74179522992647,109.62425067974178,109.63111965028686,109.62793766011329,109.62705288473734,109.62398890623977,109.62453170225933,109.62400366898589,109.62379794589252,109.62347108764365,109.62382480873498,109.62337068574193,109.62315733198993,109.62275290945264,109.62213972419428,109.62190556095786,109.62347599791292,109.62589244176135,109.621931691428,109.62122747111866,109.62144682365067,109.62132127085789,109.62132907780159,109.62118362280711,109.62114999649589,109.62118287003466,109.62112786237473,109.6211209176148,109.62109822199596,109.62107665834117,109.62103529854782,109.62096249719734,109.6209169851008,109.62080150641415,109.62105030460602,109.62075523749982,109.62088959425685,109.62076667640969,109.62072863031801,109.62076448117224,109.62071600015342,109.62070506418608,109.62069274134407,109.62067028259489,109.62063849856231,109.62061078145945,109.62058088923588,109.62057308009442,109.62126298581566,124.35281762610659,116.1905437432896,109.21822716314901,137.71663960688198,108.86638417458525,110.17971835640063,109.10840821418992,108.84282411254848,108.52042656274575,108.36267426611559,108.55525429146397,108.41109757305622,108.41947967631685,108.38144172312386,108.34062399549138,108.34736641678349,108.33947692334984,108.33685361888766,108.33770584985416,108.3373193082677,108.33699048182373,108.33676101615754,108.33696207976459,108.33675814501656,108.33674067816023,108.33676169367965,108.33674019381765,108.33674127036937,108.33674076813845,108.3367396303573,108.33674000061947,108.33673946915681,108.33674000886035,108.33673950792303,108.3367395539202,108.33673946886914,108.33673944211779,108.33673943034371,108.33673944019478,108.33673942983206,108.33673943664422],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"0101010101":15,"0101010110":24,"0101011001":28,"0101011010":19,"0101100101":12,"0101100110":16,"0101101001":6,"0101101010":15,"0110010101":12,"0110010110":16,"0110011001":24,"0110011010":26,"0110100101":16,"0110100110":22,"0110101001":13,"0110101010":13,"1001010101":13,"1001010110":5,"1001011001":12,"1001011010":17,"1001100101":22,"1001100110":25,"1001101001":16,"1001101010":12,"1010010101":7,"1010010110":10,"1010011001":22,"1010011010":10,"1010100101":21,"1010100110":17,"1010101001":8,"1010101010":18},"circuit_evaluations":101,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":41}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11575913400156423},"metrics":{"exact_objective":null,"optimal_count":0,"combinations":32,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":11,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":21,"runtime_seconds":0.0012513070105342194},"exact":{"status":"infeasible","best":null,"combinations":32,"feasible_count":0,"runtime_seconds":0.00038583800778724253},"greedy":{"status":"dead_end","best":null,"runtime_seconds":1.6581994714215398e-05},"resources":{"full":{"depth":49,"operations":{"RX":25,"I":10,"RZ":36,"CNOT":57,"CRY":5,"X":5},"cnot":57,"cry":5},"auto":{"depth":36,"operations":{"RX":25,"I":10,"RZ":31,"CNOT":47,"CRY":5,"X":5},"cnot":47,"cry":5}},"phase_max_probability_error":5.551115123125783e-17,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":null,"uniform_objective":null},{"shots":64,"quantum_objective":null,"uniform_objective":null},{"shots":128,"quantum_objective":null,"uniform_objective":null},{"shots":512,"quantum_objective":null,"uniform_objective":null}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,8,9]],"components":[{"qubits":10,"penalty":23,"objective_bound":22,"offset":115,"linear":[-15,-15,-19,-22,-19,-17,-22,-22,-23,-20],"quadratic":[[0,1,46],[0,3,23],[0,5,23],[0,6,23],[0,8,23],[1,2,23],[1,7,23],[1,9,23],[2,3,46],[2,7,23],[2,9,23],[3,5,23],[3,6,23],[3,8,23],[4,5,46],[5,6,23],[5,8,23],[6,7,46],[6,8,23],[7,9,23],[8,9,46]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":8},{"index":1,"task":"t0","resource":"r0","start":3,"cost":8},{"index":2,"task":"t1","resource":"r0","start":3,"cost":4},{"index":3,"task":"t1","resource":"r0","start":1,"cost":1},{"index":4,"task":"t2","resource":"r0","start":2,"cost":4},{"index":5,"task":"t2","resource":"r0","start":1,"cost":6},{"index":6,"task":"t3","resource":"r0","start":1,"cost":1},{"index":7,"task":"t3","resource":"r0","start":3,"cost":1},{"index":8,"task":"t4","resource":"r0","start":1,"cost":0},{"index":9,"task":"t4","resource":"r0","start":3,"cost":3}],"conflicts":[{"i":0,"j":3,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource","group"]},{"i":1,"j":7,"reasons":["resource"]},{"i":1,"j":9,"reasons":["resource"]},{"i":2,"j":7,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]},{"i":5,"j":8,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":7,"j":9,"reasons":["resource"]}]}]},"diagnostic_seconds":0.025601004002965055}
+{"input":{"file":"evaluation-n5-d2.json","split":"evaluation","tasks":5,"density_parameter":2,"data_seed":20260974,"sha256":"27e8da20697a51e79b1d9cf2f1a5103f183a804008384928ebe157dc6a0766ff"},"model":{"qubits":10,"penalty":23,"objective_bound":22,"offset":115,"linear":[-15,-15,-19,-22,-19,-17,-22,-22,-23,-20],"quadratic":[[0,1,46],[0,3,23],[0,5,23],[0,6,23],[0,8,23],[1,2,23],[1,7,23],[1,9,23],[2,3,46],[2,7,23],[2,9,23],[3,5,23],[3,6,23],[3,8,23],[4,5,46],[5,6,23],[5,8,23],[6,7,46],[6,8,23],[7,9,23],[8,9,46]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":8},{"index":1,"task":"t0","resource":"r0","start":3,"cost":8},{"index":2,"task":"t1","resource":"r0","start":3,"cost":4},{"index":3,"task":"t1","resource":"r0","start":1,"cost":1},{"index":4,"task":"t2","resource":"r0","start":2,"cost":4},{"index":5,"task":"t2","resource":"r0","start":1,"cost":6},{"index":6,"task":"t3","resource":"r0","start":1,"cost":1},{"index":7,"task":"t3","resource":"r0","start":3,"cost":1},{"index":8,"task":"t4","resource":"r0","start":1,"cost":0},{"index":9,"task":"t4","resource":"r0","start":3,"cost":3}],"conflicts":[{"i":0,"j":3,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource","group"]},{"i":1,"j":7,"reasons":["resource"]},{"i":1,"j":9,"reasons":["resource"]},{"i":2,"j":7,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]},{"i":5,"j":8,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":7,"j":9,"reasons":["resource"]}]},"quantum":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":14,"violation_count":2,"violations":[{"kind":"conflict","tasks":["t0","t3"],"variables":[1,7],"reasons":["resource"]},{"kind":"conflict","tasks":["t1","t4"],"variables":[3,8],"reasons":["resource"]}],"schedule":[{"variable":3,"task":"t1","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true}],"bits":[0,1,0,1,1,0,0,1,1,0],"qubo_energy":60},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.1849918479943002,2.5163507402730168],"expected_energy":108.33673943195808,"initial_expected_energy":110.46801801123019,"history":[110.46801801123019,110.5485485352364,128.665825026466,118.0838160206657,119.69366402092919,116.27222182181622,110.43692676416644,109.99727298771674,111.09949617553148,109.99092781398687,110.07780172425913,109.99059604220187,109.98570850396551,109.99714291948649,109.98697507060882,109.98532469500165,109.98473508644642,109.98545985749334,109.98442808432864,109.98411766953791,109.98351034114236,109.98222276294084,109.97952287419105,109.9754388226405,109.9803715240082,110.00269752685334,109.97287842550179,109.97335586347204,109.97423142795896,109.97160584246186,109.97251063915098,109.97206501803045,109.97101136439383,109.97114921231608,109.97059311540224,109.97022292845301,109.9696738775778,109.97072370657409,109.96882103840082,109.96797037227273,109.96677264834611,109.96483137011845,109.96325669169283,109.95909868462502,109.95252532940489,109.93610712234118,109.92651831624875,109.92338814122766,109.8822402862329,109.75083426773145,109.54046972297084,108.74265986301437,110.43779796024799,109.86403365149087,108.7816493896857,108.66959758184625,108.59511706104833,108.72500174182363,108.47611889167916,108.39965248202338,108.99641519426166,122.01873781142923,111.47746011204345,118.08124888637612,110.15297634480356,109.56323602435415,109.51264358259792,108.4283710669975,108.36638420627126,108.64674800186425,108.50335467097146,108.46858284514704,108.3792614017508,108.34288134970882,108.33764781422042,108.34473208814543,108.34195003758805,108.3385933243824,108.33692711139047,108.33878655727804,108.3375517702049,108.33712017176944,108.33687541568294,108.33679572669931,108.33677490597186,108.33674332775772,108.33675400982322,108.33674095424024,108.33674477093028,108.3367408952791,108.33673980116811,108.33673947126822,108.33674000980491,108.33673960280817,108.3367396566401,108.33673949189776,108.33673943464467,108.33673943195808,108.33673943959151,108.33673944171932],"feasible_probability":0.0,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.0,"counts":{"0101010101":12,"0101010110":12,"0101011001":33,"0101011010":23,"0101100101":12,"0101100110":18,"0101101001":7,"0101101010":21,"0110010101":11,"0110010110":16,"0110011001":14,"0110011010":29,"0110100101":18,"0110100110":26,"0110101001":12,"0110101010":6,"1001010101":11,"1001010110":8,"1001011001":12,"1001011010":16,"1001100101":20,"1001100110":28,"1001101001":12,"1001101010":13,"1010010101":6,"1010010110":25,"1010011001":11,"1010011010":8,"1010100101":25,"1010100110":19,"1010101001":14,"1010101010":14},"circuit_evaluations":100,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":40}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11919978199875914},"metrics":{"exact_objective":null,"optimal_count":0,"combinations":32,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":11,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":21,"runtime_seconds":0.0012513070105342194},"exact":{"status":"infeasible","best":null,"combinations":32,"feasible_count":0,"runtime_seconds":0.00038583800778724253},"greedy":{"status":"dead_end","best":null,"runtime_seconds":1.6581994714215398e-05},"resources":{"full":{"depth":49,"operations":{"RX":25,"I":10,"RZ":36,"CNOT":57,"CRY":5,"X":5},"cnot":57,"cry":5},"auto":{"depth":36,"operations":{"RX":25,"I":10,"RZ":31,"CNOT":47,"CRY":5,"X":5},"cnot":47,"cry":5}},"phase_max_probability_error":4.163336342344337e-17,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":null,"uniform_objective":null},{"shots":64,"quantum_objective":null,"uniform_objective":null},{"shots":128,"quantum_objective":null,"uniform_objective":null},{"shots":512,"quantum_objective":null,"uniform_objective":null}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,8,9]],"components":[{"qubits":10,"penalty":23,"objective_bound":22,"offset":115,"linear":[-15,-15,-19,-22,-19,-17,-22,-22,-23,-20],"quadratic":[[0,1,46],[0,3,23],[0,5,23],[0,6,23],[0,8,23],[1,2,23],[1,7,23],[1,9,23],[2,3,46],[2,7,23],[2,9,23],[3,5,23],[3,6,23],[3,8,23],[4,5,46],[5,6,23],[5,8,23],[6,7,46],[6,8,23],[7,9,23],[8,9,46]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":8},{"index":1,"task":"t0","resource":"r0","start":3,"cost":8},{"index":2,"task":"t1","resource":"r0","start":3,"cost":4},{"index":3,"task":"t1","resource":"r0","start":1,"cost":1},{"index":4,"task":"t2","resource":"r0","start":2,"cost":4},{"index":5,"task":"t2","resource":"r0","start":1,"cost":6},{"index":6,"task":"t3","resource":"r0","start":1,"cost":1},{"index":7,"task":"t3","resource":"r0","start":3,"cost":1},{"index":8,"task":"t4","resource":"r0","start":1,"cost":0},{"index":9,"task":"t4","resource":"r0","start":3,"cost":3}],"conflicts":[{"i":0,"j":3,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource","group"]},{"i":1,"j":7,"reasons":["resource"]},{"i":1,"j":9,"reasons":["resource"]},{"i":2,"j":7,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]},{"i":5,"j":8,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":7,"j":9,"reasons":["resource"]}]}]},"diagnostic_seconds":0.026119124988326803}
+{"input":{"file":"evaluation-n5-d2.json","split":"evaluation","tasks":5,"density_parameter":2,"data_seed":20260974,"sha256":"27e8da20697a51e79b1d9cf2f1a5103f183a804008384928ebe157dc6a0766ff"},"model":{"qubits":10,"penalty":23,"objective_bound":22,"offset":115,"linear":[-15,-15,-19,-22,-19,-17,-22,-22,-23,-20],"quadratic":[[0,1,46],[0,3,23],[0,5,23],[0,6,23],[0,8,23],[1,2,23],[1,7,23],[1,9,23],[2,3,46],[2,7,23],[2,9,23],[3,5,23],[3,6,23],[3,8,23],[4,5,46],[5,6,23],[5,8,23],[6,7,46],[6,8,23],[7,9,23],[8,9,46]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":8},{"index":1,"task":"t0","resource":"r0","start":3,"cost":8},{"index":2,"task":"t1","resource":"r0","start":3,"cost":4},{"index":3,"task":"t1","resource":"r0","start":1,"cost":1},{"index":4,"task":"t2","resource":"r0","start":2,"cost":4},{"index":5,"task":"t2","resource":"r0","start":1,"cost":6},{"index":6,"task":"t3","resource":"r0","start":1,"cost":1},{"index":7,"task":"t3","resource":"r0","start":3,"cost":1},{"index":8,"task":"t4","resource":"r0","start":1,"cost":0},{"index":9,"task":"t4","resource":"r0","start":3,"cost":3}],"conflicts":[{"i":0,"j":3,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource","group"]},{"i":1,"j":7,"reasons":["resource"]},{"i":1,"j":9,"reasons":["resource"]},{"i":2,"j":7,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]},{"i":5,"j":8,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":7,"j":9,"reasons":["resource"]}]},"quantum":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":14,"violation_count":2,"violations":[{"kind":"conflict","tasks":["t0","t3"],"variables":[1,7],"reasons":["resource"]},{"kind":"conflict","tasks":["t1","t4"],"variables":[3,8],"reasons":["resource"]}],"schedule":[{"variable":3,"task":"t1","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true}],"bits":[0,1,0,1,1,0,0,1,1,0],"qubo_energy":60},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.3933548670309129,0.685964648736062],"expected_energy":103.16980357998486,"initial_expected_energy":109.92392386738366,"history":[109.92392386738366,110.07876535734702,126.513657788542,139.48317183548386,127.253656597567,116.71978527840295,109.96481241696729,110.88786439476131,111.1270971088334,110.14156402114979,110.01269432790492,109.92340581514584,109.9117484225869,109.89415530470266,109.8546744323856,109.80371768767552,109.96661170048117,110.10816156432719,109.77642613456085,109.8066615176465,109.79121823900309,109.77428831189656,109.76825301053552,109.76610595075582,109.75554473726412,109.7505913795031,109.74183436103915,109.73997305955203,109.72775709375412,109.77343240849507,109.72038940629156,109.7235716828168,109.72240362502893,109.71877976277304,109.72588887053541,109.71760130075289,109.71579552790462,109.71367987266581,109.71059077899517,109.70571997665509,109.70251387778612,109.6966491384564,109.719249572664,109.71698466793359,109.69905811711874,109.69091024480858,109.69112949306154,109.68985258595973,109.68893664607307,109.68747767828077,109.6895023598552,109.6866222111623,109.68589406129527,109.68969559722707,109.68446886095725,109.6841156026926,109.68331873298433,109.68191452677192,109.68012126662579,109.68268292089155,115.59870047070007,131.62795868034908,108.00421029690136,110.72903548345748,107.21300284604723,104.07856365381502,141.3332710026738,134.8443481999133,112.03857171562072,104.68171939115832,106.59050649815384,104.14788137995346,104.25451260542216,104.38158465279793,103.66469228902959,103.51806043030516,103.48067019207215,103.75047017054237,103.44298748677602,103.42937166095464,103.40166810032385,103.3605828812718,103.2903445219352,103.2528781021047,103.7438596213706,103.87563390038068,103.26257437861479,103.18824329707297,103.28991329951023,103.18151855088989,103.20563458333729,103.19356841726994,103.1871375561947,103.18057833700205,103.18064056920466,103.18068034706768,103.17998751967264,103.17954086216506,103.18142666582861,103.17892149062487,103.1783899337263,103.17743786751618,103.17577581889515,103.17473719303878,103.17435451145624,103.17220069774655,103.170772847911,103.16980873236032,103.17392328147928,103.17310793855712,103.16984162272979,103.1705274922521,103.17003401127437,103.16983904805777,103.16982304498417,103.16981167233533,103.16980717896277,103.16980511309663,103.16980716413093,103.16980357998486],"feasible_probability":0.0,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.0,"counts":{"0101010101":17,"0101010110":18,"0101011001":3,"0101011010":21,"0101100101":9,"0101100110":30,"0101101001":2,"0101101010":12,"0110010101":24,"0110010110":2,"0110011001":17,"0110011010":12,"0110100101":28,"0110100110":16,"0110101001":10,"0110101010":45,"1001010101":19,"1001010110":1,"1001011001":18,"1001011010":20,"1001100101":38,"1001100110":13,"1001101001":14,"1001101010":39,"1010010101":5,"1010010110":3,"1010011001":18,"1010100101":13,"1010100110":1,"1010101001":33,"1010101010":11},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.14341584598878399},"metrics":{"exact_objective":null,"optimal_count":0,"combinations":32,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":11,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":21,"runtime_seconds":0.0012513070105342194},"exact":{"status":"infeasible","best":null,"combinations":32,"feasible_count":0,"runtime_seconds":0.00038583800778724253},"greedy":{"status":"dead_end","best":null,"runtime_seconds":1.6581994714215398e-05},"resources":{"full":{"depth":49,"operations":{"RX":25,"I":10,"RZ":36,"CNOT":57,"CRY":5,"X":5},"cnot":57,"cry":5},"auto":{"depth":36,"operations":{"RX":25,"I":10,"RZ":31,"CNOT":47,"CRY":5,"X":5},"cnot":47,"cry":5}},"phase_max_probability_error":8.326672684688674e-17,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":null,"uniform_objective":null},{"shots":64,"quantum_objective":null,"uniform_objective":null},{"shots":128,"quantum_objective":null,"uniform_objective":null},{"shots":512,"quantum_objective":null,"uniform_objective":null}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,8,9]],"components":[{"qubits":10,"penalty":23,"objective_bound":22,"offset":115,"linear":[-15,-15,-19,-22,-19,-17,-22,-22,-23,-20],"quadratic":[[0,1,46],[0,3,23],[0,5,23],[0,6,23],[0,8,23],[1,2,23],[1,7,23],[1,9,23],[2,3,46],[2,7,23],[2,9,23],[3,5,23],[3,6,23],[3,8,23],[4,5,46],[5,6,23],[5,8,23],[6,7,46],[6,8,23],[7,9,23],[8,9,46]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":8},{"index":1,"task":"t0","resource":"r0","start":3,"cost":8},{"index":2,"task":"t1","resource":"r0","start":3,"cost":4},{"index":3,"task":"t1","resource":"r0","start":1,"cost":1},{"index":4,"task":"t2","resource":"r0","start":2,"cost":4},{"index":5,"task":"t2","resource":"r0","start":1,"cost":6},{"index":6,"task":"t3","resource":"r0","start":1,"cost":1},{"index":7,"task":"t3","resource":"r0","start":3,"cost":1},{"index":8,"task":"t4","resource":"r0","start":1,"cost":0},{"index":9,"task":"t4","resource":"r0","start":3,"cost":3}],"conflicts":[{"i":0,"j":3,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource","group"]},{"i":1,"j":7,"reasons":["resource"]},{"i":1,"j":9,"reasons":["resource"]},{"i":2,"j":7,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]},{"i":5,"j":8,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":7,"j":9,"reasons":["resource"]}]}]},"diagnostic_seconds":0.024804301996482536}
+{"input":{"file":"evaluation-n5-d2.json","split":"evaluation","tasks":5,"density_parameter":2,"data_seed":20260974,"sha256":"27e8da20697a51e79b1d9cf2f1a5103f183a804008384928ebe157dc6a0766ff"},"model":{"qubits":10,"penalty":23,"objective_bound":22,"offset":115,"linear":[-15,-15,-19,-22,-19,-17,-22,-22,-23,-20],"quadratic":[[0,1,46],[0,3,23],[0,5,23],[0,6,23],[0,8,23],[1,2,23],[1,7,23],[1,9,23],[2,3,46],[2,7,23],[2,9,23],[3,5,23],[3,6,23],[3,8,23],[4,5,46],[5,6,23],[5,8,23],[6,7,46],[6,8,23],[7,9,23],[8,9,46]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":8},{"index":1,"task":"t0","resource":"r0","start":3,"cost":8},{"index":2,"task":"t1","resource":"r0","start":3,"cost":4},{"index":3,"task":"t1","resource":"r0","start":1,"cost":1},{"index":4,"task":"t2","resource":"r0","start":2,"cost":4},{"index":5,"task":"t2","resource":"r0","start":1,"cost":6},{"index":6,"task":"t3","resource":"r0","start":1,"cost":1},{"index":7,"task":"t3","resource":"r0","start":3,"cost":1},{"index":8,"task":"t4","resource":"r0","start":1,"cost":0},{"index":9,"task":"t4","resource":"r0","start":3,"cost":3}],"conflicts":[{"i":0,"j":3,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource","group"]},{"i":1,"j":7,"reasons":["resource"]},{"i":1,"j":9,"reasons":["resource"]},{"i":2,"j":7,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]},{"i":5,"j":8,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":7,"j":9,"reasons":["resource"]}]},"quantum":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":14,"violation_count":2,"violations":[{"kind":"conflict","tasks":["t0","t3"],"variables":[1,7],"reasons":["resource"]},{"kind":"conflict","tasks":["t1","t4"],"variables":[3,8],"reasons":["resource"]}],"schedule":[{"variable":3,"task":"t1","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true}],"bits":[0,1,0,1,1,0,0,1,1,0],"qubo_energy":60},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.1850022595928245,0.9455564465765419],"expected_energy":108.33673942934804,"initial_expected_energy":119.98890806733867,"history":[119.98890806733867,113.53850070013934,114.22751304218394,122.8639364811748,118.55703839873853,114.47058756703522,111.48604883018552,109.42048666463862,111.14283219682002,108.79939986037775,108.69922592031509,109.50163350489558,108.39840100315068,108.38120605003861,108.44404474677219,108.67629836461006,108.37074526618804,108.41667513799887,108.36777078650206,108.35501874328997,108.34577036099827,108.34715325202002,108.34062440578569,108.33911324775471,108.34440766328238,108.3368420890236,108.33808042865937,108.33690140673022,108.33706168286102,108.33688368807529,108.33677509786139,108.33674335535767,108.33674537494264,108.33674402605396,108.33674878601605,108.33674323817522,108.33674121267585,108.33673994944533,108.3367398361633,108.3367395063749,108.33674000758612,108.33673970122543,108.33673948716509,108.33673943959383,108.33673943363331,108.33673943967514,108.33673945368994,125.01072836594344,111.76768845035073,109.98362684779929,111.4525652662521,109.20931022827938,122.7349677995992,109.61122721380272,108.4555319064871,109.98175067412893,108.43918618784366,108.71255694732133,108.41399491058623,108.8112477189734,108.37090072261266,108.42194706157198,108.39524062425615,108.34342257152349,108.34640241938186,108.34172084014651,108.33749649466718,108.33699289835039,108.33853349878564,108.33760161997667,108.33718174667344,108.33677695124126,108.33685083658108,108.3367552737397,108.3367488911635,108.33678725428217,108.33674701195052,108.33678723760876,108.33674226993173,108.33674676536953,108.33674430919967,108.3367400700208,108.3367406348226,108.33673951939707,108.3367398532052,108.3367394965062,108.33673990919502,108.3367395847668,108.33673953711588,108.33673945613553,108.33673948827176,108.33673943651362,108.33673943461322,108.33673942934804,108.33673943771295],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"0101010101":10,"0101010110":22,"0101011001":25,"0101011010":25,"0101100101":22,"0101100110":19,"0101101001":6,"0101101010":8,"0110010101":12,"0110010110":14,"0110011001":16,"0110011010":16,"0110100101":20,"0110100110":23,"0110101001":13,"0110101010":7,"1001010101":13,"1001010110":6,"1001011001":7,"1001011010":17,"1001100101":23,"1001100110":19,"1001101001":18,"1001101010":15,"1010010101":14,"1010010110":11,"1010011001":11,"1010011010":15,"1010100101":30,"1010100110":21,"1010101001":15,"1010101010":19},"circuit_evaluations":95,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":47},{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":48}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10533250200387556},"metrics":{"exact_objective":null,"optimal_count":0,"combinations":32,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":11,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":21,"runtime_seconds":0.0012513070105342194},"exact":{"status":"infeasible","best":null,"combinations":32,"feasible_count":0,"runtime_seconds":0.00038583800778724253},"greedy":{"status":"dead_end","best":null,"runtime_seconds":1.6581994714215398e-05},"resources":{"full":{"depth":49,"operations":{"RX":25,"I":10,"RZ":36,"CNOT":57,"CRY":5,"X":5},"cnot":57,"cry":5},"auto":{"depth":36,"operations":{"RX":25,"I":10,"RZ":31,"CNOT":47,"CRY":5,"X":5},"cnot":47,"cry":5}},"phase_max_probability_error":9.71445146547012e-17,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":null,"uniform_objective":null},{"shots":64,"quantum_objective":null,"uniform_objective":null},{"shots":128,"quantum_objective":null,"uniform_objective":null},{"shots":512,"quantum_objective":null,"uniform_objective":null}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,8,9]],"components":[{"qubits":10,"penalty":23,"objective_bound":22,"offset":115,"linear":[-15,-15,-19,-22,-19,-17,-22,-22,-23,-20],"quadratic":[[0,1,46],[0,3,23],[0,5,23],[0,6,23],[0,8,23],[1,2,23],[1,7,23],[1,9,23],[2,3,46],[2,7,23],[2,9,23],[3,5,23],[3,6,23],[3,8,23],[4,5,46],[5,6,23],[5,8,23],[6,7,46],[6,8,23],[7,9,23],[8,9,46]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":8},{"index":1,"task":"t0","resource":"r0","start":3,"cost":8},{"index":2,"task":"t1","resource":"r0","start":3,"cost":4},{"index":3,"task":"t1","resource":"r0","start":1,"cost":1},{"index":4,"task":"t2","resource":"r0","start":2,"cost":4},{"index":5,"task":"t2","resource":"r0","start":1,"cost":6},{"index":6,"task":"t3","resource":"r0","start":1,"cost":1},{"index":7,"task":"t3","resource":"r0","start":3,"cost":1},{"index":8,"task":"t4","resource":"r0","start":1,"cost":0},{"index":9,"task":"t4","resource":"r0","start":3,"cost":3}],"conflicts":[{"i":0,"j":3,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource","group"]},{"i":1,"j":7,"reasons":["resource"]},{"i":1,"j":9,"reasons":["resource"]},{"i":2,"j":7,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]},{"i":5,"j":8,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":7,"j":9,"reasons":["resource"]}]}]},"diagnostic_seconds":0.02347831500810571}
+{"input":{"file":"evaluation-n5-d2.json","split":"evaluation","tasks":5,"density_parameter":2,"data_seed":20260974,"sha256":"27e8da20697a51e79b1d9cf2f1a5103f183a804008384928ebe157dc6a0766ff"},"model":{"qubits":10,"penalty":23,"objective_bound":22,"offset":115,"linear":[-15,-15,-19,-22,-19,-17,-22,-22,-23,-20],"quadratic":[[0,1,46],[0,3,23],[0,5,23],[0,6,23],[0,8,23],[1,2,23],[1,7,23],[1,9,23],[2,3,46],[2,7,23],[2,9,23],[3,5,23],[3,6,23],[3,8,23],[4,5,46],[5,6,23],[5,8,23],[6,7,46],[6,8,23],[7,9,23],[8,9,46]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":8},{"index":1,"task":"t0","resource":"r0","start":3,"cost":8},{"index":2,"task":"t1","resource":"r0","start":3,"cost":4},{"index":3,"task":"t1","resource":"r0","start":1,"cost":1},{"index":4,"task":"t2","resource":"r0","start":2,"cost":4},{"index":5,"task":"t2","resource":"r0","start":1,"cost":6},{"index":6,"task":"t3","resource":"r0","start":1,"cost":1},{"index":7,"task":"t3","resource":"r0","start":3,"cost":1},{"index":8,"task":"t4","resource":"r0","start":1,"cost":0},{"index":9,"task":"t4","resource":"r0","start":3,"cost":3}],"conflicts":[{"i":0,"j":3,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource","group"]},{"i":1,"j":7,"reasons":["resource"]},{"i":1,"j":9,"reasons":["resource"]},{"i":2,"j":7,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]},{"i":5,"j":8,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":7,"j":9,"reasons":["resource"]}]},"quantum":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":14,"violation_count":2,"violations":[{"kind":"conflict","tasks":["t0","t3"],"variables":[1,7],"reasons":["resource"]},{"kind":"conflict","tasks":["t1","t4"],"variables":[3,8],"reasons":["resource"]}],"schedule":[{"variable":3,"task":"t1","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true}],"bits":[0,1,0,1,1,0,0,1,1,0],"qubo_energy":60},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.0848149527938085,0.13927877583161957],"expected_energy":108.28303803323521,"initial_expected_energy":123.89472626438845,"history":[123.89472626438845,108.91731002192137,112.87436537889693,110.69855185433637,111.28210067095237,112.17072318077854,108.65975073442546,108.32923678202633,108.3963652837015,108.42145121847958,108.33476450686375,108.33469523478726,108.32134080690864,108.31577049896798,108.35018279003046,108.30363029172868,108.29514078318812,108.28931681818962,108.28996318805932,108.28755173577936,108.28648961364944,108.28718660603869,108.28596900243298,108.2851653781965,108.28472494139555,108.28640452477522,108.28416561433,108.28376604917669,108.28375199185176,108.28325224368753,108.283050650657,108.2830679626125,108.2830547988704,108.28309573277136,108.28303827155712,108.28306208698936,108.2830429790093,108.28303827457388,108.28304088217982,108.28303826089058,108.28303942450725,108.28303812801808,108.28303810570984,108.28303819128661,108.28303806096159,108.2830380392043,108.28303804442064,108.28303803323521,108.28303803573638,142.98409945345333,154.41677429722682,113.24282921513517,128.59690833308235,123.49480636696481,110.29216847724906,110.375893256193,111.2479166780814,110.14113723229731,112.30245921961385,110.12310153692123,110.39537762578749,110.85754822255007,109.96670921084434,109.96102647648229,109.9707555627803,109.9777004626626,109.94384079020358,109.94686628668737,109.946324842954,109.94440944501599,109.94346323549757,109.94283932541391,109.94219551581878,109.94347597090098,109.94152337184346,109.9408673030612,109.9395597170305,109.9369116060052,109.93143428851845,109.92134057902078,109.89563918115466,110.00061030891992,109.98894602336402,109.93025631444749,109.89608411737484,109.89687283567241,109.89413240529996,109.89403320873868,109.89770140078132,109.89401874296732,109.89240372852902,109.88970591847723,109.8856238232602,109.89032978309167,109.88312981340789,109.88465731327909,109.88232033411853,109.8805315348343,109.87724769051155,109.87017910309858,109.85568323403308,109.8314101248299,109.84409080408096,109.96974121358068,109.82958028105038,109.8192117224746,109.79953618117763,109.77093873685217,109.73871340809967],"feasible_probability":0.0,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.0,"counts":{"0101010101":21,"0101010110":5,"0101011001":12,"0101011010":23,"0101100101":10,"0101100110":18,"0101101001":19,"0101101010":5,"0110010101":5,"0110010110":25,"0110011001":41,"0110011010":14,"0110100101":15,"0110100110":9,"0110101001":9,"0110101010":15,"1001010101":7,"1001010110":27,"1001011001":22,"1001011010":15,"1001100101":31,"1001100110":18,"1001101001":10,"1001101010":27,"1010010101":18,"1010010110":7,"1010011001":3,"1010011010":17,"1010100101":11,"1010100110":23,"1010101001":25,"1010101010":5},"circuit_evaluations":109,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":49},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12429187100497074},"metrics":{"exact_objective":null,"optimal_count":0,"combinations":32,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":11,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":21,"runtime_seconds":0.0012513070105342194},"exact":{"status":"infeasible","best":null,"combinations":32,"feasible_count":0,"runtime_seconds":0.00038583800778724253},"greedy":{"status":"dead_end","best":null,"runtime_seconds":1.6581994714215398e-05},"resources":{"full":{"depth":49,"operations":{"RX":25,"I":10,"RZ":36,"CNOT":57,"CRY":5,"X":5},"cnot":57,"cry":5},"auto":{"depth":36,"operations":{"RX":25,"I":10,"RZ":31,"CNOT":47,"CRY":5,"X":5},"cnot":47,"cry":5}},"phase_max_probability_error":5.898059818321144e-17,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":null,"uniform_objective":null},{"shots":64,"quantum_objective":null,"uniform_objective":null},{"shots":128,"quantum_objective":null,"uniform_objective":null},{"shots":512,"quantum_objective":null,"uniform_objective":null}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,8,9]],"components":[{"qubits":10,"penalty":23,"objective_bound":22,"offset":115,"linear":[-15,-15,-19,-22,-19,-17,-22,-22,-23,-20],"quadratic":[[0,1,46],[0,3,23],[0,5,23],[0,6,23],[0,8,23],[1,2,23],[1,7,23],[1,9,23],[2,3,46],[2,7,23],[2,9,23],[3,5,23],[3,6,23],[3,8,23],[4,5,46],[5,6,23],[5,8,23],[6,7,46],[6,8,23],[7,9,23],[8,9,46]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":8},{"index":1,"task":"t0","resource":"r0","start":3,"cost":8},{"index":2,"task":"t1","resource":"r0","start":3,"cost":4},{"index":3,"task":"t1","resource":"r0","start":1,"cost":1},{"index":4,"task":"t2","resource":"r0","start":2,"cost":4},{"index":5,"task":"t2","resource":"r0","start":1,"cost":6},{"index":6,"task":"t3","resource":"r0","start":1,"cost":1},{"index":7,"task":"t3","resource":"r0","start":3,"cost":1},{"index":8,"task":"t4","resource":"r0","start":1,"cost":0},{"index":9,"task":"t4","resource":"r0","start":3,"cost":3}],"conflicts":[{"i":0,"j":3,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource","group"]},{"i":1,"j":7,"reasons":["resource"]},{"i":1,"j":9,"reasons":["resource"]},{"i":2,"j":7,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]},{"i":5,"j":8,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":7,"j":9,"reasons":["resource"]}]}]},"diagnostic_seconds":0.026264643005561084}
+{"input":{"file":"evaluation-n5-d2.json","split":"evaluation","tasks":5,"density_parameter":2,"data_seed":20260974,"sha256":"27e8da20697a51e79b1d9cf2f1a5103f183a804008384928ebe157dc6a0766ff"},"model":{"qubits":10,"penalty":23,"objective_bound":22,"offset":115,"linear":[-15,-15,-19,-22,-19,-17,-22,-22,-23,-20],"quadratic":[[0,1,46],[0,3,23],[0,5,23],[0,6,23],[0,8,23],[1,2,23],[1,7,23],[1,9,23],[2,3,46],[2,7,23],[2,9,23],[3,5,23],[3,6,23],[3,8,23],[4,5,46],[5,6,23],[5,8,23],[6,7,46],[6,8,23],[7,9,23],[8,9,46]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":8},{"index":1,"task":"t0","resource":"r0","start":3,"cost":8},{"index":2,"task":"t1","resource":"r0","start":3,"cost":4},{"index":3,"task":"t1","resource":"r0","start":1,"cost":1},{"index":4,"task":"t2","resource":"r0","start":2,"cost":4},{"index":5,"task":"t2","resource":"r0","start":1,"cost":6},{"index":6,"task":"t3","resource":"r0","start":1,"cost":1},{"index":7,"task":"t3","resource":"r0","start":3,"cost":1},{"index":8,"task":"t4","resource":"r0","start":1,"cost":0},{"index":9,"task":"t4","resource":"r0","start":3,"cost":3}],"conflicts":[{"i":0,"j":3,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource","group"]},{"i":1,"j":7,"reasons":["resource"]},{"i":1,"j":9,"reasons":["resource"]},{"i":2,"j":7,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]},{"i":5,"j":8,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":7,"j":9,"reasons":["resource"]}]},"quantum":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":14,"violation_count":2,"violations":[{"kind":"conflict","tasks":["t0","t3"],"variables":[1,7],"reasons":["resource"]},{"kind":"conflict","tasks":["t1","t4"],"variables":[3,8],"reasons":["resource"]}],"schedule":[{"variable":3,"task":"t1","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true}],"bits":[0,1,0,1,1,0,0,1,1,0],"qubo_energy":60},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.4795805822368382,1.4058716563484899],"expected_energy":82.65278249933442,"initial_expected_energy":120.15799482735589,"history":[120.15799482735589,130.58619467181492,118.13920152783426,108.90787187847434,138.97614513095,136.99049684918054,98.4657652411557,91.62318818017489,84.13671345958959,112.29646608666124,132.08087948423153,84.3355096450808,90.77067360902394,86.65431249341074,82.81296670667814,86.77632482976527,82.70638332906947,82.71549759955562,82.73981176281936,82.66933084862424,82.66865875003126,82.65577842766535,82.6635726767928,82.65985201530657,82.6563468956079,82.65784008644462,82.65540334884652,82.65498499414278,82.65463190981427,82.65388935887538,82.65414800145717,82.65441569850734,82.65378031118635,82.65384597353105,82.65370822215577,82.6536521204608,82.65364390571267,82.65355465826809,82.65347813223502,82.65335675658122,82.6531615178437,82.65378940967352,82.65322374444824,82.65320681861682,82.65308497414613,82.65313846240534,82.65305003895641,82.65305239268278,82.6530304980151,82.65301440787017,82.65299890238352,82.65306442451849,82.65297420251147,82.65295405385567,82.65292142808514,82.65286690626681,82.65283138369671,82.6528033812387,82.65278249933442,82.65280507377642,138.4916460584518,140.3142006116511,111.75331239601542,123.71427358756648,110.09511563082984,115.51338350136497,110.14484080712872,111.77895871789934,110.59420313123084,110.65109099316764,110.00144207417527,110.05184576180358,110.00163258530071,110.0214991168163,110.00433801826253,110.00842858150405,109.99999847440705,110.00000939397444,110.00001746435916,109.99999059057113,110.0001487746499,109.999773128708,109.99977912732058,109.99975229200368,109.99974244979491,109.99981152681059,109.99970408926771,109.99967715720905,109.99964579197925,109.99960412541999,109.9995616024961,109.9994693355815,109.99929329027592,109.99881022752524,110.00187174765009,110.00122311895382,109.9986351621722,109.99878223135153,109.99871903913566,109.99850419657218,109.99847579979783,109.99881240959132,109.99847882258999,109.99836038335764,109.99828259822893,109.99831490963689,109.99826100542825,109.99821935689847,109.99813934152745,109.99799599884619,109.99807762767668,109.99785509497208,109.99792291723014,109.99790555849822,109.99777884407678,109.99774124526188,109.99809804628174,109.99767343554326,109.99755173924066,109.997345259003],"feasible_probability":0.0,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.0,"counts":{"0101010101":6,"0101010110":39,"0101011001":7,"0101011010":10,"0101100110":10,"0101101001":3,"0101101010":1,"0110010101":46,"0110010110":13,"0110011001":10,"0110011010":41,"0110100101":17,"0110100110":16,"0110101010":9,"1001010101":46,"1001010110":22,"1001011001":10,"1001011010":46,"1001100101":14,"1001100110":22,"1001101001":1,"1001101010":16,"1010010101":11,"1010010110":3,"1010011001":43,"1010011010":12,"1010100101":15,"1010100110":1,"1010101001":8,"1010101010":14},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.14604124400648288},"metrics":{"exact_objective":null,"optimal_count":0,"combinations":32,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":11,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":21,"runtime_seconds":0.0012513070105342194},"exact":{"status":"infeasible","best":null,"combinations":32,"feasible_count":0,"runtime_seconds":0.00038583800778724253},"greedy":{"status":"dead_end","best":null,"runtime_seconds":1.6581994714215398e-05},"resources":{"full":{"depth":49,"operations":{"RX":25,"I":10,"RZ":36,"CNOT":57,"CRY":5,"X":5},"cnot":57,"cry":5},"auto":{"depth":36,"operations":{"RX":25,"I":10,"RZ":31,"CNOT":47,"CRY":5,"X":5},"cnot":47,"cry":5}},"phase_max_probability_error":9.71445146547012e-17,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":null,"uniform_objective":null},{"shots":64,"quantum_objective":null,"uniform_objective":null},{"shots":128,"quantum_objective":null,"uniform_objective":null},{"shots":512,"quantum_objective":null,"uniform_objective":null}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,8,9]],"components":[{"qubits":10,"penalty":23,"objective_bound":22,"offset":115,"linear":[-15,-15,-19,-22,-19,-17,-22,-22,-23,-20],"quadratic":[[0,1,46],[0,3,23],[0,5,23],[0,6,23],[0,8,23],[1,2,23],[1,7,23],[1,9,23],[2,3,46],[2,7,23],[2,9,23],[3,5,23],[3,6,23],[3,8,23],[4,5,46],[5,6,23],[5,8,23],[6,7,46],[6,8,23],[7,9,23],[8,9,46]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":8},{"index":1,"task":"t0","resource":"r0","start":3,"cost":8},{"index":2,"task":"t1","resource":"r0","start":3,"cost":4},{"index":3,"task":"t1","resource":"r0","start":1,"cost":1},{"index":4,"task":"t2","resource":"r0","start":2,"cost":4},{"index":5,"task":"t2","resource":"r0","start":1,"cost":6},{"index":6,"task":"t3","resource":"r0","start":1,"cost":1},{"index":7,"task":"t3","resource":"r0","start":3,"cost":1},{"index":8,"task":"t4","resource":"r0","start":1,"cost":0},{"index":9,"task":"t4","resource":"r0","start":3,"cost":3}],"conflicts":[{"i":0,"j":3,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource","group"]},{"i":1,"j":7,"reasons":["resource"]},{"i":1,"j":9,"reasons":["resource"]},{"i":2,"j":7,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]},{"i":5,"j":8,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":7,"j":9,"reasons":["resource"]}]}]},"diagnostic_seconds":0.02504190499894321}
+{"input":{"file":"evaluation-n5-d2.json","split":"evaluation","tasks":5,"density_parameter":2,"data_seed":20260974,"sha256":"27e8da20697a51e79b1d9cf2f1a5103f183a804008384928ebe157dc6a0766ff"},"model":{"qubits":10,"penalty":23,"objective_bound":22,"offset":115,"linear":[-15,-15,-19,-22,-19,-17,-22,-22,-23,-20],"quadratic":[[0,1,46],[0,3,23],[0,5,23],[0,6,23],[0,8,23],[1,2,23],[1,7,23],[1,9,23],[2,3,46],[2,7,23],[2,9,23],[3,5,23],[3,6,23],[3,8,23],[4,5,46],[5,6,23],[5,8,23],[6,7,46],[6,8,23],[7,9,23],[8,9,46]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":8},{"index":1,"task":"t0","resource":"r0","start":3,"cost":8},{"index":2,"task":"t1","resource":"r0","start":3,"cost":4},{"index":3,"task":"t1","resource":"r0","start":1,"cost":1},{"index":4,"task":"t2","resource":"r0","start":2,"cost":4},{"index":5,"task":"t2","resource":"r0","start":1,"cost":6},{"index":6,"task":"t3","resource":"r0","start":1,"cost":1},{"index":7,"task":"t3","resource":"r0","start":3,"cost":1},{"index":8,"task":"t4","resource":"r0","start":1,"cost":0},{"index":9,"task":"t4","resource":"r0","start":3,"cost":3}],"conflicts":[{"i":0,"j":3,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource","group"]},{"i":1,"j":7,"reasons":["resource"]},{"i":1,"j":9,"reasons":["resource"]},{"i":2,"j":7,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]},{"i":5,"j":8,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":7,"j":9,"reasons":["resource"]}]},"quantum":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":14,"violation_count":2,"violations":[{"kind":"conflict","tasks":["t0","t3"],"variables":[1,7],"reasons":["resource"]},{"kind":"conflict","tasks":["t1","t4"],"variables":[3,8],"reasons":["resource"]}],"schedule":[{"variable":3,"task":"t1","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true}],"bits":[0,1,0,1,1,0,0,1,1,0],"qubo_energy":60},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.48068900838022827,1.4061141728324562],"expected_energy":82.65295527535892,"initial_expected_energy":92.31509583949776,"history":[92.31509583949776,118.5579782493649,170.79891779318018,134.36890103119842,129.9434629130181,105.4030040249246,93.77355063097406,92.45177484785508,90.63536643782601,89.65214957337975,93.49403202259674,87.19993950077478,88.24713574552496,86.78728818147478,88.21140778038217,86.53261880092973,86.09129170892064,85.34000414351048,84.181598951073,85.92849685567913,87.1076144853465,84.14227957212037,83.79140504131153,83.29945690203805,82.831009146904,84.26217333749912,83.8459154574972,82.78192940103352,82.77774429136888,82.75184506216097,82.73180989961804,82.72555107709668,82.99895460589282,82.69077641302167,82.66076187122809,82.67406157832684,82.67419326848261,82.66698335948239,82.6619136549776,82.66097989338607,82.66082022846022,82.65996069606746,82.6587502122172,82.66218336459723,82.65786038445546,82.6566543022058,82.65505438563395,82.66064903622416,82.65436525368642,82.65422400312691,82.65681005223611,82.65364266675674,82.65346113422926,82.6532484428692,82.65318668543338,82.65298787730521,82.65314402720358,82.652957600268,82.6530130428313,82.65295527535892,110.26362770092776,109.56511811974906,112.27148809275478,117.50674231734949,109.67086241159436,110.33846786078283,109.95234546012986,108.907681376347,108.45858323998897,108.83770134177149,108.98013934206111,108.42997273780568,108.49257406212716,108.42860013869566,108.40756829979213,108.37314293226933,108.34853231183446,108.34186086021256,108.35494573660372,108.34503817327241,108.33761599314434,108.33704845861837,108.3381316288288,108.33797157013511,108.33718924379119,108.33679547381945,108.33677813646287,108.33675942043509,108.33678323089642,108.33673962613332,108.33675910141778,108.33674167890737,108.33673987515247,108.33674138396002,108.33673947852162,108.33674013165815,108.33673947333226,108.33673953622758,108.3367394861708,108.33673944666958,108.33673943293621,108.33673943001536,108.3367394319373],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"0101010101":5,"0101010110":46,"0101011001":9,"0101011010":5,"0101100110":17,"0101101010":1,"0110010101":52,"0110010110":18,"0110011001":7,"0110011010":44,"0110100101":14,"0110100110":20,"0110101010":13,"1001010101":47,"1001010110":21,"1001011001":7,"1001011010":45,"1001100101":5,"1001100110":16,"1001101001":1,"1001101010":13,"1010010101":10,"1010010110":4,"1010011001":45,"1010011010":12,"1010100101":11,"1010101001":11,"1010101010":13},"circuit_evaluations":103,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":43}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11645812299684621},"metrics":{"exact_objective":null,"optimal_count":0,"combinations":32,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":11,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":21,"runtime_seconds":0.0012513070105342194},"exact":{"status":"infeasible","best":null,"combinations":32,"feasible_count":0,"runtime_seconds":0.00038583800778724253},"greedy":{"status":"dead_end","best":null,"runtime_seconds":1.6581994714215398e-05},"resources":{"full":{"depth":49,"operations":{"RX":25,"I":10,"RZ":36,"CNOT":57,"CRY":5,"X":5},"cnot":57,"cry":5},"auto":{"depth":36,"operations":{"RX":25,"I":10,"RZ":31,"CNOT":47,"CRY":5,"X":5},"cnot":47,"cry":5}},"phase_max_probability_error":9.71445146547012e-17,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":null,"uniform_objective":null},{"shots":64,"quantum_objective":null,"uniform_objective":null},{"shots":128,"quantum_objective":null,"uniform_objective":null},{"shots":512,"quantum_objective":null,"uniform_objective":null}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,8,9]],"components":[{"qubits":10,"penalty":23,"objective_bound":22,"offset":115,"linear":[-15,-15,-19,-22,-19,-17,-22,-22,-23,-20],"quadratic":[[0,1,46],[0,3,23],[0,5,23],[0,6,23],[0,8,23],[1,2,23],[1,7,23],[1,9,23],[2,3,46],[2,7,23],[2,9,23],[3,5,23],[3,6,23],[3,8,23],[4,5,46],[5,6,23],[5,8,23],[6,7,46],[6,8,23],[7,9,23],[8,9,46]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":8},{"index":1,"task":"t0","resource":"r0","start":3,"cost":8},{"index":2,"task":"t1","resource":"r0","start":3,"cost":4},{"index":3,"task":"t1","resource":"r0","start":1,"cost":1},{"index":4,"task":"t2","resource":"r0","start":2,"cost":4},{"index":5,"task":"t2","resource":"r0","start":1,"cost":6},{"index":6,"task":"t3","resource":"r0","start":1,"cost":1},{"index":7,"task":"t3","resource":"r0","start":3,"cost":1},{"index":8,"task":"t4","resource":"r0","start":1,"cost":0},{"index":9,"task":"t4","resource":"r0","start":3,"cost":3}],"conflicts":[{"i":0,"j":3,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource","group"]},{"i":1,"j":7,"reasons":["resource"]},{"i":1,"j":9,"reasons":["resource"]},{"i":2,"j":7,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]},{"i":5,"j":8,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":7,"j":9,"reasons":["resource"]}]}]},"diagnostic_seconds":0.02424823299224954}
+{"input":{"file":"evaluation-n6-d0.json","split":"evaluation","tasks":6,"density_parameter":0,"data_seed":20260982,"sha256":"689c6c10d93b32575b84b1a0b9b4ea32c3ac8e9cd35507dcf47df31a996cec46"},"model":{"qubits":12,"penalty":26,"objective_bound":25,"offset":156,"linear":[-22,-22,-25,-21,-23,-22,-25,-23,-22,-23,-24,-21],"quadratic":[[0,1,52],[0,2,26],[2,3,52],[4,5,52],[4,6,26],[6,7,52],[8,9,52],[10,11,52]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":6,"cost":4},{"index":1,"task":"t0","resource":"r0","start":5,"cost":4},{"index":2,"task":"t1","resource":"r1","start":6,"cost":1},{"index":3,"task":"t1","resource":"r0","start":7,"cost":5},{"index":4,"task":"t2","resource":"r1","start":2,"cost":3},{"index":5,"task":"t2","resource":"r0","start":10,"cost":4},{"index":6,"task":"t3","resource":"r0","start":2,"cost":1},{"index":7,"task":"t3","resource":"r1","start":5,"cost":3},{"index":8,"task":"t4","resource":"r1","start":1,"cost":4},{"index":9,"task":"t4","resource":"r0","start":3,"cost":3},{"index":10,"task":"t5","resource":"r2","start":10,"cost":2},{"index":11,"task":"t5","resource":"r2","start":11,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]},{"i":4,"j":6,"reasons":["group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":15},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.5969827592852683,1.3617021546941268],"expected_energy":20.5111241125162,"initial_expected_energy":40.63172397585353,"history":[40.63172397585353,42.349192620271914,30.7139537663739,46.3142693248859,30.635495358432106,36.52760411643152,30.850701952264572,29.105684089340258,28.616417606712098,29.155132510421108,28.44650133328612,29.91408472378452,28.092118780084178,27.913948667321385,27.694650596705735,27.308757918076424,28.052528085522873,27.150691278589047,26.903782704683994,26.36483152355247,25.359403702172184,23.729869436663975,40.68082405997383,32.422889640797706,25.07523827670624,23.625145969775097,24.92876142132008,23.462527704837235,23.30274829680932,23.126496753364695,23.0393457256133,22.625094426553567,23.103389140263022,22.51664783029601,22.851323149716258,22.419735153791276,22.336173284063563,22.222110313736415,22.05711836361572,22.012653428493046,21.698198915419155,22.31772115205303,21.60624799058175,21.52598459047556,21.70258942425614,21.435471868924914,21.39649775464077,21.330958594463574,21.211500955783574,21.015342099132283,21.598512998952785,21.896224188834204,21.04143970271129,21.001692417024042,21.03675891184892,20.987262385989602,20.963438616732503,20.931105636377733,20.899783369383073,20.953811203888236,49.54343280262371,47.780856308614695,36.12310445955714,30.819513121005393,32.60623120386423,48.89397879676453,41.75359465858649,29.77021095088316,33.49344057197665,30.33344473315151,29.283686270742038,29.044877839532568,30.180249473906148,28.752013348946043,28.59068658542158,28.35108964680381,27.867242560174116,26.980665429750793,25.21560139061607,21.979763853281753,43.4945693582785,36.16065708818863,32.74610896657909,24.05035847550544,21.843070885098555,22.801896720745802,21.816626971365537,21.73381914775523,21.575603076398096,21.30979074369089,20.988966126667506,21.87016461006587,22.103515114193844,20.932761612070177,20.855923014120684,20.890931034647014,20.945882726789144,20.835659328269063,20.83087967796672,20.850711260096773,20.813719428151806,20.79744129602241,20.768035174456493,20.76531915277024,20.703291522695174,20.702265639022784,20.652495718589467,20.601018074110577,20.559633192567354,20.80184914014076,20.588058064136987,20.583283390638453,20.57025879035605,20.546688278415374,20.551822511525902,20.53569205949909,20.527168286364656,20.54950770365761,20.51977011690098,20.5111241125162],"feasible_probability":0.992473071769231,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.990234375,"counts":{"010101100101":1,"010101100110":12,"010101101001":14,"010101101010":20,"010110010110":19,"010110011001":14,"010110011010":19,"010110100110":20,"010110101001":13,"010110101010":13,"011001010110":1,"011001011001":1,"011001100110":22,"011001101001":21,"011001101010":20,"011010010101":1,"011010010110":19,"011010011001":10,"011010011010":17,"011010100110":14,"011010101001":16,"011010101010":8,"100101100110":17,"100101101001":12,"100101101010":11,"100110010110":10,"100110011001":7,"100110011010":7,"100110100110":13,"100110101001":11,"100110101010":9,"101001100110":8,"101001101001":12,"101001101010":18,"101010010101":1,"101010010110":18,"101010011001":12,"101010011010":18,"101010100110":10,"101010101001":17,"101010101010":6},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.2384694189968286},"metrics":{"exact_objective":15,"optimal_count":1,"combinations":64,"optimal_probability":0.0357539201563212,"feasible_probability":0.992473071769231,"uniform_optimal_probability":0.015625,"uniform_feasible_probability":0.5625,"shots_for_95_percent":83,"hit_curve":[{"shots":8,"quantum":0.2526861084259566,"uniform":0.11837356497016671},{"shots":16,"quantum":0.441521947460459,"uniform":0.22273482905658715},{"shots":32,"quantum":0.6881022648316417,"uniform":0.3958588540383072},{"shots":64,"quantum":0.9027198027968486,"uniform":0.6350134757560926},{"shots":128,"quantum":0.9905365632321159,"uniform":0.8667848371203516},{"shots":512,"quantum":0.9999999919796091,"uniform":0.9996850695596114}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":13,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":15,"preference_cost":11,"change_cost":4,"changed_tasks":3,"max_start_shift":8,"choices":[2,0,1,0,1,0],"schedule":[{"task":"t0","resource":"r0","start":5,"end":6},{"task":"t1","resource":"r1","start":6,"end":7},{"task":"t2","resource":"r0","start":10,"end":11},{"task":"t3","resource":"r0","start":2,"end":3},{"task":"t4","resource":"r0","start":3,"end":4},{"task":"t5","resource":"r2","start":10,"end":11}]},"dual_bound":15.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":8,"runtime_seconds":0.001361773000098765},"exact":{"status":"optimal","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":15},"combinations":64,"feasible_count":36,"runtime_seconds":0.0005678860034095123},"greedy":{"status":"feasible","best":{"feasible":true,"objective":20,"raw_cost":20,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,0,0,1,1,0,0,1,0,1,1,0],"qubo_energy":20},"runtime_seconds":2.6816007448360324e-05},"resources":{"full":{"depth":17,"operations":{"RX":30,"I":12,"RZ":26,"CNOT":34,"CRY":6,"X":6},"cnot":34,"cry":6},"auto":{"depth":13,"operations":{"RX":30,"I":12,"RZ":20,"CNOT":22,"CRY":6,"X":6},"cnot":22,"cry":6}},"phase_max_probability_error":3.469446951953614e-17,"samples":[{"shots":8,"quantum_objective":18,"uniform_objective":20},{"shots":16,"quantum_objective":15,"uniform_objective":17},{"shots":32,"quantum_objective":15,"uniform_objective":16},{"shots":64,"quantum_objective":16,"uniform_objective":15},{"shots":128,"quantum_objective":15,"uniform_objective":15},{"shots":512,"quantum_objective":15,"uniform_objective":15}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[4,4,2,2],"max_component_qubits":4,"component_to_original":[[0,1,2,3],[4,5,6,7],[8,9],[10,11]],"components":[{"qubits":4,"penalty":10,"objective_bound":9,"offset":20,"linear":[-6,-6,-9,-5],"quadratic":[[0,1,20],[0,2,10],[2,3,20]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":6,"cost":4},{"index":1,"task":"t0","resource":"r0","start":5,"cost":4},{"index":2,"task":"t1","resource":"r1","start":6,"cost":1},{"index":3,"task":"t1","resource":"r0","start":7,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]}]},{"qubits":4,"penalty":8,"objective_bound":7,"offset":16,"linear":[-5,-4,-7,-5],"quadratic":[[0,1,16],[0,2,8],[2,3,16]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r1","start":2,"cost":3},{"index":1,"task":"t2","resource":"r0","start":10,"cost":4},{"index":2,"task":"t3","resource":"r0","start":2,"cost":1},{"index":3,"task":"t3","resource":"r1","start":5,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["group"]}]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-1,-2],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r1","start":1,"cost":4},{"index":1,"task":"t4","resource":"r0","start":3,"cost":3}],"conflicts":[]},{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-4,-1],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t5","resource":"r2","start":10,"cost":2},{"index":1,"task":"t5","resource":"r2","start":11,"cost":5}],"conflicts":[]}]},"diagnostic_seconds":0.03368499700445682}
+{"input":{"file":"evaluation-n6-d0.json","split":"evaluation","tasks":6,"density_parameter":0,"data_seed":20260982,"sha256":"689c6c10d93b32575b84b1a0b9b4ea32c3ac8e9cd35507dcf47df31a996cec46"},"model":{"qubits":12,"penalty":26,"objective_bound":25,"offset":156,"linear":[-22,-22,-25,-21,-23,-22,-25,-23,-22,-23,-24,-21],"quadratic":[[0,1,52],[0,2,26],[2,3,52],[4,5,52],[4,6,26],[6,7,52],[8,9,52],[10,11,52]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":6,"cost":4},{"index":1,"task":"t0","resource":"r0","start":5,"cost":4},{"index":2,"task":"t1","resource":"r1","start":6,"cost":1},{"index":3,"task":"t1","resource":"r0","start":7,"cost":5},{"index":4,"task":"t2","resource":"r1","start":2,"cost":3},{"index":5,"task":"t2","resource":"r0","start":10,"cost":4},{"index":6,"task":"t3","resource":"r0","start":2,"cost":1},{"index":7,"task":"t3","resource":"r1","start":5,"cost":3},{"index":8,"task":"t4","resource":"r1","start":1,"cost":4},{"index":9,"task":"t4","resource":"r0","start":3,"cost":3},{"index":10,"task":"t5","resource":"r2","start":10,"cost":2},{"index":11,"task":"t5","resource":"r2","start":11,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]},{"i":4,"j":6,"reasons":["group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":15},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4552152701221255,1.3544002271558235],"expected_energy":20.35496594137968,"initial_expected_energy":38.90884185816629,"history":[38.90884185816629,39.04984290872024,36.96728885221846,30.389951937668037,32.69300439589407,51.109989044315185,36.553163986329125,34.42612338972171,28.550751615877065,25.480540210574603,23.64976127561095,24.515058289863777,23.998966699493533,23.634890643114083,23.061568947933317,22.95334108127112,22.240231024769933,23.76054777756932,22.880265414644345,22.084659053083662,22.80171106187435,22.09449192587503,22.048144551138606,22.054262438256615,22.070289581849444,22.011116793090558,21.965862217247533,21.981837665073748,21.95077998977228,21.926093256585418,21.901076101660692,21.98573862104751,21.865504411666272,21.83379108774001,21.776478944947506,21.665813509073956,21.547312660010263,21.40373324986541,21.429981969794056,21.692897958950418,21.407871368934416,21.328139649982248,21.29343260721245,21.24605679405183,21.20152972398461,21.115132125115295,20.95132220709674,20.798697017693648,21.250316819110683,21.71591740142173,20.76601817553223,20.655291677266902,20.7174734495085,20.686840271214095,20.658422175655826,20.64163521561605,20.61601708153298,20.588363494267973,20.56118744876478,20.55797644976129,36.44800926785781,38.94491703539833,27.058610696702395,47.767257954258355,21.322873215976426,32.56208605398142,21.055051869487087,24.599269656062326,21.40123239735897,21.301835438841536,21.270949944973395,21.103406766992663,21.00165581490075,20.962941558495057,21.015845435835473,20.94397585361429,20.92599966346993,20.91170415531515,20.868962147009448,20.843072557821777,20.80595838727919,20.747374679889347,20.652091369006225,20.544996130899367,20.501647338742544,20.890649219294044,21.299924372185217,20.492576516738968,20.395624444706257,20.51097522752145,20.388023730300823,20.402431953660905,20.38412196850819,20.38180811320558,20.39458807282124,20.378746457048656,20.37788232666081,20.375656962098553,20.372290186759173,20.366368403093116,20.363145876935505,20.403518200460553,20.414473367326863,20.357091364314996,20.362686579242805,20.35677601362956,20.35894458210859,20.356702142391605,20.35637143502847,20.3557843880519,20.35627486821653,20.356676002256783,20.356238673256982,20.35569463607126,20.355817602636986,20.355584510211855,20.355501812482224,20.355390577156204,20.3552242663114,20.35496594137968],"feasible_probability":0.99950502126734,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":1.0,"counts":{"010101100110":18,"010101101001":17,"010101101010":18,"010110010110":15,"010110011001":11,"010110011010":14,"010110100110":17,"010110101001":13,"010110101010":15,"011001100110":22,"011001101001":8,"011001101010":25,"011010010110":22,"011010011001":11,"011010011010":24,"011010100110":20,"011010101001":19,"011010101010":13,"100101100110":11,"100101101001":13,"100101101010":10,"100110010110":13,"100110011001":11,"100110011010":5,"100110100110":15,"100110101001":8,"100110101010":11,"101001100110":15,"101001101001":11,"101001101010":13,"101010010110":14,"101010011001":14,"101010011010":10,"101010100110":9,"101010101001":15,"101010101010":12},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.23753514300915413},"metrics":{"exact_objective":15,"optimal_count":1,"combinations":64,"optimal_probability":0.03574065960473795,"feasible_probability":0.99950502126734,"uniform_optimal_probability":0.015625,"uniform_feasible_probability":0.5625,"shots_for_95_percent":83,"hit_curve":[{"shots":8,"quantum":0.25260388649846144,"uniform":0.11837356497016671},{"shots":16,"quantum":0.4413990495227953,"uniform":0.22273482905658715},{"shots":32,"quantum":0.6879649781259635,"uniform":0.3958588540383072},{"shots":64,"quantum":0.9026341451240696,"uniform":0.6350134757560926},{"shots":128,"quantum":0.9905198903042792,"uniform":0.8667848371203516},{"shots":512,"quantum":0.9999999919229373,"uniform":0.9996850695596114}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":13,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":15,"preference_cost":11,"change_cost":4,"changed_tasks":3,"max_start_shift":8,"choices":[2,0,1,0,1,0],"schedule":[{"task":"t0","resource":"r0","start":5,"end":6},{"task":"t1","resource":"r1","start":6,"end":7},{"task":"t2","resource":"r0","start":10,"end":11},{"task":"t3","resource":"r0","start":2,"end":3},{"task":"t4","resource":"r0","start":3,"end":4},{"task":"t5","resource":"r2","start":10,"end":11}]},"dual_bound":15.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":8,"runtime_seconds":0.001361773000098765},"exact":{"status":"optimal","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":15},"combinations":64,"feasible_count":36,"runtime_seconds":0.0005678860034095123},"greedy":{"status":"feasible","best":{"feasible":true,"objective":20,"raw_cost":20,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,0,0,1,1,0,0,1,0,1,1,0],"qubo_energy":20},"runtime_seconds":2.6816007448360324e-05},"resources":{"full":{"depth":17,"operations":{"RX":30,"I":12,"RZ":26,"CNOT":34,"CRY":6,"X":6},"cnot":34,"cry":6},"auto":{"depth":13,"operations":{"RX":30,"I":12,"RZ":20,"CNOT":22,"CRY":6,"X":6},"cnot":22,"cry":6}},"phase_max_probability_error":4.5102810375396984e-17,"samples":[{"shots":8,"quantum_objective":15,"uniform_objective":18},{"shots":16,"quantum_objective":15,"uniform_objective":19},{"shots":32,"quantum_objective":16,"uniform_objective":19},{"shots":64,"quantum_objective":15,"uniform_objective":15},{"shots":128,"quantum_objective":15,"uniform_objective":16},{"shots":512,"quantum_objective":15,"uniform_objective":15}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[4,4,2,2],"max_component_qubits":4,"component_to_original":[[0,1,2,3],[4,5,6,7],[8,9],[10,11]],"components":[{"qubits":4,"penalty":10,"objective_bound":9,"offset":20,"linear":[-6,-6,-9,-5],"quadratic":[[0,1,20],[0,2,10],[2,3,20]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":6,"cost":4},{"index":1,"task":"t0","resource":"r0","start":5,"cost":4},{"index":2,"task":"t1","resource":"r1","start":6,"cost":1},{"index":3,"task":"t1","resource":"r0","start":7,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]}]},{"qubits":4,"penalty":8,"objective_bound":7,"offset":16,"linear":[-5,-4,-7,-5],"quadratic":[[0,1,16],[0,2,8],[2,3,16]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r1","start":2,"cost":3},{"index":1,"task":"t2","resource":"r0","start":10,"cost":4},{"index":2,"task":"t3","resource":"r0","start":2,"cost":1},{"index":3,"task":"t3","resource":"r1","start":5,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["group"]}]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-1,-2],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r1","start":1,"cost":4},{"index":1,"task":"t4","resource":"r0","start":3,"cost":3}],"conflicts":[]},{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-4,-1],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t5","resource":"r2","start":10,"cost":2},{"index":1,"task":"t5","resource":"r2","start":11,"cost":5}],"conflicts":[]}]},"diagnostic_seconds":0.03245148299902212}
+{"input":{"file":"evaluation-n6-d0.json","split":"evaluation","tasks":6,"density_parameter":0,"data_seed":20260982,"sha256":"689c6c10d93b32575b84b1a0b9b4ea32c3ac8e9cd35507dcf47df31a996cec46"},"model":{"qubits":12,"penalty":26,"objective_bound":25,"offset":156,"linear":[-22,-22,-25,-21,-23,-22,-25,-23,-22,-23,-24,-21],"quadratic":[[0,1,52],[0,2,26],[2,3,52],[4,5,52],[4,6,26],[6,7,52],[8,9,52],[10,11,52]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":6,"cost":4},{"index":1,"task":"t0","resource":"r0","start":5,"cost":4},{"index":2,"task":"t1","resource":"r1","start":6,"cost":1},{"index":3,"task":"t1","resource":"r0","start":7,"cost":5},{"index":4,"task":"t2","resource":"r1","start":2,"cost":3},{"index":5,"task":"t2","resource":"r0","start":10,"cost":4},{"index":6,"task":"t3","resource":"r0","start":2,"cost":1},{"index":7,"task":"t3","resource":"r1","start":5,"cost":3},{"index":8,"task":"t4","resource":"r1","start":1,"cost":4},{"index":9,"task":"t4","resource":"r0","start":3,"cost":3},{"index":10,"task":"t5","resource":"r2","start":10,"cost":2},{"index":11,"task":"t5","resource":"r2","start":11,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]},{"i":4,"j":6,"reasons":["group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":15},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4340911289691751,2.924200529908214],"expected_energy":20.35426060088271,"initial_expected_energy":43.85199641028371,"history":[43.85199641028371,40.957191253600314,40.388166505188494,47.50075385645601,40.8384967779943,44.36058023288406,39.15119813334439,36.35531473245132,32.583159833748994,32.153011556446714,32.735012837478195,32.058190065108136,32.27676763789326,32.54507077586747,32.15266960724577,32.05909919345479,32.07553242531732,32.059782661014,32.059465474229164,32.06037255596799,32.0582569196022,32.05803430114523,32.05833976559519,32.058074968374505,32.058076093411415,32.058012333936674,32.05800225714561,32.0581120623701,32.0579780805706,32.05797349501133,32.057958225702876,32.05793137594625,32.057878771752385,32.05782801125906,32.05809021504061,32.05824461768722,32.05781718156241,32.05775720297667,32.05778461854751,32.057770211450574,32.05775968870202,32.057750739494274,32.05774306175041,32.057729813561,32.05772193633807,32.05770721018477,32.057699933717835,32.05766932502673,32.05769061417428,32.057663440126106,32.057690004566496,32.057655534767726,32.05764847092479,32.057635255088854,32.05761433126325,32.057625584932765,32.05766560094056,32.05760723543186,32.057599213705984,32.05758412411751,49.61195144617789,52.26767843515712,33.016806095284224,20.82811627721685,34.66419774680621,29.349767529820674,24.14161796852006,22.294917372580745,20.427970753885898,22.09691228721489,20.613845851112437,20.73392108495102,20.670060529218144,20.57621807764186,20.482201602324945,20.36643871182687,20.380103752593058,20.36496954126629,20.36400963456302,20.363786255965657,20.379753793563147,20.360566084195852,20.36041473726999,20.35977060846575,20.358661603444304,20.35697374911884,20.362189181503886,20.36269282012778,20.358520418966506,20.357076297254878,20.3570332247886,20.356928776424294,20.357081711013436,20.356758258198766,20.356637546617307,20.35637375442416,20.355949831259302,20.357167361244528,20.35736808726293,20.355808788880275,20.355841594964414,20.3557267328139,20.355673860607126,20.35574171467875,20.355518843786914,20.35544800654454,20.355341208116922,20.355242363492533,20.35511414769921,20.35493907345602,20.354877058990105,20.35548916861721,20.35474438305974,20.35470074759192,20.35462036545859,20.354475008134774,20.35426060088271,20.35638540566276,20.35567723375089,20.35431697988779],"feasible_probability":0.9996087965373014,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"010101100110":18,"010101101001":15,"010101101010":15,"010110010110":19,"010110011001":11,"010110011010":14,"010110100110":18,"010110101001":13,"010110101010":14,"011001100110":22,"011001101001":17,"011001101010":15,"011010010110":18,"011010011001":12,"011010011010":16,"011010100110":19,"011010101001":19,"011010101010":13,"100101100110":13,"100101101001":10,"100101101010":11,"100110010110":14,"100110011001":7,"100110011010":13,"100110100110":9,"100110101001":11,"100110101010":11,"101001100110":18,"101001101001":11,"101001101010":7,"101010010110":16,"101010011001":11,"101010011010":14,"101010100110":23,"101010101001":7,"101010101010":18},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.2487923370063072},"metrics":{"exact_objective":15,"optimal_count":1,"combinations":64,"optimal_probability":0.035701748198829174,"feasible_probability":0.9996087965373013,"uniform_optimal_probability":0.015625,"uniform_feasible_probability":0.5625,"shots_for_95_percent":83,"hit_curve":[{"shots":8,"quantum":0.25236257099195897,"uniform":0.11837356497016671},{"shots":16,"quantum":0.44103827474624646,"uniform":0.22273482905658715},{"shots":32,"quantum":0.6875617897013473,"uniform":0.3958588540383072},{"shots":64,"quantum":0.9023823647453749,"uniform":0.6350134757560926},{"shots":128,"quantum":0.9904707972872949,"uniform":0.8667848371203516},{"shots":512,"quantum":0.9999999917543241,"uniform":0.9996850695596114}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":13,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":15,"preference_cost":11,"change_cost":4,"changed_tasks":3,"max_start_shift":8,"choices":[2,0,1,0,1,0],"schedule":[{"task":"t0","resource":"r0","start":5,"end":6},{"task":"t1","resource":"r1","start":6,"end":7},{"task":"t2","resource":"r0","start":10,"end":11},{"task":"t3","resource":"r0","start":2,"end":3},{"task":"t4","resource":"r0","start":3,"end":4},{"task":"t5","resource":"r2","start":10,"end":11}]},"dual_bound":15.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":8,"runtime_seconds":0.001361773000098765},"exact":{"status":"optimal","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":15},"combinations":64,"feasible_count":36,"runtime_seconds":0.0005678860034095123},"greedy":{"status":"feasible","best":{"feasible":true,"objective":20,"raw_cost":20,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,0,0,1,1,0,0,1,0,1,1,0],"qubo_energy":20},"runtime_seconds":2.6816007448360324e-05},"resources":{"full":{"depth":17,"operations":{"RX":30,"I":12,"RZ":26,"CNOT":34,"CRY":6,"X":6},"cnot":34,"cry":6},"auto":{"depth":13,"operations":{"RX":30,"I":12,"RZ":20,"CNOT":22,"CRY":6,"X":6},"cnot":22,"cry":6}},"phase_max_probability_error":4.85722573273506e-17,"samples":[{"shots":8,"quantum_objective":18,"uniform_objective":16},{"shots":16,"quantum_objective":17,"uniform_objective":15},{"shots":32,"quantum_objective":15,"uniform_objective":15},{"shots":64,"quantum_objective":15,"uniform_objective":15},{"shots":128,"quantum_objective":15,"uniform_objective":15},{"shots":512,"quantum_objective":15,"uniform_objective":15}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[4,4,2,2],"max_component_qubits":4,"component_to_original":[[0,1,2,3],[4,5,6,7],[8,9],[10,11]],"components":[{"qubits":4,"penalty":10,"objective_bound":9,"offset":20,"linear":[-6,-6,-9,-5],"quadratic":[[0,1,20],[0,2,10],[2,3,20]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":6,"cost":4},{"index":1,"task":"t0","resource":"r0","start":5,"cost":4},{"index":2,"task":"t1","resource":"r1","start":6,"cost":1},{"index":3,"task":"t1","resource":"r0","start":7,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]}]},{"qubits":4,"penalty":8,"objective_bound":7,"offset":16,"linear":[-5,-4,-7,-5],"quadratic":[[0,1,16],[0,2,8],[2,3,16]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r1","start":2,"cost":3},{"index":1,"task":"t2","resource":"r0","start":10,"cost":4},{"index":2,"task":"t3","resource":"r0","start":2,"cost":1},{"index":3,"task":"t3","resource":"r1","start":5,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["group"]}]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-1,-2],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r1","start":1,"cost":4},{"index":1,"task":"t4","resource":"r0","start":3,"cost":3}],"conflicts":[]},{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-4,-1],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t5","resource":"r2","start":10,"cost":2},{"index":1,"task":"t5","resource":"r2","start":11,"cost":5}],"conflicts":[]}]},"diagnostic_seconds":0.031245731996023096}
+{"input":{"file":"evaluation-n6-d0.json","split":"evaluation","tasks":6,"density_parameter":0,"data_seed":20260982,"sha256":"689c6c10d93b32575b84b1a0b9b4ea32c3ac8e9cd35507dcf47df31a996cec46"},"model":{"qubits":12,"penalty":26,"objective_bound":25,"offset":156,"linear":[-22,-22,-25,-21,-23,-22,-25,-23,-22,-23,-24,-21],"quadratic":[[0,1,52],[0,2,26],[2,3,52],[4,5,52],[4,6,26],[6,7,52],[8,9,52],[10,11,52]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":6,"cost":4},{"index":1,"task":"t0","resource":"r0","start":5,"cost":4},{"index":2,"task":"t1","resource":"r1","start":6,"cost":1},{"index":3,"task":"t1","resource":"r0","start":7,"cost":5},{"index":4,"task":"t2","resource":"r1","start":2,"cost":3},{"index":5,"task":"t2","resource":"r0","start":10,"cost":4},{"index":6,"task":"t3","resource":"r0","start":2,"cost":1},{"index":7,"task":"t3","resource":"r1","start":5,"cost":3},{"index":8,"task":"t4","resource":"r1","start":1,"cost":4},{"index":9,"task":"t4","resource":"r0","start":3,"cost":3},{"index":10,"task":"t5","resource":"r2","start":10,"cost":2},{"index":11,"task":"t5","resource":"r2","start":11,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]},{"i":4,"j":6,"reasons":["group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":15},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4409686937453827,1.353297951600063],"expected_energy":20.353799962669093,"initial_expected_energy":27.18878297675753,"history":[27.18878297675753,31.542757706045098,44.32231991980583,32.022453378146565,20.797070940789727,50.227902478492844,26.883944762087065,20.54214569822812,23.65850113862767,20.596880552588416,20.66288584561591,20.696443284230707,20.56487749769932,20.55581950886439,20.53547600431937,20.528390818210376,20.51838216339854,20.504747879490903,20.51009153983241,20.494253067557576,20.497186726779777,20.498873334189962,20.489227534235653,20.494425785281464,20.483873193864742,20.47945415913398,20.47091649749646,20.462596437932383,20.44779281933665,20.451591474927287,20.46305901287112,20.44835878258943,20.44324276162804,20.44014319829158,20.43648743001402,20.43287804366411,20.426090723619726,20.414263706949566,20.395379454414385,20.379705268368895,20.363393428490138,20.353842862332105,20.757191098211333,20.467442188892306,20.37862102423987,20.353975572774573,20.361560293660617,20.355037967334937,20.35449212282103,20.35382983418861,20.353810892965676,20.353866497049026,20.353820114308782,20.353819320886295,20.353808138918303,20.35380366564953,20.353801245658985,20.353802032097768,20.35380052873611,20.353799962669093,48.21957981800547,43.63133584241021,35.277673906190586,45.15303683295492,37.889538112447,40.41343925764893,34.55496077401421,32.86563218525117,32.10062126864295,32.07198031543325,32.63739527755283,32.09124225722712,32.14653306644316,32.07343212309221,32.059496644464595,32.05719987634792,32.05688324934552,32.06453796140535,32.056818383675534,32.05701528436485,32.05694881481722,32.056623249803216,32.0565467344548,32.0566370971039,32.056580187570844,32.056576448963284,32.05654196211205,32.05652967324077,32.05652384422497,32.056516894845046,32.056511161934786,32.05650409451392,32.0564899997113,32.056462217622546,32.05640626042262,32.056296628011,32.056338477537984,32.05712417635867,32.056444020269396,32.0562850270632,32.056362159694174,32.056275925797195,32.05626662301155,32.056288727669056,32.05625529072712,32.056248484869116,32.05627780626827,32.05623905908682,32.05623259637548,32.05622613055816,32.05621859445121,32.05620350568563,32.056196304170996,32.05618018554401,32.05616936948676,32.05613705730292,32.05619906345709,32.056154513161324,32.05614216788162,32.05614154340957],"feasible_probability":0.9996507548213739,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":1.0,"counts":{"010101100110":13,"010101101001":13,"010101101010":15,"010110010110":20,"010110011001":20,"010110011010":17,"010110100110":15,"010110101001":15,"010110101010":13,"011001100110":14,"011001101001":20,"011001101010":13,"011010010110":18,"011010011001":17,"011010011010":17,"011010100110":17,"011010101001":25,"011010101010":7,"100101100110":14,"100101101001":17,"100101101010":16,"100110010110":8,"100110011001":4,"100110011010":11,"100110100110":16,"100110101001":11,"100110101010":15,"101001100110":13,"101001101001":6,"101001101010":14,"101010010110":17,"101010011001":9,"101010011010":12,"101010100110":13,"101010101001":15,"101010101010":12},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.23546254300163127},"metrics":{"exact_objective":15,"optimal_count":1,"combinations":64,"optimal_probability":0.035683476780396635,"feasible_probability":0.9996507548213737,"uniform_optimal_probability":0.015625,"uniform_feasible_probability":0.5625,"shots_for_95_percent":83,"hit_curve":[{"shots":8,"quantum":0.25224923425420165,"uniform":0.11837356497016671},{"shots":16,"quantum":0.4408687923265722,"uniform":0.22273482905658715},{"shots":32,"quantum":0.6873722926056542,"uniform":0.3958588540383072},{"shots":64,"quantum":0.9022639165693553,"uniform":0.6350134757560926},{"shots":128,"quantum":0.990447657995638,"uniform":0.8667848371203516},{"shots":512,"quantum":0.9999999916739416,"uniform":0.9996850695596114}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":13,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":15,"preference_cost":11,"change_cost":4,"changed_tasks":3,"max_start_shift":8,"choices":[2,0,1,0,1,0],"schedule":[{"task":"t0","resource":"r0","start":5,"end":6},{"task":"t1","resource":"r1","start":6,"end":7},{"task":"t2","resource":"r0","start":10,"end":11},{"task":"t3","resource":"r0","start":2,"end":3},{"task":"t4","resource":"r0","start":3,"end":4},{"task":"t5","resource":"r2","start":10,"end":11}]},"dual_bound":15.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":8,"runtime_seconds":0.001361773000098765},"exact":{"status":"optimal","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":15},"combinations":64,"feasible_count":36,"runtime_seconds":0.0005678860034095123},"greedy":{"status":"feasible","best":{"feasible":true,"objective":20,"raw_cost":20,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,0,0,1,1,0,0,1,0,1,1,0],"qubo_energy":20},"runtime_seconds":2.6816007448360324e-05},"resources":{"full":{"depth":17,"operations":{"RX":30,"I":12,"RZ":26,"CNOT":34,"CRY":6,"X":6},"cnot":34,"cry":6},"auto":{"depth":13,"operations":{"RX":30,"I":12,"RZ":20,"CNOT":22,"CRY":6,"X":6},"cnot":22,"cry":6}},"phase_max_probability_error":2.7755575615628914e-17,"samples":[{"shots":8,"quantum_objective":15,"uniform_objective":16},{"shots":16,"quantum_objective":16,"uniform_objective":20},{"shots":32,"quantum_objective":17,"uniform_objective":15},{"shots":64,"quantum_objective":15,"uniform_objective":16},{"shots":128,"quantum_objective":15,"uniform_objective":15},{"shots":512,"quantum_objective":15,"uniform_objective":15}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[4,4,2,2],"max_component_qubits":4,"component_to_original":[[0,1,2,3],[4,5,6,7],[8,9],[10,11]],"components":[{"qubits":4,"penalty":10,"objective_bound":9,"offset":20,"linear":[-6,-6,-9,-5],"quadratic":[[0,1,20],[0,2,10],[2,3,20]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":6,"cost":4},{"index":1,"task":"t0","resource":"r0","start":5,"cost":4},{"index":2,"task":"t1","resource":"r1","start":6,"cost":1},{"index":3,"task":"t1","resource":"r0","start":7,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]}]},{"qubits":4,"penalty":8,"objective_bound":7,"offset":16,"linear":[-5,-4,-7,-5],"quadratic":[[0,1,16],[0,2,8],[2,3,16]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r1","start":2,"cost":3},{"index":1,"task":"t2","resource":"r0","start":10,"cost":4},{"index":2,"task":"t3","resource":"r0","start":2,"cost":1},{"index":3,"task":"t3","resource":"r1","start":5,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["group"]}]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-1,-2],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r1","start":1,"cost":4},{"index":1,"task":"t4","resource":"r0","start":3,"cost":3}],"conflicts":[]},{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-4,-1],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t5","resource":"r2","start":10,"cost":2},{"index":1,"task":"t5","resource":"r2","start":11,"cost":5}],"conflicts":[]}]},"diagnostic_seconds":0.03289034000772517}
+{"input":{"file":"evaluation-n6-d0.json","split":"evaluation","tasks":6,"density_parameter":0,"data_seed":20260982,"sha256":"689c6c10d93b32575b84b1a0b9b4ea32c3ac8e9cd35507dcf47df31a996cec46"},"model":{"qubits":12,"penalty":26,"objective_bound":25,"offset":156,"linear":[-22,-22,-25,-21,-23,-22,-25,-23,-22,-23,-24,-21],"quadratic":[[0,1,52],[0,2,26],[2,3,52],[4,5,52],[4,6,26],[6,7,52],[8,9,52],[10,11,52]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":6,"cost":4},{"index":1,"task":"t0","resource":"r0","start":5,"cost":4},{"index":2,"task":"t1","resource":"r1","start":6,"cost":1},{"index":3,"task":"t1","resource":"r0","start":7,"cost":5},{"index":4,"task":"t2","resource":"r1","start":2,"cost":3},{"index":5,"task":"t2","resource":"r0","start":10,"cost":4},{"index":6,"task":"t3","resource":"r0","start":2,"cost":1},{"index":7,"task":"t3","resource":"r1","start":5,"cost":3},{"index":8,"task":"t4","resource":"r1","start":1,"cost":4},{"index":9,"task":"t4","resource":"r0","start":3,"cost":3},{"index":10,"task":"t5","resource":"r2","start":10,"cost":2},{"index":11,"task":"t5","resource":"r2","start":11,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]},{"i":4,"j":6,"reasons":["group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":15},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.1236946041748053,2.9678122656009975],"expected_energy":23.198769220756716,"initial_expected_energy":32.09735700464602,"history":[32.09735700464602,32.117015744321094,36.63040183532724,47.649878149012,40.47765596036853,34.398758954169566,32.09672808055497,32.96356934975897,32.22625497335705,32.41659485966473,32.030001570781245,32.028474405848165,32.02849148390645,32.03613956681484,32.021134201611716,32.02437898740412,32.021689979803256,32.021441507966145,32.02094153910947,32.02102765655053,32.02098708152475,32.020925917525176,32.02100646536273,32.02088257765679,32.020849140406156,32.020942077379544,32.020827182860636,32.02080166199764,32.02082081618916,32.02077211439945,32.02076870331375,32.02079537201066,32.02077083913158,32.02075740865251,32.02074476019371,32.020775351686396,32.02073340377733,32.02072275370551,32.02070188933739,32.020660460067845,32.02057869690171,32.02044201631274,32.02063330398073,32.0215145850041,32.02046271969698,32.02043579655812,32.02053118753311,32.02041360888326,32.02038485917609,32.02036879664888,32.0203948801922,32.02035821623041,32.02034779354547,32.020328110441014,32.020286349751416,32.02020488317383,32.020055565314465,32.01986757103879,32.02016591365495,32.021388779637626,41.53921781021913,43.16788139529436,31.72011273253891,44.991180307574105,32.37938335994585,32.825564987551374,34.174926216872414,32.46009216460244,31.806342880965513,31.672394619088557,31.246308311015184,31.321047324908456,31.595632722053548,31.38536788115386,31.289238626592816,31.164705440108424,31.021469206720365,31.17326743186002,30.932904403355266,30.765401005699395,30.389633783386863,29.538537588348415,29.202738697397496,29.538530074802473,34.23192394364795,29.781536197364538,27.93419105622811,27.63314976936809,28.526159579944117,27.35511209435029,27.11886144382965,26.824913116480765,26.322397124619386,26.330101293345678,26.192567274926976,26.28029652155571,26.265123969482175,26.08761461502865,26.05109896209999,26.198067590849476,26.038895731457046,25.985657242188033,25.888809667535234,25.701400174669438,25.44819858694355,25.086728843183195,24.86497271538674,25.788576971588856,24.647780512885895,24.523666059784443,24.340543223865474,23.994449176761087,23.342953691285956,23.852831763742614,24.614402626697405,23.602293651608413,23.276057908971158,23.352095188213546,23.21151848613488,23.198769220756716],"feasible_probability":0.8819422636261011,"one_hot_probability":1.0000000000000004,"sampled_feasible_fraction":0.873046875,"counts":{"010101010101":2,"010101010110":2,"010101011001":2,"010101011010":4,"010101100101":4,"010101100110":19,"010101101001":6,"010101101010":14,"010110010101":2,"010110010110":12,"010110011001":11,"010110011010":11,"010110100101":2,"010110100110":11,"010110101001":15,"010110101010":13,"011001010110":5,"011001011001":1,"011001011010":1,"011001100101":1,"011001100110":16,"011001101001":17,"011001101010":11,"011010010101":2,"011010010110":13,"011010011001":16,"011010011010":13,"011010100101":5,"011010100110":17,"011010101001":15,"011010101010":14,"100101010110":4,"100101011001":3,"100101011010":3,"100101100101":2,"100101100110":8,"100101101001":18,"100101101010":9,"100110010101":2,"100110010110":10,"100110011001":8,"100110011010":5,"100110100101":4,"100110100110":13,"100110101001":9,"100110101010":10,"101001010101":1,"101001010110":2,"101001011001":6,"101001011010":2,"101001100101":1,"101001100110":11,"101001101001":15,"101001101010":7,"101010010101":1,"101010010110":20,"101010011001":11,"101010011010":15,"101010100101":1,"101010100110":12,"101010101001":8,"101010101010":14},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.23280842599342577},"metrics":{"exact_objective":15,"optimal_count":1,"combinations":64,"optimal_probability":0.032209449131407636,"feasible_probability":0.881942263626101,"uniform_optimal_probability":0.015625,"uniform_feasible_probability":0.5625,"shots_for_95_percent":92,"hit_curve":[{"shots":8,"quantum":0.23042487758527455,"uniform":0.11837356497016671},{"shots":16,"quantum":0.40775413096036034,"uniform":0.22273482905658715},{"shots":32,"quantum":0.649244830605482,"uniform":0.3958588540383072},{"shots":64,"quantum":0.876970811143023,"uniform":0.6350134757560926},{"shots":128,"quantum":0.9848638186891943,"uniform":0.8667848371203516},{"shots":512,"quantum":0.9999999475113642,"uniform":0.9996850695596114}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":13,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":15,"preference_cost":11,"change_cost":4,"changed_tasks":3,"max_start_shift":8,"choices":[2,0,1,0,1,0],"schedule":[{"task":"t0","resource":"r0","start":5,"end":6},{"task":"t1","resource":"r1","start":6,"end":7},{"task":"t2","resource":"r0","start":10,"end":11},{"task":"t3","resource":"r0","start":2,"end":3},{"task":"t4","resource":"r0","start":3,"end":4},{"task":"t5","resource":"r2","start":10,"end":11}]},"dual_bound":15.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":8,"runtime_seconds":0.001361773000098765},"exact":{"status":"optimal","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":15},"combinations":64,"feasible_count":36,"runtime_seconds":0.0005678860034095123},"greedy":{"status":"feasible","best":{"feasible":true,"objective":20,"raw_cost":20,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,0,0,1,1,0,0,1,0,1,1,0],"qubo_energy":20},"runtime_seconds":2.6816007448360324e-05},"resources":{"full":{"depth":17,"operations":{"RX":30,"I":12,"RZ":26,"CNOT":34,"CRY":6,"X":6},"cnot":34,"cry":6},"auto":{"depth":13,"operations":{"RX":30,"I":12,"RZ":20,"CNOT":22,"CRY":6,"X":6},"cnot":22,"cry":6}},"phase_max_probability_error":3.8163916471489756e-17,"samples":[{"shots":8,"quantum_objective":16,"uniform_objective":20},{"shots":16,"quantum_objective":15,"uniform_objective":16},{"shots":32,"quantum_objective":15,"uniform_objective":16},{"shots":64,"quantum_objective":15,"uniform_objective":16},{"shots":128,"quantum_objective":15,"uniform_objective":15},{"shots":512,"quantum_objective":15,"uniform_objective":15}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[4,4,2,2],"max_component_qubits":4,"component_to_original":[[0,1,2,3],[4,5,6,7],[8,9],[10,11]],"components":[{"qubits":4,"penalty":10,"objective_bound":9,"offset":20,"linear":[-6,-6,-9,-5],"quadratic":[[0,1,20],[0,2,10],[2,3,20]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":6,"cost":4},{"index":1,"task":"t0","resource":"r0","start":5,"cost":4},{"index":2,"task":"t1","resource":"r1","start":6,"cost":1},{"index":3,"task":"t1","resource":"r0","start":7,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]}]},{"qubits":4,"penalty":8,"objective_bound":7,"offset":16,"linear":[-5,-4,-7,-5],"quadratic":[[0,1,16],[0,2,8],[2,3,16]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r1","start":2,"cost":3},{"index":1,"task":"t2","resource":"r0","start":10,"cost":4},{"index":2,"task":"t3","resource":"r0","start":2,"cost":1},{"index":3,"task":"t3","resource":"r1","start":5,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["group"]}]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-1,-2],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r1","start":1,"cost":4},{"index":1,"task":"t4","resource":"r0","start":3,"cost":3}],"conflicts":[]},{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-4,-1],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t5","resource":"r2","start":10,"cost":2},{"index":1,"task":"t5","resource":"r2","start":11,"cost":5}],"conflicts":[]}]},"diagnostic_seconds":0.029846655001165345}
+{"input":{"file":"evaluation-n6-d0.json","split":"evaluation","tasks":6,"density_parameter":0,"data_seed":20260982,"sha256":"689c6c10d93b32575b84b1a0b9b4ea32c3ac8e9cd35507dcf47df31a996cec46"},"model":{"qubits":12,"penalty":26,"objective_bound":25,"offset":156,"linear":[-22,-22,-25,-21,-23,-22,-25,-23,-22,-23,-24,-21],"quadratic":[[0,1,52],[0,2,26],[2,3,52],[4,5,52],[4,6,26],[6,7,52],[8,9,52],[10,11,52]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":6,"cost":4},{"index":1,"task":"t0","resource":"r0","start":5,"cost":4},{"index":2,"task":"t1","resource":"r1","start":6,"cost":1},{"index":3,"task":"t1","resource":"r0","start":7,"cost":5},{"index":4,"task":"t2","resource":"r1","start":2,"cost":3},{"index":5,"task":"t2","resource":"r0","start":10,"cost":4},{"index":6,"task":"t3","resource":"r0","start":2,"cost":1},{"index":7,"task":"t3","resource":"r1","start":5,"cost":3},{"index":8,"task":"t4","resource":"r1","start":1,"cost":4},{"index":9,"task":"t4","resource":"r0","start":3,"cost":3},{"index":10,"task":"t5","resource":"r2","start":10,"cost":2},{"index":11,"task":"t5","resource":"r2","start":11,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]},{"i":4,"j":6,"reasons":["group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":15},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4006131492191405,2.9222107235190653],"expected_energy":20.365305834943445,"initial_expected_energy":32.654566175359925,"history":[32.654566175359925,32.69765158710188,21.187081481007404,48.699110906167164,27.299063965392524,22.893525775597833,21.919686603467703,21.280489723279317,20.552674827256208,21.143264424319113,20.55396167764072,20.570202682321106,20.56347267943581,20.565681409081243,20.557204233210534,20.542018796692105,20.53115329715439,20.51173304546691,20.51090602367983,20.472106664922762,20.48138806132345,20.492897696865487,20.47877762306856,20.467284925894283,20.47923055953848,20.458877717766555,20.45284997440219,20.462905973289086,20.446156430581144,20.441087503297187,20.45004889674194,20.436801208244834,20.43355058004242,20.42651826968369,20.41483405878906,20.43819139726993,20.446164807147795,20.41205681498444,20.40634687313225,20.396377199382915,20.39938352023932,20.402447512229248,20.401505903989868,20.399420015310497,20.39554582489825,20.39375977407692,20.392554644551524,20.38995204284669,20.387631642575062,20.385991755044152,20.380869977672603,20.382210570402904,20.379973089631733,20.383244479823947,20.37876023102834,20.377700519120317,20.37573813174759,20.3725734298711,20.372393839543207,20.365305834943445,33.08500690919863,35.880556673449114,32.65441025261802,32.784690259068014,32.516397560580046,32.31972756135656,28.444952763688686,32.55803022714515,30.563457898063497,36.14915663696234,27.970447106951635,26.173228967960554,27.958543837095604,25.610594446585772,25.512008978954892,24.87463784860284,24.06184396385847,23.107806827643184,21.692708110422615,31.75013894778499,30.706282571597015,23.102554640697427,21.58715681022865,22.482841918533552,21.619289091503877,21.617530988067767,21.646686901993817,21.51035010551756,21.49495130317421,21.59002970341638,21.47931454603986,21.450197665124886,21.394573495270937,21.29063997913631,21.1038409564562,20.888403025252348,21.326000834160297,21.57579687733772,20.840266121509075,20.75793672339954,20.76790795163148,20.800817591149144,20.762605963583944,20.741805624152292,20.72625747704769,20.704572760666696,20.673926835571045,20.63603721400199,20.58967454449701,20.56377188299222,20.58370948348145,20.7515807127736,20.562765700904034,20.607129413160084,20.52938904841909,20.499911606897108,20.528766094099282,20.490294138400294,20.487072746597423,20.47617542665723],"feasible_probability":0.999313513006177,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":1.0,"counts":{"010101100110":17,"010101101001":9,"010101101010":10,"010110010110":24,"010110011001":16,"010110011010":11,"010110100110":21,"010110101001":12,"010110101010":14,"011001100110":20,"011001101001":14,"011001101010":13,"011010010110":16,"011010011001":16,"011010011010":13,"011010100110":10,"011010101001":19,"011010101010":13,"100101100110":10,"100101101001":15,"100101101010":8,"100110010110":13,"100110011001":14,"100110011010":12,"100110100110":12,"100110101001":11,"100110101010":15,"101001100110":16,"101001101001":16,"101001101010":14,"101010010110":23,"101010011001":11,"101010011010":10,"101010100110":18,"101010101001":16,"101010101010":10},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.23271166199992876},"metrics":{"exact_objective":15,"optimal_count":1,"combinations":64,"optimal_probability":0.03558613845642055,"feasible_probability":0.9993135130061771,"uniform_optimal_probability":0.015625,"uniform_feasible_probability":0.5625,"shots_for_95_percent":83,"hit_curve":[{"shots":8,"quantum":0.25164519585868345,"uniform":0.11837356497016671},{"shots":16,"quantum":0.43996508711861176,"uniform":0.22273482905658715},{"shots":32,"quantum":0.6863608963539358,"uniform":0.3958588540383072},{"shots":64,"quantum":0.9016305126640934,"uniform":0.6350134757560926},{"shots":128,"quantum":0.9903234439612709,"uniform":0.8667848371203516},{"shots":512,"quantum":0.9999999912323488,"uniform":0.9996850695596114}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":13,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":15,"preference_cost":11,"change_cost":4,"changed_tasks":3,"max_start_shift":8,"choices":[2,0,1,0,1,0],"schedule":[{"task":"t0","resource":"r0","start":5,"end":6},{"task":"t1","resource":"r1","start":6,"end":7},{"task":"t2","resource":"r0","start":10,"end":11},{"task":"t3","resource":"r0","start":2,"end":3},{"task":"t4","resource":"r0","start":3,"end":4},{"task":"t5","resource":"r2","start":10,"end":11}]},"dual_bound":15.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":8,"runtime_seconds":0.001361773000098765},"exact":{"status":"optimal","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":15},"combinations":64,"feasible_count":36,"runtime_seconds":0.0005678860034095123},"greedy":{"status":"feasible","best":{"feasible":true,"objective":20,"raw_cost":20,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,0,0,1,1,0,0,1,0,1,1,0],"qubo_energy":20},"runtime_seconds":2.6816007448360324e-05},"resources":{"full":{"depth":17,"operations":{"RX":30,"I":12,"RZ":26,"CNOT":34,"CRY":6,"X":6},"cnot":34,"cry":6},"auto":{"depth":13,"operations":{"RX":30,"I":12,"RZ":20,"CNOT":22,"CRY":6,"X":6},"cnot":22,"cry":6}},"phase_max_probability_error":4.163336342344337e-17,"samples":[{"shots":8,"quantum_objective":18,"uniform_objective":20},{"shots":16,"quantum_objective":16,"uniform_objective":17},{"shots":32,"quantum_objective":15,"uniform_objective":15},{"shots":64,"quantum_objective":15,"uniform_objective":16},{"shots":128,"quantum_objective":15,"uniform_objective":15},{"shots":512,"quantum_objective":15,"uniform_objective":15}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[4,4,2,2],"max_component_qubits":4,"component_to_original":[[0,1,2,3],[4,5,6,7],[8,9],[10,11]],"components":[{"qubits":4,"penalty":10,"objective_bound":9,"offset":20,"linear":[-6,-6,-9,-5],"quadratic":[[0,1,20],[0,2,10],[2,3,20]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":6,"cost":4},{"index":1,"task":"t0","resource":"r0","start":5,"cost":4},{"index":2,"task":"t1","resource":"r1","start":6,"cost":1},{"index":3,"task":"t1","resource":"r0","start":7,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]}]},{"qubits":4,"penalty":8,"objective_bound":7,"offset":16,"linear":[-5,-4,-7,-5],"quadratic":[[0,1,16],[0,2,8],[2,3,16]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r1","start":2,"cost":3},{"index":1,"task":"t2","resource":"r0","start":10,"cost":4},{"index":2,"task":"t3","resource":"r0","start":2,"cost":1},{"index":3,"task":"t3","resource":"r1","start":5,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["group"]}]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-1,-2],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r1","start":1,"cost":4},{"index":1,"task":"t4","resource":"r0","start":3,"cost":3}],"conflicts":[]},{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-4,-1],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t5","resource":"r2","start":10,"cost":2},{"index":1,"task":"t5","resource":"r2","start":11,"cost":5}],"conflicts":[]}]},"diagnostic_seconds":0.032644483013427816}
+{"input":{"file":"evaluation-n6-d0.json","split":"evaluation","tasks":6,"density_parameter":0,"data_seed":20260982,"sha256":"689c6c10d93b32575b84b1a0b9b4ea32c3ac8e9cd35507dcf47df31a996cec46"},"model":{"qubits":12,"penalty":26,"objective_bound":25,"offset":156,"linear":[-22,-22,-25,-21,-23,-22,-25,-23,-22,-23,-24,-21],"quadratic":[[0,1,52],[0,2,26],[2,3,52],[4,5,52],[4,6,26],[6,7,52],[8,9,52],[10,11,52]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":6,"cost":4},{"index":1,"task":"t0","resource":"r0","start":5,"cost":4},{"index":2,"task":"t1","resource":"r1","start":6,"cost":1},{"index":3,"task":"t1","resource":"r0","start":7,"cost":5},{"index":4,"task":"t2","resource":"r1","start":2,"cost":3},{"index":5,"task":"t2","resource":"r0","start":10,"cost":4},{"index":6,"task":"t3","resource":"r0","start":2,"cost":1},{"index":7,"task":"t3","resource":"r1","start":5,"cost":3},{"index":8,"task":"t4","resource":"r1","start":1,"cost":4},{"index":9,"task":"t4","resource":"r0","start":3,"cost":3},{"index":10,"task":"t5","resource":"r2","start":10,"cost":2},{"index":11,"task":"t5","resource":"r2","start":11,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]},{"i":4,"j":6,"reasons":["group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":15},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.4434795560308094,0.733241722609775],"expected_energy":31.99104793453851,"initial_expected_energy":34.48076285689047,"history":[34.48076285689047,34.52626433760423,38.06369715125498,42.81388505534068,35.236312994776306,42.25505510592433,34.435428240427896,32.67942417855732,32.00479001244217,32.00275261364017,32.57692807505016,32.05317253711521,32.00767649369678,32.051659624802426,31.993525111147594,31.994487354309857,31.994194954238022,31.994102153778574,31.99279655505726,31.9926822932349,31.992568048066715,31.992676667293054,31.99254920715046,31.99262565546099,31.992509171498437,31.992481773849505,31.992553738649782,31.9924565895122,31.992444016571888,31.99256897089014,31.992411123292054,31.992396262737504,31.99237988787727,31.992368255794595,31.992322703973695,31.992334976170365,31.992313259527407,31.992334497890454,31.992307957923863,31.99230010576144,31.99229103588737,31.99227736605076,31.992291283753946,31.992263727124932,31.99224723081066,31.992224974248373,31.992328416537717,31.99220007077325,31.99218858875512,31.992168290571446,31.992130147524055,31.992055536330657,31.991904607824544,31.991607491748212,31.991441633961156,31.999248225928856,31.997034360629726,31.991454883580698,31.99104793453851,31.992293776494158,49.16829911759977,43.60591321536265,32.51802402927553,46.99304910323244,33.91787474902411,34.37889923885009,33.2483274729829,32.51067268263936,33.92688912526077,32.05709572933246,32.62012346130696,32.05964315670104,32.05726615958693,32.0723475419563,32.05621163149577,32.056162599389936,32.063423161179294,32.05898668124783,32.058560346985814,32.05591397609713,32.05630742069048,32.055929252564354,32.055930336385515,32.05592177887698,32.055939545903605,32.05590659035367,32.05590555364026,32.055914803802075,32.05590118122124,32.05589270821815,32.05587640206894,32.055844549033566,32.0557821305324,32.05565338111144,32.05549773563664,32.05797954593724,32.05722020426527,32.055477924773214,32.05538156312173,32.05571581131663,32.05543321254309,32.05539739450584,32.0553710190038,32.05535530539821,32.05534970467529,32.05534148561972,32.05533680847918,32.055327889269996,32.05531268705003,32.05527989383221,32.0552141361613,32.055090580703634,32.05612202040878,32.05631830579697,32.05524672783504,32.05518531746188,32.0550797934752,32.0550759681362,32.055067994610695,32.055053367024925],"feasible_probability":0.5742715555635824,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.560546875,"counts":{"010101010101":8,"010101010110":9,"010101011001":8,"010101011010":10,"010101100101":6,"010101100110":10,"010101101001":7,"010101101010":3,"010110010101":5,"010110010110":7,"010110011001":11,"010110011010":7,"010110100101":6,"010110100110":5,"010110101001":5,"010110101010":1,"011001010101":3,"011001010110":10,"011001011001":7,"011001011010":7,"011001100101":3,"011001100110":15,"011001101001":17,"011001101010":6,"011010010101":6,"011010010110":6,"011010011001":17,"011010011010":9,"011010100101":5,"011010100110":4,"011010101001":5,"011010101010":3,"100101010101":12,"100101010110":12,"100101011001":10,"100101011010":3,"100101100101":10,"100101100110":15,"100101101001":13,"100101101010":6,"100110010101":11,"100110010110":9,"100110011001":14,"100110011010":7,"100110100101":7,"100110100110":10,"100110101001":6,"100110101010":3,"101001010101":5,"101001010110":10,"101001011001":10,"101001011010":10,"101001100101":17,"101001100110":6,"101001101001":9,"101001101010":8,"101010010101":10,"101010010110":12,"101010011001":8,"101010011010":7,"101010100101":5,"101010100110":7,"101010101001":8,"101010101010":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.25660091199097224},"metrics":{"exact_objective":15,"optimal_count":1,"combinations":64,"optimal_probability":0.018933455133375812,"feasible_probability":0.5742715555635826,"uniform_optimal_probability":0.015625,"uniform_feasible_probability":0.5625,"shots_for_95_percent":157,"hit_curve":[{"shots":8,"quantum":0.141801542748561,"uniform":0.11837356497016671},{"shots":16,"quantum":0.26349540797125,"uniform":0.22273482905658715},{"shots":32,"quantum":0.45756098592056454,"uniform":0.3958588540383072},{"shots":64,"quantum":0.70575991600453,"uniform":0.6350134757560926},{"shots":128,"quantum":0.9134227729703388,"uniform":0.8667848371203516},{"shots":512,"quantum":0.9999438157371805,"uniform":0.9996850695596114}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":13,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":15,"preference_cost":11,"change_cost":4,"changed_tasks":3,"max_start_shift":8,"choices":[2,0,1,0,1,0],"schedule":[{"task":"t0","resource":"r0","start":5,"end":6},{"task":"t1","resource":"r1","start":6,"end":7},{"task":"t2","resource":"r0","start":10,"end":11},{"task":"t3","resource":"r0","start":2,"end":3},{"task":"t4","resource":"r0","start":3,"end":4},{"task":"t5","resource":"r2","start":10,"end":11}]},"dual_bound":15.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":8,"runtime_seconds":0.001361773000098765},"exact":{"status":"optimal","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":15},"combinations":64,"feasible_count":36,"runtime_seconds":0.0005678860034095123},"greedy":{"status":"feasible","best":{"feasible":true,"objective":20,"raw_cost":20,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,0,0,1,1,0,0,1,0,1,1,0],"qubo_energy":20},"runtime_seconds":2.6816007448360324e-05},"resources":{"full":{"depth":17,"operations":{"RX":30,"I":12,"RZ":26,"CNOT":34,"CRY":6,"X":6},"cnot":34,"cry":6},"auto":{"depth":13,"operations":{"RX":30,"I":12,"RZ":20,"CNOT":22,"CRY":6,"X":6},"cnot":22,"cry":6}},"phase_max_probability_error":3.469446951953614e-17,"samples":[{"shots":8,"quantum_objective":19,"uniform_objective":16},{"shots":16,"quantum_objective":15,"uniform_objective":16},{"shots":32,"quantum_objective":16,"uniform_objective":15},{"shots":64,"quantum_objective":15,"uniform_objective":15},{"shots":128,"quantum_objective":15,"uniform_objective":15},{"shots":512,"quantum_objective":15,"uniform_objective":15}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[4,4,2,2],"max_component_qubits":4,"component_to_original":[[0,1,2,3],[4,5,6,7],[8,9],[10,11]],"components":[{"qubits":4,"penalty":10,"objective_bound":9,"offset":20,"linear":[-6,-6,-9,-5],"quadratic":[[0,1,20],[0,2,10],[2,3,20]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":6,"cost":4},{"index":1,"task":"t0","resource":"r0","start":5,"cost":4},{"index":2,"task":"t1","resource":"r1","start":6,"cost":1},{"index":3,"task":"t1","resource":"r0","start":7,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]}]},{"qubits":4,"penalty":8,"objective_bound":7,"offset":16,"linear":[-5,-4,-7,-5],"quadratic":[[0,1,16],[0,2,8],[2,3,16]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r1","start":2,"cost":3},{"index":1,"task":"t2","resource":"r0","start":10,"cost":4},{"index":2,"task":"t3","resource":"r0","start":2,"cost":1},{"index":3,"task":"t3","resource":"r1","start":5,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["group"]}]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-1,-2],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r1","start":1,"cost":4},{"index":1,"task":"t4","resource":"r0","start":3,"cost":3}],"conflicts":[]},{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-4,-1],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t5","resource":"r2","start":10,"cost":2},{"index":1,"task":"t5","resource":"r2","start":11,"cost":5}],"conflicts":[]}]},"diagnostic_seconds":0.03439315401192289}
+{"input":{"file":"evaluation-n6-d0.json","split":"evaluation","tasks":6,"density_parameter":0,"data_seed":20260982,"sha256":"689c6c10d93b32575b84b1a0b9b4ea32c3ac8e9cd35507dcf47df31a996cec46"},"model":{"qubits":12,"penalty":26,"objective_bound":25,"offset":156,"linear":[-22,-22,-25,-21,-23,-22,-25,-23,-22,-23,-24,-21],"quadratic":[[0,1,52],[0,2,26],[2,3,52],[4,5,52],[4,6,26],[6,7,52],[8,9,52],[10,11,52]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":6,"cost":4},{"index":1,"task":"t0","resource":"r0","start":5,"cost":4},{"index":2,"task":"t1","resource":"r1","start":6,"cost":1},{"index":3,"task":"t1","resource":"r0","start":7,"cost":5},{"index":4,"task":"t2","resource":"r1","start":2,"cost":3},{"index":5,"task":"t2","resource":"r0","start":10,"cost":4},{"index":6,"task":"t3","resource":"r0","start":2,"cost":1},{"index":7,"task":"t3","resource":"r1","start":5,"cost":3},{"index":8,"task":"t4","resource":"r1","start":1,"cost":4},{"index":9,"task":"t4","resource":"r0","start":3,"cost":3},{"index":10,"task":"t5","resource":"r2","start":10,"cost":2},{"index":11,"task":"t5","resource":"r2","start":11,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]},{"i":4,"j":6,"reasons":["group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":15},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.491655214240561,2.927711023799421],"expected_energy":20.37059892512808,"initial_expected_energy":45.98261718828819,"history":[45.98261718828819,41.53972221440036,33.098866493145835,45.36329626929799,32.10904528834271,34.020964041003694,32.11435988828974,33.09396993383251,32.19218640040552,32.462042309245845,32.061713488930685,32.01748266450217,32.03735172734022,32.016751573267044,32.02313919023399,32.01927921656949,32.01827490529638,32.0163899612581,32.01651059325682,32.016410608015356,32.01641427884724,32.01639309652799,32.01641497898204,32.01638299403413,32.0163805078267,32.016390559760524,32.01637356144742,32.01636709058215,32.016355101272566,32.01633270414231,32.01628575270742,32.016193663919346,32.016007391263955,32.01562975384109,32.015865617396166,32.01996609483582,32.016556615857674,32.01593594480903,32.01560401345875,32.0156447940392,32.01561064270096,32.01558594224285,32.01559347664151,32.01557498443766,32.015570550313015,32.01558457365891,32.01556400078044,32.015557739834584,32.01554565814622,32.0155224040284,32.01547547904546,32.01538260770526,32.01535813240211,32.01545577466425,32.01604275757642,32.015209307760095,32.01517717154725,32.015158775160515,32.01530463169519,32.01511899377127,30.067130032744657,34.854452216403985,41.419117605111126,32.08599604855486,21.08409783319575,32.20363132944604,22.75190452292916,23.057434983005678,21.656081234344292,21.374792516558397,21.02783745435955,22.220821036400352,20.954151827491962,22.24801065086975,20.824373911272588,20.77339098856506,21.134593539844683,20.665601184199488,20.639497217228865,20.60881895189482,20.60990435621222,20.597126223248374,20.596379357438156,20.616323976383498,20.58148292704552,20.560774493976613,20.538757429762697,20.502137752881662,20.88904838438201,20.549773443232173,20.496423783164346,20.549970907061585,20.483921418829247,20.479721560097396,20.470011260821742,20.46205310217396,20.446448464180772,20.4178550535891,20.43675416974074,20.514430184518265,20.423821913690414,20.422695808937934,20.425671879422456,20.415481942866418,20.417641594158585,20.414808324162596,20.41322565288443,20.41082463795162,20.406678232641568,20.400506496105134,20.390356869092656,20.375462665846836,20.387878104187774,20.412854109100902,20.378328506929844,20.37484191340933,20.373361001538782,20.37240160758616,20.373812229698874,20.37059892512808],"feasible_probability":0.9986413803859654,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"010101100110":24,"010101101001":12,"010101101010":16,"010110010110":14,"010110011001":12,"010110011010":13,"010110100110":18,"010110101001":13,"010110101010":8,"011001100110":20,"011001101001":22,"011001101010":15,"011010010110":14,"011010011001":18,"011010011010":8,"011010100110":19,"011010101001":13,"011010101010":30,"100101100110":13,"100101101001":11,"100101101010":11,"100110010110":14,"100110011001":13,"100110011010":14,"100110100110":17,"100110101001":9,"100110101010":12,"101001100110":10,"101001101001":12,"101001101010":15,"101010010110":13,"101010011001":5,"101010011010":14,"101010100110":17,"101010101001":10,"101010101010":13},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.25715542199031916},"metrics":{"exact_objective":15,"optimal_count":1,"combinations":64,"optimal_probability":0.03583971562805053,"feasible_probability":0.9986413803859654,"uniform_optimal_probability":0.015625,"uniform_feasible_probability":0.5625,"shots_for_95_percent":83,"hit_curve":[{"shots":8,"quantum":0.25321789122115795,"uniform":0.11837356497016671},{"shots":16,"quantum":0.4423164820078257,"uniform":0.22273482905658715},{"shots":32,"quantum":0.6889890937598722,"uniform":0.3958588540383072},{"shots":64,"quantum":0.9032722161996944,"uniform":0.6350134757560926},{"shots":128,"quantum":0.9906437358410813,"uniform":0.8667848371203516},{"shots":512,"quantum":0.9999999923368046,"uniform":0.9996850695596114}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":13,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":15,"preference_cost":11,"change_cost":4,"changed_tasks":3,"max_start_shift":8,"choices":[2,0,1,0,1,0],"schedule":[{"task":"t0","resource":"r0","start":5,"end":6},{"task":"t1","resource":"r1","start":6,"end":7},{"task":"t2","resource":"r0","start":10,"end":11},{"task":"t3","resource":"r0","start":2,"end":3},{"task":"t4","resource":"r0","start":3,"end":4},{"task":"t5","resource":"r2","start":10,"end":11}]},"dual_bound":15.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":8,"runtime_seconds":0.001361773000098765},"exact":{"status":"optimal","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":15},"combinations":64,"feasible_count":36,"runtime_seconds":0.0005678860034095123},"greedy":{"status":"feasible","best":{"feasible":true,"objective":20,"raw_cost":20,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,0,0,1,1,0,0,1,0,1,1,0],"qubo_energy":20},"runtime_seconds":2.6816007448360324e-05},"resources":{"full":{"depth":17,"operations":{"RX":30,"I":12,"RZ":26,"CNOT":34,"CRY":6,"X":6},"cnot":34,"cry":6},"auto":{"depth":13,"operations":{"RX":30,"I":12,"RZ":20,"CNOT":22,"CRY":6,"X":6},"cnot":22,"cry":6}},"phase_max_probability_error":3.469446951953614e-17,"samples":[{"shots":8,"quantum_objective":17,"uniform_objective":15},{"shots":16,"quantum_objective":15,"uniform_objective":16},{"shots":32,"quantum_objective":15,"uniform_objective":16},{"shots":64,"quantum_objective":15,"uniform_objective":15},{"shots":128,"quantum_objective":15,"uniform_objective":15},{"shots":512,"quantum_objective":15,"uniform_objective":15}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[4,4,2,2],"max_component_qubits":4,"component_to_original":[[0,1,2,3],[4,5,6,7],[8,9],[10,11]],"components":[{"qubits":4,"penalty":10,"objective_bound":9,"offset":20,"linear":[-6,-6,-9,-5],"quadratic":[[0,1,20],[0,2,10],[2,3,20]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":6,"cost":4},{"index":1,"task":"t0","resource":"r0","start":5,"cost":4},{"index":2,"task":"t1","resource":"r1","start":6,"cost":1},{"index":3,"task":"t1","resource":"r0","start":7,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]}]},{"qubits":4,"penalty":8,"objective_bound":7,"offset":16,"linear":[-5,-4,-7,-5],"quadratic":[[0,1,16],[0,2,8],[2,3,16]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r1","start":2,"cost":3},{"index":1,"task":"t2","resource":"r0","start":10,"cost":4},{"index":2,"task":"t3","resource":"r0","start":2,"cost":1},{"index":3,"task":"t3","resource":"r1","start":5,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["group"]}]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-1,-2],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r1","start":1,"cost":4},{"index":1,"task":"t4","resource":"r0","start":3,"cost":3}],"conflicts":[]},{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-4,-1],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t5","resource":"r2","start":10,"cost":2},{"index":1,"task":"t5","resource":"r2","start":11,"cost":5}],"conflicts":[]}]},"diagnostic_seconds":0.033012033003615215}
+{"input":{"file":"evaluation-n6-d0.json","split":"evaluation","tasks":6,"density_parameter":0,"data_seed":20260982,"sha256":"689c6c10d93b32575b84b1a0b9b4ea32c3ac8e9cd35507dcf47df31a996cec46"},"model":{"qubits":12,"penalty":26,"objective_bound":25,"offset":156,"linear":[-22,-22,-25,-21,-23,-22,-25,-23,-22,-23,-24,-21],"quadratic":[[0,1,52],[0,2,26],[2,3,52],[4,5,52],[4,6,26],[6,7,52],[8,9,52],[10,11,52]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":6,"cost":4},{"index":1,"task":"t0","resource":"r0","start":5,"cost":4},{"index":2,"task":"t1","resource":"r1","start":6,"cost":1},{"index":3,"task":"t1","resource":"r0","start":7,"cost":5},{"index":4,"task":"t2","resource":"r1","start":2,"cost":3},{"index":5,"task":"t2","resource":"r0","start":10,"cost":4},{"index":6,"task":"t3","resource":"r0","start":2,"cost":1},{"index":7,"task":"t3","resource":"r1","start":5,"cost":3},{"index":8,"task":"t4","resource":"r1","start":1,"cost":4},{"index":9,"task":"t4","resource":"r0","start":3,"cost":3},{"index":10,"task":"t5","resource":"r2","start":10,"cost":2},{"index":11,"task":"t5","resource":"r2","start":11,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]},{"i":4,"j":6,"reasons":["group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":15},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.439769889710873,1.3534660180132672],"expected_energy":20.353839779844584,"initial_expected_energy":35.2215921472485,"history":[35.2215921472485,36.74731614480073,23.15667306506842,48.952013774989446,20.866810046154775,20.48180182762302,21.50815099358515,20.781934078914155,20.366983870501237,21.00586314262771,20.86758291061276,20.563549252049732,20.359064032597068,20.382383631081943,20.362995098486017,20.358734956949085,20.356558829405305,20.355358621005546,20.360688229772276,20.35825037526496,20.35829589456617,20.35509273897078,20.354765451620704,20.354846393187678,20.354875001628784,20.35478930926766,20.354686868971427,20.35461249100405,20.354538082923206,20.354418990995544,20.354461767025185,20.354566009187103,20.354428029081767,20.354355964410786,20.35434894059445,20.354270399780546,20.354265099452537,20.354192124994725,20.35421745346921,20.354220041684062,20.354182981229165,20.354226214450108,20.354178051266302,20.354163681644927,20.354152187022905,20.354165122237568,20.35414184242689,20.354137657937393,20.354154568376167,20.354129554764462,20.354115610366037,20.354092595072245,20.354048349854935,20.35396095478484,20.353878590045483,20.35465917298993,20.354447211930115,20.353871245841933,20.353839779844584,20.353947615878894,47.64410743408014,50.04917278790621,34.072089764578436,20.567151658486722,32.460063488842756,24.7844608444013,33.840243593706695,37.428054867264706,20.561525297409382,22.629517190971832,21.106838290969435,20.49822788351853,21.658519396217965,20.358216174236567,20.41485230567946,20.369241454291537,20.365540578523433,20.356966514122917,20.358736221212823,20.362708022027412,20.356717211839378,20.3585116133594,20.35657925944936,20.356040881521405,20.355346109688703,20.35512626633861,20.35539786689007,20.35505160977474,20.355127797836087,20.35497894622544,20.354912712618287,20.355024391713805,20.35485465874455,20.35479076718343,20.354795531251373,20.35473735006844,20.354793174233038,20.354785627478858,20.354707097014494,20.354859663483044,20.354660634804382,20.354620212739636,20.354546518090267,20.354423134585875,20.354459065683926,20.354657613514934,20.35440258474269,20.354368292559286,20.354302115549995,20.35418796212118,20.354059507807982,20.35438748528255,20.354542350301934,20.354034308703003,20.353993176135262,20.354010695044533,20.354023065778218,20.353993756258,20.3539829104332,20.353975107598103],"feasible_probability":0.9996287284761801,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"010101100110":15,"010101101001":12,"010101101010":15,"010110010110":15,"010110011001":18,"010110011010":13,"010110100110":16,"010110101001":19,"010110101010":9,"011001100110":17,"011001101001":9,"011001101010":12,"011010010110":15,"011010011001":15,"011010011010":15,"011010100110":15,"011010101001":12,"011010101010":16,"100101100110":9,"100101101001":17,"100101101010":13,"100110010110":13,"100110011001":13,"100110011010":13,"100110100110":23,"100110101001":12,"100110101010":9,"101001100110":16,"101001101001":13,"101001101010":10,"101010010110":11,"101010011001":21,"101010011010":13,"101010100110":20,"101010101001":14,"101010101010":14},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.2564655799942557},"metrics":{"exact_objective":15,"optimal_count":1,"combinations":64,"optimal_probability":0.035697968952831886,"feasible_probability":0.9996287284761802,"uniform_optimal_probability":0.015625,"uniform_feasible_probability":0.5625,"shots_for_95_percent":83,"hit_curve":[{"shots":8,"quantum":0.25233912974221095,"uniform":0.11837356497016671},{"shots":16,"quantum":0.44100322308536555,"uniform":0.22273482905658715},{"shots":32,"quantum":0.6875226033990505,"uniform":0.3958588540383072},{"shots":64,"quantum":0.9023578766134929,"uniform":0.6350134757560926},{"shots":128,"quantum":0.9904660157405741,"uniform":0.8667848371203516},{"shots":512,"quantum":0.9999999917377616,"uniform":0.9996850695596114}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":13,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":15,"preference_cost":11,"change_cost":4,"changed_tasks":3,"max_start_shift":8,"choices":[2,0,1,0,1,0],"schedule":[{"task":"t0","resource":"r0","start":5,"end":6},{"task":"t1","resource":"r1","start":6,"end":7},{"task":"t2","resource":"r0","start":10,"end":11},{"task":"t3","resource":"r0","start":2,"end":3},{"task":"t4","resource":"r0","start":3,"end":4},{"task":"t5","resource":"r2","start":10,"end":11}]},"dual_bound":15.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":8,"runtime_seconds":0.001361773000098765},"exact":{"status":"optimal","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":15},"combinations":64,"feasible_count":36,"runtime_seconds":0.0005678860034095123},"greedy":{"status":"feasible","best":{"feasible":true,"objective":20,"raw_cost":20,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,0,0,1,1,0,0,1,0,1,1,0],"qubo_energy":20},"runtime_seconds":2.6816007448360324e-05},"resources":{"full":{"depth":17,"operations":{"RX":30,"I":12,"RZ":26,"CNOT":34,"CRY":6,"X":6},"cnot":34,"cry":6},"auto":{"depth":13,"operations":{"RX":30,"I":12,"RZ":20,"CNOT":22,"CRY":6,"X":6},"cnot":22,"cry":6}},"phase_max_probability_error":5.551115123125783e-17,"samples":[{"shots":8,"quantum_objective":18,"uniform_objective":18},{"shots":16,"quantum_objective":16,"uniform_objective":15},{"shots":32,"quantum_objective":16,"uniform_objective":16},{"shots":64,"quantum_objective":16,"uniform_objective":15},{"shots":128,"quantum_objective":15,"uniform_objective":16},{"shots":512,"quantum_objective":15,"uniform_objective":15}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[4,4,2,2],"max_component_qubits":4,"component_to_original":[[0,1,2,3],[4,5,6,7],[8,9],[10,11]],"components":[{"qubits":4,"penalty":10,"objective_bound":9,"offset":20,"linear":[-6,-6,-9,-5],"quadratic":[[0,1,20],[0,2,10],[2,3,20]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":6,"cost":4},{"index":1,"task":"t0","resource":"r0","start":5,"cost":4},{"index":2,"task":"t1","resource":"r1","start":6,"cost":1},{"index":3,"task":"t1","resource":"r0","start":7,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]}]},{"qubits":4,"penalty":8,"objective_bound":7,"offset":16,"linear":[-5,-4,-7,-5],"quadratic":[[0,1,16],[0,2,8],[2,3,16]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r1","start":2,"cost":3},{"index":1,"task":"t2","resource":"r0","start":10,"cost":4},{"index":2,"task":"t3","resource":"r0","start":2,"cost":1},{"index":3,"task":"t3","resource":"r1","start":5,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["group"]}]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-1,-2],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r1","start":1,"cost":4},{"index":1,"task":"t4","resource":"r0","start":3,"cost":3}],"conflicts":[]},{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-4,-1],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t5","resource":"r2","start":10,"cost":2},{"index":1,"task":"t5","resource":"r2","start":11,"cost":5}],"conflicts":[]}]},"diagnostic_seconds":0.03280020199599676}
+{"input":{"file":"evaluation-n6-d0.json","split":"evaluation","tasks":6,"density_parameter":0,"data_seed":20260982,"sha256":"689c6c10d93b32575b84b1a0b9b4ea32c3ac8e9cd35507dcf47df31a996cec46"},"model":{"qubits":12,"penalty":26,"objective_bound":25,"offset":156,"linear":[-22,-22,-25,-21,-23,-22,-25,-23,-22,-23,-24,-21],"quadratic":[[0,1,52],[0,2,26],[2,3,52],[4,5,52],[4,6,26],[6,7,52],[8,9,52],[10,11,52]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":6,"cost":4},{"index":1,"task":"t0","resource":"r0","start":5,"cost":4},{"index":2,"task":"t1","resource":"r1","start":6,"cost":1},{"index":3,"task":"t1","resource":"r0","start":7,"cost":5},{"index":4,"task":"t2","resource":"r1","start":2,"cost":3},{"index":5,"task":"t2","resource":"r0","start":10,"cost":4},{"index":6,"task":"t3","resource":"r0","start":2,"cost":1},{"index":7,"task":"t3","resource":"r1","start":5,"cost":3},{"index":8,"task":"t4","resource":"r1","start":1,"cost":4},{"index":9,"task":"t4","resource":"r0","start":3,"cost":3},{"index":10,"task":"t5","resource":"r2","start":10,"cost":2},{"index":11,"task":"t5","resource":"r2","start":11,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]},{"i":4,"j":6,"reasons":["group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":15},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.435619412229655,1.352959242988961],"expected_energy":20.3540929624231,"initial_expected_energy":23.854660173200124,"history":[23.854660173200124,21.444473129756446,48.683425249096665,34.32593516710132,40.75217657304201,21.40602552647941,21.427957888581265,22.2651426440276,20.466231517792068,20.775841328517757,20.547392484855344,20.51608470104488,20.416927371618392,20.42955015425979,20.419942043098388,20.41670512326997,20.408605687679838,20.400088360843814,20.388194764541424,20.38490364433833,20.40287322094059,20.448396975208915,20.37254477369435,20.371672446522325,20.367677363062718,20.361838150151264,20.360980877657575,20.361787615813586,20.362312735973223,20.36073745340218,20.373566044908884,20.35669242465131,20.36608545266217,20.357028435427154,20.356394249665808,20.35616237508936,20.355874633757182,20.355482584149254,20.35786712875341,20.355248397013067,20.355367729161806,20.355325292186038,20.355186383049233,20.355295277462602,20.355090268148317,20.35500833980033,20.354843874891955,20.354544376390038,20.355331509555803,20.355280219952913,20.35485179243105,20.35452172825115,20.35444922055344,20.354318288420146,20.354121699123098,20.354778452597266,20.354885129668972,20.354477426887428,20.3540929624231,20.354109717430532,33.10853747234542,33.122075419956055,32.352741783987184,48.179184690623636,37.86962928472683,35.228920386693694,28.415013549099623,31.612088953228064,28.168891035519945,28.629695634451206,28.20432242137941,28.358493141844917,28.2282336395156,28.044727492902954,27.812850024212025,27.342528282328004,26.422157395116024,28.455977656600844,27.75803712612462,27.056499811369587,26.28637271044436,26.290233922105447,26.18629268849947,26.09285602031828,25.936345773787338,25.97097167113118,25.70811922047676,25.58125876699514,25.969559939646487,25.44410083853864,25.327899781933475,25.109160960907545,24.68702167117509,24.9695306658433,24.79899775555835,24.666744649730585,24.911085435268177,24.65632926708913,24.575895344480447,24.445684050300112,24.245765608538196,24.22584638403056,24.123951765045934,23.938071321524795,23.616920753450195,22.98836368835246,22.083535902375672,30.93558696457358,31.370590731079695,22.585351477212043,22.041999961448564,23.168182328049465,21.893057771460825,21.746589646535753,21.6822500314193,21.922549893884693,21.616066533461076,21.566654896667337,21.46332236042961,21.2979295302886],"feasible_probability":0.9996669334851729,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":1.0,"counts":{"010101100110":18,"010101101001":24,"010101101010":19,"010110010110":15,"010110011001":11,"010110011010":18,"010110100110":15,"010110101001":7,"010110101010":14,"011001100110":15,"011001101001":18,"011001101010":18,"011010010110":17,"011010011001":12,"011010011010":22,"011010100110":11,"011010101001":16,"011010101010":13,"100101100110":18,"100101101001":11,"100101101010":8,"100110010110":5,"100110011001":11,"100110011010":9,"100110100110":23,"100110101001":12,"100110101010":7,"101001100110":17,"101001101001":11,"101001101010":14,"101010010110":11,"101010011001":15,"101010011010":10,"101010100110":19,"101010101001":16,"101010101010":12},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.24818098101241048},"metrics":{"exact_objective":15,"optimal_count":1,"combinations":64,"optimal_probability":0.03566625608118624,"feasible_probability":0.9996669334851729,"uniform_optimal_probability":0.015625,"uniform_feasible_probability":0.5625,"shots_for_95_percent":83,"hit_curve":[{"shots":8,"quantum":0.25214240131646853,"uniform":0.11837356497016671},{"shots":16,"quantum":0.440709012091302,"uniform":0.22273482905658715},{"shots":32,"quantum":0.6871935908441127,"uniform":0.3958588540383072},{"shots":64,"quantum":0.9021521503909996,"uniform":0.6350134757560926},{"shots":128,"quantum":0.9904257983268945,"uniform":0.8667848371203516},{"shots":512,"quantum":0.9999999915974659,"uniform":0.9996850695596114}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":13,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":15,"preference_cost":11,"change_cost":4,"changed_tasks":3,"max_start_shift":8,"choices":[2,0,1,0,1,0],"schedule":[{"task":"t0","resource":"r0","start":5,"end":6},{"task":"t1","resource":"r1","start":6,"end":7},{"task":"t2","resource":"r0","start":10,"end":11},{"task":"t3","resource":"r0","start":2,"end":3},{"task":"t4","resource":"r0","start":3,"end":4},{"task":"t5","resource":"r2","start":10,"end":11}]},"dual_bound":15.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":8,"runtime_seconds":0.001361773000098765},"exact":{"status":"optimal","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":6,"task":"t3","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":2,"task":"t1","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":15},"combinations":64,"feasible_count":36,"runtime_seconds":0.0005678860034095123},"greedy":{"status":"feasible","best":{"feasible":true,"objective":20,"raw_cost":20,"violation_count":0,"violations":[],"schedule":[{"variable":4,"task":"t2","group":"g1","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,0,0,1,1,0,0,1,0,1,1,0],"qubo_energy":20},"runtime_seconds":2.6816007448360324e-05},"resources":{"full":{"depth":17,"operations":{"RX":30,"I":12,"RZ":26,"CNOT":34,"CRY":6,"X":6},"cnot":34,"cry":6},"auto":{"depth":13,"operations":{"RX":30,"I":12,"RZ":20,"CNOT":22,"CRY":6,"X":6},"cnot":22,"cry":6}},"phase_max_probability_error":3.469446951953614e-17,"samples":[{"shots":8,"quantum_objective":15,"uniform_objective":16},{"shots":16,"quantum_objective":16,"uniform_objective":15},{"shots":32,"quantum_objective":15,"uniform_objective":16},{"shots":64,"quantum_objective":15,"uniform_objective":15},{"shots":128,"quantum_objective":15,"uniform_objective":15},{"shots":512,"quantum_objective":15,"uniform_objective":15}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[4,4,2,2],"max_component_qubits":4,"component_to_original":[[0,1,2,3],[4,5,6,7],[8,9],[10,11]],"components":[{"qubits":4,"penalty":10,"objective_bound":9,"offset":20,"linear":[-6,-6,-9,-5],"quadratic":[[0,1,20],[0,2,10],[2,3,20]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":6,"cost":4},{"index":1,"task":"t0","resource":"r0","start":5,"cost":4},{"index":2,"task":"t1","resource":"r1","start":6,"cost":1},{"index":3,"task":"t1","resource":"r0","start":7,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group"]}]},{"qubits":4,"penalty":8,"objective_bound":7,"offset":16,"linear":[-5,-4,-7,-5],"quadratic":[[0,1,16],[0,2,8],[2,3,16]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r1","start":2,"cost":3},{"index":1,"task":"t2","resource":"r0","start":10,"cost":4},{"index":2,"task":"t3","resource":"r0","start":2,"cost":1},{"index":3,"task":"t3","resource":"r1","start":5,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["group"]}]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-1,-2],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r1","start":1,"cost":4},{"index":1,"task":"t4","resource":"r0","start":3,"cost":3}],"conflicts":[]},{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-4,-1],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t5","resource":"r2","start":10,"cost":2},{"index":1,"task":"t5","resource":"r2","start":11,"cost":5}],"conflicts":[]}]},"diagnostic_seconds":0.03106349600420799}
+{"input":{"file":"evaluation-n6-d1.json","split":"evaluation","tasks":6,"density_parameter":1,"data_seed":20260983,"sha256":"3670be6577fdf0a72f9099bae3e4264ab4cf1d364f2385a31835d48e0fd2d0b7"},"model":{"qubits":12,"penalty":31,"objective_bound":30,"offset":186,"linear":[-24,-25,-28,-26,-29,-26,-27,-29,-29,-26,-27,-27],"quadratic":[[0,1,62],[0,2,31],[0,4,31],[1,2,31],[1,3,31],[1,11,31],[2,3,62],[2,4,31],[4,5,62],[5,6,31],[6,7,62],[8,9,62],[10,11,62]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":5,"cost":7},{"index":1,"task":"t0","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":3},{"index":3,"task":"t1","resource":"r0","start":6,"cost":5},{"index":4,"task":"t2","resource":"r1","start":5,"cost":2},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":2,"cost":4},{"index":7,"task":"t3","resource":"r0","start":7,"cost":2},{"index":8,"task":"t4","resource":"r0","start":1,"cost":2},{"index":9,"task":"t4","resource":"r0","start":5,"cost":5},{"index":10,"task":"t5","resource":"r0","start":3,"cost":4},{"index":11,"task":"t5","resource":"r1","start":7,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group","precedence"]},{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":11,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":11,"task":"t5","group":"g2","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true}],"bits":[1,0,0,1,0,1,0,1,1,0,0,1],"qubo_energy":25},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.1803986574237673,1.3240757421538882],"expected_energy":50.57191318695072,"initial_expected_energy":76.48386537102272,"history":[76.48386537102272,79.61524322850899,78.49718962966668,79.80201216575041,78.11473180793249,76.41280832466792,75.75576484961623,74.58193135066338,73.1367994241587,70.62323463969511,63.168252987044625,71.27229779351232,91.45265347958872,66.46055531383352,64.89007829391176,63.91045224834345,62.45316852841783,63.351649123881714,61.47818877252452,60.756319464205376,59.70755140801877,58.30291978694051,56.408718274662334,55.64984120251576,58.056921143364555,63.489832843563775,55.39000418766081,53.29321456088475,53.06058115663715,52.33653731973537,51.86935679013676,52.90043195439429,52.16144780015907,52.106754334838186,51.97788755434695,51.74635389581886,51.81843615297812,51.726088133661165,51.68532381801855,51.641883608729316,51.56216597885911,51.58745433252689,51.511031134677644,51.53878795464022,51.534929354476034,51.474769898115404,51.45410159343866,51.59023480099538,51.40526853555052,51.36205953249384,51.28637517506741,51.14889921351197,51.236457911019414,51.21511175578008,51.1719813538717,51.096040182562106,51.10834632192014,51.068638950212275,51.0591260334629,51.10022954152103,87.21780800146438,81.71348356418032,76.86748981417975,78.62293148575701,73.37019310139283,64.44118886318654,95.00824753526517,78.0830703999427,77.68775733070383,66.06065526429549,65.11835161416997,64.78165151854074,63.43843618435148,63.364219752849806,62.22702133346917,61.22232121935676,59.46577197648166,56.14028762714011,51.37240076571468,71.16396584923197,74.45076998241295,53.304634607684136,51.40972148250482,53.7940062070285,51.030668946768664,51.29432290374701,51.11072637300633,51.031748381203805,51.00268009356894,50.9551719481984,50.98791368362805,50.931946077990695,50.8789085353574,50.78295946218708,50.657557541765925,50.971506020353786,50.74857191586,50.666542094933085,50.74913490489392,50.642054027666994,50.64031487039121,50.668508004562796,50.63125634675204,50.62485822669855,50.61621157067547,50.60601521254775,50.591744072073666,50.57737850243558,50.58998941181645,50.62143318984347,50.587207979454114,50.57842264280272,50.577949743774525,50.577180089695126,50.57979124239168,50.57679556818066,50.57611818123799,50.57505800439403,50.57356543707317,50.57191318695072],"feasible_probability":0.33645825495026405,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.328125,"counts":{"010101010101":1,"010101010110":5,"010101011001":15,"010101011010":25,"010101100101":3,"010101100110":1,"010101101001":4,"010101101010":5,"010110010101":4,"010110010110":2,"010110011001":11,"010110011010":29,"010110100101":10,"010110100110":30,"010110101001":56,"010110101010":12,"011001010101":2,"011001010110":1,"011001011001":10,"011001011010":17,"011001100101":2,"011001100110":2,"011001101001":6,"011001101010":2,"011010010101":5,"011010011001":10,"011010011010":16,"011010100101":4,"011010100110":18,"011010101001":37,"011010101010":7,"100101010101":1,"100101010110":2,"100101011001":9,"100101011010":1,"100101100101":1,"100101100110":1,"100101101001":6,"100101101010":1,"100110010101":2,"100110011001":9,"100110011010":4,"100110100101":8,"100110100110":1,"100110101001":49,"100110101010":3,"101001010110":1,"101001011001":7,"101001100110":1,"101001101001":8,"101001101010":2,"101010010101":1,"101010010110":1,"101010011001":7,"101010011010":1,"101010100101":4,"101010100110":2,"101010101001":26,"101010101010":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.25963094701000955},"metrics":{"exact_objective":25,"optimal_count":2,"combinations":64,"optimal_probability":0.18422738386391713,"feasible_probability":0.33645825495026405,"uniform_optimal_probability":0.03125,"uniform_feasible_probability":0.0625,"shots_for_95_percent":15,"hit_curve":[{"shots":8,"quantum":0.8038659561615964,"uniform":0.2243001202577943},{"shots":16,"quantum":0.9615314368475951,"uniform":0.3982896965679276},{"shots":32,"quantum":0.9985201696489895,"uniform":0.6379447107436834},{"shots":64,"quantum":0.9999978101021322,"uniform":0.8689159675215249},{"shots":128,"quantum":0.9999999999952044,"uniform":0.9828169764291821},{"shots":512,"quantum":1.0,"uniform":0.9999999128237179}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":13,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":25,"preference_cost":16,"change_cost":9,"changed_tasks":4,"max_start_shift":5,"choices":[1,1,1,1,0,0],"schedule":[{"task":"t0","resource":"r1","start":5,"end":6},{"task":"t1","resource":"r0","start":6,"end":7},{"task":"t2","resource":"r0","start":2,"end":3},{"task":"t3","resource":"r0","start":7,"end":8},{"task":"t4","resource":"r0","start":1,"end":2},{"task":"t5","resource":"r0","start":3,"end":4}]},"dual_bound":25.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":13,"runtime_seconds":0.0012901910085929558},"exact":{"status":"optimal","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true}],"bits":[1,0,0,1,0,1,0,1,1,0,1,0],"qubo_energy":25},"combinations":64,"feasible_count":4,"runtime_seconds":0.0007505779940402135},"greedy":{"status":"dead_end","best":null,"runtime_seconds":7.805007044225931e-06},"resources":{"full":{"depth":27,"operations":{"RX":30,"I":12,"RZ":31,"CNOT":44,"CRY":6,"X":6},"cnot":44,"cry":6},"auto":{"depth":25,"operations":{"RX":30,"I":12,"RZ":25,"CNOT":32,"CRY":6,"X":6},"cnot":32,"cry":6}},"phase_max_probability_error":5.551115123125783e-17,"samples":[{"shots":8,"quantum_objective":25,"uniform_objective":null},{"shots":16,"quantum_objective":25,"uniform_objective":null},{"shots":32,"quantum_objective":25,"uniform_objective":28},{"shots":64,"quantum_objective":25,"uniform_objective":25},{"shots":128,"quantum_objective":25,"uniform_objective":25},{"shots":512,"quantum_objective":25,"uniform_objective":25}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10,2],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,10,11],[8,9]],"components":[{"qubits":10,"penalty":26,"objective_bound":25,"offset":130,"linear":[-19,-20,-23,-21,-24,-21,-22,-24,-22,-22],"quadratic":[[0,1,52],[0,2,26],[0,4,26],[1,2,26],[1,3,26],[1,9,26],[2,3,52],[2,4,26],[4,5,52],[5,6,26],[6,7,52],[8,9,52]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":5,"cost":7},{"index":1,"task":"t0","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":3},{"index":3,"task":"t1","resource":"r0","start":6,"cost":5},{"index":4,"task":"t2","resource":"r1","start":5,"cost":2},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":2,"cost":4},{"index":7,"task":"t3","resource":"r0","start":7,"cost":2},{"index":8,"task":"t5","resource":"r0","start":3,"cost":4},{"index":9,"task":"t5","resource":"r1","start":7,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group","precedence"]},{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":9,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]}]},{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-4,-1],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r0","start":1,"cost":2},{"index":1,"task":"t4","resource":"r0","start":5,"cost":5}],"conflicts":[]}]},"diagnostic_seconds":0.03266080599860288}
+{"input":{"file":"evaluation-n6-d1.json","split":"evaluation","tasks":6,"density_parameter":1,"data_seed":20260983,"sha256":"3670be6577fdf0a72f9099bae3e4264ab4cf1d364f2385a31835d48e0fd2d0b7"},"model":{"qubits":12,"penalty":31,"objective_bound":30,"offset":186,"linear":[-24,-25,-28,-26,-29,-26,-27,-29,-29,-26,-27,-27],"quadratic":[[0,1,62],[0,2,31],[0,4,31],[1,2,31],[1,3,31],[1,11,31],[2,3,62],[2,4,31],[4,5,62],[5,6,31],[6,7,62],[8,9,62],[10,11,62]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":5,"cost":7},{"index":1,"task":"t0","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":3},{"index":3,"task":"t1","resource":"r0","start":6,"cost":5},{"index":4,"task":"t2","resource":"r1","start":5,"cost":2},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":2,"cost":4},{"index":7,"task":"t3","resource":"r0","start":7,"cost":2},{"index":8,"task":"t4","resource":"r0","start":1,"cost":2},{"index":9,"task":"t4","resource":"r0","start":5,"cost":5},{"index":10,"task":"t5","resource":"r0","start":3,"cost":4},{"index":11,"task":"t5","resource":"r1","start":7,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group","precedence"]},{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":11,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":11,"task":"t5","group":"g2","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true}],"bits":[1,0,0,1,0,1,0,1,1,0,0,1],"qubo_energy":25},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.150092950506115,1.3251028866909946],"expected_energy":50.566030022561215,"initial_expected_energy":83.28303401223718,"history":[83.28303401223718,81.71418107506287,74.16395730310079,78.34536740160218,76.69551398013326,74.86863220138622,72.79191847444051,72.19370935517796,78.04474434505039,69.10304286662921,66.3884061352963,61.97067839981364,56.18649955092327,52.94920265260363,81.93263654306824,75.70162714087665,54.21836088552553,53.13578189630557,54.53555501884712,51.1418616001222,51.55697993578973,51.24420068067923,51.361720592109236,51.121472805424276,51.064531780940364,51.02367355281484,51.02943157404648,51.00660220972833,50.990307986573136,50.959229385331504,50.90186488514058,50.81224213921308,50.95319250504499,51.04094763527988,50.795340108519156,50.75111531348619,50.67742550190259,50.66756856952372,50.60343144396004,50.90616615073947,50.58882325542282,50.58744105325142,50.58747063851085,50.594379139391364,50.57826340961523,50.57532581472317,50.57937178452052,50.574707199742846,50.574243971672054,50.572875582995756,50.571483194411705,50.56935029077855,50.56803893979743,50.56910172096525,50.57400897943151,50.568824247535815,50.56665417175959,50.56632247961961,50.5676734923404,50.566030022561215,73.23066423457706,73.93706967286386,72.533457547429,102.55286209723413,74.94606537840718,78.51974650142597,63.41334140006222,66.28995561184763,63.53912934371313,64.7800135707937,61.52273705675347,60.86040905664021,61.91570903091815,59.90256199887582,59.292941203926304,58.23611629345973,57.42206069353911,55.62625610508014,56.37931160420669,55.3044380983991,57.282163087249224,54.38882738285583,53.65725478636046,53.41549981043987,52.77311074783596,56.57944386970692,51.80860507103644,52.54714742734462,51.662139560818076,53.248604246649265,51.49922278407233,51.34795182215768,51.805784358030536,51.28741581395559,51.21330755312351,51.091057748705715,51.179222044679236,50.995035658453766,51.062008581759244,51.162424647265865,50.9887103828637,50.95012537040127,50.931353286884544,50.95945587050538,50.90529263581635,50.883095235972895,50.83805581280744,50.757999494512106,50.988889149467816,50.85413883076032,50.80664578915829,50.74632071053011,50.74335880102953,50.72370147259671,50.70575720761501,50.674740119113416,50.698546938030276,50.6899749686695,50.676656402521836,50.68451061199953],"feasible_probability":0.3330699253559119,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.306640625,"counts":{"010101010101":1,"010101010110":6,"010101011001":20,"010101011010":24,"010101100101":2,"010101100110":4,"010101101001":6,"010101101010":4,"010110010101":3,"010110010110":1,"010110011001":9,"010110011010":22,"010110100101":12,"010110100110":26,"010110101001":55,"010110101010":19,"011001010101":1,"011001010110":4,"011001011001":12,"011001011010":21,"011001100101":2,"011001100110":4,"011001101001":8,"011010010101":5,"011010010110":3,"011010011001":14,"011010011010":15,"011010100101":8,"011010100110":15,"011010101001":41,"011010101010":7,"100101010110":2,"100101011001":11,"100101011010":1,"100101100101":1,"100101101001":4,"100101101010":2,"100110010101":2,"100110010110":1,"100110011001":1,"100110011010":2,"100110100101":8,"100110100110":1,"100110101001":40,"100110101010":2,"101001010110":1,"101001011001":10,"101001100101":3,"101001101001":3,"101010010101":4,"101010010110":1,"101010011001":8,"101010011010":1,"101010100101":5,"101010100110":1,"101010101001":21,"101010101010":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.2635834629909368},"metrics":{"exact_objective":25,"optimal_count":2,"combinations":64,"optimal_probability":0.1819251786569768,"feasible_probability":0.3330699253559119,"uniform_optimal_probability":0.03125,"uniform_feasible_probability":0.0625,"shots_for_95_percent":15,"hit_curve":[{"shots":8,"quantum":0.799393865551946,"uniform":0.2243001202577943},{"shots":16,"quantum":0.9597571788218093,"uniform":0.3982896965679276},{"shots":32,"quantum":0.9983805153436202,"uniform":0.6379447107436834},{"shots":64,"quantum":0.9999973772694477,"uniform":0.8689159675215249},{"shots":128,"quantum":0.9999999999931213,"uniform":0.9828169764291821},{"shots":512,"quantum":1.0,"uniform":0.9999999128237179}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":13,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":25,"preference_cost":16,"change_cost":9,"changed_tasks":4,"max_start_shift":5,"choices":[1,1,1,1,0,0],"schedule":[{"task":"t0","resource":"r1","start":5,"end":6},{"task":"t1","resource":"r0","start":6,"end":7},{"task":"t2","resource":"r0","start":2,"end":3},{"task":"t3","resource":"r0","start":7,"end":8},{"task":"t4","resource":"r0","start":1,"end":2},{"task":"t5","resource":"r0","start":3,"end":4}]},"dual_bound":25.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":13,"runtime_seconds":0.0012901910085929558},"exact":{"status":"optimal","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true}],"bits":[1,0,0,1,0,1,0,1,1,0,1,0],"qubo_energy":25},"combinations":64,"feasible_count":4,"runtime_seconds":0.0007505779940402135},"greedy":{"status":"dead_end","best":null,"runtime_seconds":7.805007044225931e-06},"resources":{"full":{"depth":27,"operations":{"RX":30,"I":12,"RZ":31,"CNOT":44,"CRY":6,"X":6},"cnot":44,"cry":6},"auto":{"depth":25,"operations":{"RX":30,"I":12,"RZ":25,"CNOT":32,"CRY":6,"X":6},"cnot":32,"cry":6}},"phase_max_probability_error":9.71445146547012e-17,"samples":[{"shots":8,"quantum_objective":25,"uniform_objective":25},{"shots":16,"quantum_objective":25,"uniform_objective":null},{"shots":32,"quantum_objective":25,"uniform_objective":25},{"shots":64,"quantum_objective":25,"uniform_objective":25},{"shots":128,"quantum_objective":25,"uniform_objective":25},{"shots":512,"quantum_objective":25,"uniform_objective":25}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10,2],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,10,11],[8,9]],"components":[{"qubits":10,"penalty":26,"objective_bound":25,"offset":130,"linear":[-19,-20,-23,-21,-24,-21,-22,-24,-22,-22],"quadratic":[[0,1,52],[0,2,26],[0,4,26],[1,2,26],[1,3,26],[1,9,26],[2,3,52],[2,4,26],[4,5,52],[5,6,26],[6,7,52],[8,9,52]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":5,"cost":7},{"index":1,"task":"t0","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":3},{"index":3,"task":"t1","resource":"r0","start":6,"cost":5},{"index":4,"task":"t2","resource":"r1","start":5,"cost":2},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":2,"cost":4},{"index":7,"task":"t3","resource":"r0","start":7,"cost":2},{"index":8,"task":"t5","resource":"r0","start":3,"cost":4},{"index":9,"task":"t5","resource":"r1","start":7,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group","precedence"]},{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":9,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]}]},{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-4,-1],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r0","start":1,"cost":2},{"index":1,"task":"t4","resource":"r0","start":5,"cost":5}],"conflicts":[]}]},"diagnostic_seconds":0.033953703998122364}
+{"input":{"file":"evaluation-n6-d1.json","split":"evaluation","tasks":6,"density_parameter":1,"data_seed":20260983,"sha256":"3670be6577fdf0a72f9099bae3e4264ab4cf1d364f2385a31835d48e0fd2d0b7"},"model":{"qubits":12,"penalty":31,"objective_bound":30,"offset":186,"linear":[-24,-25,-28,-26,-29,-26,-27,-29,-29,-26,-27,-27],"quadratic":[[0,1,62],[0,2,31],[0,4,31],[1,2,31],[1,3,31],[1,11,31],[2,3,62],[2,4,31],[4,5,62],[5,6,31],[6,7,62],[8,9,62],[10,11,62]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":5,"cost":7},{"index":1,"task":"t0","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":3},{"index":3,"task":"t1","resource":"r0","start":6,"cost":5},{"index":4,"task":"t2","resource":"r1","start":5,"cost":2},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":2,"cost":4},{"index":7,"task":"t3","resource":"r0","start":7,"cost":2},{"index":8,"task":"t4","resource":"r0","start":1,"cost":2},{"index":9,"task":"t4","resource":"r0","start":5,"cost":5},{"index":10,"task":"t5","resource":"r0","start":3,"cost":4},{"index":11,"task":"t5","resource":"r1","start":7,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group","precedence"]},{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":11,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":11,"task":"t5","group":"g2","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true}],"bits":[1,0,0,1,0,1,0,1,1,0,0,1],"qubo_energy":25},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.2342454609096856,2.892764868639701],"expected_energy":50.67564479257516,"initial_expected_energy":80.75882918251182,"history":[80.75882918251182,77.457194016677,79.28934322415583,72.36191958944045,95.04225884183182,80.35082891539889,68.08359076470893,58.53920024883101,61.143344118007306,97.27824767463149,60.842661461440734,68.50273969789089,62.57942312994702,58.09647772138464,58.63280741222978,57.54270315883751,57.394795212736994,59.83259969116689,56.27880307055835,56.29246520794114,56.09560108406377,56.087965076397964,56.46540789891958,56.09133309672774,55.95884123470773,55.74029744707069,55.55127031490394,55.28396952167827,55.105904158873955,54.834259470892846,54.40852833380868,53.661884037242984,52.76042174896445,55.385648273246815,56.94923393570003,52.60711735117658,52.63419183818813,52.68037822755043,52.516232544268576,52.504428194887,52.55410879097077,52.489561196510905,52.48005758468546,52.492673601393975,52.4605762025995,52.45268692759471,52.43855349429978,52.426624768359474,52.4092869607575,52.38923112046907,52.37269364352778,52.36563525211061,52.384964848047346,52.44820719990804,52.35354091653879,52.35547321877761,52.356036503765104,52.35397128488579,52.358711242813925,52.35282452719854,106.38606815768408,97.27718894751064,78.58041332155038,62.913951370170984,79.68494399421766,71.75090847560193,94.29091987282919,72.12706456596902,61.669040989941394,64.61788793601691,61.743356493829225,60.81577979664018,59.877359299606574,66.04223960869818,58.55780980870801,58.09698268626384,57.06386197640839,55.54436661403034,52.80559819069991,54.652078173681,67.1872533198079,54.80034646619596,52.72986874580232,54.986320337542764,52.2746210926063,53.32235439278311,52.76278863129065,52.34469913562707,52.09299702619391,52.06095690896451,51.92872479411878,51.80912867204717,51.61409687290188,51.71077378957308,51.5997138912037,51.82702621395744,51.614885352198684,51.5270122061246,51.442971126990884,51.515706684930905,51.403616784240945,51.3664904971489,51.29134158442909,51.151607341296796,51.139962105770465,50.893883164069244,51.27989528245699,51.095507622051386,50.86698615298926,50.89281435041855,50.85257673283293,50.86686880124042,50.828985667545645,50.82825704920546,50.8017650499329,50.780197527833806,50.7427308303633,50.67564479257516,50.98082157105719,50.82599647997803],"feasible_probability":0.34138491789618836,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.33984375,"counts":{"010101010110":11,"010101011001":14,"010101011010":17,"010101100101":1,"010101100110":4,"010101101001":3,"010101101010":2,"010110010101":5,"010110010110":1,"010110011001":11,"010110011010":25,"010110100101":9,"010110100110":33,"010110101001":47,"010110101010":8,"011001010101":2,"011001010110":6,"011001011001":17,"011001011010":18,"011001100110":6,"011001101001":4,"011001101010":3,"011010010101":5,"011010011001":11,"011010011010":16,"011010100101":6,"011010100110":22,"011010101001":54,"011010101010":5,"100101010101":1,"100101010110":1,"100101011001":10,"100101100101":6,"100101101001":5,"100101101010":1,"100110010101":2,"100110011001":2,"100110011010":1,"100110100101":6,"100110100110":1,"100110101001":52,"100110101010":2,"101001010101":1,"101001011001":11,"101001011010":1,"101001100101":1,"101001101001":4,"101001101010":1,"101010010101":4,"101010010110":1,"101010011001":3,"101010011010":1,"101010100101":4,"101010100110":1,"101010101001":21,"101010101010":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.27507112998864613},"metrics":{"exact_objective":25,"optimal_count":2,"combinations":64,"optimal_probability":0.18775592114085737,"feasible_probability":0.3413849178961884,"uniform_optimal_probability":0.03125,"uniform_feasible_probability":0.0625,"shots_for_95_percent":15,"hit_curve":[{"shots":8,"quantum":0.8105509496283263,"uniform":0.2243001202577943},{"shots":16,"quantum":0.964109057313271,"uniform":0.3982896965679276},{"shots":32,"quantum":0.9987118402330579,"uniform":0.6379447107436834},{"shots":64,"quantum":0.9999983406444148,"uniform":0.8689159675215249},{"shots":128,"quantum":0.9999999999972465,"uniform":0.9828169764291821},{"shots":512,"quantum":1.0,"uniform":0.9999999128237179}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":13,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":25,"preference_cost":16,"change_cost":9,"changed_tasks":4,"max_start_shift":5,"choices":[1,1,1,1,0,0],"schedule":[{"task":"t0","resource":"r1","start":5,"end":6},{"task":"t1","resource":"r0","start":6,"end":7},{"task":"t2","resource":"r0","start":2,"end":3},{"task":"t3","resource":"r0","start":7,"end":8},{"task":"t4","resource":"r0","start":1,"end":2},{"task":"t5","resource":"r0","start":3,"end":4}]},"dual_bound":25.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":13,"runtime_seconds":0.0012901910085929558},"exact":{"status":"optimal","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true}],"bits":[1,0,0,1,0,1,0,1,1,0,1,0],"qubo_energy":25},"combinations":64,"feasible_count":4,"runtime_seconds":0.0007505779940402135},"greedy":{"status":"dead_end","best":null,"runtime_seconds":7.805007044225931e-06},"resources":{"full":{"depth":27,"operations":{"RX":30,"I":12,"RZ":31,"CNOT":44,"CRY":6,"X":6},"cnot":44,"cry":6},"auto":{"depth":25,"operations":{"RX":30,"I":12,"RZ":25,"CNOT":32,"CRY":6,"X":6},"cnot":32,"cry":6}},"phase_max_probability_error":8.326672684688674e-17,"samples":[{"shots":8,"quantum_objective":25,"uniform_objective":null},{"shots":16,"quantum_objective":25,"uniform_objective":28},{"shots":32,"quantum_objective":25,"uniform_objective":25},{"shots":64,"quantum_objective":25,"uniform_objective":25},{"shots":128,"quantum_objective":25,"uniform_objective":25},{"shots":512,"quantum_objective":25,"uniform_objective":25}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10,2],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,10,11],[8,9]],"components":[{"qubits":10,"penalty":26,"objective_bound":25,"offset":130,"linear":[-19,-20,-23,-21,-24,-21,-22,-24,-22,-22],"quadratic":[[0,1,52],[0,2,26],[0,4,26],[1,2,26],[1,3,26],[1,9,26],[2,3,52],[2,4,26],[4,5,52],[5,6,26],[6,7,52],[8,9,52]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":5,"cost":7},{"index":1,"task":"t0","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":3},{"index":3,"task":"t1","resource":"r0","start":6,"cost":5},{"index":4,"task":"t2","resource":"r1","start":5,"cost":2},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":2,"cost":4},{"index":7,"task":"t3","resource":"r0","start":7,"cost":2},{"index":8,"task":"t5","resource":"r0","start":3,"cost":4},{"index":9,"task":"t5","resource":"r1","start":7,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group","precedence"]},{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":9,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]}]},{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-4,-1],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r0","start":1,"cost":2},{"index":1,"task":"t4","resource":"r0","start":5,"cost":5}],"conflicts":[]}]},"diagnostic_seconds":0.03447877299913671}
+{"input":{"file":"evaluation-n6-d1.json","split":"evaluation","tasks":6,"density_parameter":1,"data_seed":20260983,"sha256":"3670be6577fdf0a72f9099bae3e4264ab4cf1d364f2385a31835d48e0fd2d0b7"},"model":{"qubits":12,"penalty":31,"objective_bound":30,"offset":186,"linear":[-24,-25,-28,-26,-29,-26,-27,-29,-29,-26,-27,-27],"quadratic":[[0,1,62],[0,2,31],[0,4,31],[1,2,31],[1,3,31],[1,11,31],[2,3,62],[2,4,31],[4,5,62],[5,6,31],[6,7,62],[8,9,62],[10,11,62]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":5,"cost":7},{"index":1,"task":"t0","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":3},{"index":3,"task":"t1","resource":"r0","start":6,"cost":5},{"index":4,"task":"t2","resource":"r1","start":5,"cost":2},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":2,"cost":4},{"index":7,"task":"t3","resource":"r0","start":7,"cost":2},{"index":8,"task":"t4","resource":"r0","start":1,"cost":2},{"index":9,"task":"t4","resource":"r0","start":5,"cost":5},{"index":10,"task":"t5","resource":"r0","start":3,"cost":4},{"index":11,"task":"t5","resource":"r1","start":7,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group","precedence"]},{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":11,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":11,"task":"t5","group":"g2","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true}],"bits":[1,0,0,1,0,1,0,1,1,0,0,1],"qubo_energy":25},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.1683670161840611,1.324724466719624],"expected_energy":50.5649986934577,"initial_expected_energy":60.34004708380268,"history":[60.34004708380268,66.253173099632,94.32862185915101,78.7881524792923,59.99206923142834,56.47522762115625,51.08029672442828,54.20041415647745,83.68399407450828,54.08885766892385,51.35065947258349,52.55710132524656,51.0368643124864,51.63628126922248,50.89425501226409,50.82140905497478,51.145863685906605,50.71123596755146,50.60241998359528,50.62410783963807,50.60388307952629,50.627820086167574,50.59588602425872,50.59782141470913,50.603580813474466,50.593840111546484,50.59332920246142,50.59572171123318,50.59291030774956,50.59212124581576,50.59059708522777,50.58770663519107,50.58271748038389,50.58082699856563,50.57848588100684,50.58542148634214,50.5825745504851,50.57278928579934,50.57149409455157,50.57320622615802,50.57127712134226,50.57285436489519,50.57074536976469,50.57032460402999,50.569671707241085,50.56834212613933,50.56643531128099,50.56829721374686,50.56910771862626,50.56668180403744,50.56626572985387,50.56602428186346,50.565846838097,50.56601636574958,50.56574905434161,50.56572103705497,50.56561338060797,50.56551320750461,50.56532516513042,50.5649986934577,81.20256991785878,77.76374874491377,78.61390841208622,72.8453166369197,68.93185305001938,78.01709414613612,68.85702155098312,54.53303069855496,79.99241110018713,78.94990038585568,63.42994549125919,56.93931360481548,54.07538264822506,57.06396319627809,53.96982176939877,52.54101446109763,53.06148811993966,52.54571120481783,52.61936746348055,52.47403566471313,52.53140187892059,52.482116176909464,52.475496610292424,52.4631334988414,52.45905557806255,52.49206296598631,52.440354189356455,52.43333278501971,52.41965717760149,52.399656690861256,52.389852464127955,52.395844832105794,52.46818784257016,52.39933873249478,52.37182461772143,52.369238103675855,52.38382543279246,52.365406269613075,52.36266282428276,52.35919555473748,52.3599750097552,52.361246771661456,52.360015188465034,52.35838563622052,52.359296192657055,52.35822394768387,52.357955242859624,52.35762991656587,52.35701368760553,52.35595907089359,52.35650420111773,52.35716442314519,52.355701133212314,52.35595297960249,52.35551729326391,52.35551690674382,52.35520702301221,52.354989646950195,52.35462613844254,52.35557398285573],"feasible_probability":0.33506632521507845,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.34765625,"counts":{"010101010110":4,"010101011001":17,"010101011010":26,"010101100101":2,"010101100110":2,"010101101001":4,"010101101010":3,"010110010101":3,"010110010110":3,"010110011001":16,"010110011010":26,"010110100101":8,"010110100110":24,"010110101001":47,"010110101010":8,"011001010110":8,"011001011001":8,"011001011010":14,"011001100110":1,"011001101001":2,"011001101010":2,"011010010101":4,"011010011001":10,"011010011010":18,"011010100101":6,"011010100110":26,"011010101001":43,"011010101010":3,"100101010101":1,"100101010110":1,"100101011001":16,"100101011010":1,"100101100101":4,"100101101001":8,"100101101010":1,"100110010101":2,"100110011001":10,"100110011010":1,"100110100101":4,"100110100110":2,"100110101001":51,"100110101010":2,"101001010110":2,"101001011001":7,"101001100101":2,"101001101001":8,"101001101010":1,"101010010101":2,"101010011001":4,"101010100101":5,"101010100110":2,"101010101001":37},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.2742265069973655},"metrics":{"exact_objective":25,"optimal_count":2,"combinations":64,"optimal_probability":0.1832764431924382,"feasible_probability":0.3350663252150785,"uniform_optimal_probability":0.03125,"uniform_feasible_probability":0.0625,"shots_for_95_percent":15,"hit_curve":[{"shots":8,"quantum":0.8020294191961318,"uniform":0.2243001202577943},{"shots":16,"quantum":0.9608076491361791,"uniform":0.3982896965679276},{"shots":32,"quantum":0.9984639596337671,"uniform":0.6379447107436834},{"shots":64,"quantum":0.9999976405799933,"uniform":0.8689159675215249},{"shots":128,"quantum":0.9999999999944331,"uniform":0.9828169764291821},{"shots":512,"quantum":1.0,"uniform":0.9999999128237179}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":13,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":25,"preference_cost":16,"change_cost":9,"changed_tasks":4,"max_start_shift":5,"choices":[1,1,1,1,0,0],"schedule":[{"task":"t0","resource":"r1","start":5,"end":6},{"task":"t1","resource":"r0","start":6,"end":7},{"task":"t2","resource":"r0","start":2,"end":3},{"task":"t3","resource":"r0","start":7,"end":8},{"task":"t4","resource":"r0","start":1,"end":2},{"task":"t5","resource":"r0","start":3,"end":4}]},"dual_bound":25.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":13,"runtime_seconds":0.0012901910085929558},"exact":{"status":"optimal","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true}],"bits":[1,0,0,1,0,1,0,1,1,0,1,0],"qubo_energy":25},"combinations":64,"feasible_count":4,"runtime_seconds":0.0007505779940402135},"greedy":{"status":"dead_end","best":null,"runtime_seconds":7.805007044225931e-06},"resources":{"full":{"depth":27,"operations":{"RX":30,"I":12,"RZ":31,"CNOT":44,"CRY":6,"X":6},"cnot":44,"cry":6},"auto":{"depth":25,"operations":{"RX":30,"I":12,"RZ":25,"CNOT":32,"CRY":6,"X":6},"cnot":32,"cry":6}},"phase_max_probability_error":1.1102230246251565e-16,"samples":[{"shots":8,"quantum_objective":25,"uniform_objective":25},{"shots":16,"quantum_objective":25,"uniform_objective":28},{"shots":32,"quantum_objective":25,"uniform_objective":25},{"shots":64,"quantum_objective":25,"uniform_objective":25},{"shots":128,"quantum_objective":25,"uniform_objective":25},{"shots":512,"quantum_objective":25,"uniform_objective":25}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10,2],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,10,11],[8,9]],"components":[{"qubits":10,"penalty":26,"objective_bound":25,"offset":130,"linear":[-19,-20,-23,-21,-24,-21,-22,-24,-22,-22],"quadratic":[[0,1,52],[0,2,26],[0,4,26],[1,2,26],[1,3,26],[1,9,26],[2,3,52],[2,4,26],[4,5,52],[5,6,26],[6,7,52],[8,9,52]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":5,"cost":7},{"index":1,"task":"t0","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":3},{"index":3,"task":"t1","resource":"r0","start":6,"cost":5},{"index":4,"task":"t2","resource":"r1","start":5,"cost":2},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":2,"cost":4},{"index":7,"task":"t3","resource":"r0","start":7,"cost":2},{"index":8,"task":"t5","resource":"r0","start":3,"cost":4},{"index":9,"task":"t5","resource":"r1","start":7,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group","precedence"]},{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":9,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]}]},{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-4,-1],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r0","start":1,"cost":2},{"index":1,"task":"t4","resource":"r0","start":5,"cost":5}],"conflicts":[]}]},"diagnostic_seconds":0.03389869199600071}
+{"input":{"file":"evaluation-n6-d1.json","split":"evaluation","tasks":6,"density_parameter":1,"data_seed":20260983,"sha256":"3670be6577fdf0a72f9099bae3e4264ab4cf1d364f2385a31835d48e0fd2d0b7"},"model":{"qubits":12,"penalty":31,"objective_bound":30,"offset":186,"linear":[-24,-25,-28,-26,-29,-26,-27,-29,-29,-26,-27,-27],"quadratic":[[0,1,62],[0,2,31],[0,4,31],[1,2,31],[1,3,31],[1,11,31],[2,3,62],[2,4,31],[4,5,62],[5,6,31],[6,7,62],[8,9,62],[10,11,62]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":5,"cost":7},{"index":1,"task":"t0","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":3},{"index":3,"task":"t1","resource":"r0","start":6,"cost":5},{"index":4,"task":"t2","resource":"r1","start":5,"cost":2},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":2,"cost":4},{"index":7,"task":"t3","resource":"r0","start":7,"cost":2},{"index":8,"task":"t4","resource":"r0","start":1,"cost":2},{"index":9,"task":"t4","resource":"r0","start":5,"cost":5},{"index":10,"task":"t5","resource":"r0","start":3,"cost":4},{"index":11,"task":"t5","resource":"r1","start":7,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group","precedence"]},{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":11,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":11,"task":"t5","group":"g2","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true}],"bits":[1,0,0,1,0,1,0,1,1,0,0,1],"qubo_energy":25},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3858655878142094,2.8963154003354057],"expected_energy":51.56178613663177,"initial_expected_energy":79.19710111607418,"history":[79.19710111607418,78.80558623518164,80.42756900045292,76.40198417788724,79.23031465020529,73.7362135482025,74.17041974161144,81.10033333155282,71.03009042502968,86.1377279750224,74.08907055391713,72.27002631342066,68.83808924107588,64.31542697021916,56.86593128245926,99.82977864973086,79.30490634059234,56.97726825591219,56.53900435930028,62.5809418639426,55.319679305155546,53.34590473277,52.8496016909634,53.855083445566045,52.69179551297061,52.829218709689215,52.67681369012048,52.63659293893669,52.6833069145989,52.611876648719985,52.59154794789797,52.550945991219145,52.48875645887978,52.62545500121712,52.693230324838254,52.47963657033888,52.46271748591464,52.43226338819741,52.388963761088604,52.63404270182261,52.5279510951163,52.42910434859544,52.38454516105807,52.39255976457716,52.38272315832741,52.39599044466328,52.3772184911474,52.37487779259768,52.3716191293116,52.36632307173858,52.38333975462126,52.3699260890683,52.367693182437904,52.367235035583036,52.36529294992101,52.36579292200547,52.36504659863162,52.36464885374995,52.364280591437485,52.36567425248606,77.51405205893093,80.53136904656,78.99411637553658,78.83820706964681,78.63019542892215,77.7275325857984,77.3501792396611,77.09344929309756,76.94612709854616,78.1040967501453,76.43772802185009,75.49863311412167,73.99373868560221,70.38150922136336,83.40800773148038,82.64748634316538,65.76245715146709,72.58880561550541,70.42440527278683,66.6222816786782,66.89327021050323,65.0767448009372,65.47498089408879,64.19974004959423,63.869281674191186,65.33874260257979,62.737179520285494,61.85097907786574,60.03597169526139,58.56297410647761,59.120579545949695,63.30991030128463,59.96452155062934,56.629626091046966,56.94581583939962,55.64523127985404,54.9414131968748,54.18036140900783,53.04055003417494,71.19667291627472,54.90180427372577,54.758364343158966,52.63311267721153,53.1300534615784,52.59045530497583,52.966695264068704,52.58394870483031,52.465312996875674,52.28568557069505,52.044977445710835,52.148950359690545,51.97129857516814,51.98422985382508,51.92118427401653,51.8844464936649,51.8776016287006,51.94489235055999,51.81810040844148,51.715505229272345,51.56178613663177],"feasible_probability":0.34259973227537077,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.33984375,"counts":{"010101010101":3,"010101010110":4,"010101011001":15,"010101011010":27,"010101100101":3,"010101100110":5,"010101101001":4,"010110010101":4,"010110011001":6,"010110011010":23,"010110100101":4,"010110100110":24,"010110101001":53,"010110101010":10,"011001010101":1,"011001010110":3,"011001011001":8,"011001011010":20,"011001100110":3,"011001101001":3,"011001101010":2,"011010010101":6,"011010011001":8,"011010011010":28,"011010100101":3,"011010100110":25,"011010101001":42,"011010101010":10,"100101010101":1,"100101011001":13,"100101100101":2,"100101101001":3,"100101101010":3,"100110010101":4,"100110010110":2,"100110011001":4,"100110100101":3,"100110100110":3,"100110101001":50,"100110101010":4,"101001010101":3,"101001010110":1,"101001011001":17,"101001100101":1,"101001101001":4,"101010010101":1,"101010010110":4,"101010011001":2,"101010011010":2,"101010100101":3,"101010100110":1,"101010101001":29,"101010101010":5},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.26511729799676687},"metrics":{"exact_objective":25,"optimal_count":2,"combinations":64,"optimal_probability":0.19033675076038742,"feasible_probability":0.34259973227537077,"uniform_optimal_probability":0.03125,"uniform_feasible_probability":0.0625,"shots_for_95_percent":15,"hit_curve":[{"shots":8,"quantum":0.8153133872616775,"uniform":0.2243001202577943},{"shots":16,"quantum":0.9658908550752449,"uniform":0.3982896965679276},{"shots":32,"quantum":0.998836566232502,"uniform":0.6379447107436834},{"shots":64,"quantum":0.9999986464218686,"uniform":0.8689159675215249},{"shots":128,"quantum":0.9999999999981678,"uniform":0.9828169764291821},{"shots":512,"quantum":1.0,"uniform":0.9999999128237179}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":13,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":25,"preference_cost":16,"change_cost":9,"changed_tasks":4,"max_start_shift":5,"choices":[1,1,1,1,0,0],"schedule":[{"task":"t0","resource":"r1","start":5,"end":6},{"task":"t1","resource":"r0","start":6,"end":7},{"task":"t2","resource":"r0","start":2,"end":3},{"task":"t3","resource":"r0","start":7,"end":8},{"task":"t4","resource":"r0","start":1,"end":2},{"task":"t5","resource":"r0","start":3,"end":4}]},"dual_bound":25.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":13,"runtime_seconds":0.0012901910085929558},"exact":{"status":"optimal","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true}],"bits":[1,0,0,1,0,1,0,1,1,0,1,0],"qubo_energy":25},"combinations":64,"feasible_count":4,"runtime_seconds":0.0007505779940402135},"greedy":{"status":"dead_end","best":null,"runtime_seconds":7.805007044225931e-06},"resources":{"full":{"depth":27,"operations":{"RX":30,"I":12,"RZ":31,"CNOT":44,"CRY":6,"X":6},"cnot":44,"cry":6},"auto":{"depth":25,"operations":{"RX":30,"I":12,"RZ":25,"CNOT":32,"CRY":6,"X":6},"cnot":32,"cry":6}},"phase_max_probability_error":5.551115123125783e-17,"samples":[{"shots":8,"quantum_objective":28,"uniform_objective":null},{"shots":16,"quantum_objective":25,"uniform_objective":25},{"shots":32,"quantum_objective":25,"uniform_objective":28},{"shots":64,"quantum_objective":25,"uniform_objective":25},{"shots":128,"quantum_objective":25,"uniform_objective":25},{"shots":512,"quantum_objective":25,"uniform_objective":25}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10,2],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,10,11],[8,9]],"components":[{"qubits":10,"penalty":26,"objective_bound":25,"offset":130,"linear":[-19,-20,-23,-21,-24,-21,-22,-24,-22,-22],"quadratic":[[0,1,52],[0,2,26],[0,4,26],[1,2,26],[1,3,26],[1,9,26],[2,3,52],[2,4,26],[4,5,52],[5,6,26],[6,7,52],[8,9,52]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":5,"cost":7},{"index":1,"task":"t0","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":3},{"index":3,"task":"t1","resource":"r0","start":6,"cost":5},{"index":4,"task":"t2","resource":"r1","start":5,"cost":2},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":2,"cost":4},{"index":7,"task":"t3","resource":"r0","start":7,"cost":2},{"index":8,"task":"t5","resource":"r0","start":3,"cost":4},{"index":9,"task":"t5","resource":"r1","start":7,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group","precedence"]},{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":9,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]}]},{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-4,-1],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r0","start":1,"cost":2},{"index":1,"task":"t4","resource":"r0","start":5,"cost":5}],"conflicts":[]}]},"diagnostic_seconds":0.034440874005667865}
+{"input":{"file":"evaluation-n6-d1.json","split":"evaluation","tasks":6,"density_parameter":1,"data_seed":20260983,"sha256":"3670be6577fdf0a72f9099bae3e4264ab4cf1d364f2385a31835d48e0fd2d0b7"},"model":{"qubits":12,"penalty":31,"objective_bound":30,"offset":186,"linear":[-24,-25,-28,-26,-29,-26,-27,-29,-29,-26,-27,-27],"quadratic":[[0,1,62],[0,2,31],[0,4,31],[1,2,31],[1,3,31],[1,11,31],[2,3,62],[2,4,31],[4,5,62],[5,6,31],[6,7,62],[8,9,62],[10,11,62]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":5,"cost":7},{"index":1,"task":"t0","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":3},{"index":3,"task":"t1","resource":"r0","start":6,"cost":5},{"index":4,"task":"t2","resource":"r1","start":5,"cost":2},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":2,"cost":4},{"index":7,"task":"t3","resource":"r0","start":7,"cost":2},{"index":8,"task":"t4","resource":"r0","start":1,"cost":2},{"index":9,"task":"t4","resource":"r0","start":5,"cost":5},{"index":10,"task":"t5","resource":"r0","start":3,"cost":4},{"index":11,"task":"t5","resource":"r1","start":7,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group","precedence"]},{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":11,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":11,"task":"t5","group":"g2","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true}],"bits":[1,0,0,1,0,1,0,1,1,0,0,1],"qubo_energy":25},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.176012592389138,2.89594662680669],"expected_energy":50.56890094544196,"initial_expected_energy":78.94187163535898,"history":[78.94187163535898,78.74289586002183,56.766863466394,100.07483474168691,64.81087734856881,57.56457432728655,58.54894269068991,57.649514451289235,56.575294633910985,58.537780036154246,55.98767692265954,55.51310429756144,54.74684573211552,53.339037052028864,52.096244022117354,59.54446731624864,59.26510488248958,52.022244468521556,51.095610549514674,52.490011294184505,50.962122677458275,51.112798892420614,50.9527235584049,50.92264272168852,50.90198389111195,50.92402987655974,50.88949413060338,50.877054306551436,50.85375800519978,50.80923987222411,50.73052891581264,50.723909994475065,50.61468623679393,51.38276896215058,50.72421426201639,50.609914528880495,50.709798312355844,50.59988940848645,50.59575829384772,50.587501605333706,50.582252163080675,50.598256897792055,50.57990566309767,50.579378453924065,50.578160251056644,50.57723552734426,50.57728005172139,50.57570150232635,50.5754803647701,50.57747348945323,50.575178732826416,50.57462926232351,50.57362510171815,50.571882497033,50.56908636367184,50.574645372335084,50.578115025878674,50.569403300854596,50.56890094544196,50.569219137630014,80.44522059692981,87.75285405325458,79.06433313395243,79.7972690480603,78.57379015510448,79.95848010319227,78.89706770167238,78.11278635567601,77.85188439779489,79.20184190411325,77.69719751196497,77.85902402612567,77.64954796887064,78.19998421931277,77.62056287097234,77.6620132625755,77.62846619508773,77.6081435456378,77.60196701398033,77.60687210597641,77.5997267336504,77.59885446578363,77.59618319014542,77.5926584598818,77.58813162757482,77.57978629376066,77.56479800565336,77.60636198783023,77.63977195028554,77.57737908003318,77.56340230873465,77.5704074785896,77.56200966246101,77.56073203628492,77.56302284074783,77.55945790893338,77.55811713767685,77.55796932354065,77.55476023957895,77.55323359241791,77.55217991446739,77.55426241446614,77.55132364718816,77.55059848225918,77.54909618941284,77.5464944639429,77.54897150483382,77.55111055569,77.54559639096409,77.54439208515093,77.54310353019875,77.55394892822956,77.54092532445023,77.54043227229015,77.53887554770944,77.53650138832967,77.5316186688721,77.52339496080775,77.70734501696582,77.60954056815831],"feasible_probability":0.33559346624456193,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.322265625,"counts":{"010101010110":5,"010101011001":22,"010101011010":26,"010101100110":1,"010101101001":2,"010101101010":3,"010110010101":3,"010110010110":2,"010110011001":10,"010110011010":21,"010110100101":8,"010110100110":36,"010110101001":53,"010110101010":8,"011001010110":3,"011001011001":7,"011001011010":19,"011001100101":1,"011001100110":3,"011001101001":6,"011001101010":5,"011010010101":1,"011010010110":1,"011010011001":16,"011010011010":16,"011010100101":8,"011010100110":29,"011010101001":48,"011010101010":9,"100101010110":2,"100101011001":11,"100101011010":1,"100101100101":2,"100101100110":1,"100101101001":7,"100101101010":1,"100110010101":3,"100110010110":2,"100110011001":2,"100110011010":1,"100110100101":6,"100110100110":1,"100110101001":39,"100110101010":2,"101001010101":1,"101001010110":1,"101001011001":9,"101001100101":2,"101001101001":4,"101010010101":2,"101010010110":3,"101010011001":3,"101010100101":4,"101010100110":2,"101010101001":25,"101010101010":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.2604449819918955},"metrics":{"exact_objective":25,"optimal_count":2,"combinations":64,"optimal_probability":0.18364953358576427,"feasible_probability":0.33559346624456193,"uniform_optimal_probability":0.03125,"uniform_feasible_probability":0.0625,"shots_for_95_percent":15,"hit_curve":[{"shots":8,"quantum":0.8027517486720346,"uniform":0.2243001202577943},{"shots":16,"quantum":0.9610931273480599,"uniform":0.3982896965679276},{"shots":32,"quantum":0.9984862552604457,"uniform":0.6379447107436834},{"shots":64,"quantum":0.9999977085768634,"uniform":0.8689159675215249},{"shots":128,"quantum":0.9999999999947494,"uniform":0.9828169764291821},{"shots":512,"quantum":1.0,"uniform":0.9999999128237179}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":13,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":25,"preference_cost":16,"change_cost":9,"changed_tasks":4,"max_start_shift":5,"choices":[1,1,1,1,0,0],"schedule":[{"task":"t0","resource":"r1","start":5,"end":6},{"task":"t1","resource":"r0","start":6,"end":7},{"task":"t2","resource":"r0","start":2,"end":3},{"task":"t3","resource":"r0","start":7,"end":8},{"task":"t4","resource":"r0","start":1,"end":2},{"task":"t5","resource":"r0","start":3,"end":4}]},"dual_bound":25.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":13,"runtime_seconds":0.0012901910085929558},"exact":{"status":"optimal","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true}],"bits":[1,0,0,1,0,1,0,1,1,0,1,0],"qubo_energy":25},"combinations":64,"feasible_count":4,"runtime_seconds":0.0007505779940402135},"greedy":{"status":"dead_end","best":null,"runtime_seconds":7.805007044225931e-06},"resources":{"full":{"depth":27,"operations":{"RX":30,"I":12,"RZ":31,"CNOT":44,"CRY":6,"X":6},"cnot":44,"cry":6},"auto":{"depth":25,"operations":{"RX":30,"I":12,"RZ":25,"CNOT":32,"CRY":6,"X":6},"cnot":32,"cry":6}},"phase_max_probability_error":6.938893903907228e-17,"samples":[{"shots":8,"quantum_objective":25,"uniform_objective":25},{"shots":16,"quantum_objective":25,"uniform_objective":null},{"shots":32,"quantum_objective":25,"uniform_objective":25},{"shots":64,"quantum_objective":25,"uniform_objective":25},{"shots":128,"quantum_objective":25,"uniform_objective":25},{"shots":512,"quantum_objective":25,"uniform_objective":25}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10,2],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,10,11],[8,9]],"components":[{"qubits":10,"penalty":26,"objective_bound":25,"offset":130,"linear":[-19,-20,-23,-21,-24,-21,-22,-24,-22,-22],"quadratic":[[0,1,52],[0,2,26],[0,4,26],[1,2,26],[1,3,26],[1,9,26],[2,3,52],[2,4,26],[4,5,52],[5,6,26],[6,7,52],[8,9,52]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":5,"cost":7},{"index":1,"task":"t0","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":3},{"index":3,"task":"t1","resource":"r0","start":6,"cost":5},{"index":4,"task":"t2","resource":"r1","start":5,"cost":2},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":2,"cost":4},{"index":7,"task":"t3","resource":"r0","start":7,"cost":2},{"index":8,"task":"t5","resource":"r0","start":3,"cost":4},{"index":9,"task":"t5","resource":"r1","start":7,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group","precedence"]},{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":9,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]}]},{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-4,-1],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r0","start":1,"cost":2},{"index":1,"task":"t4","resource":"r0","start":5,"cost":5}],"conflicts":[]}]},"diagnostic_seconds":0.0329764000052819}
+{"input":{"file":"evaluation-n6-d1.json","split":"evaluation","tasks":6,"density_parameter":1,"data_seed":20260983,"sha256":"3670be6577fdf0a72f9099bae3e4264ab4cf1d364f2385a31835d48e0fd2d0b7"},"model":{"qubits":12,"penalty":31,"objective_bound":30,"offset":186,"linear":[-24,-25,-28,-26,-29,-26,-27,-29,-29,-26,-27,-27],"quadratic":[[0,1,62],[0,2,31],[0,4,31],[1,2,31],[1,3,31],[1,11,31],[2,3,62],[2,4,31],[4,5,62],[5,6,31],[6,7,62],[8,9,62],[10,11,62]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":5,"cost":7},{"index":1,"task":"t0","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":3},{"index":3,"task":"t1","resource":"r0","start":6,"cost":5},{"index":4,"task":"t2","resource":"r1","start":5,"cost":2},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":2,"cost":4},{"index":7,"task":"t3","resource":"r0","start":7,"cost":2},{"index":8,"task":"t4","resource":"r0","start":1,"cost":2},{"index":9,"task":"t4","resource":"r0","start":5,"cost":5},{"index":10,"task":"t5","resource":"r0","start":3,"cost":4},{"index":11,"task":"t5","resource":"r1","start":7,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group","precedence"]},{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":11,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":11,"task":"t5","group":"g2","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true}],"bits":[1,0,0,1,0,1,0,1,1,0,0,1],"qubo_energy":25},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.1582458054365352,1.3225580976365272],"expected_energy":50.56614910724686,"initial_expected_energy":81.19583511905047,"history":[81.19583511905047,80.13262371855336,77.04257854520512,78.5621960749273,74.53086703698321,71.19120267656751,62.386797487790034,106.02462234451971,78.42669602433759,65.04840166778922,71.34075696038252,62.79897428011932,60.31728462367047,59.80611060797308,89.54349712039908,55.05079528748188,60.35393604386063,54.61648126954965,55.32239795152536,54.438740483118764,55.49887089033465,53.87706527787006,53.635070483018346,53.30186781813707,52.756592262820995,55.1707478166223,52.93861405868532,52.82343416754429,52.87986841959945,52.59457708530102,52.55570770329408,52.75215619817951,52.54796998455412,52.481418992480116,52.369784205536405,52.15729264253696,51.98209181779145,51.639317178113316,51.851491787263875,52.021446264881895,51.64158301700895,51.52793798391864,51.469011815047566,51.38759042366682,51.31179821696031,51.19751952461009,51.06520122832136,50.9094474797793,50.69652979728525,50.63727229706818,52.895403082759806,51.86358901178704,50.59368526470132,50.70511807984468,50.60338446484123,50.56743123405538,50.56614910724686,50.57023130417389,50.56672390720526,50.568801226454966,81.50572697941257,77.85274300946918,78.74575956520016,74.72797343000025,91.81513551806559,80.70396462119693,70.56228550846495,64.5769110964962,69.54958154752359,80.75926785474809,64.32496135606442,60.713522382554736,84.3760723608944,56.766389753907525,55.322656123479774,55.488000294679786,56.04171333864541,54.69151056344448,54.39628861686138,56.376111193440295,54.008382235381006,53.90148736176897,53.61659806022759,53.27314945039064,52.93024060084113,52.68325448965393,53.54352868798624,52.66180798857683,52.603880173529376,52.50894364690622,52.469759811729396,54.2103975449901,52.395995109586515,52.531688929574365,52.387718113483515,52.365187413974084,52.36084988376339,52.36949227089646,52.359393120461874,52.363192681229805,52.35860167057113,52.35765320144816,52.357069744582006,52.358083584562195,52.356773399823545,52.35649979619404,52.35628422534585,52.3556877017853,52.35532414894103,52.35485757742484,52.35417184540333,52.3554300906339,52.356097231243325,52.354080027565644,52.353888842194095,52.353554782351544,52.353091483396916,52.35349866181863,52.353428736018806,52.35314073798468],"feasible_probability":0.33498279581943285,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.32421875,"counts":{"010101010101":1,"010101010110":5,"010101011001":14,"010101011010":29,"010101100110":3,"010101101001":3,"010101101010":1,"010110010101":2,"010110011001":12,"010110011010":23,"010110100101":9,"010110100110":24,"010110101001":58,"010110101010":18,"011001010110":6,"011001011001":14,"011001011010":17,"011001100101":3,"011001100110":4,"011001101001":4,"011001101010":2,"011010010101":1,"011010010110":3,"011010011001":11,"011010011010":19,"011010100101":4,"011010100110":23,"011010101001":41,"011010101010":13,"100101010101":1,"100101010110":1,"100101011001":11,"100101011010":1,"100101100101":4,"100101101001":3,"100101101010":2,"100110010110":1,"100110011001":4,"100110100101":9,"100110100110":2,"100110101001":43,"100110101010":2,"101001010101":1,"101001010110":1,"101001011001":12,"101001011010":1,"101001100101":2,"101001101001":4,"101001101010":1,"101010010101":1,"101010010110":1,"101010011001":3,"101010100101":8,"101010100110":1,"101010101001":24,"101010101010":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.275019943001098},"metrics":{"exact_objective":25,"optimal_count":2,"combinations":64,"optimal_probability":0.18318424578268244,"feasible_probability":0.33498279581943285,"uniform_optimal_probability":0.03125,"uniform_feasible_probability":0.0625,"shots_for_95_percent":15,"hit_curve":[{"shots":8,"quantum":0.8018505622223154,"uniform":0.2243001202577943},{"shots":16,"quantum":0.9607368003083875,"uniform":0.3982896965679276},{"shots":32,"quantum":0.9984584011499765,"uniform":0.6379447107436834},{"shots":64,"quantum":0.9999976234729856,"uniform":0.8689159675215249},{"shots":128,"quantum":0.9999999999943521,"uniform":0.9828169764291821},{"shots":512,"quantum":1.0,"uniform":0.9999999128237179}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":13,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":25,"preference_cost":16,"change_cost":9,"changed_tasks":4,"max_start_shift":5,"choices":[1,1,1,1,0,0],"schedule":[{"task":"t0","resource":"r1","start":5,"end":6},{"task":"t1","resource":"r0","start":6,"end":7},{"task":"t2","resource":"r0","start":2,"end":3},{"task":"t3","resource":"r0","start":7,"end":8},{"task":"t4","resource":"r0","start":1,"end":2},{"task":"t5","resource":"r0","start":3,"end":4}]},"dual_bound":25.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":13,"runtime_seconds":0.0012901910085929558},"exact":{"status":"optimal","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true}],"bits":[1,0,0,1,0,1,0,1,1,0,1,0],"qubo_energy":25},"combinations":64,"feasible_count":4,"runtime_seconds":0.0007505779940402135},"greedy":{"status":"dead_end","best":null,"runtime_seconds":7.805007044225931e-06},"resources":{"full":{"depth":27,"operations":{"RX":30,"I":12,"RZ":31,"CNOT":44,"CRY":6,"X":6},"cnot":44,"cry":6},"auto":{"depth":25,"operations":{"RX":30,"I":12,"RZ":25,"CNOT":32,"CRY":6,"X":6},"cnot":32,"cry":6}},"phase_max_probability_error":5.551115123125783e-17,"samples":[{"shots":8,"quantum_objective":25,"uniform_objective":null},{"shots":16,"quantum_objective":25,"uniform_objective":28},{"shots":32,"quantum_objective":25,"uniform_objective":28},{"shots":64,"quantum_objective":25,"uniform_objective":25},{"shots":128,"quantum_objective":25,"uniform_objective":25},{"shots":512,"quantum_objective":25,"uniform_objective":25}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10,2],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,10,11],[8,9]],"components":[{"qubits":10,"penalty":26,"objective_bound":25,"offset":130,"linear":[-19,-20,-23,-21,-24,-21,-22,-24,-22,-22],"quadratic":[[0,1,52],[0,2,26],[0,4,26],[1,2,26],[1,3,26],[1,9,26],[2,3,52],[2,4,26],[4,5,52],[5,6,26],[6,7,52],[8,9,52]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":5,"cost":7},{"index":1,"task":"t0","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":3},{"index":3,"task":"t1","resource":"r0","start":6,"cost":5},{"index":4,"task":"t2","resource":"r1","start":5,"cost":2},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":2,"cost":4},{"index":7,"task":"t3","resource":"r0","start":7,"cost":2},{"index":8,"task":"t5","resource":"r0","start":3,"cost":4},{"index":9,"task":"t5","resource":"r1","start":7,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group","precedence"]},{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":9,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]}]},{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-4,-1],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r0","start":1,"cost":2},{"index":1,"task":"t4","resource":"r0","start":5,"cost":5}],"conflicts":[]}]},"diagnostic_seconds":0.03635569701145869}
+{"input":{"file":"evaluation-n6-d1.json","split":"evaluation","tasks":6,"density_parameter":1,"data_seed":20260983,"sha256":"3670be6577fdf0a72f9099bae3e4264ab4cf1d364f2385a31835d48e0fd2d0b7"},"model":{"qubits":12,"penalty":31,"objective_bound":30,"offset":186,"linear":[-24,-25,-28,-26,-29,-26,-27,-29,-29,-26,-27,-27],"quadratic":[[0,1,62],[0,2,31],[0,4,31],[1,2,31],[1,3,31],[1,11,31],[2,3,62],[2,4,31],[4,5,62],[5,6,31],[6,7,62],[8,9,62],[10,11,62]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":5,"cost":7},{"index":1,"task":"t0","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":3},{"index":3,"task":"t1","resource":"r0","start":6,"cost":5},{"index":4,"task":"t2","resource":"r1","start":5,"cost":2},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":2,"cost":4},{"index":7,"task":"t3","resource":"r0","start":7,"cost":2},{"index":8,"task":"t4","resource":"r0","start":1,"cost":2},{"index":9,"task":"t4","resource":"r0","start":5,"cost":5},{"index":10,"task":"t5","resource":"r0","start":3,"cost":4},{"index":11,"task":"t5","resource":"r1","start":7,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group","precedence"]},{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":11,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":11,"task":"t5","group":"g2","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true}],"bits":[1,0,0,1,0,1,0,1,1,0,0,1],"qubo_energy":25},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.1946495407935112,2.891856692072501],"expected_energy":50.59268784906216,"initial_expected_energy":83.48978772676776,"history":[83.48978772676776,78.94755317129909,79.97529332481906,77.87464660450905,84.26677083695569,75.3895088418131,75.97325501966962,74.85688473402786,74.59411758433203,77.179874236309,74.43441520756897,73.57338858320452,72.3619686862717,69.33730768857066,66.72971770969829,68.68340714061284,74.66294771842561,68.26361012363702,62.88369582586867,64.53639431803651,63.994869796638554,61.71078885222983,60.9841354516697,60.09084738649222,58.44855261405435,58.78486106167904,59.10623923504215,58.573781464019596,59.08332134660615,57.93010176137145,58.6248210759822,58.36317892681466,57.88261814039354,57.67011256796718,57.32503912512018,57.875689882092324,57.03247094654937,56.641759609579054,55.89828666848419,54.663294196828915,61.681800012341725,58.44951569908075,54.751863042970456,54.58228099055971,54.63763363936188,54.40047616691496,54.27049762888342,54.13395039019446,53.9075529785652,53.492310393460365,52.746652183680425,54.28539845360227,56.6993053950098,52.63072756965491,53.74511105872591,52.7446804079953,52.680852780855304,52.65617475533641,52.626544600401985,52.605691250880454,63.75513372657545,69.05518727661241,88.90080209660272,79.55856532703712,59.94338734472755,81.63447883867659,62.24659537331293,58.74113566027708,70.23811461344778,57.444061370561144,55.09365875192067,54.293443569637866,55.56184113982219,53.92357604958819,53.79481898141117,53.3597649066686,53.216689602592055,52.43670056009265,53.61438268657375,53.07765780810877,52.333437309447774,52.73125058882992,52.212822672574916,52.10560516269233,52.21463754657023,52.01694295987434,51.90051492100906,51.69851588456924,51.94008972597112,51.65909033112234,51.525446055839204,51.291543011954595,50.97731985850002,51.06205476763002,51.265686328211196,51.02516304478523,50.98684018245381,50.95606506792055,50.94083554250628,50.94932051450202,50.906482577042354,50.88526836029608,50.86082785938952,50.83820896429616,50.794723592380755,50.71790755703941,50.74352286850231,50.89239551844781,50.73580098044422,50.71167952947541,50.721820208328324,50.722569099740355,50.70195094108184,50.72436293924129,50.69302315405636,50.685007260150165,50.67146379388884,50.65082362784703,50.62332939458886,50.59268784906216],"feasible_probability":0.3389297229739378,"one_hot_probability":1.0,"sampled_feasible_fraction":0.3515625,"counts":{"010101010110":6,"010101011001":9,"010101011010":18,"010101100101":1,"010101100110":3,"010101101001":3,"010101101010":2,"010110010101":5,"010110010110":2,"010110011001":10,"010110011010":22,"010110100101":10,"010110100110":36,"010110101001":52,"010110101010":4,"011001010101":1,"011001010110":2,"011001011001":15,"011001011010":18,"011001100101":1,"011001100110":3,"011001101001":7,"011001101010":2,"011010010101":7,"011010011001":11,"011010011010":10,"011010100101":5,"011010100110":23,"011010101001":42,"011010101010":10,"100101010110":2,"100101011001":20,"100101011010":1,"100101100101":2,"100101101001":5,"100110010101":3,"100110011001":8,"100110011010":2,"100110100101":10,"100110100110":1,"100110101001":46,"100110101010":5,"101001010101":1,"101001010110":1,"101001011001":8,"101001011010":1,"101001100101":1,"101001101001":4,"101010010101":1,"101010010110":1,"101010011001":3,"101010100101":1,"101010100110":3,"101010101001":40,"101010101010":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.2778877079981612},"metrics":{"exact_objective":25,"optimal_count":2,"combinations":64,"optimal_probability":0.18590313254669344,"feasible_probability":0.33892972297393775,"uniform_optimal_probability":0.03125,"uniform_feasible_probability":0.0625,"shots_for_95_percent":15,"hit_curve":[{"shots":8,"quantum":0.807066044128052,"uniform":0.2243001202577943},{"shots":16,"quantum":0.9627764886716013,"uniform":0.3982896965679276},{"shots":32,"quantum":0.9986144102043846,"uniform":0.6379447107436834},{"shots":64,"quantum":0.9999980801409183,"uniform":0.8689159675215249},{"shots":128,"quantum":0.9999999999963142,"uniform":0.9828169764291821},{"shots":512,"quantum":1.0,"uniform":0.9999999128237179}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":13,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":25,"preference_cost":16,"change_cost":9,"changed_tasks":4,"max_start_shift":5,"choices":[1,1,1,1,0,0],"schedule":[{"task":"t0","resource":"r1","start":5,"end":6},{"task":"t1","resource":"r0","start":6,"end":7},{"task":"t2","resource":"r0","start":2,"end":3},{"task":"t3","resource":"r0","start":7,"end":8},{"task":"t4","resource":"r0","start":1,"end":2},{"task":"t5","resource":"r0","start":3,"end":4}]},"dual_bound":25.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":13,"runtime_seconds":0.0012901910085929558},"exact":{"status":"optimal","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true}],"bits":[1,0,0,1,0,1,0,1,1,0,1,0],"qubo_energy":25},"combinations":64,"feasible_count":4,"runtime_seconds":0.0007505779940402135},"greedy":{"status":"dead_end","best":null,"runtime_seconds":7.805007044225931e-06},"resources":{"full":{"depth":27,"operations":{"RX":30,"I":12,"RZ":31,"CNOT":44,"CRY":6,"X":6},"cnot":44,"cry":6},"auto":{"depth":25,"operations":{"RX":30,"I":12,"RZ":25,"CNOT":32,"CRY":6,"X":6},"cnot":32,"cry":6}},"phase_max_probability_error":5.551115123125783e-17,"samples":[{"shots":8,"quantum_objective":25,"uniform_objective":null},{"shots":16,"quantum_objective":25,"uniform_objective":25},{"shots":32,"quantum_objective":25,"uniform_objective":null},{"shots":64,"quantum_objective":25,"uniform_objective":25},{"shots":128,"quantum_objective":25,"uniform_objective":25},{"shots":512,"quantum_objective":25,"uniform_objective":25}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10,2],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,10,11],[8,9]],"components":[{"qubits":10,"penalty":26,"objective_bound":25,"offset":130,"linear":[-19,-20,-23,-21,-24,-21,-22,-24,-22,-22],"quadratic":[[0,1,52],[0,2,26],[0,4,26],[1,2,26],[1,3,26],[1,9,26],[2,3,52],[2,4,26],[4,5,52],[5,6,26],[6,7,52],[8,9,52]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":5,"cost":7},{"index":1,"task":"t0","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":3},{"index":3,"task":"t1","resource":"r0","start":6,"cost":5},{"index":4,"task":"t2","resource":"r1","start":5,"cost":2},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":2,"cost":4},{"index":7,"task":"t3","resource":"r0","start":7,"cost":2},{"index":8,"task":"t5","resource":"r0","start":3,"cost":4},{"index":9,"task":"t5","resource":"r1","start":7,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group","precedence"]},{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":9,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]}]},{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-4,-1],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r0","start":1,"cost":2},{"index":1,"task":"t4","resource":"r0","start":5,"cost":5}],"conflicts":[]}]},"diagnostic_seconds":0.03404413799580652}
+{"input":{"file":"evaluation-n6-d1.json","split":"evaluation","tasks":6,"density_parameter":1,"data_seed":20260983,"sha256":"3670be6577fdf0a72f9099bae3e4264ab4cf1d364f2385a31835d48e0fd2d0b7"},"model":{"qubits":12,"penalty":31,"objective_bound":30,"offset":186,"linear":[-24,-25,-28,-26,-29,-26,-27,-29,-29,-26,-27,-27],"quadratic":[[0,1,62],[0,2,31],[0,4,31],[1,2,31],[1,3,31],[1,11,31],[2,3,62],[2,4,31],[4,5,62],[5,6,31],[6,7,62],[8,9,62],[10,11,62]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":5,"cost":7},{"index":1,"task":"t0","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":3},{"index":3,"task":"t1","resource":"r0","start":6,"cost":5},{"index":4,"task":"t2","resource":"r1","start":5,"cost":2},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":2,"cost":4},{"index":7,"task":"t3","resource":"r0","start":7,"cost":2},{"index":8,"task":"t4","resource":"r0","start":1,"cost":2},{"index":9,"task":"t4","resource":"r0","start":5,"cost":5},{"index":10,"task":"t5","resource":"r0","start":3,"cost":4},{"index":11,"task":"t5","resource":"r1","start":7,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group","precedence"]},{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":11,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":11,"task":"t5","group":"g2","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true}],"bits":[1,0,0,1,0,1,0,1,1,0,0,1],"qubo_energy":25},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.1695659390233768,1.3244306037979772],"expected_energy":50.56541133781356,"initial_expected_energy":76.72769927628684,"history":[76.72769927628684,75.05326184480376,70.34025888865585,86.79016589371531,68.36246594630025,78.8813035702884,66.69857298276574,62.814903372604746,58.80846325571739,60.80126278515973,58.12443760265492,57.15244000414577,55.4799929895707,53.282870893825695,56.37975287165895,59.421860700180815,52.876938473781564,52.4820105428429,52.529236088809895,53.177617248873936,52.498890786393375,52.29370431854216,52.19320378866861,52.064639680978914,51.9407217836454,51.714497003632545,51.35542776199271,51.30530997989857,50.773319775445685,55.18153767374035,51.395338157282026,50.754976092155104,51.39265445892701,50.68692714243305,50.66009389750206,50.63649044995077,50.71242774032258,50.6178292535302,50.61738241595309,50.6040729869825,50.5986792235704,50.58960075323401,50.585077920729475,50.58489674132052,50.57263205948807,50.56829141497121,50.56983049566121,50.59078069805962,50.56728567616086,50.5727275174695,50.57700038283371,50.56736278409042,50.56980923829123,50.567332176199635,50.566654852825806,50.56626170055168,50.56631389612102,50.5659951073294,50.56580225108595,50.56541133781356,101.1837353377349,93.3941902315222,77.68905793648739,64.53394972330223,79.08013135064834,73.13556271072076,77.92682895735523,63.029625470065035,65.02148712773703,63.163220775989295,62.17123252809057,61.90901545660803,63.558633336436195,60.72472920350215,59.926950137157576,58.984279003378035,57.200658940235826,55.937733799583924,58.27626010745516,65.30812006783879,55.340779431651924,53.662336440425776,53.68556134857902,53.90078382767811,53.77630314980038,53.466459167371326,53.16545943824527,52.553658475831355,51.77251128742212,53.46121811184408,53.68151630675837,51.62602788113072,51.45332179445186,51.42639812641555,51.73260712428758,51.425649711488745,51.33735821289082,51.225300262759006,51.15094378159672,51.1527765637503,51.12609628688878,51.10674874303231,51.10206742482407,51.268008070131565,51.04766975458927,51.00991384498715,50.98327755824314,50.95547715747635,50.91018839581524,50.835968942978774,50.74211979689427,50.63415590705231,50.96657527385945,50.92341178782816,50.6258388247103,50.61508529060542,50.60048779084161,50.62318537575574,50.59150968587464,50.58888535133965],"feasible_probability":0.3353078808437866,"one_hot_probability":1.0,"sampled_feasible_fraction":0.349609375,"counts":{"010101010110":4,"010101011001":16,"010101011010":17,"010101100101":1,"010101100110":2,"010101101001":3,"010101101010":3,"010110010101":3,"010110010110":1,"010110011001":15,"010110011010":22,"010110100101":3,"010110100110":26,"010110101001":66,"010110101010":13,"011001010110":4,"011001011001":18,"011001011010":19,"011001100101":1,"011001100110":3,"011001101001":1,"011001101010":5,"011010010101":2,"011010011001":8,"011010011010":22,"011010100101":4,"011010100110":28,"011010101001":42,"011010101010":8,"100101010110":2,"100101011001":12,"100101101001":5,"100101101010":2,"100110010101":1,"100110011001":6,"100110100101":12,"100110100110":1,"100110101001":39,"100110101010":5,"101001010101":1,"101001011001":10,"101001100101":1,"101001101001":4,"101010010101":2,"101010011001":4,"101010011010":3,"101010100101":4,"101010100110":2,"101010101001":32,"101010101010":4},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.2632162569934735},"metrics":{"exact_objective":25,"optimal_count":2,"combinations":64,"optimal_probability":0.1834369758616738,"feasible_probability":0.3353078808437865,"uniform_optimal_probability":0.03125,"uniform_feasible_probability":0.0625,"shots_for_95_percent":15,"hit_curve":[{"shots":8,"quantum":0.8023405050273658,"uniform":0.2243001202577943},{"shots":16,"quantum":0.9609307240471632,"uniform":0.3982896965679276},{"shots":32,"quantum":0.998473591676521,"uniform":0.6379447107436834},{"shots":64,"quantum":0.99999767007763,"uniform":0.8689159675215249},{"shots":128,"quantum":0.9999999999945715,"uniform":0.9828169764291821},{"shots":512,"quantum":1.0,"uniform":0.9999999128237179}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":13,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":25,"preference_cost":16,"change_cost":9,"changed_tasks":4,"max_start_shift":5,"choices":[1,1,1,1,0,0],"schedule":[{"task":"t0","resource":"r1","start":5,"end":6},{"task":"t1","resource":"r0","start":6,"end":7},{"task":"t2","resource":"r0","start":2,"end":3},{"task":"t3","resource":"r0","start":7,"end":8},{"task":"t4","resource":"r0","start":1,"end":2},{"task":"t5","resource":"r0","start":3,"end":4}]},"dual_bound":25.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":13,"runtime_seconds":0.0012901910085929558},"exact":{"status":"optimal","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true}],"bits":[1,0,0,1,0,1,0,1,1,0,1,0],"qubo_energy":25},"combinations":64,"feasible_count":4,"runtime_seconds":0.0007505779940402135},"greedy":{"status":"dead_end","best":null,"runtime_seconds":7.805007044225931e-06},"resources":{"full":{"depth":27,"operations":{"RX":30,"I":12,"RZ":31,"CNOT":44,"CRY":6,"X":6},"cnot":44,"cry":6},"auto":{"depth":25,"operations":{"RX":30,"I":12,"RZ":25,"CNOT":32,"CRY":6,"X":6},"cnot":32,"cry":6}},"phase_max_probability_error":5.551115123125783e-17,"samples":[{"shots":8,"quantum_objective":25,"uniform_objective":25},{"shots":16,"quantum_objective":25,"uniform_objective":25},{"shots":32,"quantum_objective":25,"uniform_objective":25},{"shots":64,"quantum_objective":25,"uniform_objective":28},{"shots":128,"quantum_objective":25,"uniform_objective":25},{"shots":512,"quantum_objective":25,"uniform_objective":25}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10,2],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,10,11],[8,9]],"components":[{"qubits":10,"penalty":26,"objective_bound":25,"offset":130,"linear":[-19,-20,-23,-21,-24,-21,-22,-24,-22,-22],"quadratic":[[0,1,52],[0,2,26],[0,4,26],[1,2,26],[1,3,26],[1,9,26],[2,3,52],[2,4,26],[4,5,52],[5,6,26],[6,7,52],[8,9,52]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":5,"cost":7},{"index":1,"task":"t0","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":3},{"index":3,"task":"t1","resource":"r0","start":6,"cost":5},{"index":4,"task":"t2","resource":"r1","start":5,"cost":2},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":2,"cost":4},{"index":7,"task":"t3","resource":"r0","start":7,"cost":2},{"index":8,"task":"t5","resource":"r0","start":3,"cost":4},{"index":9,"task":"t5","resource":"r1","start":7,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group","precedence"]},{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":9,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]}]},{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-4,-1],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r0","start":1,"cost":2},{"index":1,"task":"t4","resource":"r0","start":5,"cost":5}],"conflicts":[]}]},"diagnostic_seconds":0.033011895007803105}
+{"input":{"file":"evaluation-n6-d1.json","split":"evaluation","tasks":6,"density_parameter":1,"data_seed":20260983,"sha256":"3670be6577fdf0a72f9099bae3e4264ab4cf1d364f2385a31835d48e0fd2d0b7"},"model":{"qubits":12,"penalty":31,"objective_bound":30,"offset":186,"linear":[-24,-25,-28,-26,-29,-26,-27,-29,-29,-26,-27,-27],"quadratic":[[0,1,62],[0,2,31],[0,4,31],[1,2,31],[1,3,31],[1,11,31],[2,3,62],[2,4,31],[4,5,62],[5,6,31],[6,7,62],[8,9,62],[10,11,62]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":5,"cost":7},{"index":1,"task":"t0","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":3},{"index":3,"task":"t1","resource":"r0","start":6,"cost":5},{"index":4,"task":"t2","resource":"r1","start":5,"cost":2},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":2,"cost":4},{"index":7,"task":"t3","resource":"r0","start":7,"cost":2},{"index":8,"task":"t4","resource":"r0","start":1,"cost":2},{"index":9,"task":"t4","resource":"r0","start":5,"cost":5},{"index":10,"task":"t5","resource":"r0","start":3,"cost":4},{"index":11,"task":"t5","resource":"r1","start":7,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group","precedence"]},{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":11,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":11,"task":"t5","group":"g2","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true}],"bits":[1,0,0,1,0,1,0,1,1,0,0,1],"qubo_energy":25},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.1620048633753248,1.3245848237679942],"expected_energy":50.56376337831519,"initial_expected_energy":56.38254214749108,"history":[56.38254214749108,55.19327251245136,105.36562702988894,79.36241795930411,94.26693455534212,51.77844886485067,61.056760745903446,51.868524651612105,51.23478803253405,52.79853894052816,51.4974106616464,51.295846459250356,51.19904979440865,51.1445301005147,51.1189089478691,51.19227823122508,51.12453037081884,51.08781983790725,51.05236971632864,51.16539254596512,51.01745965756234,50.98896625285473,50.93465366306948,50.88395473029193,50.80980937451021,50.84716792735898,50.922085348914,50.80981894246495,50.77918791473448,50.7654476200922,50.745490732440445,50.727379034578206,50.69894618747166,50.64950864413773,50.59996217383077,50.56820511690208,51.25229385128804,50.82700571081676,50.568633799260915,50.589341721028475,50.59570556072278,50.563906920546344,50.56598282004199,50.5639772382602,50.56521690538287,50.563827543371936,50.56383825927606,50.56383066797341,50.56384248180153,50.563808384034495,50.56380391009035,50.56381987906971,50.56379778596168,50.56379255656013,50.56378613785388,50.56381039741723,50.563779167087844,50.56377480237985,50.563770111818414,50.56376337831519,78.29930234008461,78.61986595494386,74.63528639336229,81.91217085086765,71.09159588529235,70.82886612424466,66.85911538361782,67.5069692064653,67.996325970116,67.57788032680514,65.77501972017706,65.92820332429731,66.60546440671601,65.12347396541219,64.27689212525556,65.70735896768083,62.76790111526254,61.86824450276641,61.0958112544008,62.93590659369537,60.46865355975065,59.585430943071444,57.97035546550269,57.99721802226046,58.215101907880005,57.765270459574054,58.17707402935172,58.68754228619354,56.79602169981007,57.58311240385795,57.238326462162306,56.79654840883723,56.57841239747243,56.15068126346893,55.338472901595146,55.124042071239046,53.75105253796118,57.66065177731076,53.06609739723916,53.18588060280548,53.27428530324899,52.863642961192916,53.408427612755105,52.760220643012616,52.598412691576925,52.38329308680384,52.847075080524554,52.24819784598577,52.1261484797995,52.118721973970594,51.90520361814791,51.72307171763727,51.565041435977804,52.215034112709304,51.46079573419285,51.36240409189585,51.68666711207507,51.20948983040182,51.16839902950479,51.07858581283247],"feasible_probability":0.3345086878466239,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.296875,"counts":{"010101010101":1,"010101010110":6,"010101011001":20,"010101011010":25,"010101100110":4,"010101101001":10,"010101101010":5,"010110010101":4,"010110010110":1,"010110011001":8,"010110011010":27,"010110100101":10,"010110100110":24,"010110101001":47,"010110101010":13,"011001010110":5,"011001011001":12,"011001011010":17,"011001100110":3,"011001101001":5,"011001101010":1,"011010010101":3,"011010011001":13,"011010011010":27,"011010100101":2,"011010100110":25,"011010101001":39,"011010101010":17,"100101010110":2,"100101011001":12,"100101011010":2,"100101100101":1,"100101100110":1,"100101101001":8,"100101101010":1,"100110011001":9,"100110100101":3,"100110100110":1,"100110101001":32,"100110101010":2,"101001010101":1,"101001010110":3,"101001011001":6,"101001100101":4,"101001101001":2,"101010010101":3,"101010010110":1,"101010011001":3,"101010100101":2,"101010100110":3,"101010101001":34,"101010101010":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.2540054019918898},"metrics":{"exact_objective":25,"optimal_count":2,"combinations":64,"optimal_probability":0.18289200059964045,"feasible_probability":0.3345086878466239,"uniform_optimal_probability":0.03125,"uniform_feasible_probability":0.0625,"shots_for_95_percent":15,"hit_curve":[{"shots":8,"quantum":0.8012826908418991,"uniform":0.2243001202577943},{"shots":16,"quantum":0.9605114310409637,"uniform":0.3982896965679276},{"shots":32,"quantum":0.9984406529215675,"uniform":0.6379447107436834},{"shots":64,"quantum":0.999997568436689,"uniform":0.8689159675215249},{"shots":128,"quantum":0.9999999999940875,"uniform":0.9828169764291821},{"shots":512,"quantum":1.0,"uniform":0.9999999128237179}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":13,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":25,"preference_cost":16,"change_cost":9,"changed_tasks":4,"max_start_shift":5,"choices":[1,1,1,1,0,0],"schedule":[{"task":"t0","resource":"r1","start":5,"end":6},{"task":"t1","resource":"r0","start":6,"end":7},{"task":"t2","resource":"r0","start":2,"end":3},{"task":"t3","resource":"r0","start":7,"end":8},{"task":"t4","resource":"r0","start":1,"end":2},{"task":"t5","resource":"r0","start":3,"end":4}]},"dual_bound":25.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":13,"runtime_seconds":0.0012901910085929558},"exact":{"status":"optimal","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":8,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":10,"task":"t5","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true}],"bits":[1,0,0,1,0,1,0,1,1,0,1,0],"qubo_energy":25},"combinations":64,"feasible_count":4,"runtime_seconds":0.0007505779940402135},"greedy":{"status":"dead_end","best":null,"runtime_seconds":7.805007044225931e-06},"resources":{"full":{"depth":27,"operations":{"RX":30,"I":12,"RZ":31,"CNOT":44,"CRY":6,"X":6},"cnot":44,"cry":6},"auto":{"depth":25,"operations":{"RX":30,"I":12,"RZ":25,"CNOT":32,"CRY":6,"X":6},"cnot":32,"cry":6}},"phase_max_probability_error":8.326672684688674e-17,"samples":[{"shots":8,"quantum_objective":25,"uniform_objective":null},{"shots":16,"quantum_objective":28,"uniform_objective":28},{"shots":32,"quantum_objective":25,"uniform_objective":25},{"shots":64,"quantum_objective":25,"uniform_objective":25},{"shots":128,"quantum_objective":25,"uniform_objective":25},{"shots":512,"quantum_objective":25,"uniform_objective":25}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[10,2],"max_component_qubits":10,"component_to_original":[[0,1,2,3,4,5,6,7,10,11],[8,9]],"components":[{"qubits":10,"penalty":26,"objective_bound":25,"offset":130,"linear":[-19,-20,-23,-21,-24,-21,-22,-24,-22,-22],"quadratic":[[0,1,52],[0,2,26],[0,4,26],[1,2,26],[1,3,26],[1,9,26],[2,3,52],[2,4,26],[4,5,52],[5,6,26],[6,7,52],[8,9,52]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r1","start":5,"cost":7},{"index":1,"task":"t0","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":3},{"index":3,"task":"t1","resource":"r0","start":6,"cost":5},{"index":4,"task":"t2","resource":"r1","start":5,"cost":2},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":2,"cost":4},{"index":7,"task":"t3","resource":"r0","start":7,"cost":2},{"index":8,"task":"t5","resource":"r0","start":3,"cost":4},{"index":9,"task":"t5","resource":"r1","start":7,"cost":4}],"conflicts":[{"i":0,"j":2,"reasons":["resource","group","precedence"]},{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":9,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource","group"]}]},{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-4,-1],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r0","start":1,"cost":2},{"index":1,"task":"t4","resource":"r0","start":5,"cost":5}],"conflicts":[]}]},"diagnostic_seconds":0.033634252002229914}
+{"input":{"file":"evaluation-n6-d2.json","split":"evaluation","tasks":6,"density_parameter":2,"data_seed":20260984,"sha256":"9598e15a813425247ee3059d68f9f72d4ed0c80935040d96bc8b959549c5b482"},"model":{"qubits":12,"penalty":28,"objective_bound":27,"offset":168,"linear":[-25,-23,-26,-23,-28,-27,-25,-20,-24,-23,-28,-25],"quadratic":[[0,1,56],[0,6,28],[0,8,28],[0,10,28],[2,3,56],[2,5,28],[2,9,28],[3,4,28],[3,7,28],[3,11,28],[4,5,56],[4,7,28],[4,11,28],[5,9,28],[6,7,56],[6,8,28],[6,10,28],[7,11,28],[8,9,56],[8,10,28],[10,11,56]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":5},{"index":2,"task":"t1","resource":"r0","start":1,"cost":2},{"index":3,"task":"t1","resource":"r0","start":2,"cost":5},{"index":4,"task":"t2","resource":"r0","start":2,"cost":0},{"index":5,"task":"t2","resource":"r0","start":1,"cost":1},{"index":6,"task":"t3","resource":"r0","start":3,"cost":3},{"index":7,"task":"t3","resource":"r0","start":2,"cost":8},{"index":8,"task":"t4","resource":"r0","start":3,"cost":4},{"index":9,"task":"t4","resource":"r0","start":1,"cost":5},{"index":10,"task":"t5","resource":"r0","start":3,"cost":0},{"index":11,"task":"t5","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":0,"j":10,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":7,"reasons":["resource"]},{"i":3,"j":11,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":4,"j":11,"reasons":["resource"]},{"i":5,"j":9,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":6,"j":10,"reasons":["resource"]},{"i":7,"j":11,"reasons":["resource"]},{"i":8,"j":10,"reasons":["resource","group"]}]},"quantum":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":15,"violation_count":2,"violations":[{"kind":"conflict","tasks":["t1","t4"],"variables":[2,9],"reasons":["resource"]},{"kind":"conflict","tasks":["t3","t5"],"variables":[6,10],"reasons":["resource"]}],"schedule":[{"variable":2,"task":"t1","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":10,"task":"t5","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true}],"bits":[0,1,1,0,1,0,1,0,0,1,1,0],"qubo_energy":71},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.2705648154388776,1.6637730704601168],"expected_energy":123.18597516826966,"initial_expected_energy":124.96176464345976,"history":[124.96176464345976,127.8638110852298,124.62148673925839,124.85509150706025,124.85702782549048,124.73198111161722,124.66934062607838,124.5712587899339,124.50400410850463,124.50695157803476,124.49590493306167,124.48992184554105,124.46825623005182,124.52391184945103,124.49324209034587,124.46963066722778,124.46212843633766,124.45407312552685,124.46660110957369,124.44083829290308,124.42890246566387,124.4070983172098,124.36432374263975,124.48908497277682,124.31232550593857,124.28405352771547,124.28308776700482,124.41296258574016,124.28767166227034,124.22926293373422,124.15489440411307,124.1715152702737,124.12327275454265,124.09227542274382,124.02977042545974,123.9085558152598,123.69461919494312,124.18216713141473,124.92833363883587,123.61820157394585,123.58827227775043,124.22384546040195,123.44394915361896,123.41349926148749,123.35378419546929,123.27645562405999,123.63203343365441,123.24016609519123,123.25916222217151,123.28193733123292,123.23085403150637,123.22893991202004,123.23767588293147,123.22157864994372,123.20881177987509,123.20019628986523,123.18597516826966,123.22017768994397,123.20902550025886,123.18971173078191,130.0626452337574,125.76998405971264,124.50132631359477,126.72068674181875,125.6055923248243,124.7113032692196,124.45689155198156,124.42408824242104,124.48514959448832,124.40874964364919,124.42664297205073,124.3949503715411,124.38619553000757,124.37507509430233,124.35370571058891,124.33519503023624,124.28545483136871,124.4014283157968,124.25582775437431,124.3092576800293,124.25151868094453,124.2343146613957,124.22090492723954,124.27470061855188,124.20690690452687,124.19030787058998,124.1594865378621,124.1755625547095,124.14804530175243,124.12774816575367,124.08253817815141,123.99472018352671,123.87162446998968,125.80842881305675,125.40927408263866,123.91556122802265,123.97551336121775,123.89937594182763,123.83230140574977,123.84087433552813,123.82711355686337,123.81809400084387,123.80171369118125,123.77155227886058,123.74098937701694,123.74535661920186,123.79542734119181,123.75910333488325,123.71948791704017,123.72961793356252,123.71294828967227,123.70735293883733,123.69711868008227,123.67637123674614,123.65288681027022,123.77385375786888,123.74491140162615,123.6466359583788,123.65285034401839,123.64967691650673],"feasible_probability":0.0,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.0,"counts":{"010101010101":2,"010101010110":14,"010101011001":13,"010101011010":8,"010101100101":17,"010101100110":4,"010101101001":1,"010101101010":17,"010110010101":5,"010110010110":9,"010110011001":1,"010110011010":11,"010110100101":10,"010110100110":12,"010110101001":5,"010110101010":6,"011001010101":8,"011001010110":13,"011001011001":15,"011001011010":7,"011001100101":1,"011001100110":12,"011001101001":14,"011001101010":12,"011010010101":9,"011010010110":6,"011010011001":10,"011010011010":8,"011010100101":5,"011010100110":7,"011010101001":4,"011010101010":1,"100101010101":1,"100101010110":8,"100101011001":1,"100101011010":9,"100101100101":10,"100101100110":13,"100101101001":7,"100101101010":8,"100110010101":12,"100110010110":8,"100110011001":12,"100110011010":2,"100110100101":5,"100110100110":5,"100110101001":12,"100110101010":8,"101001010101":10,"101001010110":6,"101001011001":9,"101001011010":9,"101001100101":12,"101001100110":5,"101001101001":4,"101001101010":8,"101010010101":11,"101010010110":10,"101010011010":12,"101010100101":11,"101010100110":3,"101010101001":3,"101010101010":11},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.29949891300930176},"metrics":{"exact_objective":null,"optimal_count":0,"combinations":64,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":13,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":21,"runtime_seconds":0.0013372789981076494},"exact":{"status":"infeasible","best":null,"combinations":64,"feasible_count":0,"runtime_seconds":0.0006637119950028136},"greedy":{"status":"dead_end","best":null,"runtime_seconds":1.4402990927919745e-05},"resources":{"full":{"depth":34,"operations":{"RX":30,"I":12,"RZ":39,"CNOT":60,"CRY":6,"X":6},"cnot":60,"cry":6},"auto":{"depth":26,"operations":{"RX":30,"I":12,"RZ":33,"CNOT":48,"CRY":6,"X":6},"cnot":48,"cry":6}},"phase_max_probability_error":2.7755575615628914e-17,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":null,"uniform_objective":null},{"shots":64,"quantum_objective":null,"uniform_objective":null},{"shots":128,"quantum_objective":null,"uniform_objective":null},{"shots":512,"quantum_objective":null,"uniform_objective":null}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[12],"max_component_qubits":12,"component_to_original":[[0,1,2,3,4,5,6,7,8,9,10,11]],"components":[{"qubits":12,"penalty":28,"objective_bound":27,"offset":168,"linear":[-25,-23,-26,-23,-28,-27,-25,-20,-24,-23,-28,-25],"quadratic":[[0,1,56],[0,6,28],[0,8,28],[0,10,28],[2,3,56],[2,5,28],[2,9,28],[3,4,28],[3,7,28],[3,11,28],[4,5,56],[4,7,28],[4,11,28],[5,9,28],[6,7,56],[6,8,28],[6,10,28],[7,11,28],[8,9,56],[8,10,28],[10,11,56]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":5},{"index":2,"task":"t1","resource":"r0","start":1,"cost":2},{"index":3,"task":"t1","resource":"r0","start":2,"cost":5},{"index":4,"task":"t2","resource":"r0","start":2,"cost":0},{"index":5,"task":"t2","resource":"r0","start":1,"cost":1},{"index":6,"task":"t3","resource":"r0","start":3,"cost":3},{"index":7,"task":"t3","resource":"r0","start":2,"cost":8},{"index":8,"task":"t4","resource":"r0","start":3,"cost":4},{"index":9,"task":"t4","resource":"r0","start":1,"cost":5},{"index":10,"task":"t5","resource":"r0","start":3,"cost":0},{"index":11,"task":"t5","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":0,"j":10,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":7,"reasons":["resource"]},{"i":3,"j":11,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":4,"j":11,"reasons":["resource"]},{"i":5,"j":9,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":6,"j":10,"reasons":["resource"]},{"i":7,"j":11,"reasons":["resource"]},{"i":8,"j":10,"reasons":["resource","group"]}]}]},"diagnostic_seconds":0.03262463001010474}
+{"input":{"file":"evaluation-n6-d2.json","split":"evaluation","tasks":6,"density_parameter":2,"data_seed":20260984,"sha256":"9598e15a813425247ee3059d68f9f72d4ed0c80935040d96bc8b959549c5b482"},"model":{"qubits":12,"penalty":28,"objective_bound":27,"offset":168,"linear":[-25,-23,-26,-23,-28,-27,-25,-20,-24,-23,-28,-25],"quadratic":[[0,1,56],[0,6,28],[0,8,28],[0,10,28],[2,3,56],[2,5,28],[2,9,28],[3,4,28],[3,7,28],[3,11,28],[4,5,56],[4,7,28],[4,11,28],[5,9,28],[6,7,56],[6,8,28],[6,10,28],[7,11,28],[8,9,56],[8,10,28],[10,11,56]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":5},{"index":2,"task":"t1","resource":"r0","start":1,"cost":2},{"index":3,"task":"t1","resource":"r0","start":2,"cost":5},{"index":4,"task":"t2","resource":"r0","start":2,"cost":0},{"index":5,"task":"t2","resource":"r0","start":1,"cost":1},{"index":6,"task":"t3","resource":"r0","start":3,"cost":3},{"index":7,"task":"t3","resource":"r0","start":2,"cost":8},{"index":8,"task":"t4","resource":"r0","start":3,"cost":4},{"index":9,"task":"t4","resource":"r0","start":1,"cost":5},{"index":10,"task":"t5","resource":"r0","start":3,"cost":0},{"index":11,"task":"t5","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":0,"j":10,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":7,"reasons":["resource"]},{"i":3,"j":11,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":4,"j":11,"reasons":["resource"]},{"i":5,"j":9,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":6,"j":10,"reasons":["resource"]},{"i":7,"j":11,"reasons":["resource"]},{"i":8,"j":10,"reasons":["resource","group"]}]},"quantum":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":15,"violation_count":2,"violations":[{"kind":"conflict","tasks":["t1","t4"],"variables":[2,9],"reasons":["resource"]},{"kind":"conflict","tasks":["t3","t5"],"variables":[6,10],"reasons":["resource"]}],"schedule":[{"variable":2,"task":"t1","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":10,"task":"t5","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true}],"bits":[0,1,1,0,1,0,1,0,0,1,1,0],"qubo_energy":71},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.2254648750299513,0.8672189192168824],"expected_energy":123.67736244674485,"initial_expected_energy":131.1129318188754,"history":[131.1129318188754,126.28355740474888,125.67173528895245,126.7818480825626,129.3476129185844,125.25977000471313,125.2863740169846,125.11858868151404,124.87349127446303,124.55790543491608,124.49459160120827,124.50579606250112,124.58610647755204,124.47987742730471,124.48470835181212,124.47790385137,124.47762109514329,124.48109228964556,124.47779206944116,124.47460936462655,124.47026794847682,124.47687870935533,124.46594117584182,124.4609550260429,124.45136791482423,124.42985906370019,124.35743418819726,124.90034922739937,124.55198457924303,124.42869283724933,124.34678879030685,124.34844324335941,124.33919352121964,124.33382394443144,124.34226187962699,124.32120651357819,124.31143671974107,124.28758927921278,124.23660693522982,124.14405101062127,123.85539657147346,129.408806598791,126.41165154254024,123.79686296533725,124.67537301408524,123.90712279676963,123.8614465651664,123.7879093072337,123.78622404736977,123.77806314629021,123.76250187148003,123.7340350565841,123.68966692995673,124.20003668112467,123.94953818557087,123.71178880508411,123.68641240298423,123.71108465286252,123.67996364523337,123.67736244674485,126.32456024961382,125.73512086987088,125.66096704260627,124.5004830089847,126.50280944875828,125.77569468300064,124.72301702416271,124.5774238212968,124.64384953150758,124.50226439772511,124.53387389039692,124.5161482360344,124.50027831430614,124.50045985865444,124.5008994007383,124.49968147882919,124.49998931528943,124.49974694467022,124.49970258222014,124.49966331817672,124.49964400623037,124.49964798754996,124.49963354445131,124.49963041653962,124.49964318164119,124.49961973135468,124.49960939537118,124.49958850933062,124.49954603608178,124.49947283390165,124.49932208205396,124.49875090813934,124.50243064177066,124.50515661287984,124.49841203873162,124.49833588918402,124.49802328118128,124.49729634979496,124.49508557742023,124.4891964960934,124.49370614829297,124.49023213326967,124.48833280862878,124.4953540898077,124.48577205195637,124.48154730939206,124.48076291804553,124.47715771685502,124.47344049537527,124.46514117700114,124.44023022277106,124.39173326537261,124.44055225879737,124.53808217374153,124.38337073449347,124.328652110039,124.28314602058802,124.13467340454568,124.32399509933661,124.22920673076008],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"010101010101":11,"010101010110":11,"010101011001":9,"010101011010":15,"010101100101":9,"010101101001":9,"010101101010":11,"010110010101":4,"010110010110":3,"010110011001":8,"010110011010":11,"010110100101":11,"010110100110":15,"010110101001":4,"010110101010":5,"011001010101":6,"011001010110":14,"011001011001":8,"011001011010":7,"011001100101":1,"011001100110":17,"011001101001":4,"011001101010":19,"011010010101":7,"011010010110":10,"011010011001":6,"011010011010":14,"011010100101":4,"011010100110":2,"011010101001":8,"011010101010":9,"100101010101":6,"100101010110":3,"100101011001":12,"100101011010":10,"100101100101":7,"100101100110":13,"100101101001":8,"100101101010":5,"100110010101":7,"100110010110":9,"100110011001":7,"100110011010":2,"100110100101":10,"100110100110":13,"100110101001":7,"100110101010":7,"101001010101":7,"101001010110":7,"101001011001":7,"101001011010":7,"101001100101":9,"101001100110":2,"101001101001":11,"101001101010":6,"101010010101":4,"101010011001":13,"101010011010":12,"101010100101":5,"101010100110":10,"101010101001":11,"101010101010":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.2955925109999953},"metrics":{"exact_objective":null,"optimal_count":0,"combinations":64,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":13,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":21,"runtime_seconds":0.0013372789981076494},"exact":{"status":"infeasible","best":null,"combinations":64,"feasible_count":0,"runtime_seconds":0.0006637119950028136},"greedy":{"status":"dead_end","best":null,"runtime_seconds":1.4402990927919745e-05},"resources":{"full":{"depth":34,"operations":{"RX":30,"I":12,"RZ":39,"CNOT":60,"CRY":6,"X":6},"cnot":60,"cry":6},"auto":{"depth":26,"operations":{"RX":30,"I":12,"RZ":33,"CNOT":48,"CRY":6,"X":6},"cnot":48,"cry":6}},"phase_max_probability_error":4.163336342344337e-17,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":null,"uniform_objective":null},{"shots":64,"quantum_objective":null,"uniform_objective":null},{"shots":128,"quantum_objective":null,"uniform_objective":null},{"shots":512,"quantum_objective":null,"uniform_objective":null}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[12],"max_component_qubits":12,"component_to_original":[[0,1,2,3,4,5,6,7,8,9,10,11]],"components":[{"qubits":12,"penalty":28,"objective_bound":27,"offset":168,"linear":[-25,-23,-26,-23,-28,-27,-25,-20,-24,-23,-28,-25],"quadratic":[[0,1,56],[0,6,28],[0,8,28],[0,10,28],[2,3,56],[2,5,28],[2,9,28],[3,4,28],[3,7,28],[3,11,28],[4,5,56],[4,7,28],[4,11,28],[5,9,28],[6,7,56],[6,8,28],[6,10,28],[7,11,28],[8,9,56],[8,10,28],[10,11,56]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":5},{"index":2,"task":"t1","resource":"r0","start":1,"cost":2},{"index":3,"task":"t1","resource":"r0","start":2,"cost":5},{"index":4,"task":"t2","resource":"r0","start":2,"cost":0},{"index":5,"task":"t2","resource":"r0","start":1,"cost":1},{"index":6,"task":"t3","resource":"r0","start":3,"cost":3},{"index":7,"task":"t3","resource":"r0","start":2,"cost":8},{"index":8,"task":"t4","resource":"r0","start":3,"cost":4},{"index":9,"task":"t4","resource":"r0","start":1,"cost":5},{"index":10,"task":"t5","resource":"r0","start":3,"cost":0},{"index":11,"task":"t5","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":0,"j":10,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":7,"reasons":["resource"]},{"i":3,"j":11,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":4,"j":11,"reasons":["resource"]},{"i":5,"j":9,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":6,"j":10,"reasons":["resource"]},{"i":7,"j":11,"reasons":["resource"]},{"i":8,"j":10,"reasons":["resource","group"]}]}]},"diagnostic_seconds":0.034397972995066084}
+{"input":{"file":"evaluation-n6-d2.json","split":"evaluation","tasks":6,"density_parameter":2,"data_seed":20260984,"sha256":"9598e15a813425247ee3059d68f9f72d4ed0c80935040d96bc8b959549c5b482"},"model":{"qubits":12,"penalty":28,"objective_bound":27,"offset":168,"linear":[-25,-23,-26,-23,-28,-27,-25,-20,-24,-23,-28,-25],"quadratic":[[0,1,56],[0,6,28],[0,8,28],[0,10,28],[2,3,56],[2,5,28],[2,9,28],[3,4,28],[3,7,28],[3,11,28],[4,5,56],[4,7,28],[4,11,28],[5,9,28],[6,7,56],[6,8,28],[6,10,28],[7,11,28],[8,9,56],[8,10,28],[10,11,56]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":5},{"index":2,"task":"t1","resource":"r0","start":1,"cost":2},{"index":3,"task":"t1","resource":"r0","start":2,"cost":5},{"index":4,"task":"t2","resource":"r0","start":2,"cost":0},{"index":5,"task":"t2","resource":"r0","start":1,"cost":1},{"index":6,"task":"t3","resource":"r0","start":3,"cost":3},{"index":7,"task":"t3","resource":"r0","start":2,"cost":8},{"index":8,"task":"t4","resource":"r0","start":3,"cost":4},{"index":9,"task":"t4","resource":"r0","start":1,"cost":5},{"index":10,"task":"t5","resource":"r0","start":3,"cost":0},{"index":11,"task":"t5","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":0,"j":10,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":7,"reasons":["resource"]},{"i":3,"j":11,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":4,"j":11,"reasons":["resource"]},{"i":5,"j":9,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":6,"j":10,"reasons":["resource"]},{"i":7,"j":11,"reasons":["resource"]},{"i":8,"j":10,"reasons":["resource","group"]}]},"quantum":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":15,"violation_count":2,"violations":[{"kind":"conflict","tasks":["t1","t4"],"variables":[2,9],"reasons":["resource"]},{"kind":"conflict","tasks":["t3","t5"],"variables":[6,10],"reasons":["resource"]}],"schedule":[{"variable":2,"task":"t1","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":10,"task":"t5","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true}],"bits":[0,1,1,0,1,0,1,0,0,1,1,0],"qubo_energy":71},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.128800203575426,2.436498038180782],"expected_energy":123.63605164104393,"initial_expected_energy":125.32614799148868,"history":[125.32614799148868,129.61657942039642,124.81347805768749,126.27941208600569,126.16189897350239,124.86981689651526,124.90612754033862,124.65362247718633,124.4961526981558,124.5731612699802,124.49112156151185,124.52590826946233,124.52020241862328,124.49819539205069,124.49147934057865,124.4902950761375,124.48995474436273,124.49115207461554,124.48864948716788,124.48740318738312,124.48489250264336,124.48009216169218,124.46461495042428,124.47321014943876,124.49429944563565,124.45743344628141,124.45076686555272,124.48158989659444,124.43945250683235,124.43263057971343,124.45740187775085,124.4238008657245,124.41629256873935,124.40220150876036,124.36838115852512,124.31612001571594,124.18724033068874,124.86337857468507,124.72493707661398,124.22479781460274,124.17407984700148,124.19026873742348,124.15566336560383,124.1435295821834,124.15783188198165,124.13577891578038,124.12795232031294,124.11222441722373,124.08056055928742,124.01360099712947,123.95602336161852,124.01851879095672,124.31531642467337,123.92590622658963,123.86884824305837,123.86744264245843,123.90426499555876,123.87114511498173,123.85238945028274,123.83801914484697,155.06453966595984,132.13729385793368,124.25258567034753,125.43858263391586,128.87018604597242,126.48683695711527,124.33100871709985,124.38302384234566,124.42399497718044,124.34553082650547,124.24969669804548,124.22174718682079,124.17591040340065,124.11896810155143,124.04793464003109,123.93112393663654,124.48587502149786,123.96046017188914,123.9357148914913,123.95416266383901,123.8995773455545,123.8880374025575,123.92317358602486,123.87212544188688,123.8573763336125,123.82986915503764,123.78169771616464,123.73037092142586,123.74472186879578,123.78724607051393,123.7508174089287,123.70528825804827,123.71511783361588,123.69716715405214,123.69069111670997,123.69066871391914,123.6793852990432,123.67035514906024,123.66417218045167,123.68573165711156,123.65806860807697,123.65593994621496,123.65159452993502,123.64604332841131,123.64280268885165,123.6377522144783,123.63987772078411,123.65019106230002,123.64038743690077,123.63961709552417,123.63820594013048,123.63759421775005,123.63763980394577,123.63755454852951,123.63741459216574,123.63716269035287,123.6370578046776,123.63643576345746,123.63639371745309,123.63605164104393],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"010101010101":16,"010101010110":11,"010101011001":4,"010101011010":16,"010101100101":5,"010101101001":8,"010101101010":9,"010110010101":2,"010110010110":4,"010110011001":7,"010110011010":11,"010110100101":10,"010110100110":18,"010110101001":6,"010110101010":3,"011001010101":15,"011001010110":17,"011001011001":7,"011001011010":5,"011001100101":2,"011001100110":18,"011001101001":11,"011001101010":14,"011010010101":8,"011010010110":4,"011010011001":11,"011010011010":7,"011010100101":8,"011010100110":2,"011010101001":11,"011010101010":9,"100101010101":6,"100101010110":2,"100101011001":7,"100101011010":9,"100101100101":3,"100101100110":16,"100101101001":5,"100101101010":2,"100110010101":5,"100110010110":6,"100110011001":8,"100110011010":1,"100110100101":7,"100110100110":15,"100110101001":7,"100110101010":10,"101001010101":6,"101001010110":11,"101001011001":13,"101001011010":7,"101001100101":6,"101001100110":2,"101001101001":8,"101001101010":6,"101010010101":11,"101010010110":3,"101010011001":10,"101010011010":7,"101010100101":9,"101010100110":11,"101010101001":12,"101010101010":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3084908849996282},"metrics":{"exact_objective":null,"optimal_count":0,"combinations":64,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":13,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":21,"runtime_seconds":0.0013372789981076494},"exact":{"status":"infeasible","best":null,"combinations":64,"feasible_count":0,"runtime_seconds":0.0006637119950028136},"greedy":{"status":"dead_end","best":null,"runtime_seconds":1.4402990927919745e-05},"resources":{"full":{"depth":34,"operations":{"RX":30,"I":12,"RZ":39,"CNOT":60,"CRY":6,"X":6},"cnot":60,"cry":6},"auto":{"depth":26,"operations":{"RX":30,"I":12,"RZ":33,"CNOT":48,"CRY":6,"X":6},"cnot":48,"cry":6}},"phase_max_probability_error":3.2959746043559335e-17,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":null,"uniform_objective":null},{"shots":64,"quantum_objective":null,"uniform_objective":null},{"shots":128,"quantum_objective":null,"uniform_objective":null},{"shots":512,"quantum_objective":null,"uniform_objective":null}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[12],"max_component_qubits":12,"component_to_original":[[0,1,2,3,4,5,6,7,8,9,10,11]],"components":[{"qubits":12,"penalty":28,"objective_bound":27,"offset":168,"linear":[-25,-23,-26,-23,-28,-27,-25,-20,-24,-23,-28,-25],"quadratic":[[0,1,56],[0,6,28],[0,8,28],[0,10,28],[2,3,56],[2,5,28],[2,9,28],[3,4,28],[3,7,28],[3,11,28],[4,5,56],[4,7,28],[4,11,28],[5,9,28],[6,7,56],[6,8,28],[6,10,28],[7,11,28],[8,9,56],[8,10,28],[10,11,56]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":5},{"index":2,"task":"t1","resource":"r0","start":1,"cost":2},{"index":3,"task":"t1","resource":"r0","start":2,"cost":5},{"index":4,"task":"t2","resource":"r0","start":2,"cost":0},{"index":5,"task":"t2","resource":"r0","start":1,"cost":1},{"index":6,"task":"t3","resource":"r0","start":3,"cost":3},{"index":7,"task":"t3","resource":"r0","start":2,"cost":8},{"index":8,"task":"t4","resource":"r0","start":3,"cost":4},{"index":9,"task":"t4","resource":"r0","start":1,"cost":5},{"index":10,"task":"t5","resource":"r0","start":3,"cost":0},{"index":11,"task":"t5","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":0,"j":10,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":7,"reasons":["resource"]},{"i":3,"j":11,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":4,"j":11,"reasons":["resource"]},{"i":5,"j":9,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":6,"j":10,"reasons":["resource"]},{"i":7,"j":11,"reasons":["resource"]},{"i":8,"j":10,"reasons":["resource","group"]}]}]},"diagnostic_seconds":0.03493550200073514}
+{"input":{"file":"evaluation-n6-d2.json","split":"evaluation","tasks":6,"density_parameter":2,"data_seed":20260984,"sha256":"9598e15a813425247ee3059d68f9f72d4ed0c80935040d96bc8b959549c5b482"},"model":{"qubits":12,"penalty":28,"objective_bound":27,"offset":168,"linear":[-25,-23,-26,-23,-28,-27,-25,-20,-24,-23,-28,-25],"quadratic":[[0,1,56],[0,6,28],[0,8,28],[0,10,28],[2,3,56],[2,5,28],[2,9,28],[3,4,28],[3,7,28],[3,11,28],[4,5,56],[4,7,28],[4,11,28],[5,9,28],[6,7,56],[6,8,28],[6,10,28],[7,11,28],[8,9,56],[8,10,28],[10,11,56]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":5},{"index":2,"task":"t1","resource":"r0","start":1,"cost":2},{"index":3,"task":"t1","resource":"r0","start":2,"cost":5},{"index":4,"task":"t2","resource":"r0","start":2,"cost":0},{"index":5,"task":"t2","resource":"r0","start":1,"cost":1},{"index":6,"task":"t3","resource":"r0","start":3,"cost":3},{"index":7,"task":"t3","resource":"r0","start":2,"cost":8},{"index":8,"task":"t4","resource":"r0","start":3,"cost":4},{"index":9,"task":"t4","resource":"r0","start":1,"cost":5},{"index":10,"task":"t5","resource":"r0","start":3,"cost":0},{"index":11,"task":"t5","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":0,"j":10,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":7,"reasons":["resource"]},{"i":3,"j":11,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":4,"j":11,"reasons":["resource"]},{"i":5,"j":9,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":6,"j":10,"reasons":["resource"]},{"i":7,"j":11,"reasons":["resource"]},{"i":8,"j":10,"reasons":["resource","group"]}]},"quantum":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":15,"violation_count":2,"violations":[{"kind":"conflict","tasks":["t1","t4"],"variables":[2,9],"reasons":["resource"]},{"kind":"conflict","tasks":["t3","t5"],"variables":[6,10],"reasons":["resource"]}],"schedule":[{"variable":2,"task":"t1","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":10,"task":"t5","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true}],"bits":[0,1,1,0,1,0,1,0,0,1,1,0],"qubo_energy":71},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.704196150161464,1.386068512652959],"expected_energy":90.13909320679868,"initial_expected_energy":128.41669570316796,"history":[128.41669570316796,132.11622716960386,130.25294992083758,141.4958801673269,130.74421324704616,129.33640226946403,129.000424155105,126.93944463229664,123.40333220615219,122.7281093057902,124.3258101014467,123.81731187174631,121.00733032000224,120.04864274896718,116.4099082875602,108.6790758601834,95.32318400205703,131.61564698740875,174.59626740965967,134.64431430593643,93.58886450553729,96.31615736333067,95.96996553753648,92.17592438692422,91.87325264269398,91.36483807265556,91.01233971593902,90.95819785622214,90.68640075693328,90.56550426166817,90.29094755806653,90.67203118256572,90.8871376530916,90.25956231263599,90.4924492557468,90.2517797139271,90.23256368815576,90.24062485398804,90.22117457247424,90.22363868265691,90.22400745386392,90.21672105610665,90.21210222113572,90.22663910830121,90.20873889500515,90.20304902686452,90.19792266772798,90.1964675921628,90.18474158247695,90.17664521379255,90.1685669049566,90.15736817379477,90.15357788919421,90.1394890677316,90.1454523127492,90.16864431503404,90.1403674453559,90.14006344667646,90.14051414390599,90.13909320679868,125.43520160349539,128.58774160189006,124.48648048807102,126.27445341362382,125.06535200931461,124.62181314955185,124.45625685823111,124.4813768525769,124.41955659237186,124.37600811032439,124.27278407587248,123.96703874914039,131.00412800723933,127.760514920645,123.87741730261499,124.78003937407577,123.99295702936446,124.0258489139419,123.95672338341373,123.86470721490487,123.89366568753535,123.86451153033008,123.8549143568257,123.84114818776986,123.80883242830504,123.75025445739254,123.68537771999232,124.18694038596819,124.04763259649735,123.66441949077932,123.70324398216385,123.68169726318803,123.66338819549989,123.67770730377521,123.65529445135147,123.6532799561476,123.64996975960636,123.64779151881072,123.64539488253237,123.64421240247734,123.65193044177472,123.64250905188713,123.6418938047509,123.6407862159967,123.63895482600299,123.63761609392947,123.64013915325124,123.6451021358503,123.6362507713436,123.63627084041386,123.63622010370725,123.63635889097884,123.63630761570296,123.63608883312678,123.63603478047175,123.6363029837029,123.63593880945224,123.63585201907881,123.63570194318271,123.63561631786948],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"010101010101":1,"010101010110":2,"010101011010":1,"010101100101":2,"010101101001":1,"010101101010":4,"010110010101":1,"010110010110":27,"010110011001":1,"010110011010":1,"010110100101":1,"010110100110":22,"010110101001":1,"010110101010":18,"011001010101":1,"011001010110":27,"011001011001":3,"011001011010":18,"011001100101":1,"011001101001":2,"011001101010":20,"011010010101":16,"011010010110":27,"011010011001":3,"011010011010":2,"011010100101":3,"011010100110":5,"011010101001":26,"011010101010":14,"100101010110":18,"100101100101":1,"100101100110":29,"100101101001":4,"100101101010":30,"100110010101":2,"100110010110":1,"100110011010":2,"100110100101":17,"100110100110":29,"100110101001":3,"100110101010":4,"101001010101":17,"101001010110":24,"101001011001":3,"101001011010":2,"101001100101":3,"101001100110":6,"101001101001":11,"101001101010":31,"101010010101":5,"101010010110":2,"101010011010":3,"101010100101":10,"101010101001":3,"101010101010":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3045785389986122},"metrics":{"exact_objective":null,"optimal_count":0,"combinations":64,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":13,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":21,"runtime_seconds":0.0013372789981076494},"exact":{"status":"infeasible","best":null,"combinations":64,"feasible_count":0,"runtime_seconds":0.0006637119950028136},"greedy":{"status":"dead_end","best":null,"runtime_seconds":1.4402990927919745e-05},"resources":{"full":{"depth":34,"operations":{"RX":30,"I":12,"RZ":39,"CNOT":60,"CRY":6,"X":6},"cnot":60,"cry":6},"auto":{"depth":26,"operations":{"RX":30,"I":12,"RZ":33,"CNOT":48,"CRY":6,"X":6},"cnot":48,"cry":6}},"phase_max_probability_error":6.245004513516506e-17,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":null,"uniform_objective":null},{"shots":64,"quantum_objective":null,"uniform_objective":null},{"shots":128,"quantum_objective":null,"uniform_objective":null},{"shots":512,"quantum_objective":null,"uniform_objective":null}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[12],"max_component_qubits":12,"component_to_original":[[0,1,2,3,4,5,6,7,8,9,10,11]],"components":[{"qubits":12,"penalty":28,"objective_bound":27,"offset":168,"linear":[-25,-23,-26,-23,-28,-27,-25,-20,-24,-23,-28,-25],"quadratic":[[0,1,56],[0,6,28],[0,8,28],[0,10,28],[2,3,56],[2,5,28],[2,9,28],[3,4,28],[3,7,28],[3,11,28],[4,5,56],[4,7,28],[4,11,28],[5,9,28],[6,7,56],[6,8,28],[6,10,28],[7,11,28],[8,9,56],[8,10,28],[10,11,56]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":5},{"index":2,"task":"t1","resource":"r0","start":1,"cost":2},{"index":3,"task":"t1","resource":"r0","start":2,"cost":5},{"index":4,"task":"t2","resource":"r0","start":2,"cost":0},{"index":5,"task":"t2","resource":"r0","start":1,"cost":1},{"index":6,"task":"t3","resource":"r0","start":3,"cost":3},{"index":7,"task":"t3","resource":"r0","start":2,"cost":8},{"index":8,"task":"t4","resource":"r0","start":3,"cost":4},{"index":9,"task":"t4","resource":"r0","start":1,"cost":5},{"index":10,"task":"t5","resource":"r0","start":3,"cost":0},{"index":11,"task":"t5","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":0,"j":10,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":7,"reasons":["resource"]},{"i":3,"j":11,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":4,"j":11,"reasons":["resource"]},{"i":5,"j":9,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":6,"j":10,"reasons":["resource"]},{"i":7,"j":11,"reasons":["resource"]},{"i":8,"j":10,"reasons":["resource","group"]}]}]},"diagnostic_seconds":0.038311682001221925}
+{"input":{"file":"evaluation-n6-d2.json","split":"evaluation","tasks":6,"density_parameter":2,"data_seed":20260984,"sha256":"9598e15a813425247ee3059d68f9f72d4ed0c80935040d96bc8b959549c5b482"},"model":{"qubits":12,"penalty":28,"objective_bound":27,"offset":168,"linear":[-25,-23,-26,-23,-28,-27,-25,-20,-24,-23,-28,-25],"quadratic":[[0,1,56],[0,6,28],[0,8,28],[0,10,28],[2,3,56],[2,5,28],[2,9,28],[3,4,28],[3,7,28],[3,11,28],[4,5,56],[4,7,28],[4,11,28],[5,9,28],[6,7,56],[6,8,28],[6,10,28],[7,11,28],[8,9,56],[8,10,28],[10,11,56]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":5},{"index":2,"task":"t1","resource":"r0","start":1,"cost":2},{"index":3,"task":"t1","resource":"r0","start":2,"cost":5},{"index":4,"task":"t2","resource":"r0","start":2,"cost":0},{"index":5,"task":"t2","resource":"r0","start":1,"cost":1},{"index":6,"task":"t3","resource":"r0","start":3,"cost":3},{"index":7,"task":"t3","resource":"r0","start":2,"cost":8},{"index":8,"task":"t4","resource":"r0","start":3,"cost":4},{"index":9,"task":"t4","resource":"r0","start":1,"cost":5},{"index":10,"task":"t5","resource":"r0","start":3,"cost":0},{"index":11,"task":"t5","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":0,"j":10,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":7,"reasons":["resource"]},{"i":3,"j":11,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":4,"j":11,"reasons":["resource"]},{"i":5,"j":9,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":6,"j":10,"reasons":["resource"]},{"i":7,"j":11,"reasons":["resource"]},{"i":8,"j":10,"reasons":["resource","group"]}]},"quantum":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":15,"violation_count":2,"violations":[{"kind":"conflict","tasks":["t1","t4"],"variables":[2,9],"reasons":["resource"]},{"kind":"conflict","tasks":["t3","t5"],"variables":[6,10],"reasons":["resource"]}],"schedule":[{"variable":2,"task":"t1","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":10,"task":"t5","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true}],"bits":[0,1,1,0,1,0,1,0,0,1,1,0],"qubo_energy":71},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.2447503622840244,3.244360949220566],"expected_energy":123.16575649191662,"initial_expected_energy":124.55997220517085,"history":[124.55997220517085,124.54667626551836,128.28195089366145,127.70710234899816,127.08453067103328,125.88218378125879,124.54570952928344,124.54305242461746,124.83912695458683,124.53773853997421,124.54504550449191,124.54608860815509,124.52330135219725,124.50458350845321,124.49932153365106,124.50110089325088,124.50052943193252,124.49950203091879,124.499328652624,124.49954717894283,124.49928894640983,124.49928854046945,124.49927588675268,124.49926506629525,124.49924549293782,124.49924579883543,124.4992978718349,124.49925797085157,124.49924627728237,124.49924661440221,124.49924405187973,124.49924384853229,124.49924840917075,124.49924185190413,124.49923878292599,124.49923487067052,124.49922903611824,124.49922082667503,124.49920997628428,124.49921200078899,124.49924234313056,124.49920432470569,124.49919860930387,124.4991913475943,124.49918110973631,124.49918198445789,124.49919400824466,124.49918165962278,124.49917749021165,124.49917515187347,124.49917224736657,124.4991692497406,124.49916329607426,124.49915162562621,124.49913309405896,124.49911082425079,124.49905185893262,124.49991583237076,124.49925083590223,124.49904322243057,125.51993103766468,129.23351436508747,124.63636503256087,124.17323404303016,128.62051484623854,127.908358941205,123.96409198778944,124.46931991437127,124.08544759362749,123.88301845579932,123.78153552282863,123.8495579096834,123.6968772016475,123.72577334207911,123.71408863420406,123.673665442188,123.67133010470636,123.69414782768105,123.67192276801326,123.65091731248914,123.61811215865679,123.61879571568603,123.59337226658087,123.56998525284683,123.52948440254089,123.51654741771716,123.93535076129557,123.5212147511578,123.41058851375008,123.38645819719149,123.4509785469923,123.37294465808537,123.35206982312704,123.33773617210636,123.44172865381763,123.32192293857362,123.29506298206377,123.27792639203713,123.29588990768264,123.26875620371993,123.25960113516771,123.24258116968821,123.21460166692185,123.1925810699369,123.21251011439767,123.30121098083711,123.2005069571114,123.17452825191847,123.17722693905226,123.17748303324336,123.17509142596026,123.1740412106071,123.17330502781591,123.17304724270537,123.17541338038515,123.17210998251296,123.17049017043588,123.16800905034839,123.16575649191662,123.16622919458048],"feasible_probability":0.0,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.0,"counts":{"010101010101":4,"010101010110":13,"010101011001":11,"010101011010":9,"010101100101":15,"010101100110":10,"010101101010":14,"010110010101":5,"010110010110":5,"010110011001":1,"010110011010":7,"010110100101":7,"010110100110":6,"010110101001":7,"010110101010":7,"011001010101":8,"011001010110":11,"011001011001":10,"011001011010":6,"011001100101":1,"011001100110":9,"011001101001":11,"011001101010":5,"011010010101":4,"011010010110":3,"011010011001":16,"011010011010":6,"011010100101":14,"011010100110":10,"011010101001":3,"011010101010":5,"100101010101":3,"100101010110":10,"100101011001":4,"100101011010":10,"100101100101":9,"100101100110":7,"100101101001":12,"100101101010":7,"100110010101":14,"100110010110":10,"100110011001":13,"100110011010":1,"100110100101":13,"100110100110":5,"100110101001":11,"100110101010":11,"101001010101":10,"101001010110":3,"101001011001":22,"101001011010":7,"101001100101":8,"101001100110":9,"101001101001":5,"101001101010":2,"101010010101":5,"101010010110":13,"101010011010":11,"101010100101":12,"101010100110":5,"101010101001":6,"101010101010":11},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.2973008650005795},"metrics":{"exact_objective":null,"optimal_count":0,"combinations":64,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":13,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":21,"runtime_seconds":0.0013372789981076494},"exact":{"status":"infeasible","best":null,"combinations":64,"feasible_count":0,"runtime_seconds":0.0006637119950028136},"greedy":{"status":"dead_end","best":null,"runtime_seconds":1.4402990927919745e-05},"resources":{"full":{"depth":34,"operations":{"RX":30,"I":12,"RZ":39,"CNOT":60,"CRY":6,"X":6},"cnot":60,"cry":6},"auto":{"depth":26,"operations":{"RX":30,"I":12,"RZ":33,"CNOT":48,"CRY":6,"X":6},"cnot":48,"cry":6}},"phase_max_probability_error":4.163336342344337e-17,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":null,"uniform_objective":null},{"shots":64,"quantum_objective":null,"uniform_objective":null},{"shots":128,"quantum_objective":null,"uniform_objective":null},{"shots":512,"quantum_objective":null,"uniform_objective":null}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[12],"max_component_qubits":12,"component_to_original":[[0,1,2,3,4,5,6,7,8,9,10,11]],"components":[{"qubits":12,"penalty":28,"objective_bound":27,"offset":168,"linear":[-25,-23,-26,-23,-28,-27,-25,-20,-24,-23,-28,-25],"quadratic":[[0,1,56],[0,6,28],[0,8,28],[0,10,28],[2,3,56],[2,5,28],[2,9,28],[3,4,28],[3,7,28],[3,11,28],[4,5,56],[4,7,28],[4,11,28],[5,9,28],[6,7,56],[6,8,28],[6,10,28],[7,11,28],[8,9,56],[8,10,28],[10,11,56]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":5},{"index":2,"task":"t1","resource":"r0","start":1,"cost":2},{"index":3,"task":"t1","resource":"r0","start":2,"cost":5},{"index":4,"task":"t2","resource":"r0","start":2,"cost":0},{"index":5,"task":"t2","resource":"r0","start":1,"cost":1},{"index":6,"task":"t3","resource":"r0","start":3,"cost":3},{"index":7,"task":"t3","resource":"r0","start":2,"cost":8},{"index":8,"task":"t4","resource":"r0","start":3,"cost":4},{"index":9,"task":"t4","resource":"r0","start":1,"cost":5},{"index":10,"task":"t5","resource":"r0","start":3,"cost":0},{"index":11,"task":"t5","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":0,"j":10,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":7,"reasons":["resource"]},{"i":3,"j":11,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":4,"j":11,"reasons":["resource"]},{"i":5,"j":9,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":6,"j":10,"reasons":["resource"]},{"i":7,"j":11,"reasons":["resource"]},{"i":8,"j":10,"reasons":["resource","group"]}]}]},"diagnostic_seconds":0.033784082988859154}
+{"input":{"file":"evaluation-n6-d2.json","split":"evaluation","tasks":6,"density_parameter":2,"data_seed":20260984,"sha256":"9598e15a813425247ee3059d68f9f72d4ed0c80935040d96bc8b959549c5b482"},"model":{"qubits":12,"penalty":28,"objective_bound":27,"offset":168,"linear":[-25,-23,-26,-23,-28,-27,-25,-20,-24,-23,-28,-25],"quadratic":[[0,1,56],[0,6,28],[0,8,28],[0,10,28],[2,3,56],[2,5,28],[2,9,28],[3,4,28],[3,7,28],[3,11,28],[4,5,56],[4,7,28],[4,11,28],[5,9,28],[6,7,56],[6,8,28],[6,10,28],[7,11,28],[8,9,56],[8,10,28],[10,11,56]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":5},{"index":2,"task":"t1","resource":"r0","start":1,"cost":2},{"index":3,"task":"t1","resource":"r0","start":2,"cost":5},{"index":4,"task":"t2","resource":"r0","start":2,"cost":0},{"index":5,"task":"t2","resource":"r0","start":1,"cost":1},{"index":6,"task":"t3","resource":"r0","start":3,"cost":3},{"index":7,"task":"t3","resource":"r0","start":2,"cost":8},{"index":8,"task":"t4","resource":"r0","start":3,"cost":4},{"index":9,"task":"t4","resource":"r0","start":1,"cost":5},{"index":10,"task":"t5","resource":"r0","start":3,"cost":0},{"index":11,"task":"t5","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":0,"j":10,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":7,"reasons":["resource"]},{"i":3,"j":11,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":4,"j":11,"reasons":["resource"]},{"i":5,"j":9,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":6,"j":10,"reasons":["resource"]},{"i":7,"j":11,"reasons":["resource"]},{"i":8,"j":10,"reasons":["resource","group"]}]},"quantum":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":15,"violation_count":2,"violations":[{"kind":"conflict","tasks":["t1","t4"],"variables":[2,9],"reasons":["resource"]},{"kind":"conflict","tasks":["t3","t5"],"variables":[6,10],"reasons":["resource"]}],"schedule":[{"variable":2,"task":"t1","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":10,"task":"t5","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true}],"bits":[0,1,1,0,1,0,1,0,0,1,1,0],"qubo_energy":71},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.6227203630166789,0.6589313033203905],"expected_energy":112.45136592505307,"initial_expected_energy":125.57699846966335,"history":[125.57699846966335,124.50100019284307,127.00994817676907,130.97824991779032,128.4722216556234,126.34707040375861,124.46627530881426,124.7299744143135,124.81102929073231,124.51772669254188,124.47972421846188,124.46140665924057,124.46759003926698,124.45180598436944,124.44205218771961,124.42179063045393,124.39077452151673,124.25419443584,124.49251778577712,124.31968317095468,124.25653865122278,124.27221964919036,124.22646526167986,124.20340451063825,124.31846696647625,124.15452268181403,124.11604081700474,124.05417182473899,123.9189882861284,123.74787931476708,124.18829196678604,124.08873596499937,123.72652227001076,123.71714382023052,123.70567961997308,123.70294479472564,123.75368400985393,123.68683510704184,123.67685949762874,123.67124697518433,123.67659030630419,123.66861111405736,123.66694873867706,123.66430640367649,123.65973309996448,123.65169828770912,123.65095609260408,123.6394184108358,123.68366091037585,123.65075668531807,123.63867186950024,123.6436384736931,123.6384288060304,123.63787094728715,123.63830937073378,123.63750218065485,123.63763707456926,123.63744833336109,123.63731291547569,123.6370484136184,128.8684815823736,145.04650788096177,121.54730369716849,126.18310626009996,119.44690985091094,118.99709013352174,148.54078533581512,113.54419744347108,132.67501013644744,113.3906551561114,112.83271344558725,115.8086960060497,112.95900094467586,113.05903359013203,112.56797692497578,112.56038525997315,112.53969520870331,112.52567746128315,112.52643010145002,112.50047142016436,112.51708514650053,112.50650115453311,112.50082492772074,112.49790567134193,112.49452567624726,112.50440203743374,112.49152323493226,112.48940461956556,112.48692304564608,112.48229214752382,112.47728324680969,112.47392066798724,112.46834443699672,112.4596393786903,112.58152220649237,112.50474628078378,112.50167460538195,112.4542064611276,112.4585252654985,112.45515134224266,112.45434237489616,112.45405085226291,112.4538746895184,112.45431732500765,112.45369152919417,112.45354402648445,112.45326601907848,112.45313167645715,112.45250280748122,112.45284355020246,112.45240497398932,112.45289646290567,112.45237728804832,112.45223023788895,112.45213619350588,112.45202923062688,112.45191680107075,112.45170515391162,112.45136592505307,112.45240960286037],"feasible_probability":0.0,"one_hot_probability":1.0000000000000004,"sampled_feasible_fraction":0.0,"counts":{"010101010110":6,"010101011001":2,"010101011010":5,"010101100101":2,"010101101010":2,"010110010101":27,"010110010110":24,"010110011001":7,"010110011010":2,"010110100101":8,"010110100110":7,"010110101001":18,"010110101010":16,"011001010101":6,"011001010110":10,"011001011001":18,"011001011010":20,"011001100101":2,"011001100110":1,"011001101001":3,"011001101010":3,"011010010101":17,"011010010110":3,"011010011001":20,"011010011010":2,"011010100101":1,"011010101001":23,"011010101010":2,"100101010101":22,"100101010110":15,"100101011001":8,"100101011010":2,"100101100101":6,"100101100110":2,"100101101001":23,"100101101010":10,"100110010101":25,"100110010110":3,"100110011001":1,"100110100101":20,"100110100110":4,"100110101001":17,"100110101010":4,"101001010101":23,"101001010110":4,"101001011001":18,"101001011010":3,"101001100101":2,"101001101001":22,"101001101010":4,"101010010101":7,"101010010110":2,"101010100101":2,"101010100110":1,"101010101001":4,"101010101010":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3036734789930051},"metrics":{"exact_objective":null,"optimal_count":0,"combinations":64,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":13,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":21,"runtime_seconds":0.0013372789981076494},"exact":{"status":"infeasible","best":null,"combinations":64,"feasible_count":0,"runtime_seconds":0.0006637119950028136},"greedy":{"status":"dead_end","best":null,"runtime_seconds":1.4402990927919745e-05},"resources":{"full":{"depth":34,"operations":{"RX":30,"I":12,"RZ":39,"CNOT":60,"CRY":6,"X":6},"cnot":60,"cry":6},"auto":{"depth":26,"operations":{"RX":30,"I":12,"RZ":33,"CNOT":48,"CRY":6,"X":6},"cnot":48,"cry":6}},"phase_max_probability_error":7.632783294297951e-17,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":null,"uniform_objective":null},{"shots":64,"quantum_objective":null,"uniform_objective":null},{"shots":128,"quantum_objective":null,"uniform_objective":null},{"shots":512,"quantum_objective":null,"uniform_objective":null}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[12],"max_component_qubits":12,"component_to_original":[[0,1,2,3,4,5,6,7,8,9,10,11]],"components":[{"qubits":12,"penalty":28,"objective_bound":27,"offset":168,"linear":[-25,-23,-26,-23,-28,-27,-25,-20,-24,-23,-28,-25],"quadratic":[[0,1,56],[0,6,28],[0,8,28],[0,10,28],[2,3,56],[2,5,28],[2,9,28],[3,4,28],[3,7,28],[3,11,28],[4,5,56],[4,7,28],[4,11,28],[5,9,28],[6,7,56],[6,8,28],[6,10,28],[7,11,28],[8,9,56],[8,10,28],[10,11,56]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":5},{"index":2,"task":"t1","resource":"r0","start":1,"cost":2},{"index":3,"task":"t1","resource":"r0","start":2,"cost":5},{"index":4,"task":"t2","resource":"r0","start":2,"cost":0},{"index":5,"task":"t2","resource":"r0","start":1,"cost":1},{"index":6,"task":"t3","resource":"r0","start":3,"cost":3},{"index":7,"task":"t3","resource":"r0","start":2,"cost":8},{"index":8,"task":"t4","resource":"r0","start":3,"cost":4},{"index":9,"task":"t4","resource":"r0","start":1,"cost":5},{"index":10,"task":"t5","resource":"r0","start":3,"cost":0},{"index":11,"task":"t5","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":0,"j":10,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":7,"reasons":["resource"]},{"i":3,"j":11,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":4,"j":11,"reasons":["resource"]},{"i":5,"j":9,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":6,"j":10,"reasons":["resource"]},{"i":7,"j":11,"reasons":["resource"]},{"i":8,"j":10,"reasons":["resource","group"]}]}]},"diagnostic_seconds":0.03560800099512562}
+{"input":{"file":"evaluation-n6-d2.json","split":"evaluation","tasks":6,"density_parameter":2,"data_seed":20260984,"sha256":"9598e15a813425247ee3059d68f9f72d4ed0c80935040d96bc8b959549c5b482"},"model":{"qubits":12,"penalty":28,"objective_bound":27,"offset":168,"linear":[-25,-23,-26,-23,-28,-27,-25,-20,-24,-23,-28,-25],"quadratic":[[0,1,56],[0,6,28],[0,8,28],[0,10,28],[2,3,56],[2,5,28],[2,9,28],[3,4,28],[3,7,28],[3,11,28],[4,5,56],[4,7,28],[4,11,28],[5,9,28],[6,7,56],[6,8,28],[6,10,28],[7,11,28],[8,9,56],[8,10,28],[10,11,56]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":5},{"index":2,"task":"t1","resource":"r0","start":1,"cost":2},{"index":3,"task":"t1","resource":"r0","start":2,"cost":5},{"index":4,"task":"t2","resource":"r0","start":2,"cost":0},{"index":5,"task":"t2","resource":"r0","start":1,"cost":1},{"index":6,"task":"t3","resource":"r0","start":3,"cost":3},{"index":7,"task":"t3","resource":"r0","start":2,"cost":8},{"index":8,"task":"t4","resource":"r0","start":3,"cost":4},{"index":9,"task":"t4","resource":"r0","start":1,"cost":5},{"index":10,"task":"t5","resource":"r0","start":3,"cost":0},{"index":11,"task":"t5","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":0,"j":10,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":7,"reasons":["resource"]},{"i":3,"j":11,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":4,"j":11,"reasons":["resource"]},{"i":5,"j":9,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":6,"j":10,"reasons":["resource"]},{"i":7,"j":11,"reasons":["resource"]},{"i":8,"j":10,"reasons":["resource","group"]}]},"quantum":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":15,"violation_count":2,"violations":[{"kind":"conflict","tasks":["t1","t4"],"variables":[2,9],"reasons":["resource"]},{"kind":"conflict","tasks":["t3","t5"],"variables":[6,10],"reasons":["resource"]}],"schedule":[{"variable":2,"task":"t1","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":10,"task":"t5","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true}],"bits":[0,1,1,0,1,0,1,0,0,1,1,0],"qubo_energy":71},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.1966746947397415,0.8634942117127048],"expected_energy":123.65386267954602,"initial_expected_energy":126.85581528924138,"history":[126.85581528924138,124.92158393273003,125.64007226625931,130.44921631003444,125.35885361340037,125.23512565571433,124.52870649832809,124.65966637126553,124.51344761290702,124.55264734855751,124.51078145566672,124.59393291169614,124.50455499559475,124.51163145364687,124.50177570632165,124.49988841426661,124.50006061875992,124.49994580758644,124.50055268398408,124.50000803377007,124.500014516123,124.49983531814405,124.49983186865119,124.4998247546333,124.49981899113706,124.49980924222302,124.49980144911288,124.49979066416141,124.49982882727116,124.49982105198913,124.49979631225074,124.49977828886583,124.4997755104871,124.49977006727883,124.49976708324827,124.49976009621307,124.4997549933252,124.49973998234992,124.49974008088489,124.49974356943135,124.49973804601429,124.4997478317861,124.49973048080766,124.49972518587836,124.49971827808031,124.49970426381306,124.49967805372546,124.49960949532596,124.49992074697089,124.49982057809792,124.49959413922517,124.49968409855174,124.49958951319289,124.49957299365629,124.49954689943418,124.49980425403508,124.499528489131,124.49951524788382,124.49950545183881,124.49968945853064,125.23873757020786,127.16787970524004,124.49715891159252,125.04387385912695,124.77782151086141,125.07277664816803,124.51134497628857,124.41168030887995,124.47229381832003,124.39071868295011,124.39089369657295,124.38852672882663,124.38455678922834,124.3785351518457,124.38203718725904,124.37028347990193,124.36096044307499,124.34306196074007,124.32795428396729,124.27848357202099,124.33600208142659,124.2626579889529,124.30560511594369,124.25897884043913,124.24467856680774,124.23354263513943,124.26578003116899,124.22186640998724,124.2078942060606,124.17881307809962,124.11713687341602,124.05183962338221,124.07762996999871,124.29298412344288,124.03694716568972,124.05960062568963,124.01369291554056,124.00928444774858,124.03062067777746,124.00052214698228,123.9834824216304,123.9497500850381,123.88393905684599,123.79573691495114,124.14457401462974,124.16382851400655,123.77862245186262,123.74155718969858,123.76546350957034,123.76034661542185,123.74191383272125,123.73432723093943,123.7231413100404,123.6991104692215,123.6616231448624,124.3809523290387,123.85121843266296,123.6553928062948,123.72939108947624,123.65386267954602],"feasible_probability":0.0,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.0,"counts":{"010101010101":8,"010101010110":10,"010101011001":6,"010101011010":20,"010101100101":5,"010101101001":5,"010101101010":5,"010110010101":3,"010110010110":1,"010110011001":10,"010110011010":12,"010110100101":8,"010110100110":14,"010110101001":4,"010110101010":2,"011001010101":5,"011001010110":14,"011001011001":4,"011001011010":7,"011001100101":1,"011001100110":20,"011001101001":16,"011001101010":12,"011010010101":6,"011010010110":4,"011010011001":16,"011010011010":12,"011010100101":8,"011010100110":1,"011010101001":8,"011010101010":6,"100101010101":7,"100101010110":5,"100101011001":8,"100101011010":11,"100101100101":3,"100101100110":17,"100101101001":4,"100101101010":5,"100110010101":3,"100110010110":13,"100110011001":9,"100110011010":3,"100110100101":4,"100110100110":12,"100110101001":10,"100110101010":10,"101001010101":9,"101001010110":5,"101001011001":9,"101001011010":9,"101001100101":12,"101001100110":5,"101001101001":6,"101001101010":6,"101010010101":15,"101010010110":2,"101010011001":7,"101010011010":10,"101010100101":10,"101010100110":14,"101010101001":11,"101010101010":5},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.31049920700024813},"metrics":{"exact_objective":null,"optimal_count":0,"combinations":64,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":13,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":21,"runtime_seconds":0.0013372789981076494},"exact":{"status":"infeasible","best":null,"combinations":64,"feasible_count":0,"runtime_seconds":0.0006637119950028136},"greedy":{"status":"dead_end","best":null,"runtime_seconds":1.4402990927919745e-05},"resources":{"full":{"depth":34,"operations":{"RX":30,"I":12,"RZ":39,"CNOT":60,"CRY":6,"X":6},"cnot":60,"cry":6},"auto":{"depth":26,"operations":{"RX":30,"I":12,"RZ":33,"CNOT":48,"CRY":6,"X":6},"cnot":48,"cry":6}},"phase_max_probability_error":2.42861286636753e-17,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":null,"uniform_objective":null},{"shots":64,"quantum_objective":null,"uniform_objective":null},{"shots":128,"quantum_objective":null,"uniform_objective":null},{"shots":512,"quantum_objective":null,"uniform_objective":null}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[12],"max_component_qubits":12,"component_to_original":[[0,1,2,3,4,5,6,7,8,9,10,11]],"components":[{"qubits":12,"penalty":28,"objective_bound":27,"offset":168,"linear":[-25,-23,-26,-23,-28,-27,-25,-20,-24,-23,-28,-25],"quadratic":[[0,1,56],[0,6,28],[0,8,28],[0,10,28],[2,3,56],[2,5,28],[2,9,28],[3,4,28],[3,7,28],[3,11,28],[4,5,56],[4,7,28],[4,11,28],[5,9,28],[6,7,56],[6,8,28],[6,10,28],[7,11,28],[8,9,56],[8,10,28],[10,11,56]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":5},{"index":2,"task":"t1","resource":"r0","start":1,"cost":2},{"index":3,"task":"t1","resource":"r0","start":2,"cost":5},{"index":4,"task":"t2","resource":"r0","start":2,"cost":0},{"index":5,"task":"t2","resource":"r0","start":1,"cost":1},{"index":6,"task":"t3","resource":"r0","start":3,"cost":3},{"index":7,"task":"t3","resource":"r0","start":2,"cost":8},{"index":8,"task":"t4","resource":"r0","start":3,"cost":4},{"index":9,"task":"t4","resource":"r0","start":1,"cost":5},{"index":10,"task":"t5","resource":"r0","start":3,"cost":0},{"index":11,"task":"t5","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":0,"j":10,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":7,"reasons":["resource"]},{"i":3,"j":11,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":4,"j":11,"reasons":["resource"]},{"i":5,"j":9,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":6,"j":10,"reasons":["resource"]},{"i":7,"j":11,"reasons":["resource"]},{"i":8,"j":10,"reasons":["resource","group"]}]}]},"diagnostic_seconds":0.03513902399572544}
+{"input":{"file":"evaluation-n6-d2.json","split":"evaluation","tasks":6,"density_parameter":2,"data_seed":20260984,"sha256":"9598e15a813425247ee3059d68f9f72d4ed0c80935040d96bc8b959549c5b482"},"model":{"qubits":12,"penalty":28,"objective_bound":27,"offset":168,"linear":[-25,-23,-26,-23,-28,-27,-25,-20,-24,-23,-28,-25],"quadratic":[[0,1,56],[0,6,28],[0,8,28],[0,10,28],[2,3,56],[2,5,28],[2,9,28],[3,4,28],[3,7,28],[3,11,28],[4,5,56],[4,7,28],[4,11,28],[5,9,28],[6,7,56],[6,8,28],[6,10,28],[7,11,28],[8,9,56],[8,10,28],[10,11,56]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":5},{"index":2,"task":"t1","resource":"r0","start":1,"cost":2},{"index":3,"task":"t1","resource":"r0","start":2,"cost":5},{"index":4,"task":"t2","resource":"r0","start":2,"cost":0},{"index":5,"task":"t2","resource":"r0","start":1,"cost":1},{"index":6,"task":"t3","resource":"r0","start":3,"cost":3},{"index":7,"task":"t3","resource":"r0","start":2,"cost":8},{"index":8,"task":"t4","resource":"r0","start":3,"cost":4},{"index":9,"task":"t4","resource":"r0","start":1,"cost":5},{"index":10,"task":"t5","resource":"r0","start":3,"cost":0},{"index":11,"task":"t5","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":0,"j":10,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":7,"reasons":["resource"]},{"i":3,"j":11,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":4,"j":11,"reasons":["resource"]},{"i":5,"j":9,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":6,"j":10,"reasons":["resource"]},{"i":7,"j":11,"reasons":["resource"]},{"i":8,"j":10,"reasons":["resource","group"]}]},"quantum":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":15,"violation_count":2,"violations":[{"kind":"conflict","tasks":["t1","t4"],"variables":[2,9],"reasons":["resource"]},{"kind":"conflict","tasks":["t3","t5"],"variables":[6,10],"reasons":["resource"]}],"schedule":[{"variable":2,"task":"t1","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":10,"task":"t5","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true}],"bits":[0,1,1,0,1,0,1,0,0,1,1,0],"qubo_energy":71},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.6905035104618447,2.956953115922788],"expected_energy":90.13002517157985,"initial_expected_energy":124.08953372809646,"history":[124.08953372809646,124.86602267071633,126.41067201335105,131.86429259719918,128.48568474290101,123.89459389402471,123.91196563842085,124.232439588,123.52280923313934,123.60275778741183,123.49991819045573,123.57084632698479,123.49231192954451,123.46825083051665,123.43115317847108,123.39607942152968,123.47623745255028,123.36945332805463,123.34600126658516,123.31330654963293,123.27388701989776,123.25492296371026,123.36348760939039,123.23188455733373,123.2229283534826,123.20742238193834,123.18574105939126,123.18185075195495,123.17179845994426,123.21049377531342,123.16625257659713,123.17727904697492,123.16588685945544,123.1747541379926,123.16383234377338,123.1681492119015,123.16351804481374,123.1633458163104,123.1632746539927,123.16331565945353,123.16331795692975,123.16330506144507,123.16325220211127,123.16330122669625,123.16324101126251,123.16324264193725,123.16323774920603,123.16323383753951,123.16323481151278,123.16323111510208,123.16322894301936,123.16322741978145,123.16323684841966,123.16322403425194,123.16322123289684,123.16321679047789,123.16320909553866,123.16321036231855,123.16321524190465,123.16320777391543,130.08386798461387,130.49426210288817,125.58103360404982,129.5499686869845,123.22187724734994,115.57412153610028,126.71999222972806,104.21787828058413,101.9104931889149,160.64187661380612,90.56034024724437,135.7113731792387,90.18829682533095,106.01606474738654,90.7608792728416,93.07657997665666,90.72989000836749,90.22668406707325,90.29168122644793,90.19125336632838,90.16945906888479,90.15538429083742,90.18666012184272,90.18042565073608,90.15608332987601,90.1543423862273,90.15375035003387,90.15918269967499,90.15312656423637,90.15145546425433,90.1500689655223,90.1498428273475,90.14876188130347,90.14774076986352,90.1458604953865,90.14307939434227,90.16218027439524,90.14115531411673,90.13933428148499,90.14339901115413,90.13715724807916,90.13643432374536,90.1350944317189,90.13303651764068,90.13486139575625,90.13657909636132,90.13323000722869,90.13253847124017,90.13355869887138,90.13207428935776,90.1318190283884,90.13145868682965,90.1309238563891,90.13129489625352,90.13199370973648,90.13085322629856,90.13057655519829,90.13021183035907,90.13002517157985,90.13012255299847],"feasible_probability":0.0,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.0,"counts":{"010101010101":1,"010101010110":3,"010101100101":1,"010101100110":4,"010101101010":4,"010110010101":2,"010110010110":20,"010110100101":4,"010110100110":25,"010110101001":1,"010110101010":12,"011001010101":1,"011001010110":21,"011001011001":4,"011001011010":24,"011001100101":1,"011001100110":2,"011001101001":3,"011001101010":23,"011010010101":23,"011010010110":21,"011010011001":3,"011010100101":2,"011010100110":6,"011010101001":13,"011010101010":41,"100101010101":2,"100101010110":22,"100101011010":1,"100101100101":1,"100101100110":26,"100101101001":1,"100101101010":21,"100110010101":6,"100110010110":3,"100110011001":1,"100110011010":3,"100110100101":15,"100110100110":29,"100110101001":2,"100110101010":2,"101001010101":16,"101001010110":23,"101001011001":2,"101001011010":1,"101001100101":1,"101001100110":4,"101001101001":18,"101001101010":24,"101010010101":3,"101010010110":1,"101010011010":4,"101010100101":12,"101010100110":1,"101010101001":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.29714077900280245},"metrics":{"exact_objective":null,"optimal_count":0,"combinations":64,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":13,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":21,"runtime_seconds":0.0013372789981076494},"exact":{"status":"infeasible","best":null,"combinations":64,"feasible_count":0,"runtime_seconds":0.0006637119950028136},"greedy":{"status":"dead_end","best":null,"runtime_seconds":1.4402990927919745e-05},"resources":{"full":{"depth":34,"operations":{"RX":30,"I":12,"RZ":39,"CNOT":60,"CRY":6,"X":6},"cnot":60,"cry":6},"auto":{"depth":26,"operations":{"RX":30,"I":12,"RZ":33,"CNOT":48,"CRY":6,"X":6},"cnot":48,"cry":6}},"phase_max_probability_error":6.938893903907228e-17,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":null,"uniform_objective":null},{"shots":64,"quantum_objective":null,"uniform_objective":null},{"shots":128,"quantum_objective":null,"uniform_objective":null},{"shots":512,"quantum_objective":null,"uniform_objective":null}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[12],"max_component_qubits":12,"component_to_original":[[0,1,2,3,4,5,6,7,8,9,10,11]],"components":[{"qubits":12,"penalty":28,"objective_bound":27,"offset":168,"linear":[-25,-23,-26,-23,-28,-27,-25,-20,-24,-23,-28,-25],"quadratic":[[0,1,56],[0,6,28],[0,8,28],[0,10,28],[2,3,56],[2,5,28],[2,9,28],[3,4,28],[3,7,28],[3,11,28],[4,5,56],[4,7,28],[4,11,28],[5,9,28],[6,7,56],[6,8,28],[6,10,28],[7,11,28],[8,9,56],[8,10,28],[10,11,56]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":5},{"index":2,"task":"t1","resource":"r0","start":1,"cost":2},{"index":3,"task":"t1","resource":"r0","start":2,"cost":5},{"index":4,"task":"t2","resource":"r0","start":2,"cost":0},{"index":5,"task":"t2","resource":"r0","start":1,"cost":1},{"index":6,"task":"t3","resource":"r0","start":3,"cost":3},{"index":7,"task":"t3","resource":"r0","start":2,"cost":8},{"index":8,"task":"t4","resource":"r0","start":3,"cost":4},{"index":9,"task":"t4","resource":"r0","start":1,"cost":5},{"index":10,"task":"t5","resource":"r0","start":3,"cost":0},{"index":11,"task":"t5","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":0,"j":10,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":7,"reasons":["resource"]},{"i":3,"j":11,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":4,"j":11,"reasons":["resource"]},{"i":5,"j":9,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":6,"j":10,"reasons":["resource"]},{"i":7,"j":11,"reasons":["resource"]},{"i":8,"j":10,"reasons":["resource","group"]}]}]},"diagnostic_seconds":0.034125555990613066}
+{"input":{"file":"evaluation-n6-d2.json","split":"evaluation","tasks":6,"density_parameter":2,"data_seed":20260984,"sha256":"9598e15a813425247ee3059d68f9f72d4ed0c80935040d96bc8b959549c5b482"},"model":{"qubits":12,"penalty":28,"objective_bound":27,"offset":168,"linear":[-25,-23,-26,-23,-28,-27,-25,-20,-24,-23,-28,-25],"quadratic":[[0,1,56],[0,6,28],[0,8,28],[0,10,28],[2,3,56],[2,5,28],[2,9,28],[3,4,28],[3,7,28],[3,11,28],[4,5,56],[4,7,28],[4,11,28],[5,9,28],[6,7,56],[6,8,28],[6,10,28],[7,11,28],[8,9,56],[8,10,28],[10,11,56]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":5},{"index":2,"task":"t1","resource":"r0","start":1,"cost":2},{"index":3,"task":"t1","resource":"r0","start":2,"cost":5},{"index":4,"task":"t2","resource":"r0","start":2,"cost":0},{"index":5,"task":"t2","resource":"r0","start":1,"cost":1},{"index":6,"task":"t3","resource":"r0","start":3,"cost":3},{"index":7,"task":"t3","resource":"r0","start":2,"cost":8},{"index":8,"task":"t4","resource":"r0","start":3,"cost":4},{"index":9,"task":"t4","resource":"r0","start":1,"cost":5},{"index":10,"task":"t5","resource":"r0","start":3,"cost":0},{"index":11,"task":"t5","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":0,"j":10,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":7,"reasons":["resource"]},{"i":3,"j":11,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":4,"j":11,"reasons":["resource"]},{"i":5,"j":9,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":6,"j":10,"reasons":["resource"]},{"i":7,"j":11,"reasons":["resource"]},{"i":8,"j":10,"reasons":["resource","group"]}]},"quantum":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":15,"violation_count":2,"violations":[{"kind":"conflict","tasks":["t1","t4"],"variables":[2,9],"reasons":["resource"]},{"kind":"conflict","tasks":["t3","t5"],"variables":[6,10],"reasons":["resource"]}],"schedule":[{"variable":2,"task":"t1","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":10,"task":"t5","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true}],"bits":[0,1,1,0,1,0,1,0,0,1,1,0],"qubo_energy":71},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.143986920781324,2.436033311518852],"expected_energy":123.63473829759063,"initial_expected_energy":128.37522103961402,"history":[128.37522103961402,124.71240362715264,128.49382965281683,127.46921447156353,131.4433205748093,125.4552198473433,123.8251106749259,125.24562122580627,124.00424533839823,124.13820358184098,123.66683020387947,124.03417589616502,123.68188222130742,123.6961855498195,123.64059715608768,123.6588368446925,123.6416716007541,123.64438830944836,123.64162790174545,123.64144777449953,123.64070178766949,123.6404772401855,123.64027603063099,123.64003599968842,123.64024865389437,123.6399523117143,123.63977289806346,123.639444144159,123.63912451047321,123.63838753427393,123.63805570988296,123.63743412548475,123.63695752222463,123.63629563680006,123.63676320999532,123.637529858116,123.63627262619372,123.63601765604757,123.63600021305773,123.63613186448687,123.63588768046839,123.63569849608959,123.63542357628157,123.63524098699259,123.63526774200425,123.63598761852317,123.63541501826951,123.63501268463328,123.63495432485212,123.63519024662988,123.63490779686816,123.63487508378647,123.63485055656275,123.63482000239698,123.6347760887451,123.63497414564182,123.63494214501827,123.63476596311988,123.63478769690661,123.63478122728802,147.0722040523196,132.3265533517045,124.13813556702628,129.5458277272324,129.04713164301404,125.0460188208981,124.04784803830853,124.60223817733056,123.90916254876339,123.98397313176862,124.07483775737307,123.865611389232,123.86914051208132,123.8589256899521,123.84678449079684,123.82508360535546,123.79646508296685,123.88544905760484,123.77911977284091,123.75851943340956,123.74186995843277,123.7535595065395,123.73337415023325,123.73221378628237,123.72214833703433,123.7134435318091,123.69824000609458,123.68186767333647,123.66215770674725,123.66165036763262,123.7057386446979,123.66264501611802,123.64945840491028,123.6442791661299,123.64691531747391,123.64319580361406,123.64032523565952,123.63907153474037,123.6387510529546,123.63620480002005,123.63579087418628,123.63492361216629,123.6440586195964,123.63712889376929,123.6350463915654,123.6397635235715,123.63513184170276,123.63537342547868,123.6348241969765,123.63479052115977,123.63478377155693,123.63485980903975,123.63476783752586,123.63476278452839,123.63475364029145,123.63473943841502,123.63474154045323,123.63476791773539,123.63474322924209,123.63473829759063],"feasible_probability":0.0,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.0,"counts":{"010101010101":5,"010101010110":9,"010101011001":7,"010101011010":10,"010101100101":6,"010101101001":6,"010101101010":9,"010110010101":3,"010110010110":2,"010110011001":13,"010110011010":10,"010110100101":2,"010110100110":15,"010110101001":8,"010110101010":1,"011001010101":12,"011001010110":8,"011001011001":10,"011001011010":9,"011001100101":2,"011001100110":12,"011001101001":5,"011001101010":10,"011010010101":6,"011010010110":5,"011010011001":9,"011010011010":9,"011010100101":9,"011010100110":1,"011010101001":5,"011010101010":6,"100101010101":5,"100101010110":3,"100101011001":7,"100101011010":12,"100101100101":9,"100101100110":12,"100101101001":9,"100101101010":4,"100110010101":15,"100110010110":11,"100110011001":12,"100110011010":3,"100110100101":10,"100110100110":16,"100110101001":11,"100110101010":12,"101001010101":12,"101001010110":3,"101001011001":6,"101001011010":5,"101001100101":10,"101001100110":2,"101001101001":8,"101001101010":8,"101010010101":11,"101010011001":11,"101010011010":19,"101010100101":11,"101010100110":15,"101010101001":13,"101010101010":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.301209523997386},"metrics":{"exact_objective":null,"optimal_count":0,"combinations":64,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":13,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":21,"runtime_seconds":0.0013372789981076494},"exact":{"status":"infeasible","best":null,"combinations":64,"feasible_count":0,"runtime_seconds":0.0006637119950028136},"greedy":{"status":"dead_end","best":null,"runtime_seconds":1.4402990927919745e-05},"resources":{"full":{"depth":34,"operations":{"RX":30,"I":12,"RZ":39,"CNOT":60,"CRY":6,"X":6},"cnot":60,"cry":6},"auto":{"depth":26,"operations":{"RX":30,"I":12,"RZ":33,"CNOT":48,"CRY":6,"X":6},"cnot":48,"cry":6}},"phase_max_probability_error":4.163336342344337e-17,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":null,"uniform_objective":null},{"shots":64,"quantum_objective":null,"uniform_objective":null},{"shots":128,"quantum_objective":null,"uniform_objective":null},{"shots":512,"quantum_objective":null,"uniform_objective":null}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[12],"max_component_qubits":12,"component_to_original":[[0,1,2,3,4,5,6,7,8,9,10,11]],"components":[{"qubits":12,"penalty":28,"objective_bound":27,"offset":168,"linear":[-25,-23,-26,-23,-28,-27,-25,-20,-24,-23,-28,-25],"quadratic":[[0,1,56],[0,6,28],[0,8,28],[0,10,28],[2,3,56],[2,5,28],[2,9,28],[3,4,28],[3,7,28],[3,11,28],[4,5,56],[4,7,28],[4,11,28],[5,9,28],[6,7,56],[6,8,28],[6,10,28],[7,11,28],[8,9,56],[8,10,28],[10,11,56]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":5},{"index":2,"task":"t1","resource":"r0","start":1,"cost":2},{"index":3,"task":"t1","resource":"r0","start":2,"cost":5},{"index":4,"task":"t2","resource":"r0","start":2,"cost":0},{"index":5,"task":"t2","resource":"r0","start":1,"cost":1},{"index":6,"task":"t3","resource":"r0","start":3,"cost":3},{"index":7,"task":"t3","resource":"r0","start":2,"cost":8},{"index":8,"task":"t4","resource":"r0","start":3,"cost":4},{"index":9,"task":"t4","resource":"r0","start":1,"cost":5},{"index":10,"task":"t5","resource":"r0","start":3,"cost":0},{"index":11,"task":"t5","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":0,"j":10,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":7,"reasons":["resource"]},{"i":3,"j":11,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":4,"j":11,"reasons":["resource"]},{"i":5,"j":9,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":6,"j":10,"reasons":["resource"]},{"i":7,"j":11,"reasons":["resource"]},{"i":8,"j":10,"reasons":["resource","group"]}]}]},"diagnostic_seconds":0.036511005004285835}
+{"input":{"file":"evaluation-n6-d2.json","split":"evaluation","tasks":6,"density_parameter":2,"data_seed":20260984,"sha256":"9598e15a813425247ee3059d68f9f72d4ed0c80935040d96bc8b959549c5b482"},"model":{"qubits":12,"penalty":28,"objective_bound":27,"offset":168,"linear":[-25,-23,-26,-23,-28,-27,-25,-20,-24,-23,-28,-25],"quadratic":[[0,1,56],[0,6,28],[0,8,28],[0,10,28],[2,3,56],[2,5,28],[2,9,28],[3,4,28],[3,7,28],[3,11,28],[4,5,56],[4,7,28],[4,11,28],[5,9,28],[6,7,56],[6,8,28],[6,10,28],[7,11,28],[8,9,56],[8,10,28],[10,11,56]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":5},{"index":2,"task":"t1","resource":"r0","start":1,"cost":2},{"index":3,"task":"t1","resource":"r0","start":2,"cost":5},{"index":4,"task":"t2","resource":"r0","start":2,"cost":0},{"index":5,"task":"t2","resource":"r0","start":1,"cost":1},{"index":6,"task":"t3","resource":"r0","start":3,"cost":3},{"index":7,"task":"t3","resource":"r0","start":2,"cost":8},{"index":8,"task":"t4","resource":"r0","start":3,"cost":4},{"index":9,"task":"t4","resource":"r0","start":1,"cost":5},{"index":10,"task":"t5","resource":"r0","start":3,"cost":0},{"index":11,"task":"t5","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":0,"j":10,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":7,"reasons":["resource"]},{"i":3,"j":11,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":4,"j":11,"reasons":["resource"]},{"i":5,"j":9,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":6,"j":10,"reasons":["resource"]},{"i":7,"j":11,"reasons":["resource"]},{"i":8,"j":10,"reasons":["resource","group"]}]},"quantum":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":15,"violation_count":2,"violations":[{"kind":"conflict","tasks":["t1","t4"],"variables":[2,9],"reasons":["resource"]},{"kind":"conflict","tasks":["t3","t5"],"variables":[6,10],"reasons":["resource"]}],"schedule":[{"variable":2,"task":"t1","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":10,"task":"t5","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":true}],"bits":[0,1,1,0,1,0,1,0,0,1,1,0],"qubo_energy":71},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.6919492840694026,1.3859815658893697],"expected_energy":90.12983059898099,"initial_expected_energy":91.84300145832822,"history":[91.84300145832822,108.1269732391201,176.9521669660319,147.17600955850017,151.63738693256175,101.6550977501796,91.67204542609662,97.28334218224609,91.46538220013093,92.18662777533319,92.41565046430634,91.76738165226382,90.95105308258742,90.71344036686668,90.8780193672427,90.65603894271723,90.61909721905081,90.56279572588105,90.48034560313062,90.34350174734897,90.21750697161713,90.1601573722536,91.36936959649086,90.81883124178627,90.16969300734618,90.15545192372787,90.17360506693845,90.16208854594163,90.16592100384543,90.16204728210934,90.14394408963435,90.1314507000494,90.13155126901884,90.13049712394125,90.13010188346433,90.12998567421442,90.13260486371675,90.12984996884377,90.13022785591752,90.12989732710118,90.12996817483258,90.12984214378798,90.1298319046914,90.1298453997185,90.12983417458373,90.12983426668039,90.12983159723457,90.12983123699,90.12983115588709,90.12983189824968,90.12983096774606,90.12983088527542,90.12983077253321,90.12983059898099,90.12983113729317,90.12983097416617,90.12983066753569,124.42899172464129,124.5333312514777,126.41601250259544,125.58041625687775,125.7064071820968,125.06721978731616,124.4132367510464,124.37989488228158,124.44062460661634,124.41442104413375,124.37286569476738,124.38683044231016,124.36870622217754,124.36089546405195,124.34866545691222,124.33118717815135,124.35900228495068,124.32047063012593,124.3091699477886,124.28834384248194,124.27215811358815,124.21741026981272,124.28703746861217,124.19883134463643,124.24801775691992,124.19518135093037,124.17916648765124,124.1672689857051,124.14039247270952,124.10939207562166,124.04189872030116,123.97029239465554,123.99846981330973,124.2363142455246,124.01263452687189,123.91327509839059,123.8984831900376,123.98792752158674,123.87573849543388,123.86005630780627,123.84426330226745,123.8211746197756,123.82756619537872,123.86084233289137,123.81012267284802,123.80803034909545,123.79996737492513,123.79234797144747,123.77789771980343,123.75295244382654,123.80709507369187,123.75719666734852,123.7496877866859,123.75690330277035,123.73942519746954,123.73339550903015,123.72694829052823,123.72188312536989,123.70981142063941,123.69052299178536],"feasible_probability":0.0,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.0,"counts":{"010101010101":1,"010101010110":5,"010101011001":1,"010101011010":1,"010101100101":1,"010101101010":9,"010110010101":1,"010110010110":22,"010110100110":28,"010110101001":1,"010110101010":13,"011001010110":32,"011001011001":1,"011001011010":23,"011001100101":2,"011001100110":2,"011001101001":1,"011001101010":26,"011010010101":18,"011010010110":22,"011010011001":2,"011010011010":1,"011010100101":4,"011010100110":7,"011010101001":14,"011010101010":25,"100101010101":1,"100101010110":25,"100101100101":1,"100101100110":27,"100101101001":3,"100101101010":21,"100110010101":2,"100110010110":1,"100110011010":2,"100110100101":10,"100110100110":20,"100110101001":4,"100110101010":2,"101001010101":18,"101001010110":31,"101001011001":4,"101001011010":5,"101001100101":3,"101001100110":3,"101001101001":24,"101001101010":26,"101010010101":4,"101010010110":1,"101010011001":2,"101010011010":2,"101010100101":4,"101010100110":1,"101010101001":2},"circuit_evaluations":117,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":57},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.30030054500093684},"metrics":{"exact_objective":null,"optimal_count":0,"combinations":64,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":13,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":21,"runtime_seconds":0.0013372789981076494},"exact":{"status":"infeasible","best":null,"combinations":64,"feasible_count":0,"runtime_seconds":0.0006637119950028136},"greedy":{"status":"dead_end","best":null,"runtime_seconds":1.4402990927919745e-05},"resources":{"full":{"depth":34,"operations":{"RX":30,"I":12,"RZ":39,"CNOT":60,"CRY":6,"X":6},"cnot":60,"cry":6},"auto":{"depth":26,"operations":{"RX":30,"I":12,"RZ":33,"CNOT":48,"CRY":6,"X":6},"cnot":48,"cry":6}},"phase_max_probability_error":5.551115123125783e-17,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":null,"uniform_objective":null},{"shots":64,"quantum_objective":null,"uniform_objective":null},{"shots":128,"quantum_objective":null,"uniform_objective":null},{"shots":512,"quantum_objective":null,"uniform_objective":null}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[12],"max_component_qubits":12,"component_to_original":[[0,1,2,3,4,5,6,7,8,9,10,11]],"components":[{"qubits":12,"penalty":28,"objective_bound":27,"offset":168,"linear":[-25,-23,-26,-23,-28,-27,-25,-20,-24,-23,-28,-25],"quadratic":[[0,1,56],[0,6,28],[0,8,28],[0,10,28],[2,3,56],[2,5,28],[2,9,28],[3,4,28],[3,7,28],[3,11,28],[4,5,56],[4,7,28],[4,11,28],[5,9,28],[6,7,56],[6,8,28],[6,10,28],[7,11,28],[8,9,56],[8,10,28],[10,11,56]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":3,"cost":3},{"index":1,"task":"t0","resource":"r0","start":4,"cost":5},{"index":2,"task":"t1","resource":"r0","start":1,"cost":2},{"index":3,"task":"t1","resource":"r0","start":2,"cost":5},{"index":4,"task":"t2","resource":"r0","start":2,"cost":0},{"index":5,"task":"t2","resource":"r0","start":1,"cost":1},{"index":6,"task":"t3","resource":"r0","start":3,"cost":3},{"index":7,"task":"t3","resource":"r0","start":2,"cost":8},{"index":8,"task":"t4","resource":"r0","start":3,"cost":4},{"index":9,"task":"t4","resource":"r0","start":1,"cost":5},{"index":10,"task":"t5","resource":"r0","start":3,"cost":0},{"index":11,"task":"t5","resource":"r0","start":2,"cost":3}],"conflicts":[{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":8,"reasons":["resource"]},{"i":0,"j":10,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":7,"reasons":["resource"]},{"i":3,"j":11,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":4,"j":11,"reasons":["resource"]},{"i":5,"j":9,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":6,"j":10,"reasons":["resource"]},{"i":7,"j":11,"reasons":["resource"]},{"i":8,"j":10,"reasons":["resource","group"]}]}]},"diagnostic_seconds":0.03731056999822613}
+{"input":{"file":"evaluation-n8-d0.json","split":"evaluation","tasks":8,"density_parameter":0,"data_seed":20261002,"sha256":"3f0bb0c0f3046ff399ba6cb057cbd4af76f9e58379bf21f3093dd368cce64145"},"model":{"qubits":16,"penalty":40,"objective_bound":39,"offset":320,"linear":[-39,-38,-36,-37,-38,-32,-38,-33,-37,-33,-38,-35,-36,-39,-40,-38],"quadratic":[[0,1,80],[2,3,80],[4,5,80],[5,7,40],[6,7,80],[8,9,80],[10,11,80],[12,13,80],[14,15,80]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":7,"cost":1},{"index":1,"task":"t0","resource":"r2","start":15,"cost":2},{"index":2,"task":"t1","resource":"r2","start":6,"cost":4},{"index":3,"task":"t1","resource":"r0","start":10,"cost":3},{"index":4,"task":"t2","resource":"r1","start":11,"cost":2},{"index":5,"task":"t2","resource":"r2","start":1,"cost":8},{"index":6,"task":"t3","resource":"r0","start":13,"cost":2},{"index":7,"task":"t3","resource":"r0","start":1,"cost":7},{"index":8,"task":"t4","resource":"r0","start":8,"cost":3},{"index":9,"task":"t4","resource":"r2","start":11,"cost":7},{"index":10,"task":"t5","resource":"r1","start":1,"cost":2},{"index":11,"task":"t5","resource":"r2","start":2,"cost":5},{"index":12,"task":"t6","resource":"r0","start":14,"cost":4},{"index":13,"task":"t6","resource":"r1","start":8,"cost":1},{"index":14,"task":"t7","resource":"r2","start":10,"cost":0},{"index":15,"task":"t7","resource":"r1","start":9,"cost":2}],"conflicts":[{"i":5,"j":7,"reasons":["group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r1","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r1","start":11,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":13,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,1,0,1,0,1,0,1,0,0,1,1,0],"qubo_energy":14},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.7848291774868676,0.9082125794946901],"expected_energy":33.24930495965043,"initial_expected_energy":35.65487635092188,"history":[35.65487635092188,35.35693942922505,40.952452716649304,44.52309124100483,46.99472598246012,34.074233887407686,38.32261124576168,34.03097417430939,33.79714273089498,34.50565458009288,33.8461828678476,33.87762363374655,33.787712388268,33.76659649088326,33.7536779207817,33.7559594565601,33.749392205076944,33.74553479847997,33.73832273617696,33.72411491669719,33.69438063103131,33.66711950534756,33.695553531485984,33.83203207817667,33.65171077867031,33.62712679912397,33.62372366179955,33.6424551258904,33.62428868385524,33.61687922248154,33.609289872391294,33.617945638465,33.60516056331353,33.60184726916681,33.59329917007794,33.577445009508644,33.54236960272206,33.4931533268084,33.49393584293625,33.57050874282431,33.51750464038763,33.46988999633216,33.493598113641866,33.467391604773056,33.45786459604528,33.440175743023694,33.40780157602926,33.76289394263277,33.4270981986996,33.423483911559565,33.418584209914926,33.40530282747031,33.39921187160989,33.393237646754486,33.383345907553704,33.37331015530026,33.35360165800125,33.31179891017531,33.24930495965043,33.438891296180714,58.13480479135804,52.141434214011085,34.226278807351065,41.242384136802144,34.40315036900234,37.06627484428139,34.2369695692357,34.51049034757695,34.72543613722608,34.27563985924087,34.272316742555205,34.2202944750868,34.222359236763715,34.220057981378346,34.22474591185727,34.2206469427723,34.22003960369239,34.220471671937496,34.22001128067866,34.22001281146265,34.22001135266851,34.220016652839405,34.22000420214503,34.22000201544242,34.22000552120088,34.220000849771225,34.22000079014778,34.21999907826805,34.21999794921881,34.21999484582638,34.21999186245719,34.21998588747552,34.21999826790164,34.21999270402405,34.21998876582456,34.21998674106302,34.21998524519306,34.21998701372108,34.219983871341526,34.21998259518839,34.21998069868668,34.2199784837153,34.21997096535268,34.21996933161422,34.21996167277266,34.22001285089145,34.21995229558428,34.21996285715075,34.21995642673908,34.219951723033766,34.21994969837165,34.219948056291855,34.21994449101916,34.21993926021291,34.21992656922545,34.21992369623765,34.2199698029568,34.22004562650234,34.21992435765381,34.21990024211874],"feasible_probability":0.8228835665564912,"one_hot_probability":1.0000000000000004,"sampled_feasible_fraction":0.87109375,"counts":{"0101010101010101":2,"0101010101010110":1,"0101010101011001":1,"0101010101011010":1,"0101010101100101":4,"0101010101100110":3,"0101010101101001":3,"0101010101101010":1,"0101010110010101":5,"0101010110010110":4,"0101010110011001":5,"0101010110011010":3,"0101010110100110":2,"0101010110101001":1,"0101010110101010":3,"0101011001010101":1,"0101011001011001":1,"0101011001011010":1,"0101011001100101":3,"0101011001100110":3,"0101011001101001":2,"0101011001101010":3,"0101011010010101":7,"0101011010010110":2,"0101011010011001":4,"0101011010011010":2,"0101011010100101":1,"0101011010100110":1,"0101011010101001":1,"0101100101010101":1,"0101100101011010":1,"0101100101100101":3,"0101100101100110":3,"0101100101101001":3,"0101100101101010":3,"0101100110010101":3,"0101100110010110":2,"0101100110011001":4,"0101100110011010":4,"0101100110100101":1,"0101100110100110":1,"0101100110101010":2,"0101101001011001":1,"0101101001011010":1,"0101101001100101":1,"0101101001100110":3,"0101101001101001":3,"0101101001101010":1,"0101101010010101":1,"0101101010010110":4,"0101101010011001":3,"0101101010100101":2,"0101101010101001":2,"0110010101010101":1,"0110010101011001":2,"0110010101100101":7,"0110010101100110":7,"0110010101101001":8,"0110010101101010":1,"0110010110010101":10,"0110010110010110":4,"0110010110011001":3,"0110010110011010":5,"0110010110100101":3,"0110010110100110":2,"0110010110101001":1,"0110010110101010":1,"0110011001010101":1,"0110011001011001":1,"0110011001100101":3,"0110011001100110":1,"0110011001101001":1,"0110011001101010":2,"0110011010010101":3,"0110011010010110":5,"0110011010011001":3,"0110011010011010":5,"0110011010100101":1,"0110011010101001":2,"0110011010101010":1,"0110100101010101":1,"0110100101010110":2,"0110100101011001":1,"0110100101011010":1,"0110100101100101":6,"0110100101100110":5,"0110100101101001":7,"0110100101101010":4,"0110100110010101":3,"0110100110010110":5,"0110100110011001":2,"0110100110011010":2,"0110100110100101":2,"0110100110100110":1,"0110100110101001":2,"0110100110101010":2,"0110101001010101":1,"0110101001010110":1,"0110101001011010":1,"0110101001100101":2,"0110101001100110":3,"0110101001101001":3,"0110101001101010":3,"0110101010010101":2,"0110101010010110":3,"0110101010011001":3,"0110101010011010":1,"0110101010100110":1,"0110101010101010":1,"1001010101010101":1,"1001010101010110":3,"1001010101011001":1,"1001010101011010":1,"1001010101100101":2,"1001010101100110":5,"1001010101101001":4,"1001010101101010":4,"1001010110010101":4,"1001010110010110":4,"1001010110011001":1,"1001010110011010":4,"1001010110101010":2,"1001011001011010":1,"1001011001100101":2,"1001011001100110":5,"1001011001101001":2,"1001011001101010":2,"1001011010010110":3,"1001011010011001":3,"1001011010011010":3,"1001011010100101":1,"1001011010101001":1,"1001011010101010":1,"1001100101010110":1,"1001100101011001":4,"1001100101011010":1,"1001100101100101":2,"1001100101100110":4,"1001100101101001":1,"1001100101101010":1,"1001100110010101":3,"1001100110010110":3,"1001100110011001":4,"1001100110011010":2,"1001100110100101":2,"1001100110101010":1,"1001101001100110":1,"1001101001101001":2,"1001101010010101":3,"1001101010010110":1,"1001101010011001":3,"1001101010100101":1,"1001101010101001":1,"1010010101010110":3,"1010010101011001":2,"1010010101011010":3,"1010010101100101":4,"1010010101100110":2,"1010010101101001":2,"1010010101101010":4,"1010010110010101":8,"1010010110010110":1,"1010010110011001":6,"1010010110011010":4,"1010010110100101":5,"1010010110100110":2,"1010010110101001":3,"1010010110101010":2,"1010011001010101":1,"1010011001010110":1,"1010011001011001":2,"1010011001100101":7,"1010011001100110":3,"1010011001101001":6,"1010011001101010":4,"1010011010010101":3,"1010011010010110":1,"1010011010011001":1,"1010011010011010":3,"1010011010100101":1,"1010100101010101":1,"1010100101010110":2,"1010100101100101":1,"1010100101100110":1,"1010100101101001":5,"1010100101101010":1,"1010100110010110":4,"1010100110011001":2,"1010100110011010":4,"1010100110100101":1,"1010100110100110":1,"1010100110101001":1,"1010100110101010":1,"1010101001100101":2,"1010101001100110":2,"1010101001101001":4,"1010101001101010":3,"1010101010010101":2,"1010101010010110":5,"1010101010011010":3,"1010101010100110":1,"1010101010101001":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.8439834150049137},"metrics":{"exact_objective":14,"optimal_count":1,"combinations":256,"optimal_probability":0.0021769764107421627,"feasible_probability":0.8228835665564912,"uniform_optimal_probability":0.00390625,"uniform_feasible_probability":0.75,"shots_for_95_percent":1375,"hit_curve":[{"shots":8,"quantum":0.017283689142547194,"uniform":0.0308260755190447},{"shots":16,"quantum":0.034268652374718184,"uniform":0.060701904106183556},{"shots":32,"quantum":0.06736296421385708,"uniform":0.1177190870502508},{"shots":64,"quantum":0.13018815948003679,"uniform":0.2215803906445571},{"shots":128,"quantum":0.24342736209127408,"uniform":0.3940629117709197},{"shots":512,"quantum":0.6723557713118038,"uniform":0.865193714387987}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":17,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":14,"preference_cost":9,"change_cost":5,"changed_tasks":3,"max_start_shift":7,"choices":[1,1,0,0,0,0,1,0],"schedule":[{"task":"t0","resource":"r0","start":7,"end":8},{"task":"t1","resource":"r0","start":10,"end":11},{"task":"t2","resource":"r1","start":11,"end":12},{"task":"t3","resource":"r0","start":13,"end":14},{"task":"t4","resource":"r0","start":8,"end":9},{"task":"t5","resource":"r1","start":1,"end":2},{"task":"t6","resource":"r1","start":8,"end":9},{"task":"t7","resource":"r2","start":10,"end":11}]},"dual_bound":14.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":9,"runtime_seconds":0.0015075100091053173},"exact":{"status":"optimal","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r1","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r1","start":11,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":13,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,1,0,1,0,1,0,1,0,0,1,1,0],"qubo_energy":14},"combinations":256,"feasible_count":192,"runtime_seconds":0.003714959995704703},"greedy":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r1","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r1","start":11,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":13,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,1,0,1,0,1,0,1,0,0,1,1,0],"qubo_energy":14},"runtime_seconds":3.6922996514476836e-05},"resources":{"full":{"depth":20,"operations":{"RX":40,"I":16,"RZ":32,"CNOT":42,"CRY":8,"X":8},"cnot":42,"cry":8},"auto":{"depth":13,"operations":{"RX":40,"I":16,"RZ":24,"CNOT":26,"CRY":8,"X":8},"cnot":26,"cry":8}},"phase_max_probability_error":1.0408340855860843e-17,"samples":[{"shots":8,"quantum_objective":23,"uniform_objective":16},{"shots":16,"quantum_objective":19,"uniform_objective":17},{"shots":32,"quantum_objective":17,"uniform_objective":16},{"shots":64,"quantum_objective":17,"uniform_objective":14},{"shots":128,"quantum_objective":18,"uniform_objective":14},{"shots":512,"quantum_objective":15,"uniform_objective":14}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":16,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[2,2,4,2,2,2,2],"max_component_qubits":4,"component_to_original":[[0,1],[2,3],[4,5,6,7],[8,9],[10,11],[12,13],[14,15]],"components":[{"qubits":2,"penalty":3,"objective_bound":2,"offset":3,"linear":[-2,-1],"quadratic":[[0,1,6]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":7,"cost":1},{"index":1,"task":"t0","resource":"r2","start":15,"cost":2}],"conflicts":[]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-1,-2],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r2","start":6,"cost":4},{"index":1,"task":"t1","resource":"r0","start":10,"cost":3}],"conflicts":[]},{"qubits":4,"penalty":16,"objective_bound":15,"offset":32,"linear":[-14,-8,-14,-9],"quadratic":[[0,1,32],[1,3,16],[2,3,32]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r1","start":11,"cost":2},{"index":1,"task":"t2","resource":"r2","start":1,"cost":8},{"index":2,"task":"t3","resource":"r0","start":13,"cost":2},{"index":3,"task":"t3","resource":"r0","start":1,"cost":7}],"conflicts":[{"i":1,"j":3,"reasons":["group"]}]},{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-5,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r0","start":8,"cost":3},{"index":1,"task":"t4","resource":"r2","start":11,"cost":7}],"conflicts":[]},{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-4,-1],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t5","resource":"r1","start":1,"cost":2},{"index":1,"task":"t5","resource":"r2","start":2,"cost":5}],"conflicts":[]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-1,-4],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t6","resource":"r0","start":14,"cost":4},{"index":1,"task":"t6","resource":"r1","start":8,"cost":1}],"conflicts":[]},{"qubits":2,"penalty":3,"objective_bound":2,"offset":3,"linear":[-3,-1],"quadratic":[[0,1,6]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t7","resource":"r2","start":10,"cost":0},{"index":1,"task":"t7","resource":"r1","start":9,"cost":2}],"conflicts":[]}]},"diagnostic_seconds":0.059220662995358}
+{"input":{"file":"evaluation-n8-d0.json","split":"evaluation","tasks":8,"density_parameter":0,"data_seed":20261002,"sha256":"3f0bb0c0f3046ff399ba6cb057cbd4af76f9e58379bf21f3093dd368cce64145"},"model":{"qubits":16,"penalty":40,"objective_bound":39,"offset":320,"linear":[-39,-38,-36,-37,-38,-32,-38,-33,-37,-33,-38,-35,-36,-39,-40,-38],"quadratic":[[0,1,80],[2,3,80],[4,5,80],[5,7,40],[6,7,80],[8,9,80],[10,11,80],[12,13,80],[14,15,80]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":7,"cost":1},{"index":1,"task":"t0","resource":"r2","start":15,"cost":2},{"index":2,"task":"t1","resource":"r2","start":6,"cost":4},{"index":3,"task":"t1","resource":"r0","start":10,"cost":3},{"index":4,"task":"t2","resource":"r1","start":11,"cost":2},{"index":5,"task":"t2","resource":"r2","start":1,"cost":8},{"index":6,"task":"t3","resource":"r0","start":13,"cost":2},{"index":7,"task":"t3","resource":"r0","start":1,"cost":7},{"index":8,"task":"t4","resource":"r0","start":8,"cost":3},{"index":9,"task":"t4","resource":"r2","start":11,"cost":7},{"index":10,"task":"t5","resource":"r1","start":1,"cost":2},{"index":11,"task":"t5","resource":"r2","start":2,"cost":5},{"index":12,"task":"t6","resource":"r0","start":14,"cost":4},{"index":13,"task":"t6","resource":"r1","start":8,"cost":1},{"index":14,"task":"t7","resource":"r2","start":10,"cost":0},{"index":15,"task":"t7","resource":"r1","start":9,"cost":2}],"conflicts":[{"i":5,"j":7,"reasons":["group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r1","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r1","start":11,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":13,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,1,0,1,0,1,0,1,0,0,1,1,0],"qubo_energy":14},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.213148385141249,1.3163959533867151],"expected_energy":23.414273922560767,"initial_expected_energy":51.69629168351332,"history":[51.69629168351332,49.95182704058618,36.61682961801267,36.34936504790191,40.25649846526727,41.192409296390395,37.46244665192111,36.57657860178338,36.47351684685874,36.63962062240048,36.414917088436646,36.73270435716138,36.376212432396656,36.34069591458099,36.41491234322305,36.32916677263355,36.30820522537693,36.27206465283872,36.20930069197168,36.02622784258827,35.70746136092623,34.431156736230946,34.00115797463534,28.36894559183893,46.2048991519588,33.265481654605836,29.223025525407074,28.740089806734865,29.05420150836622,28.202215814471035,27.755899954147107,26.921900623048582,25.54419012386928,30.900949232596687,31.53084740973668,25.740610669626697,25.44363407198099,25.65358542100486,25.240099678434607,25.114817414621097,24.96882171713834,24.83008902007736,24.570635131205144,24.153398571366264,24.415998809330212,25.223279324656616,24.039126198985347,24.24336117338246,24.014029940695742,23.897981232604423,23.881177025855166,23.74405525610645,23.704918596975546,23.549405006266376,23.776679933323802,23.795131662716297,23.589308867085528,23.560869226320758,23.55704436327605,23.541320743015795,33.506472143084764,35.15375584767651,32.3653984259856,56.77373746074886,33.9276841194406,34.736463296701984,33.716125979646336,30.260520945656374,29.040209438360122,30.478539544810005,28.745042633018844,29.545793234736802,28.10586231067276,27.691861762475135,27.128337359029928,26.232808387666797,25.59775135391764,25.069117924929394,25.02195423074866,28.29209151647635,25.02414357624553,23.881548066880256,23.433347461217057,23.540281511050374,23.759047612446665,23.55524241278606,23.428548780077374,23.44933998812416,23.43096348066384,23.427132351124747,23.423150096432213,23.419829560902823,23.4193346560212,23.41540006418733,23.4203423266378,23.421912959135618,23.41663256337487,23.41502965704643,23.41480571218313,23.414728412611932,23.414542268868235,23.414770336208882,23.414500382633154,23.414578951890753,23.41445545424626,23.414416103324413,23.414360032781076,23.414323499513138,23.414276715205673,23.414286866366812,23.41447101068276,23.414301056784783,23.414287380287234,23.414278423811847,23.41427764551175,23.414275664001863,23.414275881001807,23.41427412132617,23.414273922560767,23.41427647693265],"feasible_probability":0.9970286334030904,"one_hot_probability":0.9999999999999996,"sampled_feasible_fraction":0.994140625,"counts":{"0101010101010101":5,"0101010101010110":6,"0101010101011001":5,"0101010101011010":1,"0101010101100101":2,"0101010101100110":1,"0101010101101001":1,"0101010101101010":2,"0101010110010101":2,"0101010110010110":1,"0101010110011001":4,"0101010110011010":3,"0101011001010101":5,"0101011001010110":4,"0101011001011001":3,"0101011001011010":4,"0101011001100101":4,"0101011001101001":1,"0101011001101010":1,"0101011010010101":2,"0101011010010110":3,"0101011010011001":3,"0101011010011010":3,"0101011010100110":1,"0101100101010101":2,"0101100101011001":7,"0101100101011010":6,"0101100101100101":1,"0101100101100110":1,"0101100101101001":2,"0101100101101010":1,"0101100110010101":3,"0101100110011001":5,"0101100110011010":5,"0101101001010101":2,"0101101001010110":3,"0101101001011001":3,"0101101001011010":3,"0101101001100101":1,"0101101001100110":2,"0101101001101010":1,"0101101010010101":3,"0101101010010110":6,"0101101010011001":2,"0110010101010101":5,"0110010101010110":6,"0110010101011001":9,"0110010101011010":7,"0110010101100101":4,"0110010101100110":2,"0110010101101001":5,"0110010101101010":2,"0110010110010101":4,"0110010110010110":2,"0110010110011010":4,"0110011001010101":3,"0110011001010110":4,"0110011001011001":4,"0110011001011010":2,"0110011001100101":2,"0110011001100110":3,"0110011001101001":2,"0110011001101010":1,"0110011010010101":3,"0110011010010110":3,"0110011010011010":3,"0110100101010101":4,"0110100101010110":5,"0110100101011001":4,"0110100101011010":6,"0110100101100110":2,"0110100101101001":1,"0110100101101010":2,"0110100110010101":3,"0110100110010110":3,"0110100110011001":2,"0110100110011010":3,"0110100110101010":1,"0110101001010101":3,"0110101001010110":2,"0110101001011001":1,"0110101001011010":1,"0110101001100101":1,"0110101001101010":2,"0110101010010110":1,"0110101010011001":2,"0110101010011010":1,"1001010101010101":6,"1001010101010110":3,"1001010101011001":3,"1001010101011010":9,"1001010101100101":3,"1001010101100110":3,"1001010101101010":2,"1001010110010101":2,"1001010110011001":3,"1001010110011010":2,"1001010110100110":1,"1001011001010101":3,"1001011001010110":1,"1001011001011001":6,"1001011001011010":2,"1001011001100110":3,"1001011001101001":4,"1001011001101010":2,"1001011010010101":1,"1001011010010110":2,"1001011010011001":4,"1001011010011010":1,"1001100101010101":6,"1001100101010110":1,"1001100101011001":11,"1001100101011010":1,"1001100101100101":1,"1001100101100110":2,"1001100101101001":6,"1001100101101010":1,"1001100110010110":1,"1001100110011001":1,"1001100110011010":2,"1001101001010101":3,"1001101001010110":5,"1001101001011001":4,"1001101001011010":1,"1001101001100101":2,"1001101001100110":2,"1001101001101001":2,"1001101001101010":3,"1001101010010110":3,"1001101010011001":1,"1001101010011010":1,"1010010101010101":3,"1010010101010110":1,"1010010101011001":8,"1010010101011010":1,"1010010101100101":1,"1010010101100110":5,"1010010101101001":5,"1010010101101010":3,"1010010110010101":1,"1010010110010110":3,"1010010110011010":2,"1010011001010101":2,"1010011001010110":1,"1010011001011001":5,"1010011001011010":6,"1010011001100101":1,"1010011001100110":3,"1010011001101001":2,"1010011001101010":4,"1010011010010101":1,"1010011010010110":1,"1010011010011001":4,"1010011010011010":3,"1010100101010101":3,"1010100101010110":3,"1010100101011001":4,"1010100101011010":3,"1010100101100101":1,"1010100101100110":3,"1010100101101001":3,"1010100101101010":1,"1010100110010101":4,"1010100110010110":3,"1010100110011001":1,"1010100110011010":2,"1010101001010101":8,"1010101001010110":6,"1010101001011001":5,"1010101001011010":3,"1010101001100101":3,"1010101001100110":2,"1010101001101010":1,"1010101010011001":2,"1010101010011010":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.7325944409967633},"metrics":{"exact_objective":14,"optimal_count":1,"combinations":256,"optimal_probability":0.01087267159460469,"feasible_probability":0.9970286334030908,"uniform_optimal_probability":0.00390625,"uniform_feasible_probability":0.75,"shots_for_95_percent":275,"hit_curve":[{"shots":8,"quantum":0.08374236084511467,"uniform":0.0308260755190447},{"shots":16,"quantum":0.16047193869031595,"uniform":0.060701904106183556},{"shots":32,"quantum":0.29519263427360337,"uniform":0.1177190870502508},{"shots":64,"quantum":0.5032465772178174,"uniform":0.2215803906445571},{"shots":128,"quantum":0.7532360369541862,"uniform":0.3940629117709197},{"shots":512,"quantum":0.9962921091118561,"uniform":0.865193714387987}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":17,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":14,"preference_cost":9,"change_cost":5,"changed_tasks":3,"max_start_shift":7,"choices":[1,1,0,0,0,0,1,0],"schedule":[{"task":"t0","resource":"r0","start":7,"end":8},{"task":"t1","resource":"r0","start":10,"end":11},{"task":"t2","resource":"r1","start":11,"end":12},{"task":"t3","resource":"r0","start":13,"end":14},{"task":"t4","resource":"r0","start":8,"end":9},{"task":"t5","resource":"r1","start":1,"end":2},{"task":"t6","resource":"r1","start":8,"end":9},{"task":"t7","resource":"r2","start":10,"end":11}]},"dual_bound":14.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":9,"runtime_seconds":0.0015075100091053173},"exact":{"status":"optimal","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r1","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r1","start":11,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":13,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,1,0,1,0,1,0,1,0,0,1,1,0],"qubo_energy":14},"combinations":256,"feasible_count":192,"runtime_seconds":0.003714959995704703},"greedy":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r1","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r1","start":11,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":13,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,1,0,1,0,1,0,1,0,0,1,1,0],"qubo_energy":14},"runtime_seconds":3.6922996514476836e-05},"resources":{"full":{"depth":20,"operations":{"RX":40,"I":16,"RZ":32,"CNOT":42,"CRY":8,"X":8},"cnot":42,"cry":8},"auto":{"depth":13,"operations":{"RX":40,"I":16,"RZ":24,"CNOT":26,"CRY":8,"X":8},"cnot":26,"cry":8}},"phase_max_probability_error":1.3877787807814457e-17,"samples":[{"shots":8,"quantum_objective":17,"uniform_objective":17},{"shots":16,"quantum_objective":19,"uniform_objective":17},{"shots":32,"quantum_objective":16,"uniform_objective":15},{"shots":64,"quantum_objective":16,"uniform_objective":15},{"shots":128,"quantum_objective":14,"uniform_objective":14},{"shots":512,"quantum_objective":14,"uniform_objective":14}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":16,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[2,2,4,2,2,2,2],"max_component_qubits":4,"component_to_original":[[0,1],[2,3],[4,5,6,7],[8,9],[10,11],[12,13],[14,15]],"components":[{"qubits":2,"penalty":3,"objective_bound":2,"offset":3,"linear":[-2,-1],"quadratic":[[0,1,6]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":7,"cost":1},{"index":1,"task":"t0","resource":"r2","start":15,"cost":2}],"conflicts":[]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-1,-2],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r2","start":6,"cost":4},{"index":1,"task":"t1","resource":"r0","start":10,"cost":3}],"conflicts":[]},{"qubits":4,"penalty":16,"objective_bound":15,"offset":32,"linear":[-14,-8,-14,-9],"quadratic":[[0,1,32],[1,3,16],[2,3,32]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r1","start":11,"cost":2},{"index":1,"task":"t2","resource":"r2","start":1,"cost":8},{"index":2,"task":"t3","resource":"r0","start":13,"cost":2},{"index":3,"task":"t3","resource":"r0","start":1,"cost":7}],"conflicts":[{"i":1,"j":3,"reasons":["group"]}]},{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-5,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r0","start":8,"cost":3},{"index":1,"task":"t4","resource":"r2","start":11,"cost":7}],"conflicts":[]},{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-4,-1],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t5","resource":"r1","start":1,"cost":2},{"index":1,"task":"t5","resource":"r2","start":2,"cost":5}],"conflicts":[]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-1,-4],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t6","resource":"r0","start":14,"cost":4},{"index":1,"task":"t6","resource":"r1","start":8,"cost":1}],"conflicts":[]},{"qubits":2,"penalty":3,"objective_bound":2,"offset":3,"linear":[-3,-1],"quadratic":[[0,1,6]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t7","resource":"r2","start":10,"cost":0},{"index":1,"task":"t7","resource":"r1","start":9,"cost":2}],"conflicts":[]}]},"diagnostic_seconds":0.05337877498823218}
+{"input":{"file":"evaluation-n8-d0.json","split":"evaluation","tasks":8,"density_parameter":0,"data_seed":20261002,"sha256":"3f0bb0c0f3046ff399ba6cb057cbd4af76f9e58379bf21f3093dd368cce64145"},"model":{"qubits":16,"penalty":40,"objective_bound":39,"offset":320,"linear":[-39,-38,-36,-37,-38,-32,-38,-33,-37,-33,-38,-35,-36,-39,-40,-38],"quadratic":[[0,1,80],[2,3,80],[4,5,80],[5,7,40],[6,7,80],[8,9,80],[10,11,80],[12,13,80],[14,15,80]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":7,"cost":1},{"index":1,"task":"t0","resource":"r2","start":15,"cost":2},{"index":2,"task":"t1","resource":"r2","start":6,"cost":4},{"index":3,"task":"t1","resource":"r0","start":10,"cost":3},{"index":4,"task":"t2","resource":"r1","start":11,"cost":2},{"index":5,"task":"t2","resource":"r2","start":1,"cost":8},{"index":6,"task":"t3","resource":"r0","start":13,"cost":2},{"index":7,"task":"t3","resource":"r0","start":1,"cost":7},{"index":8,"task":"t4","resource":"r0","start":8,"cost":3},{"index":9,"task":"t4","resource":"r2","start":11,"cost":7},{"index":10,"task":"t5","resource":"r1","start":1,"cost":2},{"index":11,"task":"t5","resource":"r2","start":2,"cost":5},{"index":12,"task":"t6","resource":"r0","start":14,"cost":4},{"index":13,"task":"t6","resource":"r1","start":8,"cost":1},{"index":14,"task":"t7","resource":"r2","start":10,"cost":0},{"index":15,"task":"t7","resource":"r1","start":9,"cost":2}],"conflicts":[{"i":5,"j":7,"reasons":["group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r1","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r1","start":11,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":13,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,1,0,1,0,1,0,1,0,0,1,1,0],"qubo_energy":14},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.2287201432176122,2.8882340990554947],"expected_energy":23.416946741110337,"initial_expected_energy":50.23508200252655,"history":[50.23508200252655,44.26402019319251,34.45398359026498,47.56804401706907,36.55882326893704,38.39835488156653,34.14169470327124,33.82330398375454,34.13464733118208,33.88500714732308,33.81643904839656,33.81260135772944,33.817624997915104,33.80282441357875,33.79996823595446,33.79255740597111,33.78601545323394,33.77242061394146,33.74474604581049,33.70813209213564,33.757941201548974,33.85780726841605,33.68251884085923,33.687022856531755,33.68990268514088,33.681243895493964,33.6845083082273,33.680210308433736,33.6781741818384,33.674313033692286,33.67088813664942,33.66222476095783,33.655343565422854,33.639214045494946,33.60826855635044,33.53910026100872,33.67019484271887,33.86506241596281,33.60417990636681,33.531002171520214,33.55441986369303,33.52566657340125,33.51712392069972,33.49980469035205,33.463928243904355,33.383497333361085,33.506492133969985,33.66875013460405,33.4612533613649,33.39031360986141,33.38820386968513,33.37993897815591,33.39194552200752,33.37392893702596,33.36850725450536,33.358455226010335,33.338738146846325,33.29904206441826,33.23368816479329,33.88328475950772,59.27050195401222,60.40190711953766,35.57191014880014,23.58530965973854,42.46308708360968,30.885241022091634,29.728240633658544,23.879705869248802,24.85998189924283,23.579966585687792,24.13944605754115,23.506737365263394,23.5397293235384,23.50887604552596,23.510003993007192,23.503403461334766,23.505273100447187,23.510961917776648,23.49314458319843,23.49023621765549,23.502602047027285,23.481248533226815,23.473356852548612,23.45953581215437,23.459077150148083,23.435597541526697,23.467096882917602,23.456242188075596,23.43312751672699,23.435094523886338,23.431230663253473,23.43854774449045,23.42852505493184,23.427099382023474,23.425434950899678,23.42296968663579,23.426601795310404,23.423003945777193,23.422501620504715,23.4225496121894,23.423267783359336,23.421350441025353,23.420571107596302,23.422716764634096,23.41993159519715,23.419450357918386,23.419530334125575,23.419362457333413,23.41913161131276,23.418785952047184,23.418850664268927,23.418497410094027,23.418434005057957,23.41912950366526,23.418171565413303,23.417946766181142,23.417582579432732,23.416946741110337,23.417834236434615,23.4169627156514],"feasible_probability":0.9966945891006951,"one_hot_probability":1.0000000000000007,"sampled_feasible_fraction":0.99609375,"counts":{"0101010101010101":7,"0101010101010110":2,"0101010101011001":6,"0101010101011010":5,"0101010101100101":2,"0101010101100110":4,"0101010101101001":4,"0101010101101010":1,"0101010110010101":2,"0101010110011001":4,"0101010110011010":5,"0101011001010101":3,"0101011001011001":4,"0101011001011010":3,"0101011001100101":2,"0101011001100110":1,"0101011001101001":2,"0101011010010101":1,"0101011010010110":1,"0101011010011001":2,"0101011010011010":3,"0101100101010101":3,"0101100101010110":5,"0101100101011001":4,"0101100101011010":6,"0101100101100101":3,"0101100101100110":3,"0101100101101001":3,"0101100101101010":4,"0101100110010101":1,"0101100110010110":7,"0101100110011001":4,"0101100110011010":1,"0101101001010101":7,"0101101001010110":2,"0101101001011001":4,"0101101001011010":3,"0101101001100101":2,"0101101001100110":2,"0101101001101001":2,"0101101001101010":4,"0101101010010101":1,"0101101010010110":2,"0101101010011001":1,"0110010101010101":6,"0110010101010110":7,"0110010101011001":3,"0110010101011010":8,"0110010101100101":3,"0110010101100110":2,"0110010101101001":2,"0110010101101010":1,"0110010110010101":5,"0110010110010110":1,"0110010110011001":3,"0110010110011010":6,"0110011001010101":4,"0110011001010110":5,"0110011001011001":6,"0110011001011010":6,"0110011001100101":1,"0110011001101001":1,"0110011001101010":1,"0110011010010101":2,"0110011010010110":2,"0110011010011001":2,"0110011010011010":2,"0110100101010101":6,"0110100101010110":4,"0110100101011001":7,"0110100101011010":9,"0110100101100101":4,"0110100101101001":3,"0110100101101010":4,"0110100110010101":1,"0110100110010110":3,"0110100110011010":3,"0110101001010101":2,"0110101001010110":2,"0110101001011001":4,"0110101001011010":2,"0110101001100101":3,"0110101001101001":1,"0110101001101010":2,"0110101010010101":3,"0110101010010110":2,"0110101010011001":2,"0110101010011010":2,"1001010101010101":6,"1001010101010110":3,"1001010101011001":3,"1001010101011010":4,"1001010101100101":3,"1001010101100110":3,"1001010101101010":2,"1001010110010101":3,"1001010110010110":3,"1001010110011001":4,"1001010110011010":3,"1001011001010101":1,"1001011001010110":7,"1001011001011001":9,"1001011001100101":1,"1001011001101001":2,"1001100101010101":2,"1001100101010110":7,"1001100101011001":7,"1001100101011010":3,"1001100101100101":1,"1001100101100110":1,"1001100101101001":2,"1001100101101010":4,"1001100110010101":3,"1001100110010110":1,"1001100110011001":2,"1001100110011010":1,"1001101001010101":1,"1001101001011001":2,"1001101001011010":1,"1001101001100101":2,"1001101001101001":3,"1001101001101010":1,"1001101010011001":1,"1001101010101010":1,"1010010101010101":1,"1010010101010110":4,"1010010101011001":6,"1010010101011010":8,"1010010101100101":2,"1010010101100110":2,"1010010101101001":1,"1010010110010101":1,"1010010110010110":1,"1010010110011001":4,"1010010110011010":3,"1010010110101010":1,"1010011001010101":3,"1010011001010110":2,"1010011001011001":3,"1010011001011010":6,"1010011001100101":2,"1010011001101001":1,"1010011001101010":2,"1010011010010101":3,"1010011010010110":2,"1010011010011001":1,"1010011010011010":3,"1010100101010101":3,"1010100101010110":4,"1010100101011001":5,"1010100101011010":5,"1010100101100101":7,"1010100101100110":1,"1010100101101001":2,"1010100101101010":3,"1010100110010101":1,"1010100110010110":2,"1010100110011001":3,"1010100110011010":1,"1010101001010101":2,"1010101001010110":5,"1010101001011001":1,"1010101001011010":4,"1010101001100101":3,"1010101001100110":2,"1010101001101001":1,"1010101001101010":2,"1010101010010101":1,"1010101010010110":1,"1010101010011001":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.7584884050011169},"metrics":{"exact_objective":14,"optimal_count":1,"combinations":256,"optimal_probability":0.010939438236260986,"feasible_probability":0.996694589100695,"uniform_optimal_probability":0.00390625,"uniform_feasible_probability":0.75,"shots_for_95_percent":273,"hit_curve":[{"shots":8,"quantum":0.08423702714608916,"uniform":0.0308260755190447},{"shots":16,"quantum":0.16137817754976735,"uniform":0.060701904106183556},{"shots":32,"quantum":0.2967134389102505,"uniform":0.1177190870502508},{"shots":64,"quantum":0.505388012990554,"uniform":0.2215803906445571},{"shots":128,"quantum":0.7553589823065676,"uniform":0.3940629117709197},{"shots":512,"quantum":0.9964180699630953,"uniform":0.865193714387987}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":17,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":14,"preference_cost":9,"change_cost":5,"changed_tasks":3,"max_start_shift":7,"choices":[1,1,0,0,0,0,1,0],"schedule":[{"task":"t0","resource":"r0","start":7,"end":8},{"task":"t1","resource":"r0","start":10,"end":11},{"task":"t2","resource":"r1","start":11,"end":12},{"task":"t3","resource":"r0","start":13,"end":14},{"task":"t4","resource":"r0","start":8,"end":9},{"task":"t5","resource":"r1","start":1,"end":2},{"task":"t6","resource":"r1","start":8,"end":9},{"task":"t7","resource":"r2","start":10,"end":11}]},"dual_bound":14.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":9,"runtime_seconds":0.0015075100091053173},"exact":{"status":"optimal","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r1","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r1","start":11,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":13,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,1,0,1,0,1,0,1,0,0,1,1,0],"qubo_energy":14},"combinations":256,"feasible_count":192,"runtime_seconds":0.003714959995704703},"greedy":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r1","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r1","start":11,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":13,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,1,0,1,0,1,0,1,0,0,1,1,0],"qubo_energy":14},"runtime_seconds":3.6922996514476836e-05},"resources":{"full":{"depth":20,"operations":{"RX":40,"I":16,"RZ":32,"CNOT":42,"CRY":8,"X":8},"cnot":42,"cry":8},"auto":{"depth":13,"operations":{"RX":40,"I":16,"RZ":24,"CNOT":26,"CRY":8,"X":8},"cnot":26,"cry":8}},"phase_max_probability_error":1.3010426069826053e-17,"samples":[{"shots":8,"quantum_objective":22,"uniform_objective":20},{"shots":16,"quantum_objective":17,"uniform_objective":18},{"shots":32,"quantum_objective":16,"uniform_objective":15},{"shots":64,"quantum_objective":14,"uniform_objective":16},{"shots":128,"quantum_objective":14,"uniform_objective":14},{"shots":512,"quantum_objective":14,"uniform_objective":15}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":16,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[2,2,4,2,2,2,2],"max_component_qubits":4,"component_to_original":[[0,1],[2,3],[4,5,6,7],[8,9],[10,11],[12,13],[14,15]],"components":[{"qubits":2,"penalty":3,"objective_bound":2,"offset":3,"linear":[-2,-1],"quadratic":[[0,1,6]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":7,"cost":1},{"index":1,"task":"t0","resource":"r2","start":15,"cost":2}],"conflicts":[]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-1,-2],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r2","start":6,"cost":4},{"index":1,"task":"t1","resource":"r0","start":10,"cost":3}],"conflicts":[]},{"qubits":4,"penalty":16,"objective_bound":15,"offset":32,"linear":[-14,-8,-14,-9],"quadratic":[[0,1,32],[1,3,16],[2,3,32]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r1","start":11,"cost":2},{"index":1,"task":"t2","resource":"r2","start":1,"cost":8},{"index":2,"task":"t3","resource":"r0","start":13,"cost":2},{"index":3,"task":"t3","resource":"r0","start":1,"cost":7}],"conflicts":[{"i":1,"j":3,"reasons":["group"]}]},{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-5,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r0","start":8,"cost":3},{"index":1,"task":"t4","resource":"r2","start":11,"cost":7}],"conflicts":[]},{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-4,-1],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t5","resource":"r1","start":1,"cost":2},{"index":1,"task":"t5","resource":"r2","start":2,"cost":5}],"conflicts":[]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-1,-4],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t6","resource":"r0","start":14,"cost":4},{"index":1,"task":"t6","resource":"r1","start":8,"cost":1}],"conflicts":[]},{"qubits":2,"penalty":3,"objective_bound":2,"offset":3,"linear":[-3,-1],"quadratic":[[0,1,6]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t7","resource":"r2","start":10,"cost":0},{"index":1,"task":"t7","resource":"r1","start":9,"cost":2}],"conflicts":[]}]},"diagnostic_seconds":0.055860344000393525}
+{"input":{"file":"evaluation-n8-d0.json","split":"evaluation","tasks":8,"density_parameter":0,"data_seed":20261002,"sha256":"3f0bb0c0f3046ff399ba6cb057cbd4af76f9e58379bf21f3093dd368cce64145"},"model":{"qubits":16,"penalty":40,"objective_bound":39,"offset":320,"linear":[-39,-38,-36,-37,-38,-32,-38,-33,-37,-33,-38,-35,-36,-39,-40,-38],"quadratic":[[0,1,80],[2,3,80],[4,5,80],[5,7,40],[6,7,80],[8,9,80],[10,11,80],[12,13,80],[14,15,80]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":7,"cost":1},{"index":1,"task":"t0","resource":"r2","start":15,"cost":2},{"index":2,"task":"t1","resource":"r2","start":6,"cost":4},{"index":3,"task":"t1","resource":"r0","start":10,"cost":3},{"index":4,"task":"t2","resource":"r1","start":11,"cost":2},{"index":5,"task":"t2","resource":"r2","start":1,"cost":8},{"index":6,"task":"t3","resource":"r0","start":13,"cost":2},{"index":7,"task":"t3","resource":"r0","start":1,"cost":7},{"index":8,"task":"t4","resource":"r0","start":8,"cost":3},{"index":9,"task":"t4","resource":"r2","start":11,"cost":7},{"index":10,"task":"t5","resource":"r1","start":1,"cost":2},{"index":11,"task":"t5","resource":"r2","start":2,"cost":5},{"index":12,"task":"t6","resource":"r0","start":14,"cost":4},{"index":13,"task":"t6","resource":"r1","start":8,"cost":1},{"index":14,"task":"t7","resource":"r2","start":10,"cost":0},{"index":15,"task":"t7","resource":"r1","start":9,"cost":2}],"conflicts":[{"i":5,"j":7,"reasons":["group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r1","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r1","start":11,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":13,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,1,0,1,0,1,0,1,0,0,1,1,0],"qubo_energy":14},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.2444690323214622,1.3191497977783397],"expected_energy":23.424719737271023,"initial_expected_energy":28.26739114576101,"history":[28.26739114576101,33.58192908274305,48.18973726573549,39.889622813589696,26.406552109832422,30.846399057693226,29.404624425808628,25.08621728313869,27.38569152997346,24.90535675654656,25.417259612878333,24.582325955369818,25.249450421852316,24.428670258170364,24.30055805628874,24.16388601813796,23.931420748067644,24.70074480438614,24.21058746048464,23.893013648626926,24.063571629662906,23.871373701539092,23.827382994442196,23.849123474026783,23.800563990223253,23.830878846803635,23.78996124739615,23.774512137362223,23.774194620100573,23.755594715260685,23.737645152398667,23.70361916114839,23.642308476212627,23.56640461624469,23.58996794571093,23.64631749367816,23.572204624747826,23.57945295982207,23.54601428571649,23.525868523641087,23.51261530935823,23.54277670260501,23.5021478483875,23.49456330690314,23.48596576537916,23.470584111287515,23.448721267337213,23.466069781483657,23.472118349934355,23.45236282976856,23.443070900836116,23.441300192516803,23.45279257849426,23.437931723567022,23.435542804627108,23.43172032714395,23.424719737271023,23.452077925607163,23.435549778060604,23.427296857752737,50.7028991923015,42.31280858493071,34.18849511733428,46.46293603326028,34.532723551656716,34.05673733454324,35.832930415231274,34.1756647427379,34.04540956578231,35.11307419286423,33.877748640218115,33.96221639179882,33.87157326125025,33.92256287064121,33.86798136460081,33.86397585644795,33.861920442585124,33.87676601612081,33.85445315956407,33.85209889372227,33.844818357663875,33.83670233267588,33.8219506429696,33.81988791321281,33.792787539705444,33.82752333479844,33.81146601136334,33.7966277402774,33.7925351981319,33.784613873031574,33.77092587049485,33.744950289803384,33.689506444792535,33.61466850194645,33.71677542275561,34.190923930279,33.58871627661243,33.545462203698946,33.58485971170997,33.57514170176594,33.54367699515237,33.53527748456186,33.5336804322298,33.54871490335538,33.522764842959106,33.50909930143112,33.48966801143106,33.45470317802737,33.37993681782362,33.20736303707267,34.69096526579622,34.325852266854625,33.32913482083864,33.39490114371195,33.22830954026428,33.23265716067312,33.217612524393466,33.19820643160713,33.200835528301724,33.187974209128306],"feasible_probability":0.996386197117065,"one_hot_probability":1.0000000000000018,"sampled_feasible_fraction":0.994140625,"counts":{"0101010101010101":5,"0101010101010110":5,"0101010101011001":7,"0101010101011010":3,"0101010101100101":1,"0101010101101001":4,"0101010101101010":2,"0101010110010101":2,"0101010110010110":3,"0101011001010101":2,"0101011001010110":3,"0101011001011010":2,"0101011001100110":1,"0101011001101001":1,"0101011001101010":3,"0101011010010101":4,"0101011010010110":1,"0101011010011001":1,"0101011010011010":3,"0101100101010101":6,"0101100101010110":5,"0101100101011001":5,"0101100101011010":4,"0101100101100101":3,"0101100101100110":3,"0101100110010101":3,"0101100110010110":3,"0101100110011001":2,"0101100110011010":1,"0101100110100101":1,"0101100110101010":1,"0101101001010101":3,"0101101001010110":4,"0101101001011001":2,"0101101001011010":4,"0101101001100101":1,"0101101001100110":1,"0101101001101001":1,"0101101001101010":1,"0101101010010110":3,"0101101010011001":2,"0101101010011010":3,"0110010101010101":5,"0110010101010110":10,"0110010101011001":5,"0110010101011010":8,"0110010101100101":3,"0110010101100110":2,"0110010101101001":8,"0110010101101010":2,"0110010110010101":4,"0110010110010110":2,"0110010110011001":4,"0110010110011010":2,"0110011001010101":3,"0110011001010110":3,"0110011001011001":2,"0110011001011010":5,"0110011001100101":2,"0110011001101010":2,"0110011010010101":1,"0110011010010110":3,"0110011010011001":2,"0110011010011010":6,"0110100101010101":6,"0110100101010110":4,"0110100101011001":5,"0110100101011010":6,"0110100101100110":1,"0110100101101001":2,"0110100110010101":4,"0110100110010110":6,"0110100110011001":3,"0110100110011010":1,"0110101001010101":3,"0110101001010110":2,"0110101001011001":4,"0110101001011010":2,"0110101001100101":1,"0110101001100110":1,"0110101001101001":4,"0110101010010101":3,"0110101010010110":1,"0110101010011001":4,"0110101010011010":2,"0110101010100110":1,"1001010101010101":3,"1001010101010110":2,"1001010101011001":3,"1001010101011010":2,"1001010101100101":1,"1001010101100110":3,"1001010101101001":1,"1001010101101010":2,"1001010110010101":2,"1001010110010110":2,"1001010110011001":4,"1001010110011010":2,"1001011001010101":2,"1001011001010110":2,"1001011001011001":3,"1001011001011010":2,"1001011001100101":3,"1001011001100110":1,"1001011001101001":2,"1001011001101010":1,"1001011010010101":2,"1001011010010110":4,"1001011010011001":1,"1001011010011010":2,"1001100101010101":5,"1001100101010110":3,"1001100101011001":4,"1001100101011010":3,"1001100101100101":2,"1001100101100110":1,"1001100101101001":1,"1001100110010101":2,"1001100110010110":3,"1001100110011001":1,"1001100110011010":3,"1001101001010101":3,"1001101001010110":2,"1001101001011001":2,"1001101001011010":2,"1001101001100101":3,"1001101001100110":1,"1001101001101001":2,"1001101001101010":1,"1001101010010101":1,"1001101010010110":2,"1001101010011001":2,"1010010101010101":7,"1010010101010110":6,"1010010101011001":7,"1010010101011010":6,"1010010101100101":4,"1010010101100110":4,"1010010101101001":3,"1010010101101010":2,"1010010110010101":4,"1010010110010110":1,"1010010110011001":5,"1010010110011010":3,"1010011001010101":4,"1010011001010110":5,"1010011001011001":4,"1010011001011010":3,"1010011001100101":4,"1010011001100110":4,"1010011001101001":3,"1010011001101010":4,"1010011010010101":2,"1010011010010110":3,"1010011010011001":2,"1010100101010101":3,"1010100101010110":6,"1010100101011001":3,"1010100101011010":4,"1010100101100101":3,"1010100101100110":2,"1010100101101001":2,"1010100101101010":2,"1010100110010101":2,"1010100110010110":1,"1010100110011001":1,"1010100110011010":2,"1010101001010110":6,"1010101001011001":4,"1010101001011010":4,"1010101001100101":2,"1010101001101001":1,"1010101001101010":1,"1010101010010101":3,"1010101010010110":2,"1010101010011001":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.7560670590028167},"metrics":{"exact_objective":14,"optimal_count":1,"combinations":256,"optimal_probability":0.010978485343988351,"feasible_probability":0.9963861971170641,"uniform_optimal_probability":0.00390625,"uniform_feasible_probability":0.75,"shots_for_95_percent":272,"hit_curve":[{"shots":8,"quantum":0.0845262143309957,"uniform":0.0308260755190447},{"shots":16,"quantum":0.16190774775286199,"uniform":0.060701904106183556},{"shots":32,"quantum":0.2976013767233196,"uniform":0.1177190870502508},{"shots":64,"quantum":0.5066361740190239,"uniform":0.2215803906445571},{"shots":128,"quantum":0.7565921352134133,"uniform":0.3940629117709197},{"shots":512,"quantum":0.9964897469393449,"uniform":0.865193714387987}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":17,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":14,"preference_cost":9,"change_cost":5,"changed_tasks":3,"max_start_shift":7,"choices":[1,1,0,0,0,0,1,0],"schedule":[{"task":"t0","resource":"r0","start":7,"end":8},{"task":"t1","resource":"r0","start":10,"end":11},{"task":"t2","resource":"r1","start":11,"end":12},{"task":"t3","resource":"r0","start":13,"end":14},{"task":"t4","resource":"r0","start":8,"end":9},{"task":"t5","resource":"r1","start":1,"end":2},{"task":"t6","resource":"r1","start":8,"end":9},{"task":"t7","resource":"r2","start":10,"end":11}]},"dual_bound":14.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":9,"runtime_seconds":0.0015075100091053173},"exact":{"status":"optimal","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r1","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r1","start":11,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":13,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,1,0,1,0,1,0,1,0,0,1,1,0],"qubo_energy":14},"combinations":256,"feasible_count":192,"runtime_seconds":0.003714959995704703},"greedy":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r1","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r1","start":11,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":13,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,1,0,1,0,1,0,1,0,0,1,1,0],"qubo_energy":14},"runtime_seconds":3.6922996514476836e-05},"resources":{"full":{"depth":20,"operations":{"RX":40,"I":16,"RZ":32,"CNOT":42,"CRY":8,"X":8},"cnot":42,"cry":8},"auto":{"depth":13,"operations":{"RX":40,"I":16,"RZ":24,"CNOT":26,"CRY":8,"X":8},"cnot":26,"cry":8}},"phase_max_probability_error":8.673617379884035e-18,"samples":[{"shots":8,"quantum_objective":19,"uniform_objective":22},{"shots":16,"quantum_objective":18,"uniform_objective":17},{"shots":32,"quantum_objective":16,"uniform_objective":19},{"shots":64,"quantum_objective":15,"uniform_objective":15},{"shots":128,"quantum_objective":14,"uniform_objective":14},{"shots":512,"quantum_objective":14,"uniform_objective":14}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":16,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[2,2,4,2,2,2,2],"max_component_qubits":4,"component_to_original":[[0,1],[2,3],[4,5,6,7],[8,9],[10,11],[12,13],[14,15]],"components":[{"qubits":2,"penalty":3,"objective_bound":2,"offset":3,"linear":[-2,-1],"quadratic":[[0,1,6]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":7,"cost":1},{"index":1,"task":"t0","resource":"r2","start":15,"cost":2}],"conflicts":[]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-1,-2],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r2","start":6,"cost":4},{"index":1,"task":"t1","resource":"r0","start":10,"cost":3}],"conflicts":[]},{"qubits":4,"penalty":16,"objective_bound":15,"offset":32,"linear":[-14,-8,-14,-9],"quadratic":[[0,1,32],[1,3,16],[2,3,32]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r1","start":11,"cost":2},{"index":1,"task":"t2","resource":"r2","start":1,"cost":8},{"index":2,"task":"t3","resource":"r0","start":13,"cost":2},{"index":3,"task":"t3","resource":"r0","start":1,"cost":7}],"conflicts":[{"i":1,"j":3,"reasons":["group"]}]},{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-5,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r0","start":8,"cost":3},{"index":1,"task":"t4","resource":"r2","start":11,"cost":7}],"conflicts":[]},{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-4,-1],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t5","resource":"r1","start":1,"cost":2},{"index":1,"task":"t5","resource":"r2","start":2,"cost":5}],"conflicts":[]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-1,-4],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t6","resource":"r0","start":14,"cost":4},{"index":1,"task":"t6","resource":"r1","start":8,"cost":1}],"conflicts":[]},{"qubits":2,"penalty":3,"objective_bound":2,"offset":3,"linear":[-3,-1],"quadratic":[[0,1,6]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t7","resource":"r2","start":10,"cost":0},{"index":1,"task":"t7","resource":"r1","start":9,"cost":2}],"conflicts":[]}]},"diagnostic_seconds":0.05996289200265892}
+{"input":{"file":"evaluation-n8-d0.json","split":"evaluation","tasks":8,"density_parameter":0,"data_seed":20261002,"sha256":"3f0bb0c0f3046ff399ba6cb057cbd4af76f9e58379bf21f3093dd368cce64145"},"model":{"qubits":16,"penalty":40,"objective_bound":39,"offset":320,"linear":[-39,-38,-36,-37,-38,-32,-38,-33,-37,-33,-38,-35,-36,-39,-40,-38],"quadratic":[[0,1,80],[2,3,80],[4,5,80],[5,7,40],[6,7,80],[8,9,80],[10,11,80],[12,13,80],[14,15,80]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":7,"cost":1},{"index":1,"task":"t0","resource":"r2","start":15,"cost":2},{"index":2,"task":"t1","resource":"r2","start":6,"cost":4},{"index":3,"task":"t1","resource":"r0","start":10,"cost":3},{"index":4,"task":"t2","resource":"r1","start":11,"cost":2},{"index":5,"task":"t2","resource":"r2","start":1,"cost":8},{"index":6,"task":"t3","resource":"r0","start":13,"cost":2},{"index":7,"task":"t3","resource":"r0","start":1,"cost":7},{"index":8,"task":"t4","resource":"r0","start":8,"cost":3},{"index":9,"task":"t4","resource":"r2","start":11,"cost":7},{"index":10,"task":"t5","resource":"r1","start":1,"cost":2},{"index":11,"task":"t5","resource":"r2","start":2,"cost":5},{"index":12,"task":"t6","resource":"r0","start":14,"cost":4},{"index":13,"task":"t6","resource":"r1","start":8,"cost":1},{"index":14,"task":"t7","resource":"r2","start":10,"cost":0},{"index":15,"task":"t7","resource":"r1","start":9,"cost":2}],"conflicts":[{"i":5,"j":7,"reasons":["group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r1","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r1","start":11,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":13,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,1,0,1,0,1,0,1,0,0,1,1,0],"qubo_energy":14},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.223291828843063,0.2019251512094603],"expected_energy":27.15619333282959,"initial_expected_energy":37.785932712668455,"history":[37.785932712668455,37.776838932302,46.52887703630967,36.64496939776694,46.74627568914673,41.9228710282697,39.57424024766464,33.1027669894392,35.9631095665017,32.838510144109975,32.94132597088509,32.70977475706809,33.82345027434509,32.33537678495514,32.06490526142404,31.63128104847347,30.630149534155283,29.219239973828888,28.630433819450875,42.60468647855544,39.30538052680765,29.146862938031134,27.31381611700936,30.52617241084389,27.35626315362078,27.514118727371567,27.1637620008765,27.346038025991824,27.1677426978232,27.1947475062749,27.17309668057414,27.165262461638655,27.16459989335364,27.16440141360371,27.162999228294872,27.16315679512262,27.162856087247764,27.162614412300293,27.16226380386878,27.162886379772125,27.161701896261746,27.1612425893614,27.161993509483697,27.160845136229764,27.160337007904175,27.159401826699952,27.158548285120474,27.157778306905925,27.158043440439545,27.16055649932708,27.157736132114774,27.15709860107679,27.156936315057536,27.157393086139695,27.15676840694118,27.15662550869883,27.15646394641408,27.157176499502242,27.156396951493388,27.15619333282959,35.92055595228122,35.21872199483663,41.14767209533433,43.13690768730186,47.678783624496006,33.81154024753131,37.982161761902375,33.73723622417048,33.557215726456135,34.13136007467722,33.63073690355887,33.62138363286637,33.54226778874384,33.515460746020956,33.496842940011604,33.49302272428413,33.48517055086419,33.48328611546563,33.50077890175056,33.471521966037784,33.463736221762105,33.454580240468715,33.436424729143624,33.401755565987784,33.480113085768224,33.424585490339624,33.39647143703293,33.43305689211753,33.38922631454196,33.37895448638468,33.37017457870616,33.37815845010648,33.363375348207555,33.368276481073806,33.35390952997163,33.3517883181291,33.36855210011609,33.339408504936586,33.32239904561775,33.30116867509206,33.256836954461725,33.18808726472842,33.269859728834106,33.62498592305282,33.17320091695623,33.15283428297853,33.106457011213614,32.993140363805836,32.88444812969129,32.8229146419837,32.38779604472967,33.92827146360913,34.18219760131141,32.48358996456494,32.37640425804757,32.5861240669057,32.34650066668993,32.31086833517247,32.286424029636976,32.32267783464273],"feasible_probability":0.9990130506519098,"one_hot_probability":0.9999999999999997,"sampled_feasible_fraction":1.0,"counts":{"0101010101010101":1,"0101010101010110":1,"0101010101011001":1,"0101010101011010":1,"0101010101100101":4,"0101010101101001":2,"0101010110010101":2,"0101010110010110":3,"0101010110011001":1,"0101010110011010":3,"0101011001011001":2,"0101011001100101":3,"0101011001100110":4,"0101011001101010":1,"0101011010010101":4,"0101011010010110":3,"0101011010011001":5,"0101011010011010":3,"0101100101010110":3,"0101100101011001":1,"0101100101100101":3,"0101100101100110":3,"0101100101101001":4,"0101100101101010":1,"0101100110010101":3,"0101100110010110":3,"0101100110011001":3,"0101100110011010":1,"0101101001010110":4,"0101101001011001":3,"0101101001011010":3,"0101101001100101":6,"0101101001100110":4,"0101101001101001":9,"0101101001101010":7,"0101101010010101":5,"0101101010010110":6,"0101101010011001":8,"0101101010011010":6,"0110010101010110":1,"0110010101011001":1,"0110010101011010":1,"0110010101100101":1,"0110010101101001":1,"0110010101101010":1,"0110010110010101":1,"0110010110011010":2,"0110011001010101":1,"0110011001010110":2,"0110011001100110":3,"0110011001101001":2,"0110011001101010":1,"0110011010010101":2,"0110011010010110":2,"0110011010011001":4,"0110011010011010":3,"0110100101010101":1,"0110100101010110":1,"0110100101100101":2,"0110100101100110":1,"0110100101101001":1,"0110100101101010":3,"0110100110011001":3,"0110100110011010":3,"0110101001010101":2,"0110101001010110":1,"0110101001100101":5,"0110101001100110":4,"0110101001101001":6,"0110101001101010":7,"0110101010010101":4,"0110101010010110":5,"0110101010011001":1,"0110101010011010":4,"1001010101010101":2,"1001010101011010":1,"1001010101100101":2,"1001010101100110":1,"1001010101101001":1,"1001010101101010":4,"1001010110010101":2,"1001010110010110":3,"1001010110011001":1,"1001010110011010":6,"1001011001010110":1,"1001011001011010":4,"1001011001100101":4,"1001011001100110":8,"1001011001101001":2,"1001011001101010":1,"1001011010010101":3,"1001011010010110":6,"1001011010011010":6,"1001100101010101":4,"1001100101010110":3,"1001100101011001":4,"1001100101011010":3,"1001100101100101":3,"1001100101100110":9,"1001100101101001":4,"1001100101101010":1,"1001100110010101":5,"1001100110010110":4,"1001100110011001":4,"1001100110011010":8,"1001101001010101":1,"1001101001010110":4,"1001101001011001":5,"1001101001011010":3,"1001101001100101":4,"1001101001100110":13,"1001101001101001":5,"1001101001101010":8,"1001101010010101":9,"1001101010010110":11,"1001101010011001":8,"1001101010011010":9,"1010010101100110":1,"1010010101101001":1,"1010010101101010":2,"1010010110010101":1,"1010010110010110":2,"1010010110011001":1,"1010010110011010":1,"1010011001010101":1,"1010011001010110":2,"1010011001011010":4,"1010011001100101":3,"1010011001100110":6,"1010011001101001":3,"1010011001101010":1,"1010011010010101":3,"1010011010010110":3,"1010011010011001":2,"1010011010011010":3,"1010100101010110":2,"1010100101100101":5,"1010100101100110":4,"1010100101101001":2,"1010100101101010":3,"1010100110010101":5,"1010100110010110":2,"1010100110011001":1,"1010100110011010":3,"1010101001010101":2,"1010101001010110":2,"1010101001011001":2,"1010101001011010":1,"1010101001100101":4,"1010101001100110":5,"1010101001101001":3,"1010101001101010":5,"1010101010010101":6,"1010101010010110":4,"1010101010011001":3,"1010101010011010":5},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.8476358350017108},"metrics":{"exact_objective":14,"optimal_count":1,"combinations":256,"optimal_probability":0.0007763604758730299,"feasible_probability":0.9990130506519102,"uniform_optimal_probability":0.00390625,"uniform_feasible_probability":0.75,"shots_for_95_percent":3858,"hit_curve":[{"shots":8,"quantum":0.006194033389736721,"uniform":0.0308260755190447},{"shots":16,"quantum":0.01234970072984027,"uniform":0.060701904106183556},{"shots":32,"quantum":0.02454688635156392,"uniform":0.1177190870502508},{"shots":64,"quantum":0.048491223073571246,"uniform":0.2215803906445571},{"shots":128,"quantum":0.09463104743197165,"uniform":0.3940629117709197},{"shots":512,"quantum":0.32810348366475356,"uniform":0.865193714387987}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":17,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":14,"preference_cost":9,"change_cost":5,"changed_tasks":3,"max_start_shift":7,"choices":[1,1,0,0,0,0,1,0],"schedule":[{"task":"t0","resource":"r0","start":7,"end":8},{"task":"t1","resource":"r0","start":10,"end":11},{"task":"t2","resource":"r1","start":11,"end":12},{"task":"t3","resource":"r0","start":13,"end":14},{"task":"t4","resource":"r0","start":8,"end":9},{"task":"t5","resource":"r1","start":1,"end":2},{"task":"t6","resource":"r1","start":8,"end":9},{"task":"t7","resource":"r2","start":10,"end":11}]},"dual_bound":14.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":9,"runtime_seconds":0.0015075100091053173},"exact":{"status":"optimal","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r1","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r1","start":11,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":13,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,1,0,1,0,1,0,1,0,0,1,1,0],"qubo_energy":14},"combinations":256,"feasible_count":192,"runtime_seconds":0.003714959995704703},"greedy":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r1","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r1","start":11,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":13,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,1,0,1,0,1,0,1,0,0,1,1,0],"qubo_energy":14},"runtime_seconds":3.6922996514476836e-05},"resources":{"full":{"depth":20,"operations":{"RX":40,"I":16,"RZ":32,"CNOT":42,"CRY":8,"X":8},"cnot":42,"cry":8},"auto":{"depth":13,"operations":{"RX":40,"I":16,"RZ":24,"CNOT":26,"CRY":8,"X":8},"cnot":26,"cry":8}},"phase_max_probability_error":1.3877787807814457e-17,"samples":[{"shots":8,"quantum_objective":21,"uniform_objective":21},{"shots":16,"quantum_objective":18,"uniform_objective":18},{"shots":32,"quantum_objective":15,"uniform_objective":14},{"shots":64,"quantum_objective":19,"uniform_objective":17},{"shots":128,"quantum_objective":15,"uniform_objective":14},{"shots":512,"quantum_objective":16,"uniform_objective":15}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":16,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[2,2,4,2,2,2,2],"max_component_qubits":4,"component_to_original":[[0,1],[2,3],[4,5,6,7],[8,9],[10,11],[12,13],[14,15]],"components":[{"qubits":2,"penalty":3,"objective_bound":2,"offset":3,"linear":[-2,-1],"quadratic":[[0,1,6]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":7,"cost":1},{"index":1,"task":"t0","resource":"r2","start":15,"cost":2}],"conflicts":[]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-1,-2],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r2","start":6,"cost":4},{"index":1,"task":"t1","resource":"r0","start":10,"cost":3}],"conflicts":[]},{"qubits":4,"penalty":16,"objective_bound":15,"offset":32,"linear":[-14,-8,-14,-9],"quadratic":[[0,1,32],[1,3,16],[2,3,32]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r1","start":11,"cost":2},{"index":1,"task":"t2","resource":"r2","start":1,"cost":8},{"index":2,"task":"t3","resource":"r0","start":13,"cost":2},{"index":3,"task":"t3","resource":"r0","start":1,"cost":7}],"conflicts":[{"i":1,"j":3,"reasons":["group"]}]},{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-5,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r0","start":8,"cost":3},{"index":1,"task":"t4","resource":"r2","start":11,"cost":7}],"conflicts":[]},{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-4,-1],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t5","resource":"r1","start":1,"cost":2},{"index":1,"task":"t5","resource":"r2","start":2,"cost":5}],"conflicts":[]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-1,-4],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t6","resource":"r0","start":14,"cost":4},{"index":1,"task":"t6","resource":"r1","start":8,"cost":1}],"conflicts":[]},{"qubits":2,"penalty":3,"objective_bound":2,"offset":3,"linear":[-3,-1],"quadratic":[[0,1,6]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t7","resource":"r2","start":10,"cost":0},{"index":1,"task":"t7","resource":"r1","start":9,"cost":2}],"conflicts":[]}]},"diagnostic_seconds":0.05654424898966681}
+{"input":{"file":"evaluation-n8-d0.json","split":"evaluation","tasks":8,"density_parameter":0,"data_seed":20261002,"sha256":"3f0bb0c0f3046ff399ba6cb057cbd4af76f9e58379bf21f3093dd368cce64145"},"model":{"qubits":16,"penalty":40,"objective_bound":39,"offset":320,"linear":[-39,-38,-36,-37,-38,-32,-38,-33,-37,-33,-38,-35,-36,-39,-40,-38],"quadratic":[[0,1,80],[2,3,80],[4,5,80],[5,7,40],[6,7,80],[8,9,80],[10,11,80],[12,13,80],[14,15,80]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":7,"cost":1},{"index":1,"task":"t0","resource":"r2","start":15,"cost":2},{"index":2,"task":"t1","resource":"r2","start":6,"cost":4},{"index":3,"task":"t1","resource":"r0","start":10,"cost":3},{"index":4,"task":"t2","resource":"r1","start":11,"cost":2},{"index":5,"task":"t2","resource":"r2","start":1,"cost":8},{"index":6,"task":"t3","resource":"r0","start":13,"cost":2},{"index":7,"task":"t3","resource":"r0","start":1,"cost":7},{"index":8,"task":"t4","resource":"r0","start":8,"cost":3},{"index":9,"task":"t4","resource":"r2","start":11,"cost":7},{"index":10,"task":"t5","resource":"r1","start":1,"cost":2},{"index":11,"task":"t5","resource":"r2","start":2,"cost":5},{"index":12,"task":"t6","resource":"r0","start":14,"cost":4},{"index":13,"task":"t6","resource":"r1","start":8,"cost":1},{"index":14,"task":"t7","resource":"r2","start":10,"cost":0},{"index":15,"task":"t7","resource":"r1","start":9,"cost":2}],"conflicts":[{"i":5,"j":7,"reasons":["group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r1","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r1","start":11,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":13,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,1,0,1,0,1,0,1,0,0,1,1,0],"qubo_energy":14},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[-1.2100000926681884,0.25443922520568546],"expected_energy":23.414301966274444,"initial_expected_energy":36.18068928281973,"history":[36.18068928281973,36.11730275310042,26.465110283469503,56.913380400100195,31.74458142869829,27.02843090179586,26.407046373781945,27.50484866966418,26.978419244606965,25.554346603981042,25.502897543210857,26.1347426431131,25.025590651517263,24.402228819970855,23.911279161443304,23.73004715023824,23.853344180490573,24.67103552631952,23.906888190108035,23.67173400341059,23.648341835003837,24.48894354815461,23.480304970081818,23.528863431522552,23.475264854809225,23.53398928193095,23.468780929069887,23.460607790642083,23.45556830234211,23.463426465986906,23.452570683992406,23.449668593798275,23.445931714860457,23.440559288657518,23.4368950733476,23.444845495762113,23.434668867849773,23.432823431669576,23.43528988001074,23.431443708649496,23.4294869802806,23.42596718336088,23.423013679139277,23.423164333062374,23.425824934416898,23.425089870379512,23.420414537005513,23.420361270669474,23.420954994476766,23.420482079077757,23.420067071509493,23.41967216133765,23.419714866480387,23.419463892378204,23.41927855188833,23.418995125031405,23.41935940050481,23.418604970406736,23.41825787342969,23.41839501750505,37.18270608527928,40.38095431399108,37.32500256662874,34.76002253985802,38.033071136538375,39.75288137366306,28.591216442370985,28.04048657756519,23.424651571251502,49.262811648314646,30.080067785950114,23.453450857018197,26.318466964079,23.947008421867693,23.79411265226744,23.58691491603107,23.425570116491865,23.424684032723242,23.42515138222067,23.43133108241106,23.41793017773535,23.42034604754511,23.419035368494047,23.418219730624717,23.41745105503451,23.417081121897795,23.41726017949836,23.41693492818257,23.41687528697838,23.41704626860642,23.41671056449505,23.41655682066287,23.416268646517356,23.415835529266534,23.415529475363705,23.41476259452516,23.419552025550573,23.416271044628594,23.415971293152992,23.41465917831242,23.41457451131183,23.41456005060648,23.414738759366745,23.414463072102656,23.414438794800624,23.414401181715043,23.414359633382112,23.414658955790046,23.414327630456704,23.414347449367206,23.414375200608333,23.41432386571709,23.41434698458914,23.414324139032907,23.414317205239954,23.414314185758926,23.414321742331623,23.414310814785026,23.414307709845257,23.414301966274444],"feasible_probability":0.9971185572058875,"one_hot_probability":0.9999999999999991,"sampled_feasible_fraction":0.99609375,"counts":{"0101010101010101":3,"0101010101010110":8,"0101010101011001":3,"0101010101011010":4,"0101010101100101":4,"0101010101100110":3,"0101010101101001":2,"0101010101101010":1,"0101010110010101":1,"0101010110010110":1,"0101010110011001":3,"0101010110011010":2,"0101011001010101":1,"0101011001010110":7,"0101011001011001":2,"0101011001011010":1,"0101011001100110":1,"0101011001101001":2,"0101011001101010":2,"0101011010010101":3,"0101011010010110":2,"0101011010011001":2,"0101011010011010":1,"0101100101010110":1,"0101100101011001":3,"0101100101011010":4,"0101100101100110":2,"0101100101101001":2,"0101100101101010":2,"0101100110010101":4,"0101100110011001":4,"0101100110011010":1,"0101101001010101":7,"0101101001010110":2,"0101101001011001":3,"0101101001011010":2,"0101101001100101":4,"0101101001101001":1,"0101101010010101":2,"0101101010010110":1,"0101101010011001":1,"0101101010011010":4,"0110010101010101":8,"0110010101010110":5,"0110010101011001":5,"0110010101011010":5,"0110010101100101":1,"0110010101100110":5,"0110010101101001":4,"0110010101101010":4,"0110010110010101":2,"0110010110010110":4,"0110010110011001":4,"0110010110011010":1,"0110011001010101":3,"0110011001010110":2,"0110011001011001":4,"0110011001011010":2,"0110011001100101":1,"0110011001101001":3,"0110011001101010":2,"0110011010010101":1,"0110011010010110":2,"0110011010011001":1,"0110011010011010":2,"0110011010101001":1,"0110100101010101":5,"0110100101010110":7,"0110100101011001":5,"0110100101011010":2,"0110100101100101":1,"0110100101100110":3,"0110100101101001":6,"0110100101101010":2,"0110100110010101":3,"0110100110010110":2,"0110100110011001":2,"0110100110011010":4,"0110101001010101":6,"0110101001010110":2,"0110101001011001":5,"0110101001011010":7,"0110101001100101":5,"0110101001101001":2,"0110101001101010":2,"0110101010010101":1,"0110101010011001":1,"0110101010011010":5,"1001010101010101":4,"1001010101010110":2,"1001010101011001":3,"1001010101011010":5,"1001010101100101":2,"1001010101100110":2,"1001010110010101":2,"1001010110010110":1,"1001010110011001":4,"1001010110011010":2,"1001011001010101":6,"1001011001010110":2,"1001011001011001":6,"1001011001011010":1,"1001011001100101":1,"1001011001101001":3,"1001011001101010":1,"1001011010010101":2,"1001011010010110":1,"1001011010011001":2,"1001100101010101":5,"1001100101010110":3,"1001100101011001":3,"1001100101011010":4,"1001100101100110":2,"1001100101101010":1,"1001100110010101":2,"1001100110010110":5,"1001100110011001":2,"1001100110011010":1,"1001101001010101":2,"1001101001010110":2,"1001101001011001":4,"1001101001011010":2,"1001101001100101":2,"1001101001100110":2,"1001101001101001":2,"1001101001101010":1,"1001101010010101":1,"1001101010010110":1,"1001101010011001":4,"1001101010011010":2,"1010010101010101":1,"1010010101010110":4,"1010010101011001":8,"1010010101011010":4,"1010010101100101":4,"1010010101100110":5,"1010010101101001":2,"1010010101101010":2,"1010010110010101":4,"1010010110010110":1,"1010010110011010":2,"1010011001010101":3,"1010011001010110":1,"1010011001011001":7,"1010011001011010":4,"1010011001100101":3,"1010011001100110":3,"1010011001101001":5,"1010011001101010":5,"1010011010010101":1,"1010011010011001":4,"1010011010011010":5,"1010100101010101":4,"1010100101010110":2,"1010100101011001":5,"1010100101011010":5,"1010100101100101":3,"1010100101100110":1,"1010100101101001":3,"1010100101101010":2,"1010100110010101":3,"1010100110010110":3,"1010100110011010":5,"1010101001010101":3,"1010101001010110":4,"1010101001011001":5,"1010101001011010":3,"1010101001100101":5,"1010101001100110":1,"1010101001101001":1,"1010101010010101":4,"1010101010011001":4,"1010101010011010":3,"1010101010100101":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.8181990459997905},"metrics":{"exact_objective":14,"optimal_count":1,"combinations":256,"optimal_probability":0.010852151592303329,"feasible_probability":0.9971185572058877,"uniform_optimal_probability":0.00390625,"uniform_feasible_probability":0.75,"shots_for_95_percent":275,"hit_curve":[{"shots":8,"quantum":0.08359028356603795,"uniform":0.0308260755190447},{"shots":16,"quantum":0.16019323162542526,"uniform":0.060701904106183556},{"shots":32,"quantum":0.2947245917922534,"uniform":0.1177190870502508},{"shots":64,"quantum":0.5025865985773964,"uniform":0.2215803906445571},{"shots":128,"quantum":0.7525799080851958,"uniform":0.3940629117709197},{"shots":512,"quantum":0.9962525154105519,"uniform":0.865193714387987}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":17,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":14,"preference_cost":9,"change_cost":5,"changed_tasks":3,"max_start_shift":7,"choices":[1,1,0,0,0,0,1,0],"schedule":[{"task":"t0","resource":"r0","start":7,"end":8},{"task":"t1","resource":"r0","start":10,"end":11},{"task":"t2","resource":"r1","start":11,"end":12},{"task":"t3","resource":"r0","start":13,"end":14},{"task":"t4","resource":"r0","start":8,"end":9},{"task":"t5","resource":"r1","start":1,"end":2},{"task":"t6","resource":"r1","start":8,"end":9},{"task":"t7","resource":"r2","start":10,"end":11}]},"dual_bound":14.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":9,"runtime_seconds":0.0015075100091053173},"exact":{"status":"optimal","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r1","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r1","start":11,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":13,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,1,0,1,0,1,0,1,0,0,1,1,0],"qubo_energy":14},"combinations":256,"feasible_count":192,"runtime_seconds":0.003714959995704703},"greedy":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r1","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r1","start":11,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":13,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,1,0,1,0,1,0,1,0,0,1,1,0],"qubo_energy":14},"runtime_seconds":3.6922996514476836e-05},"resources":{"full":{"depth":20,"operations":{"RX":40,"I":16,"RZ":32,"CNOT":42,"CRY":8,"X":8},"cnot":42,"cry":8},"auto":{"depth":13,"operations":{"RX":40,"I":16,"RZ":24,"CNOT":26,"CRY":8,"X":8},"cnot":26,"cry":8}},"phase_max_probability_error":1.214306433183765e-17,"samples":[{"shots":8,"quantum_objective":15,"uniform_objective":15},{"shots":16,"quantum_objective":17,"uniform_objective":18},{"shots":32,"quantum_objective":15,"uniform_objective":18},{"shots":64,"quantum_objective":15,"uniform_objective":14},{"shots":128,"quantum_objective":14,"uniform_objective":14},{"shots":512,"quantum_objective":14,"uniform_objective":14}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":16,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[2,2,4,2,2,2,2],"max_component_qubits":4,"component_to_original":[[0,1],[2,3],[4,5,6,7],[8,9],[10,11],[12,13],[14,15]],"components":[{"qubits":2,"penalty":3,"objective_bound":2,"offset":3,"linear":[-2,-1],"quadratic":[[0,1,6]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":7,"cost":1},{"index":1,"task":"t0","resource":"r2","start":15,"cost":2}],"conflicts":[]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-1,-2],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r2","start":6,"cost":4},{"index":1,"task":"t1","resource":"r0","start":10,"cost":3}],"conflicts":[]},{"qubits":4,"penalty":16,"objective_bound":15,"offset":32,"linear":[-14,-8,-14,-9],"quadratic":[[0,1,32],[1,3,16],[2,3,32]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r1","start":11,"cost":2},{"index":1,"task":"t2","resource":"r2","start":1,"cost":8},{"index":2,"task":"t3","resource":"r0","start":13,"cost":2},{"index":3,"task":"t3","resource":"r0","start":1,"cost":7}],"conflicts":[{"i":1,"j":3,"reasons":["group"]}]},{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-5,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r0","start":8,"cost":3},{"index":1,"task":"t4","resource":"r2","start":11,"cost":7}],"conflicts":[]},{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-4,-1],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t5","resource":"r1","start":1,"cost":2},{"index":1,"task":"t5","resource":"r2","start":2,"cost":5}],"conflicts":[]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-1,-4],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t6","resource":"r0","start":14,"cost":4},{"index":1,"task":"t6","resource":"r1","start":8,"cost":1}],"conflicts":[]},{"qubits":2,"penalty":3,"objective_bound":2,"offset":3,"linear":[-3,-1],"quadratic":[[0,1,6]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t7","resource":"r2","start":10,"cost":0},{"index":1,"task":"t7","resource":"r1","start":9,"cost":2}],"conflicts":[]}]},"diagnostic_seconds":0.06365794299927074}
+{"input":{"file":"evaluation-n8-d0.json","split":"evaluation","tasks":8,"density_parameter":0,"data_seed":20261002,"sha256":"3f0bb0c0f3046ff399ba6cb057cbd4af76f9e58379bf21f3093dd368cce64145"},"model":{"qubits":16,"penalty":40,"objective_bound":39,"offset":320,"linear":[-39,-38,-36,-37,-38,-32,-38,-33,-37,-33,-38,-35,-36,-39,-40,-38],"quadratic":[[0,1,80],[2,3,80],[4,5,80],[5,7,40],[6,7,80],[8,9,80],[10,11,80],[12,13,80],[14,15,80]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":7,"cost":1},{"index":1,"task":"t0","resource":"r2","start":15,"cost":2},{"index":2,"task":"t1","resource":"r2","start":6,"cost":4},{"index":3,"task":"t1","resource":"r0","start":10,"cost":3},{"index":4,"task":"t2","resource":"r1","start":11,"cost":2},{"index":5,"task":"t2","resource":"r2","start":1,"cost":8},{"index":6,"task":"t3","resource":"r0","start":13,"cost":2},{"index":7,"task":"t3","resource":"r0","start":1,"cost":7},{"index":8,"task":"t4","resource":"r0","start":8,"cost":3},{"index":9,"task":"t4","resource":"r2","start":11,"cost":7},{"index":10,"task":"t5","resource":"r1","start":1,"cost":2},{"index":11,"task":"t5","resource":"r2","start":2,"cost":5},{"index":12,"task":"t6","resource":"r0","start":14,"cost":4},{"index":13,"task":"t6","resource":"r1","start":8,"cost":1},{"index":14,"task":"t7","resource":"r2","start":10,"cost":0},{"index":15,"task":"t7","resource":"r1","start":9,"cost":2}],"conflicts":[{"i":5,"j":7,"reasons":["group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":16,"raw_cost":16,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r1","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":15,"task":"t7","group":"g3","resource":"r1","start":9,"end":10,"reserved_end":10,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":4,"task":"t2","group":"g1","resource":"r1","start":11,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":13,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,1,0,1,0,1,0,1,0,0,1,0,1],"qubo_energy":16},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.236992936373882,1.7726162683729139],"expected_energy":27.15415913570638,"initial_expected_energy":45.62063657309399,"history":[45.62063657309399,44.55230037309859,40.77638122726354,35.55512136088393,36.820826470721194,31.7769934249796,31.2582759693163,40.097404255216894,42.48433264397079,47.37835590499407,31.198715831339392,27.154444890964115,30.79396566597375,27.223754676658615,27.324728741968343,27.77438891519181,27.314608761000017,27.18913337955827,27.154527697015872,27.163766173601996,27.158403070307564,27.157440038344156,27.15419283235015,27.15474536873321,27.15418072876603,27.15419580721396,27.154205857514174,27.154201652331928,27.154180761604884,27.154177280859756,27.1541723140394,27.15417047942173,27.154175058071203,27.154171459966328,27.154169045323886,27.154170968875043,27.154168320188838,27.154167715648633,27.1541670194931,27.154165767147727,27.154163937685794,27.154162358957635,27.15416076216797,27.15416105850001,27.154163462549366,27.154162436313797,27.154160510367365,27.15416044368965,27.15416030833233,27.154160205694332,27.154160213865524,27.1541600406523,27.15416001136277,27.154160229533513,27.154159923215115,27.154159843151003,27.154159698402477,27.154159443307346,27.15415913570638,27.154159509249553,48.75958849994352,39.525171682796326,36.46253665400184,33.51352197805535,48.678042559993976,39.6157235029993,38.07871629425573,33.47600059294181,33.37138428438237,33.948792911477724,33.46504740606422,33.3947300901704,33.350135431689075,33.31469616068833,33.27660845706578,33.291550715642735,33.26465564032931,33.25365705053781,33.23473504067011,33.193038517736014,33.12969239762416,34.81706187635822,33.22690137388134,33.20727205297182,33.08884248962937,33.113523113691684,33.106417938015106,33.06836155305078,33.07648743543843,33.05190515683622,33.045182881171236,33.05779317106566,33.032624246220884,33.02071117306694,33.00256819859002,32.96601570712316,32.91926622378241,32.80587003791608,32.72776985669925,32.69379200868265,32.208049702893675,33.17246120329332,33.98490767328446,32.20478288406526,32.0733221809586,31.90482490603885,31.77627639800738,31.87155763421633,32.15691837049198,31.73536215543061,31.680549576051195,31.69416246981195,31.620120434105328,31.598750066019655,31.839058972883567,31.532136430464625,31.493369402779127,31.45998974018348,31.50662616834157,31.429750822960198],"feasible_probability":0.9993331195061481,"one_hot_probability":0.9999999999999997,"sampled_feasible_fraction":1.0,"counts":{"0101010101010110":1,"0101010101100101":1,"0101010101100110":4,"0101010101101010":1,"0101010110010101":2,"0101010110010110":1,"0101010110011010":1,"0101011001010110":1,"0101011001011010":1,"0101011001100101":2,"0101011001100110":1,"0101011001101001":3,"0101011001101010":5,"0101011010010101":3,"0101011010010110":6,"0101011010011001":3,"0101011010011010":10,"0101100101010101":1,"0101100101010110":2,"0101100101011001":3,"0101100101011010":1,"0101100101100101":3,"0101100101100110":3,"0101100101101001":2,"0101100101101010":2,"0101100110010101":7,"0101100110010110":3,"0101100110011001":3,"0101100110011010":2,"0101101001010101":2,"0101101001010110":4,"0101101001011001":3,"0101101001011010":1,"0101101001100101":10,"0101101001100110":5,"0101101001101001":6,"0101101001101010":6,"0101101010010101":6,"0101101010010110":5,"0101101010011001":4,"0101101010011010":6,"0110010101100110":4,"0110010101101010":1,"0110010110010110":1,"0110010110011010":1,"0110011001010101":1,"0110011001010110":1,"0110011001100101":1,"0110011001100110":1,"0110011001101001":1,"0110011001101010":1,"0110011010010101":1,"0110011010010110":3,"0110011010011001":2,"0110011010011010":1,"0110100101010101":2,"0110100101011010":3,"0110100101100101":2,"0110100101100110":3,"0110100101101010":4,"0110100110010101":3,"0110100110010110":1,"0110100110011001":1,"0110100110011010":2,"0110101001010101":5,"0110101001010110":3,"0110101001011001":2,"0110101001011010":1,"0110101001100101":6,"0110101001100110":5,"0110101001101001":1,"0110101001101010":2,"0110101010010101":4,"0110101010010110":3,"0110101010011001":3,"0110101010011010":6,"1001010101011001":2,"1001010101011010":1,"1001010101100101":1,"1001010101100110":4,"1001010101101001":4,"1001010110010101":4,"1001010110010110":5,"1001010110011001":4,"1001010110011010":2,"1001011001010101":4,"1001011001010110":1,"1001011001011010":1,"1001011001100101":8,"1001011001100110":6,"1001011001101001":5,"1001011001101010":8,"1001011010010101":4,"1001011010010110":6,"1001011010011001":3,"1001011010011010":5,"1001100101010101":1,"1001100101011001":3,"1001100101011010":1,"1001100101100101":1,"1001100101100110":4,"1001100101101001":5,"1001100101101010":5,"1001100110010101":4,"1001100110010110":2,"1001100110011001":4,"1001100110011010":10,"1001101001010101":2,"1001101001010110":4,"1001101001011001":2,"1001101001011010":1,"1001101001100101":12,"1001101001100110":7,"1001101001101001":9,"1001101001101010":7,"1001101010010101":9,"1001101010010110":11,"1001101010011001":10,"1001101010011010":5,"1010010101011001":1,"1010010101100110":3,"1010010101101001":1,"1010010101101010":3,"1010010110010101":3,"1010010110011001":1,"1010010110011010":1,"1010011001010101":1,"1010011001010110":2,"1010011001011001":2,"1010011001011010":2,"1010011001100101":2,"1010011001101001":2,"1010011001101010":2,"1010011010010101":5,"1010011010010110":3,"1010011010011001":2,"1010011010011010":1,"1010100101010101":2,"1010100101010110":2,"1010100101011001":2,"1010100101100101":4,"1010100101101001":1,"1010100101101010":1,"1010100110010110":3,"1010100110011001":1,"1010100110011010":2,"1010101001010101":1,"1010101001010110":2,"1010101001011010":1,"1010101001100101":2,"1010101001100110":8,"1010101001101001":3,"1010101001101010":4,"1010101010010101":1,"1010101010010110":11,"1010101010011001":2,"1010101010011010":7},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.8315619829954812},"metrics":{"exact_objective":14,"optimal_count":1,"combinations":256,"optimal_probability":0.0007663156715016207,"feasible_probability":0.9993331195061481,"uniform_optimal_probability":0.00390625,"uniform_feasible_probability":0.75,"shots_for_95_percent":3908,"hit_curve":[{"shots":8,"quantum":0.006114107836668856,"uniform":0.0308260755190447},{"shots":16,"quantum":0.012190833358699298,"uniform":0.060701904106183556},{"shots":32,"quantum":0.02423305029941902,"uniform":0.1177190870502508},{"shots":64,"quantum":0.047878859872023866,"uniform":0.2215803906445571},{"shots":128,"quantum":0.09346533452140283,"uniform":0.3940629117709197},{"shots":512,"quantum":0.3246363780834181,"uniform":0.865193714387987}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":17,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":14,"preference_cost":9,"change_cost":5,"changed_tasks":3,"max_start_shift":7,"choices":[1,1,0,0,0,0,1,0],"schedule":[{"task":"t0","resource":"r0","start":7,"end":8},{"task":"t1","resource":"r0","start":10,"end":11},{"task":"t2","resource":"r1","start":11,"end":12},{"task":"t3","resource":"r0","start":13,"end":14},{"task":"t4","resource":"r0","start":8,"end":9},{"task":"t5","resource":"r1","start":1,"end":2},{"task":"t6","resource":"r1","start":8,"end":9},{"task":"t7","resource":"r2","start":10,"end":11}]},"dual_bound":14.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":9,"runtime_seconds":0.0015075100091053173},"exact":{"status":"optimal","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r1","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r1","start":11,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":13,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,1,0,1,0,1,0,1,0,0,1,1,0],"qubo_energy":14},"combinations":256,"feasible_count":192,"runtime_seconds":0.003714959995704703},"greedy":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r1","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r1","start":11,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":13,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,1,0,1,0,1,0,1,0,0,1,1,0],"qubo_energy":14},"runtime_seconds":3.6922996514476836e-05},"resources":{"full":{"depth":20,"operations":{"RX":40,"I":16,"RZ":32,"CNOT":42,"CRY":8,"X":8},"cnot":42,"cry":8},"auto":{"depth":13,"operations":{"RX":40,"I":16,"RZ":24,"CNOT":26,"CRY":8,"X":8},"cnot":26,"cry":8}},"phase_max_probability_error":1.3877787807814457e-17,"samples":[{"shots":8,"quantum_objective":19,"uniform_objective":21},{"shots":16,"quantum_objective":16,"uniform_objective":19},{"shots":32,"quantum_objective":16,"uniform_objective":17},{"shots":64,"quantum_objective":21,"uniform_objective":17},{"shots":128,"quantum_objective":15,"uniform_objective":15},{"shots":512,"quantum_objective":16,"uniform_objective":14}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":16,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[2,2,4,2,2,2,2],"max_component_qubits":4,"component_to_original":[[0,1],[2,3],[4,5,6,7],[8,9],[10,11],[12,13],[14,15]],"components":[{"qubits":2,"penalty":3,"objective_bound":2,"offset":3,"linear":[-2,-1],"quadratic":[[0,1,6]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":7,"cost":1},{"index":1,"task":"t0","resource":"r2","start":15,"cost":2}],"conflicts":[]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-1,-2],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r2","start":6,"cost":4},{"index":1,"task":"t1","resource":"r0","start":10,"cost":3}],"conflicts":[]},{"qubits":4,"penalty":16,"objective_bound":15,"offset":32,"linear":[-14,-8,-14,-9],"quadratic":[[0,1,32],[1,3,16],[2,3,32]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r1","start":11,"cost":2},{"index":1,"task":"t2","resource":"r2","start":1,"cost":8},{"index":2,"task":"t3","resource":"r0","start":13,"cost":2},{"index":3,"task":"t3","resource":"r0","start":1,"cost":7}],"conflicts":[{"i":1,"j":3,"reasons":["group"]}]},{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-5,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r0","start":8,"cost":3},{"index":1,"task":"t4","resource":"r2","start":11,"cost":7}],"conflicts":[]},{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-4,-1],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t5","resource":"r1","start":1,"cost":2},{"index":1,"task":"t5","resource":"r2","start":2,"cost":5}],"conflicts":[]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-1,-4],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t6","resource":"r0","start":14,"cost":4},{"index":1,"task":"t6","resource":"r1","start":8,"cost":1}],"conflicts":[]},{"qubits":2,"penalty":3,"objective_bound":2,"offset":3,"linear":[-3,-1],"quadratic":[[0,1,6]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t7","resource":"r2","start":10,"cost":0},{"index":1,"task":"t7","resource":"r1","start":9,"cost":2}],"conflicts":[]}]},"diagnostic_seconds":0.053996565999113955}
+{"input":{"file":"evaluation-n8-d0.json","split":"evaluation","tasks":8,"density_parameter":0,"data_seed":20261002,"sha256":"3f0bb0c0f3046ff399ba6cb057cbd4af76f9e58379bf21f3093dd368cce64145"},"model":{"qubits":16,"penalty":40,"objective_bound":39,"offset":320,"linear":[-39,-38,-36,-37,-38,-32,-38,-33,-37,-33,-38,-35,-36,-39,-40,-38],"quadratic":[[0,1,80],[2,3,80],[4,5,80],[5,7,40],[6,7,80],[8,9,80],[10,11,80],[12,13,80],[14,15,80]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":7,"cost":1},{"index":1,"task":"t0","resource":"r2","start":15,"cost":2},{"index":2,"task":"t1","resource":"r2","start":6,"cost":4},{"index":3,"task":"t1","resource":"r0","start":10,"cost":3},{"index":4,"task":"t2","resource":"r1","start":11,"cost":2},{"index":5,"task":"t2","resource":"r2","start":1,"cost":8},{"index":6,"task":"t3","resource":"r0","start":13,"cost":2},{"index":7,"task":"t3","resource":"r0","start":1,"cost":7},{"index":8,"task":"t4","resource":"r0","start":8,"cost":3},{"index":9,"task":"t4","resource":"r2","start":11,"cost":7},{"index":10,"task":"t5","resource":"r1","start":1,"cost":2},{"index":11,"task":"t5","resource":"r2","start":2,"cost":5},{"index":12,"task":"t6","resource":"r0","start":14,"cost":4},{"index":13,"task":"t6","resource":"r1","start":8,"cost":1},{"index":14,"task":"t7","resource":"r2","start":10,"cost":0},{"index":15,"task":"t7","resource":"r1","start":9,"cost":2}],"conflicts":[{"i":5,"j":7,"reasons":["group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r1","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r1","start":11,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":13,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,1,0,1,0,1,0,1,0,0,1,1,0],"qubo_energy":14},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.286955083435012,2.8969215477449377],"expected_energy":23.47645367873821,"initial_expected_energy":45.7641107777841,"history":[45.7641107777841,38.51866661044768,42.50928601932198,40.72054674910409,36.525859470742986,35.48070653964892,36.031812381416316,36.474176927128134,35.80584110278218,35.68789071864427,35.08196820192486,34.883723618666,34.3111123004949,33.80586838785163,32.42535848435372,31.319009784273568,28.553921000977763,32.21779805553392,31.016792345569627,29.739486891909703,28.93846745410315,28.08513232068762,28.708669158826673,27.54127868881573,27.083886835424966,26.10712130862285,24.619657662206784,33.166630985557475,30.328880121443234,24.496148293176674,26.8437889426956,24.179322476870674,24.44531987158769,24.107034460034328,24.33216622098104,24.071017371620407,24.00859943183157,23.90294304368149,23.964392026653478,23.892604770062473,23.999471729095475,23.895906675428193,23.860155887827116,23.817506049360134,23.83876139131415,23.79824117708258,23.780880629556048,23.754639461238853,23.86643801252472,23.72460964473821,23.697154014278347,23.71215448313924,23.675557952160688,23.689776387437398,23.68413931503363,23.66320249845461,23.65960750864805,23.678709930530342,23.64334634387155,23.614996749922483,30.46881391806545,35.630130040279724,44.65740975916963,41.056944663688896,26.54303018799788,37.95803843804468,27.891619981949113,27.211594956289133,26.134837999971182,26.29759574562007,25.56876313063808,25.8779225954863,25.781486744167367,25.574622261039803,25.46713748808243,25.274513896486685,24.973955573458902,25.20358467559074,25.30353540571818,24.812021469620284,24.67981726320815,24.771684291974474,24.60194738667772,24.584585867236783,24.682325536969657,24.583542479439405,24.547457071443468,24.48289418236507,24.367348726927794,24.41246130728465,24.318661355892328,24.41866685217142,24.285024237266374,24.22484837450724,24.12005308630019,23.93343257150628,24.068624828354118,24.08619006145468,23.89943668485229,23.983309696116727,23.886064717373593,23.847345829664064,23.787946511448816,24.125776223291588,23.7499356550245,23.68883816709063,23.59714296655697,24.3365210701512,23.663591485513784,23.670449806452908,23.55042355712374,23.55542779281831,23.591167212666296,23.540444876011655,23.53865264911193,23.55400463915541,23.526924649020174,23.516524621550296,23.49790577409533,23.47645367873821],"feasible_probability":0.9954201898030155,"one_hot_probability":1.0,"sampled_feasible_fraction":0.998046875,"counts":{"0101010101010101":3,"0101010101010110":7,"0101010101011001":6,"0101010101011010":4,"0101010101100101":4,"0101010101100110":2,"0101010101101001":3,"0101010101101010":3,"0101010110010101":2,"0101010110010110":4,"0101010110011001":3,"0101010110011010":3,"0101011001010101":2,"0101011001010110":4,"0101011001011001":6,"0101011001011010":1,"0101011001100101":1,"0101011001100110":6,"0101011001101001":2,"0101011001101010":3,"0101011010010101":2,"0101011010010110":3,"0101011010011001":4,"0101011010011010":1,"0101100101010101":5,"0101100101010110":5,"0101100101011001":5,"0101100101011010":4,"0101100101100101":1,"0101100101100110":4,"0101100101101010":2,"0101100110010110":7,"0101100110011001":1,"0101100110011010":1,"0101101001010101":2,"0101101001011010":2,"0101101001100110":2,"0101101001101001":1,"0101101001101010":2,"0101101010010101":1,"0101101010010110":1,"0110010101010101":2,"0110010101010110":6,"0110010101011001":2,"0110010101011010":4,"0110010101100101":3,"0110010101100110":3,"0110010101101001":4,"0110010101101010":2,"0110010110010101":2,"0110010110010110":2,"0110010110011001":2,"0110010110011010":3,"0110011001010101":1,"0110011001010110":4,"0110011001011001":3,"0110011001011010":5,"0110011001100101":1,"0110011001101001":1,"0110011001101010":3,"0110011010010101":2,"0110011010010110":1,"0110011010011010":1,"0110100101010101":2,"0110100101010110":6,"0110100101011001":8,"0110100101011010":4,"0110100101100101":3,"0110100101100110":1,"0110100101101001":2,"0110100101101010":1,"0110100110010101":1,"0110100110010110":1,"0110100110011001":4,"0110100110011010":5,"0110101001010101":4,"0110101001010110":1,"0110101001011001":5,"0110101001011010":8,"0110101001100101":2,"0110101001100110":1,"0110101001101001":2,"0110101010010101":2,"0110101010010110":6,"0110101010011001":1,"0110101010011010":3,"1001010101010101":3,"1001010101010110":6,"1001010101011001":4,"1001010101011010":4,"1001010101100101":3,"1001010101100110":1,"1001010101101001":1,"1001010101101010":2,"1001010110010101":2,"1001010110011010":1,"1001011001010101":1,"1001011001010110":3,"1001011001011001":3,"1001011001011010":6,"1001011001100101":2,"1001011001100110":1,"1001011001101010":2,"1001011010010110":2,"1001011010011001":3,"1001011010011010":1,"1001100101010101":8,"1001100101010110":3,"1001100101011001":4,"1001100101011010":5,"1001100101100101":1,"1001100101100110":2,"1001100101101001":1,"1001100101101010":1,"1001100110010110":3,"1001100110011001":1,"1001100110011010":2,"1001101001010101":4,"1001101001010110":2,"1001101001011001":3,"1001101001011010":1,"1001101001100101":3,"1001101001100110":1,"1001101001101001":1,"1001101001101010":4,"1001101010010101":3,"1001101010010110":4,"1001101010011010":1,"1010010101010101":4,"1010010101010110":5,"1010010101011001":6,"1010010101011010":12,"1010010101100101":2,"1010010101100110":2,"1010010101101001":3,"1010010101101010":6,"1010010110010101":4,"1010010110010110":1,"1010010110011001":4,"1010010110011010":2,"1010010110100101":1,"1010011001010101":8,"1010011001010110":3,"1010011001011001":5,"1010011001011010":4,"1010011001100101":2,"1010011001100110":2,"1010011001101001":6,"1010011001101010":1,"1010011010010101":2,"1010011010011001":1,"1010011010011010":2,"1010100101010101":8,"1010100101010110":3,"1010100101011001":4,"1010100101011010":4,"1010100101100101":1,"1010100101100110":1,"1010100101101001":4,"1010100101101010":2,"1010100110010101":1,"1010100110010110":4,"1010100110011001":3,"1010100110011010":1,"1010101001010101":4,"1010101001010110":3,"1010101001011001":4,"1010101001011010":1,"1010101001100101":1,"1010101001100110":3,"1010101001101010":2,"1010101010010101":2,"1010101010010110":2,"1010101010011010":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.7735890460025985},"metrics":{"exact_objective":14,"optimal_count":1,"combinations":256,"optimal_probability":0.010972302979788132,"feasible_probability":0.9954201898030154,"uniform_optimal_probability":0.00390625,"uniform_feasible_probability":0.75,"shots_for_95_percent":272,"hit_curve":[{"shots":8,"quantum":0.08448043238507025,"uniform":0.0308260755190447},{"shots":16,"quantum":0.16182392131417206,"uniform":0.060701904106183556},{"shots":32,"quantum":0.29746086111884873,"uniform":0.1177190870502508},{"shots":64,"quantum":0.5064387583401305,"uniform":0.2215803906445571},{"shots":128,"quantum":0.756397300731168,"uniform":0.3940629117709197},{"shots":512,"quantum":0.9964784943870169,"uniform":0.865193714387987}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":17,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":14,"preference_cost":9,"change_cost":5,"changed_tasks":3,"max_start_shift":7,"choices":[1,1,0,0,0,0,1,0],"schedule":[{"task":"t0","resource":"r0","start":7,"end":8},{"task":"t1","resource":"r0","start":10,"end":11},{"task":"t2","resource":"r1","start":11,"end":12},{"task":"t3","resource":"r0","start":13,"end":14},{"task":"t4","resource":"r0","start":8,"end":9},{"task":"t5","resource":"r1","start":1,"end":2},{"task":"t6","resource":"r1","start":8,"end":9},{"task":"t7","resource":"r2","start":10,"end":11}]},"dual_bound":14.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":9,"runtime_seconds":0.0015075100091053173},"exact":{"status":"optimal","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r1","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r1","start":11,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":13,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,1,0,1,0,1,0,1,0,0,1,1,0],"qubo_energy":14},"combinations":256,"feasible_count":192,"runtime_seconds":0.003714959995704703},"greedy":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r1","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r1","start":11,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":13,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,1,0,1,0,1,0,1,0,0,1,1,0],"qubo_energy":14},"runtime_seconds":3.6922996514476836e-05},"resources":{"full":{"depth":20,"operations":{"RX":40,"I":16,"RZ":32,"CNOT":42,"CRY":8,"X":8},"cnot":42,"cry":8},"auto":{"depth":13,"operations":{"RX":40,"I":16,"RZ":24,"CNOT":26,"CRY":8,"X":8},"cnot":26,"cry":8}},"phase_max_probability_error":1.1275702593849246e-17,"samples":[{"shots":8,"quantum_objective":20,"uniform_objective":24},{"shots":16,"quantum_objective":15,"uniform_objective":18},{"shots":32,"quantum_objective":15,"uniform_objective":18},{"shots":64,"quantum_objective":17,"uniform_objective":17},{"shots":128,"quantum_objective":15,"uniform_objective":16},{"shots":512,"quantum_objective":14,"uniform_objective":14}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":16,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[2,2,4,2,2,2,2],"max_component_qubits":4,"component_to_original":[[0,1],[2,3],[4,5,6,7],[8,9],[10,11],[12,13],[14,15]],"components":[{"qubits":2,"penalty":3,"objective_bound":2,"offset":3,"linear":[-2,-1],"quadratic":[[0,1,6]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":7,"cost":1},{"index":1,"task":"t0","resource":"r2","start":15,"cost":2}],"conflicts":[]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-1,-2],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r2","start":6,"cost":4},{"index":1,"task":"t1","resource":"r0","start":10,"cost":3}],"conflicts":[]},{"qubits":4,"penalty":16,"objective_bound":15,"offset":32,"linear":[-14,-8,-14,-9],"quadratic":[[0,1,32],[1,3,16],[2,3,32]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r1","start":11,"cost":2},{"index":1,"task":"t2","resource":"r2","start":1,"cost":8},{"index":2,"task":"t3","resource":"r0","start":13,"cost":2},{"index":3,"task":"t3","resource":"r0","start":1,"cost":7}],"conflicts":[{"i":1,"j":3,"reasons":["group"]}]},{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-5,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r0","start":8,"cost":3},{"index":1,"task":"t4","resource":"r2","start":11,"cost":7}],"conflicts":[]},{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-4,-1],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t5","resource":"r1","start":1,"cost":2},{"index":1,"task":"t5","resource":"r2","start":2,"cost":5}],"conflicts":[]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-1,-4],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t6","resource":"r0","start":14,"cost":4},{"index":1,"task":"t6","resource":"r1","start":8,"cost":1}],"conflicts":[]},{"qubits":2,"penalty":3,"objective_bound":2,"offset":3,"linear":[-3,-1],"quadratic":[[0,1,6]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t7","resource":"r2","start":10,"cost":0},{"index":1,"task":"t7","resource":"r1","start":9,"cost":2}],"conflicts":[]}]},"diagnostic_seconds":0.05544987099710852}
+{"input":{"file":"evaluation-n8-d0.json","split":"evaluation","tasks":8,"density_parameter":0,"data_seed":20261002,"sha256":"3f0bb0c0f3046ff399ba6cb057cbd4af76f9e58379bf21f3093dd368cce64145"},"model":{"qubits":16,"penalty":40,"objective_bound":39,"offset":320,"linear":[-39,-38,-36,-37,-38,-32,-38,-33,-37,-33,-38,-35,-36,-39,-40,-38],"quadratic":[[0,1,80],[2,3,80],[4,5,80],[5,7,40],[6,7,80],[8,9,80],[10,11,80],[12,13,80],[14,15,80]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":7,"cost":1},{"index":1,"task":"t0","resource":"r2","start":15,"cost":2},{"index":2,"task":"t1","resource":"r2","start":6,"cost":4},{"index":3,"task":"t1","resource":"r0","start":10,"cost":3},{"index":4,"task":"t2","resource":"r1","start":11,"cost":2},{"index":5,"task":"t2","resource":"r2","start":1,"cost":8},{"index":6,"task":"t3","resource":"r0","start":13,"cost":2},{"index":7,"task":"t3","resource":"r0","start":1,"cost":7},{"index":8,"task":"t4","resource":"r0","start":8,"cost":3},{"index":9,"task":"t4","resource":"r2","start":11,"cost":7},{"index":10,"task":"t5","resource":"r1","start":1,"cost":2},{"index":11,"task":"t5","resource":"r2","start":2,"cost":5},{"index":12,"task":"t6","resource":"r0","start":14,"cost":4},{"index":13,"task":"t6","resource":"r1","start":8,"cost":1},{"index":14,"task":"t7","resource":"r2","start":10,"cost":0},{"index":15,"task":"t7","resource":"r1","start":9,"cost":2}],"conflicts":[{"i":5,"j":7,"reasons":["group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r1","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r1","start":11,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":13,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,1,0,1,0,1,0,1,0,0,1,1,0],"qubo_energy":14},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.2306442955304693,1.3168900492573021],"expected_energy":23.41757255704576,"initial_expected_energy":33.133196322885375,"history":[33.133196322885375,33.90686018733849,28.076277154887364,60.1137432412054,24.39123138609871,24.77657913355577,25.540355413292723,23.664647056712436,25.433243981286374,23.58842144445653,24.12587060719021,23.656037543263942,23.706591842746718,23.568020981623263,23.53693395192778,23.490715296828363,23.569641694836434,23.61591888353228,23.479843718502707,23.503509671790138,23.480637544476036,23.473203092693314,23.468073775208776,23.510803193046637,23.45781366923454,23.452866279234364,23.447287266562267,23.440631745479948,23.45650364154852,23.43519222460445,23.441256533158093,23.430975436918505,23.43072102337707,23.42572156380487,23.42955787074521,23.42817636120938,23.42530388170569,23.428392344685328,23.424294072057183,23.423447440508582,23.42203964637092,23.41956248661095,23.41957157933319,23.422687050972346,23.41976254951216,23.41928101190225,23.419447618815187,23.419423615783188,23.41904495292838,23.41877813891884,23.419044026129317,23.418571023280137,23.418422655694762,23.41847555175017,23.418229737460145,23.41805916552559,23.417851929638516,23.418159476930136,23.41774484381735,23.41757255704576,59.01798523639811,60.238345630568915,34.19473342349572,24.41055418648559,40.11102282240758,38.36896788011505,29.30883594495856,26.514878330427862,24.583202057326545,24.626299655794373,23.7478198738552,24.074938464159683,23.66450182614453,23.693340477376914,23.655400241050092,23.64428130510896,23.651656966226106,23.629956703574045,23.617088244189837,23.604487781552287,23.575199476694593,23.558369029294518,23.53467590166606,23.500835132952382,23.525507522900973,23.581847141766296,23.492217808637044,23.476716451721614,23.45448402147936,23.631765720967447,23.475472270891252,23.47792738485135,23.460723014753214,23.445987094343337,23.443164403393126,23.45274641200512,23.440174978383563,23.437624917408993,23.433192319677058,23.435263054910667,23.43337779271011,23.432156258712823,23.432055147326523,23.43421611282055,23.432022262822667,23.431274528337244,23.42999709090156,23.428058641736886,23.42937232260549,23.42692301030142,23.426717146784156,23.429691674082676,23.42666556244038,23.425548539750594,23.42413717277729,23.422939546725246,23.42234913224274,23.421149454562983,23.419499081119916,23.41786191912597],"feasible_probability":0.9965119716401354,"one_hot_probability":0.9999999999999991,"sampled_feasible_fraction":0.9921875,"counts":{"0101010101010101":6,"0101010101010110":5,"0101010101011001":6,"0101010101011010":5,"0101010101100101":2,"0101010101100110":4,"0101010101101010":5,"0101010110010110":2,"0101010110011001":2,"0101011001010101":3,"0101011001010110":5,"0101011001011001":2,"0101011001011010":2,"0101011001100101":3,"0101011001100110":2,"0101011001101010":3,"0101011010010101":4,"0101011010010110":2,"0101011010011001":1,"0101011010011010":2,"0101100101010101":2,"0101100101010110":4,"0101100101011001":1,"0101100101011010":5,"0101100101100101":2,"0101100101100110":4,"0101100101101001":2,"0101100101101010":1,"0101100110010101":3,"0101100110010110":2,"0101100110011001":1,"0101100110011010":2,"0101101001010101":5,"0101101001010110":3,"0101101001011001":2,"0101101001011010":2,"0101101001100101":2,"0101101001100110":2,"0101101001101010":1,"0101101010010101":1,"0101101010010110":1,"0101101010011001":2,"0110010101010101":6,"0110010101010110":3,"0110010101011001":4,"0110010101011010":6,"0110010101100101":3,"0110010101100110":6,"0110010101101001":4,"0110010101101010":5,"0110010110010101":2,"0110010110010110":5,"0110010110011001":5,"0110010110011010":1,"0110011001010101":6,"0110011001010110":2,"0110011001011001":3,"0110011001011010":3,"0110011001100101":1,"0110011001100110":1,"0110011001101001":1,"0110011010010101":2,"0110011010010110":2,"0110011010011001":2,"0110011010011010":1,"0110100101010101":4,"0110100101010110":9,"0110100101011001":6,"0110100101011010":11,"0110100101100101":2,"0110100101100110":3,"0110100101101001":3,"0110100101101010":2,"0110100110010101":2,"0110100110010110":3,"0110100110011001":4,"0110100110011010":1,"0110101001010101":2,"0110101001010110":3,"0110101001011001":2,"0110101001011010":6,"0110101001100101":3,"0110101001100110":1,"0110101001101010":2,"0110101010010101":4,"0110101010010110":3,"0110101010011001":3,"0110101010011010":3,"0110101010100110":1,"1001010101010101":6,"1001010101010110":3,"1001010101011001":8,"1001010101011010":1,"1001010101100101":2,"1001010101100110":1,"1001010101101001":2,"1001010101101010":1,"1001010110010101":1,"1001010110010110":2,"1001010110011010":3,"1001011001010101":4,"1001011001010110":5,"1001011001011001":5,"1001011001011010":2,"1001011001100110":4,"1001011001101001":1,"1001011001101010":2,"1001011010010101":3,"1001011010010110":1,"1001011010011001":4,"1001011010011010":2,"1001100101010101":5,"1001100101010110":3,"1001100101011001":4,"1001100101011010":3,"1001100101100101":1,"1001100110010101":3,"1001100110010110":3,"1001100110011001":3,"1001100110100110":1,"1001101001010101":3,"1001101001010110":2,"1001101001011001":1,"1001101001011010":5,"1001101001100110":1,"1001101010010101":2,"1001101010011001":3,"1001101010011010":4,"1001101010101001":1,"1010010101010101":2,"1010010101010110":6,"1010010101011001":9,"1010010101011010":5,"1010010101100101":2,"1010010101100110":3,"1010010101101010":1,"1010010110010101":4,"1010010110010110":5,"1010010110011001":3,"1010010110011010":2,"1010010110100110":1,"1010011001010101":2,"1010011001010110":5,"1010011001011001":1,"1010011001011010":6,"1010011001100101":5,"1010011001100110":1,"1010011001101010":3,"1010011010010101":5,"1010011010010110":1,"1010011010011001":3,"1010011010011010":2,"1010100101010101":4,"1010100101010110":3,"1010100101011001":5,"1010100101011010":5,"1010100101100101":2,"1010100101101001":1,"1010100101101010":5,"1010100110010110":2,"1010100110011001":2,"1010100110011010":4,"1010101001010101":2,"1010101001010110":2,"1010101001011001":4,"1010101001011010":2,"1010101001100101":1,"1010101001100110":1,"1010101001101010":1,"1010101010010101":3,"1010101010010110":1,"1010101010011001":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.7964400019991444},"metrics":{"exact_objective":14,"optimal_count":1,"combinations":256,"optimal_probability":0.010975194190733988,"feasible_probability":0.9965119716401358,"uniform_optimal_probability":0.00390625,"uniform_feasible_probability":0.75,"shots_for_95_percent":272,"hit_curve":[{"shots":8,"quantum":0.08450184277121647,"uniform":0.0308260755190447},{"shots":16,"quantum":0.16186312411070156,"uniform":0.060701904106183556},{"shots":32,"quantum":0.2975265772745267,"uniform":0.1177190870502508},{"shots":64,"quantum":0.5065310903643585,"uniform":0.2215803906445571},{"shots":128,"quantum":0.7564884352230111,"uniform":0.3940629117709197},{"shots":512,"quantum":0.9964837611689505,"uniform":0.865193714387987}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":17,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":14,"preference_cost":9,"change_cost":5,"changed_tasks":3,"max_start_shift":7,"choices":[1,1,0,0,0,0,1,0],"schedule":[{"task":"t0","resource":"r0","start":7,"end":8},{"task":"t1","resource":"r0","start":10,"end":11},{"task":"t2","resource":"r1","start":11,"end":12},{"task":"t3","resource":"r0","start":13,"end":14},{"task":"t4","resource":"r0","start":8,"end":9},{"task":"t5","resource":"r1","start":1,"end":2},{"task":"t6","resource":"r1","start":8,"end":9},{"task":"t7","resource":"r2","start":10,"end":11}]},"dual_bound":14.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":9,"runtime_seconds":0.0015075100091053173},"exact":{"status":"optimal","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r1","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r1","start":11,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":13,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,1,0,1,0,1,0,1,0,0,1,1,0],"qubo_energy":14},"combinations":256,"feasible_count":192,"runtime_seconds":0.003714959995704703},"greedy":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r1","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r1","start":11,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":13,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,1,0,1,0,1,0,1,0,0,1,1,0],"qubo_energy":14},"runtime_seconds":3.6922996514476836e-05},"resources":{"full":{"depth":20,"operations":{"RX":40,"I":16,"RZ":32,"CNOT":42,"CRY":8,"X":8},"cnot":42,"cry":8},"auto":{"depth":13,"operations":{"RX":40,"I":16,"RZ":24,"CNOT":26,"CRY":8,"X":8},"cnot":26,"cry":8}},"phase_max_probability_error":1.0408340855860843e-17,"samples":[{"shots":8,"quantum_objective":17,"uniform_objective":22},{"shots":16,"quantum_objective":14,"uniform_objective":17},{"shots":32,"quantum_objective":14,"uniform_objective":14},{"shots":64,"quantum_objective":14,"uniform_objective":14},{"shots":128,"quantum_objective":15,"uniform_objective":14},{"shots":512,"quantum_objective":14,"uniform_objective":14}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":16,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[2,2,4,2,2,2,2],"max_component_qubits":4,"component_to_original":[[0,1],[2,3],[4,5,6,7],[8,9],[10,11],[12,13],[14,15]],"components":[{"qubits":2,"penalty":3,"objective_bound":2,"offset":3,"linear":[-2,-1],"quadratic":[[0,1,6]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":7,"cost":1},{"index":1,"task":"t0","resource":"r2","start":15,"cost":2}],"conflicts":[]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-1,-2],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r2","start":6,"cost":4},{"index":1,"task":"t1","resource":"r0","start":10,"cost":3}],"conflicts":[]},{"qubits":4,"penalty":16,"objective_bound":15,"offset":32,"linear":[-14,-8,-14,-9],"quadratic":[[0,1,32],[1,3,16],[2,3,32]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r1","start":11,"cost":2},{"index":1,"task":"t2","resource":"r2","start":1,"cost":8},{"index":2,"task":"t3","resource":"r0","start":13,"cost":2},{"index":3,"task":"t3","resource":"r0","start":1,"cost":7}],"conflicts":[{"i":1,"j":3,"reasons":["group"]}]},{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-5,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r0","start":8,"cost":3},{"index":1,"task":"t4","resource":"r2","start":11,"cost":7}],"conflicts":[]},{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-4,-1],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t5","resource":"r1","start":1,"cost":2},{"index":1,"task":"t5","resource":"r2","start":2,"cost":5}],"conflicts":[]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-1,-4],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t6","resource":"r0","start":14,"cost":4},{"index":1,"task":"t6","resource":"r1","start":8,"cost":1}],"conflicts":[]},{"qubits":2,"penalty":3,"objective_bound":2,"offset":3,"linear":[-3,-1],"quadratic":[[0,1,6]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t7","resource":"r2","start":10,"cost":0},{"index":1,"task":"t7","resource":"r1","start":9,"cost":2}],"conflicts":[]}]},"diagnostic_seconds":0.054255050999927334}
+{"input":{"file":"evaluation-n8-d0.json","split":"evaluation","tasks":8,"density_parameter":0,"data_seed":20261002,"sha256":"3f0bb0c0f3046ff399ba6cb057cbd4af76f9e58379bf21f3093dd368cce64145"},"model":{"qubits":16,"penalty":40,"objective_bound":39,"offset":320,"linear":[-39,-38,-36,-37,-38,-32,-38,-33,-37,-33,-38,-35,-36,-39,-40,-38],"quadratic":[[0,1,80],[2,3,80],[4,5,80],[5,7,40],[6,7,80],[8,9,80],[10,11,80],[12,13,80],[14,15,80]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":7,"cost":1},{"index":1,"task":"t0","resource":"r2","start":15,"cost":2},{"index":2,"task":"t1","resource":"r2","start":6,"cost":4},{"index":3,"task":"t1","resource":"r0","start":10,"cost":3},{"index":4,"task":"t2","resource":"r1","start":11,"cost":2},{"index":5,"task":"t2","resource":"r2","start":1,"cost":8},{"index":6,"task":"t3","resource":"r0","start":13,"cost":2},{"index":7,"task":"t3","resource":"r0","start":1,"cost":7},{"index":8,"task":"t4","resource":"r0","start":8,"cost":3},{"index":9,"task":"t4","resource":"r2","start":11,"cost":7},{"index":10,"task":"t5","resource":"r1","start":1,"cost":2},{"index":11,"task":"t5","resource":"r2","start":2,"cost":5},{"index":12,"task":"t6","resource":"r0","start":14,"cost":4},{"index":13,"task":"t6","resource":"r1","start":8,"cost":1},{"index":14,"task":"t7","resource":"r2","start":10,"cost":0},{"index":15,"task":"t7","resource":"r1","start":9,"cost":2}],"conflicts":[{"i":5,"j":7,"reasons":["group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r1","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r1","start":11,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":13,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,1,0,1,0,1,0,1,0,0,1,1,0],"qubo_energy":14},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.216194063354471,1.3164799024236182],"expected_energy":23.41442743059014,"initial_expected_energy":26.768417377105855,"history":[26.768417377105855,25.23514202651448,58.958598911282735,33.659019528353454,45.15062583807706,23.787595964519923,26.970255089617392,23.73220327195812,24.64065157137835,23.54324934899305,24.113951637956326,23.62996747714505,23.58075192965096,23.53012287126843,23.509704743435343,23.502424750266012,23.493124254168013,23.490915734790324,23.481507133118413,23.473775813180616,23.45979473231513,23.459779338495515,23.435626697485176,23.473414327880743,23.45520626263678,23.433225654288314,23.435983246767016,23.43147562623809,23.441416708977776,23.428746281082255,23.427243026996837,23.42559490649473,23.423383127670654,23.421588734051852,23.420028254278392,23.42392286307201,23.418386206540724,23.418348152269047,23.417621545775543,23.417106675503604,23.41647101827784,23.415807107588854,23.41490248629556,23.419158865750937,23.41532786693997,23.41485475086317,23.415465805033328,23.41478557236443,23.414698937207966,23.41465063558551,23.4147365684436,23.4146205160826,23.414591929029694,23.414553646126528,23.414501807707722,23.414464335278886,23.41453079819895,23.41444510344466,23.41442743059014,23.414433912948684,35.58981494244637,35.55330516307272,45.92287338943847,41.06490646963087,38.410083378194855,41.21611871634898,35.54509288684832,34.32268498484943,34.03482578048853,34.0225360957739,34.83773648785278,33.977201749033405,34.16661583613432,33.966507002045674,33.96530937179093,33.96141747716773,33.958541782725646,33.961036361553155,33.947881012051745,33.94559406549891,33.939795177670334,33.934513105260194,33.92560160809977,33.91611435050126,33.88646307424865,34.018735757175584,33.943204203864106,33.90916408731066,33.88307317897225,33.884067560891445,33.87879495161896,33.87659157973994,33.88991318597929,33.8687586799191,33.867083050131285,33.859826744495535,33.85159409782102,33.83721023679846,33.83360529258902,33.81061282249412,33.89071000389127,33.796970738374355,33.80245996669063,33.80734647839534,33.7943153324198,33.79477066300272,33.79273521718471,33.791278420690844,33.788756602847315,33.78725237899923,33.80265798440607,33.78570843899888,33.780811746641696,33.7773426772075,33.77894633010027,33.775638069255166,33.77401586031148,33.7709705522977,33.76648585409536,33.75742794709572],"feasible_probability":0.9969470386910186,"one_hot_probability":1.0000000000000009,"sampled_feasible_fraction":0.9921875,"counts":{"0101010101010101":4,"0101010101010110":4,"0101010101011001":3,"0101010101011010":4,"0101010101100101":2,"0101010101100110":1,"0101010101101010":1,"0101010110010101":2,"0101010110011001":5,"0101010110011010":4,"0101011001010110":5,"0101011001011001":3,"0101011001011010":6,"0101011001100101":2,"0101011001100110":3,"0101011001101001":3,"0101011001101010":1,"0101011010010101":4,"0101011010010110":2,"0101011010011001":3,"0101011010011010":2,"0101100101010101":5,"0101100101010110":5,"0101100101011001":9,"0101100101011010":7,"0101100101100110":1,"0101100101101001":2,"0101100101101010":2,"0101100110010101":3,"0101100110010110":1,"0101100110011010":2,"0101101001010101":1,"0101101001010110":2,"0101101001011001":2,"0101101001011010":4,"0101101001100101":2,"0101101001101001":2,"0101101001101010":1,"0101101010010101":1,"0101101010010110":2,"0101101010011010":2,"0101101010100101":1,"0110010101010101":6,"0110010101010110":9,"0110010101011001":6,"0110010101011010":3,"0110010101100110":4,"0110010101101001":2,"0110010101101010":2,"0110010110010101":3,"0110010110010110":2,"0110010110011001":2,"0110010110011010":3,"0110011001010101":7,"0110011001010110":5,"0110011001011001":5,"0110011001011010":3,"0110011001100101":2,"0110011001100110":2,"0110011001101001":1,"0110011010010101":1,"0110011010010110":2,"0110011010011001":4,"0110011010011010":4,"0110011010100101":1,"0110100101010101":8,"0110100101010110":8,"0110100101011001":6,"0110100101011010":12,"0110100101100101":2,"0110100101100110":2,"0110100101101010":1,"0110100110010101":3,"0110100110011001":4,"0110100110011010":2,"0110101001010101":4,"0110101001010110":3,"0110101001011001":5,"0110101001011010":2,"0110101001100110":1,"0110101001101001":2,"0110101001101010":1,"0110101010010101":1,"0110101010010110":3,"0110101010011001":3,"0110101010011010":3,"1001010101010101":6,"1001010101010110":4,"1001010101011001":7,"1001010101011010":3,"1001010101100101":2,"1001010101100110":1,"1001010101101001":2,"1001010101101010":5,"1001010110010101":2,"1001010110010110":2,"1001010110011001":2,"1001010110011010":2,"1001011001010101":3,"1001011001010110":4,"1001011001011001":4,"1001011001011010":6,"1001011001100101":1,"1001011001100110":3,"1001011010010101":2,"1001011010011001":2,"1001011010100110":1,"1001100101010101":4,"1001100101010110":3,"1001100101011001":6,"1001100101011010":4,"1001100101100101":1,"1001100101101010":2,"1001100110010101":1,"1001100110010110":3,"1001100110011010":2,"1001101001010101":5,"1001101001011010":4,"1001101001100101":1,"1001101001100110":2,"1001101001101001":1,"1001101001101010":2,"1001101010010101":2,"1001101010010110":4,"1001101010011001":2,"1001101010011010":1,"1010010101010101":6,"1010010101010110":5,"1010010101011001":3,"1010010101011010":3,"1010010101100110":2,"1010010101101001":3,"1010010101101010":2,"1010010110010101":2,"1010010110010110":4,"1010010110011001":1,"1010010110011010":4,"1010011001010101":3,"1010011001010110":3,"1010011001011001":4,"1010011001011010":4,"1010011001100110":3,"1010011001101001":4,"1010011001101010":1,"1010011010010101":3,"1010011010010110":3,"1010011010011001":5,"1010011010011010":1,"1010100101010101":2,"1010100101010110":1,"1010100101011001":3,"1010100101011010":3,"1010100101100110":1,"1010100101101001":2,"1010100101101010":2,"1010100110010101":6,"1010100110010110":2,"1010100110011001":1,"1010100110011010":5,"1010100110100110":1,"1010101001010101":4,"1010101001010110":2,"1010101001011001":5,"1010101001011010":4,"1010101001100101":2,"1010101001101001":3,"1010101001101010":2,"1010101010010101":1,"1010101010011001":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.7942655150109204},"metrics":{"exact_objective":14,"optimal_count":1,"combinations":256,"optimal_probability":0.010890649108780574,"feasible_probability":0.9969470386910183,"uniform_optimal_probability":0.00390625,"uniform_feasible_probability":0.75,"shots_for_95_percent":274,"hit_curve":[{"shots":8,"quantum":0.08387557715753195,"uniform":0.0308260755190447},{"shots":16,"quantum":0.1607160418715548,"uniform":0.060701904106183556},{"shots":32,"quantum":0.2956024376282502,"uniform":0.1177190870502508},{"shots":64,"quantum":0.503824074124737,"uniform":0.2215803906445571},{"shots":128,"quantum":0.7538094505818255,"uniform":0.3940629117709197},{"shots":512,"quantum":0.9963264537655359,"uniform":0.865193714387987}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":17,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":14,"preference_cost":9,"change_cost":5,"changed_tasks":3,"max_start_shift":7,"choices":[1,1,0,0,0,0,1,0],"schedule":[{"task":"t0","resource":"r0","start":7,"end":8},{"task":"t1","resource":"r0","start":10,"end":11},{"task":"t2","resource":"r1","start":11,"end":12},{"task":"t3","resource":"r0","start":13,"end":14},{"task":"t4","resource":"r0","start":8,"end":9},{"task":"t5","resource":"r1","start":1,"end":2},{"task":"t6","resource":"r1","start":8,"end":9},{"task":"t7","resource":"r2","start":10,"end":11}]},"dual_bound":14.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":9,"runtime_seconds":0.0015075100091053173},"exact":{"status":"optimal","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r1","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r1","start":11,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":13,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,1,0,1,0,1,0,1,0,0,1,1,0],"qubo_energy":14},"combinations":256,"feasible_count":192,"runtime_seconds":0.003714959995704703},"greedy":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r1","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":8,"end":9,"reserved_end":9,"changed":false},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r2","start":10,"end":11,"reserved_end":11,"changed":false},{"variable":4,"task":"t2","group":"g1","resource":"r1","start":11,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":13,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,1,0,1,0,1,0,1,0,0,1,1,0],"qubo_energy":14},"runtime_seconds":3.6922996514476836e-05},"resources":{"full":{"depth":20,"operations":{"RX":40,"I":16,"RZ":32,"CNOT":42,"CRY":8,"X":8},"cnot":42,"cry":8},"auto":{"depth":13,"operations":{"RX":40,"I":16,"RZ":24,"CNOT":26,"CRY":8,"X":8},"cnot":26,"cry":8}},"phase_max_probability_error":1.5612511283791264e-17,"samples":[{"shots":8,"quantum_objective":21,"uniform_objective":16},{"shots":16,"quantum_objective":15,"uniform_objective":18},{"shots":32,"quantum_objective":14,"uniform_objective":17},{"shots":64,"quantum_objective":14,"uniform_objective":15},{"shots":128,"quantum_objective":14,"uniform_objective":15},{"shots":512,"quantum_objective":14,"uniform_objective":14}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":16,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[2,2,4,2,2,2,2],"max_component_qubits":4,"component_to_original":[[0,1],[2,3],[4,5,6,7],[8,9],[10,11],[12,13],[14,15]],"components":[{"qubits":2,"penalty":3,"objective_bound":2,"offset":3,"linear":[-2,-1],"quadratic":[[0,1,6]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":7,"cost":1},{"index":1,"task":"t0","resource":"r2","start":15,"cost":2}],"conflicts":[]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-1,-2],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r2","start":6,"cost":4},{"index":1,"task":"t1","resource":"r0","start":10,"cost":3}],"conflicts":[]},{"qubits":4,"penalty":16,"objective_bound":15,"offset":32,"linear":[-14,-8,-14,-9],"quadratic":[[0,1,32],[1,3,16],[2,3,32]],"domains":[[0,1],[2,3]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r1","start":11,"cost":2},{"index":1,"task":"t2","resource":"r2","start":1,"cost":8},{"index":2,"task":"t3","resource":"r0","start":13,"cost":2},{"index":3,"task":"t3","resource":"r0","start":1,"cost":7}],"conflicts":[{"i":1,"j":3,"reasons":["group"]}]},{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-5,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r0","start":8,"cost":3},{"index":1,"task":"t4","resource":"r2","start":11,"cost":7}],"conflicts":[]},{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-4,-1],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t5","resource":"r1","start":1,"cost":2},{"index":1,"task":"t5","resource":"r2","start":2,"cost":5}],"conflicts":[]},{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-1,-4],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t6","resource":"r0","start":14,"cost":4},{"index":1,"task":"t6","resource":"r1","start":8,"cost":1}],"conflicts":[]},{"qubits":2,"penalty":3,"objective_bound":2,"offset":3,"linear":[-3,-1],"quadratic":[[0,1,6]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t7","resource":"r2","start":10,"cost":0},{"index":1,"task":"t7","resource":"r1","start":9,"cost":2}],"conflicts":[]}]},"diagnostic_seconds":0.05751327800680883}
+{"input":{"file":"evaluation-n8-d1.json","split":"evaluation","tasks":8,"density_parameter":1,"data_seed":20261003,"sha256":"24a78232cc15095f23f1960fce0fa6b469331287e939761855cc9afe88d423e3"},"model":{"qubits":16,"penalty":37,"objective_bound":36,"offset":296,"linear":[-33,-34,-33,-31,-34,-35,-37,-33,-33,-31,-36,-32,-37,-32,-37,-34],"quadratic":[[0,1,74],[0,2,37],[1,2,37],[2,3,74],[3,8,37],[4,5,74],[4,7,37],[6,7,74],[6,12,37],[8,9,74],[9,11,37],[10,11,74],[11,14,37],[12,13,74],[13,15,37],[14,15,74]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":5,"cost":4},{"index":1,"task":"t0","resource":"r1","start":3,"cost":3},{"index":2,"task":"t1","resource":"r1","start":3,"cost":4},{"index":3,"task":"t1","resource":"r1","start":7,"cost":6},{"index":4,"task":"t2","resource":"r0","start":6,"cost":3},{"index":5,"task":"t2","resource":"r1","start":8,"cost":2},{"index":6,"task":"t3","resource":"r1","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":6,"cost":4},{"index":8,"task":"t4","resource":"r1","start":7,"cost":4},{"index":9,"task":"t4","resource":"r0","start":2,"cost":6},{"index":10,"task":"t5","resource":"r0","start":1,"cost":1},{"index":11,"task":"t5","resource":"r1","start":2,"cost":5},{"index":12,"task":"t6","resource":"r1","start":5,"cost":0},{"index":13,"task":"t6","resource":"r1","start":9,"cost":5},{"index":14,"task":"t7","resource":"r1","start":2,"cost":0},{"index":15,"task":"t7","resource":"r1","start":9,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["resource","group","precedence"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":6,"j":12,"reasons":["resource"]},{"i":9,"j":11,"reasons":["group"]},{"i":11,"j":14,"reasons":["resource"]},{"i":13,"j":15,"reasons":["resource","group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":23,"raw_cost":23,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":6,"task":"t3","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":5,"task":"t2","group":"g1","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":9,"end":10,"reserved_end":10,"changed":true}],"bits":[0,1,0,1,0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":23},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.64498769620142,1.7956992113859775],"expected_energy":63.69078724199244,"initial_expected_energy":101.52832257848024,"history":[101.52832257848024,95.49343612541338,102.97659165697357,105.01596809343386,104.80225535912574,96.1969471366281,95.71955419740189,95.7311012197681,95.89680376586479,95.06469311772379,95.4822270900429,94.76924654925092,94.65217455126684,94.33740648658556,93.77244013436862,92.71067588373049,94.22044174072255,94.47290858859236,93.32075486595241,92.57005896877402,92.57397004642422,92.56977544198318,92.42776119828667,92.18690163195473,91.7017835773619,91.06935447848582,91.7181653788202,92.65867393651465,90.70810915220264,90.6576230156002,90.38423760710998,90.13753869786711,89.68341511891374,90.50439151098084,90.32342628035006,89.93822063687914,89.7446831145364,89.64832498939248,89.55130042376433,89.46200265327016,89.32291946504976,89.66519175051636,89.28541473669154,89.18445870742559,88.98108801024576,88.63949693158142,88.14037975806062,89.78843856902319,89.92295973956239,88.06502251729576,88.09704053846781,88.05237206805745,88.2610379076994,88.01548480934783,87.95870748814446,87.9097534600717,87.87291363387092,87.9315216785102,87.84780519716442,87.8291805967181,109.47611856743663,103.08920757668625,102.92313775858233,97.896235864426,88.17166933999786,90.06157515616255,81.82194088521037,119.23223881622833,81.08280126818796,119.76214791638718,98.33984662265041,89.54707173930542,93.46065441641005,81.13392340792282,78.0409405706771,76.96807717535778,75.59160191331635,74.76536483539061,73.31010500858542,73.02008449027417,70.6576918242726,72.4871675947505,72.07709331842722,71.71498524307799,70.28475700573519,69.78747582516647,69.12481011284365,72.20863797607878,68.44681292516313,68.24832830003311,67.66655469766279,67.01407155131724,66.08952059474065,66.17095884403643,67.06347149313845,66.40958535997012,66.21140915271312,66.00221151966511,66.27971206295233,65.95880527496497,65.87940766448779,65.73122446258753,65.4761863393966,65.96079642017989,65.37574646111952,65.09176346385831,64.56663627791666,63.82565714725785,80.0942271712149,68.04998448611713,64.35882203813219,64.46707315029914,63.901350684501516,63.87298654557569,63.84464412667711,63.777170719849536,63.76493550215888,63.81578613662424,63.726365322950215,63.69078724199244],"feasible_probability":0.3198442984207426,"one_hot_probability":1.0000000000000004,"sampled_feasible_fraction":0.29296875,"counts":{"0101010101010101":1,"0101010101100101":1,"0101010110010101":1,"0101010110010110":1,"0101010110100110":2,"0101010110101010":1,"0101011001101001":1,"0101011001101010":2,"0101011010010101":1,"0101011010011001":2,"0101011010011010":1,"0101011010101001":4,"0101100101010101":1,"0101100101011010":1,"0101100110100101":1,"0101100110101010":1,"0101101001011001":2,"0101101001011010":1,"0101101010011001":1,"0101101010101001":4,"0101101010101010":1,"0110010101010101":8,"0110010101010110":5,"0110010101011001":4,"0110010101011010":1,"0110010101100101":6,"0110010101100110":6,"0110010101101001":3,"0110010110010101":1,"0110010110100101":12,"0110010110100110":9,"0110010110101001":3,"0110010110101010":2,"0110011001010101":1,"0110011001011001":19,"0110011001011010":9,"0110011001101001":6,"0110011001101010":7,"0110011010011010":1,"0110011010101001":27,"0110011010101010":19,"0110100101010110":1,"0110100101011001":2,"0110100101011010":2,"0110100101100101":1,"0110100101100110":1,"0110100101101001":3,"0110100101101010":1,"0110100110101001":4,"0110100110101010":3,"0110101001010101":1,"0110101001010110":1,"0110101001011010":2,"0110101010100110":1,"0110101010101010":1,"1001010101010101":3,"1001010101010110":5,"1001010101011001":1,"1001010101011010":1,"1001010110010101":2,"1001010110010110":2,"1001010110011010":1,"1001010110100101":2,"1001010110100110":3,"1001010110101010":3,"1001011001011001":5,"1001011001011010":7,"1001011010011001":5,"1001011010011010":5,"1001011010100101":1,"1001011010101001":25,"1001011010101010":34,"1001100101010101":3,"1001100101010110":1,"1001100101011001":2,"1001100110011001":3,"1001100110100101":6,"1001100110100110":7,"1001100110101001":12,"1001100110101010":19,"1001101001010101":1,"1001101001011010":1,"1001101010100101":1,"1001101010100110":1,"1001101010101001":1,"1001101010101010":6,"1010010101010101":1,"1010010101010110":1,"1010010101011001":1,"1010010101011010":2,"1010010101100101":1,"1010010101101010":1,"1010010110100110":1,"1010010110101001":1,"1010010110101010":3,"1010011001011001":7,"1010011001011010":11,"1010011001101001":8,"1010011010010101":1,"1010011010011001":1,"1010011010011010":1,"1010011010101001":3,"1010011010101010":8,"1010100101010101":5,"1010100101010110":8,"1010100101011001":5,"1010100101011010":7,"1010100101100101":9,"1010100101100110":2,"1010100101101001":7,"1010100101101010":7,"1010100110010110":1,"1010100110100101":6,"1010100110100110":6,"1010100110101001":5,"1010100110101010":3,"1010101001010101":1,"1010101001011001":4,"1010101001011010":3,"1010101001101001":2,"1010101001101010":3,"1010101010100101":1,"1010101010101001":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.9247693179931957},"metrics":{"exact_objective":22,"optimal_count":1,"combinations":256,"optimal_probability":0.006623252220371681,"feasible_probability":0.3198442984207425,"uniform_optimal_probability":0.00390625,"uniform_feasible_probability":0.0390625,"shots_for_95_percent":451,"hit_curve":[{"shots":8,"quantum":0.05177386514802967,"uniform":0.0308260755190447},{"shots":16,"quantum":0.10086719718369297,"uniform":0.060701904106183556},{"shots":32,"quantum":0.19156020289969194,"uniform":0.1177190870502508},{"shots":64,"quantum":0.3464250944644127,"uniform":0.2215803906445571},{"shots":128,"quantum":0.5728398428541481,"uniform":0.3940629117709197},{"shots":512,"quantum":0.9667062318840528,"uniform":0.865193714387987}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":17,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":22,"preference_cost":10,"change_cost":12,"changed_tasks":5,"max_start_shift":5,"choices":[2,1,1,1,1,0,0,0],"schedule":[{"task":"t0","resource":"r1","start":3,"end":4},{"task":"t1","resource":"r1","start":7,"end":8},{"task":"t2","resource":"r1","start":8,"end":9},{"task":"t3","resource":"r0","start":6,"end":7},{"task":"t4","resource":"r0","start":2,"end":3},{"task":"t5","resource":"r0","start":1,"end":2},{"task":"t6","resource":"r1","start":5,"end":6},{"task":"t7","resource":"r1","start":2,"end":3}]},"dual_bound":22.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":16,"runtime_seconds":0.001571046988829039},"exact":{"status":"optimal","best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":12,"task":"t6","group":"g3","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":5,"task":"t2","group":"g1","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true}],"bits":[0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0],"qubo_energy":22},"combinations":256,"feasible_count":10,"runtime_seconds":0.004175194000708871},"greedy":{"status":"feasible","best":{"feasible":true,"objective":23,"raw_cost":23,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":6,"task":"t3","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":5,"task":"t2","group":"g1","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":9,"end":10,"reserved_end":10,"changed":true}],"bits":[0,1,0,1,0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":23},"runtime_seconds":4.28649946115911e-05},"resources":{"full":{"depth":22,"operations":{"RX":40,"I":16,"RZ":40,"CNOT":56,"CRY":8,"X":8},"cnot":56,"cry":8},"auto":{"depth":17,"operations":{"RX":40,"I":16,"RZ":32,"CNOT":40,"CRY":8,"X":8},"cnot":40,"cry":8}},"phase_max_probability_error":3.122502256758253e-17,"samples":[{"shots":8,"quantum_objective":25,"uniform_objective":null},{"shots":16,"quantum_objective":23,"uniform_objective":27},{"shots":32,"quantum_objective":22,"uniform_objective":24},{"shots":64,"quantum_objective":24,"uniform_objective":23},{"shots":128,"quantum_objective":22,"uniform_objective":23},{"shots":512,"quantum_objective":22,"uniform_objective":22}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":16,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[16],"max_component_qubits":16,"component_to_original":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]],"components":[{"qubits":16,"penalty":37,"objective_bound":36,"offset":296,"linear":[-33,-34,-33,-31,-34,-35,-37,-33,-33,-31,-36,-32,-37,-32,-37,-34],"quadratic":[[0,1,74],[0,2,37],[1,2,37],[2,3,74],[3,8,37],[4,5,74],[4,7,37],[6,7,74],[6,12,37],[8,9,74],[9,11,37],[10,11,74],[11,14,37],[12,13,74],[13,15,37],[14,15,74]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":5,"cost":4},{"index":1,"task":"t0","resource":"r1","start":3,"cost":3},{"index":2,"task":"t1","resource":"r1","start":3,"cost":4},{"index":3,"task":"t1","resource":"r1","start":7,"cost":6},{"index":4,"task":"t2","resource":"r0","start":6,"cost":3},{"index":5,"task":"t2","resource":"r1","start":8,"cost":2},{"index":6,"task":"t3","resource":"r1","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":6,"cost":4},{"index":8,"task":"t4","resource":"r1","start":7,"cost":4},{"index":9,"task":"t4","resource":"r0","start":2,"cost":6},{"index":10,"task":"t5","resource":"r0","start":1,"cost":1},{"index":11,"task":"t5","resource":"r1","start":2,"cost":5},{"index":12,"task":"t6","resource":"r1","start":5,"cost":0},{"index":13,"task":"t6","resource":"r1","start":9,"cost":5},{"index":14,"task":"t7","resource":"r1","start":2,"cost":0},{"index":15,"task":"t7","resource":"r1","start":9,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["resource","group","precedence"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":6,"j":12,"reasons":["resource"]},{"i":9,"j":11,"reasons":["group"]},{"i":11,"j":14,"reasons":["resource"]},{"i":13,"j":15,"reasons":["resource","group"]}]}]},"diagnostic_seconds":0.06307297499733977}
+{"input":{"file":"evaluation-n8-d1.json","split":"evaluation","tasks":8,"density_parameter":1,"data_seed":20261003,"sha256":"24a78232cc15095f23f1960fce0fa6b469331287e939761855cc9afe88d423e3"},"model":{"qubits":16,"penalty":37,"objective_bound":36,"offset":296,"linear":[-33,-34,-33,-31,-34,-35,-37,-33,-33,-31,-36,-32,-37,-32,-37,-34],"quadratic":[[0,1,74],[0,2,37],[1,2,37],[2,3,74],[3,8,37],[4,5,74],[4,7,37],[6,7,74],[6,12,37],[8,9,74],[9,11,37],[10,11,74],[11,14,37],[12,13,74],[13,15,37],[14,15,74]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":5,"cost":4},{"index":1,"task":"t0","resource":"r1","start":3,"cost":3},{"index":2,"task":"t1","resource":"r1","start":3,"cost":4},{"index":3,"task":"t1","resource":"r1","start":7,"cost":6},{"index":4,"task":"t2","resource":"r0","start":6,"cost":3},{"index":5,"task":"t2","resource":"r1","start":8,"cost":2},{"index":6,"task":"t3","resource":"r1","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":6,"cost":4},{"index":8,"task":"t4","resource":"r1","start":7,"cost":4},{"index":9,"task":"t4","resource":"r0","start":2,"cost":6},{"index":10,"task":"t5","resource":"r0","start":1,"cost":1},{"index":11,"task":"t5","resource":"r1","start":2,"cost":5},{"index":12,"task":"t6","resource":"r1","start":5,"cost":0},{"index":13,"task":"t6","resource":"r1","start":9,"cost":5},{"index":14,"task":"t7","resource":"r1","start":2,"cost":0},{"index":15,"task":"t7","resource":"r1","start":9,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["resource","group","precedence"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":6,"j":12,"reasons":["resource"]},{"i":9,"j":11,"reasons":["group"]},{"i":11,"j":14,"reasons":["resource"]},{"i":13,"j":15,"reasons":["resource","group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":12,"task":"t6","group":"g3","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":5,"task":"t2","group":"g1","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true}],"bits":[0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0],"qubo_energy":22},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.5367045971853965,1.3466779133473936],"expected_energy":62.35981974206631,"initial_expected_energy":93.4760029541798,"history":[93.4760029541798,95.38447435701566,104.78162319585404,108.7272870688295,99.90636992612377,94.01383649365087,104.86476379820809,91.00563062820285,90.75765274659334,91.05216360414936,91.55642850654024,90.9458014509656,90.87076401321593,90.60582763942148,90.5642658940645,90.50344418613543,90.45412782784237,90.38684049006727,90.26533801170403,90.43456321192751,90.48847036545371,90.31639563411491,90.27531968098705,90.26527659587092,90.2428330508434,90.20700939000454,90.14159970132766,90.34406220317766,90.23254486022667,90.19558790175905,90.12849006489317,90.15002222713764,90.11135328707873,90.0973985386696,90.06604477261345,90.01808207849325,90.92361993303679,90.08087308976282,90.09475456074414,90.00642920383045,89.9958005380015,89.98457260652904,89.99085696497252,89.97733294775352,89.97594512196966,89.9855026271645,89.97595466721924,89.97195753000001,89.96557892789104,89.97007145813755,89.96023804286943,89.95980090915526,89.96528842126817,89.9598890282331,89.95781306963329,89.95424967029184,89.94979108106295,89.9443372068593,89.93904981018756,89.92816357865377,107.6292886577072,105.67791474293331,92.21545052589195,102.3287047304738,90.07194022334414,98.03088425653186,94.9034332099657,89.51237255759592,90.65064942735269,88.3495389102325,87.31597476476699,87.34771097565783,86.67447361310786,87.20885906283006,87.40374516497253,85.97422140549747,87.17185943584624,85.34419440956765,84.74555016559407,83.60640135934294,82.53670667146221,80.17962149367636,82.240361562365,79.4295094201749,81.65018172149948,78.74184995650877,78.14653214514885,77.41764377297343,76.0427499023725,76.64209434798556,76.17214299870334,75.76989815135272,75.95569740255456,75.9906438696384,75.42103204362839,75.13878842442887,75.98401325468295,74.80023121781511,74.48213546497868,73.86495265844735,72.67771352002407,71.26239991196553,70.51105736205443,68.08086678875095,63.46061346466678,67.062049266307,87.79281827813296,72.13608358586086,62.958248378299174,64.15550449349723,63.18390502032224,62.78956208372074,62.92102208821913,62.751842763906986,62.6979658638485,62.716632387536336,62.625816659150075,62.56584023613432,62.535098031578734,62.35981974206631],"feasible_probability":0.27313208253314186,"one_hot_probability":1.0,"sampled_feasible_fraction":0.265625,"counts":{"0101010101010101":1,"0101010101010110":2,"0101010101100101":1,"0101010110100101":7,"0101010110100110":4,"0101010110101001":2,"0101010110101010":3,"0101011001011001":2,"0101011001011010":3,"0101011001100101":1,"0101011001101001":1,"0101011001101010":2,"0101011010011001":1,"0101011010011010":1,"0101011010100101":1,"0101011010100110":5,"0101011010101001":8,"0101011010101010":16,"0101100110011001":1,"0101100110011010":1,"0101100110101001":1,"0101101010010110":1,"0101101010101001":4,"0101101010101010":7,"0110010101010101":8,"0110010101010110":11,"0110010101011001":7,"0110010101011010":5,"0110010101100101":14,"0110010101100110":10,"0110010101101001":7,"0110010101101010":3,"0110010110010101":1,"0110010110100101":3,"0110010110100110":7,"0110010110101001":1,"0110010110101010":1,"0110011001010110":1,"0110011001011001":11,"0110011001011010":8,"0110011001100101":1,"0110011001100110":2,"0110011001101001":17,"0110011001101010":12,"0110011010011010":1,"0110011010101001":10,"0110011010101010":10,"0110100101010110":1,"0110100101011001":2,"0110100101011010":3,"0110100101100110":1,"0110100101101001":2,"0110100101101010":2,"0110100110100110":1,"0110100110101001":2,"0110100110101010":6,"0110101001011010":1,"0110101001101010":4,"0110101010101001":1,"0110101010101010":1,"1001010101010101":6,"1001010101010110":4,"1001010101011001":1,"1001010101011010":6,"1001010101100101":3,"1001010101100110":3,"1001010101101010":1,"1001010110100101":13,"1001010110100110":18,"1001010110101001":3,"1001010110101010":6,"1001011001011001":13,"1001011001011010":7,"1001011001101001":7,"1001011001101010":5,"1001011010011001":2,"1001011010101001":24,"1001011010101010":20,"1001100101010101":4,"1001100101010110":1,"1001100101011001":10,"1001100101011010":2,"1001100101100110":1,"1001100101101001":6,"1001100101101010":1,"1001100110100101":11,"1001100110100110":9,"1001100110101001":8,"1001100110101010":4,"1001101001010110":1,"1001101001011001":1,"1001101001101010":1,"1001101010100101":2,"1001101010100110":1,"1001101010101001":2,"1001101010101010":1,"1010010101011001":2,"1010010101100110":3,"1010010101101001":2,"1010010101101010":1,"1010010110100101":1,"1010010110100110":2,"1010011001011001":1,"1010011001011010":2,"1010011001101001":2,"1010011001101010":3,"1010011010011001":1,"1010011010011010":1,"1010100101010101":1,"1010100101010110":1,"1010100101011001":2,"1010100101011010":1,"1010100101100101":2,"1010100101100110":3,"1010100101101001":5,"1010100101101010":1,"1010100110010101":1,"1010100110100101":1,"1010100110101001":1,"1010100110101010":1,"1010101001010101":1,"1010101001011001":2,"1010101001011010":2,"1010101001101010":2,"1010101010101001":1,"1010101010101010":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.9468468340055551},"metrics":{"exact_objective":22,"optimal_count":1,"combinations":256,"optimal_probability":0.02913177610372757,"feasible_probability":0.2731320825331419,"uniform_optimal_probability":0.00390625,"uniform_feasible_probability":0.0390625,"shots_for_95_percent":102,"hit_curve":[{"shots":8,"quantum":0.21062694760753112,"uniform":0.0308260755190447},{"shots":16,"quantum":0.3768901841565966,"uniform":0.060701904106183556},{"shots":32,"quantum":0.6117341573995998,"uniform":0.1177190870502508},{"shots":64,"quantum":0.8492496354698014,"uniform":0.2215803906445571},{"shots":128,"quantum":0.9772743275940122,"uniform":0.3940629117709197},{"shots":512,"quantum":0.9999997332730076,"uniform":0.865193714387987}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":17,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":22,"preference_cost":10,"change_cost":12,"changed_tasks":5,"max_start_shift":5,"choices":[2,1,1,1,1,0,0,0],"schedule":[{"task":"t0","resource":"r1","start":3,"end":4},{"task":"t1","resource":"r1","start":7,"end":8},{"task":"t2","resource":"r1","start":8,"end":9},{"task":"t3","resource":"r0","start":6,"end":7},{"task":"t4","resource":"r0","start":2,"end":3},{"task":"t5","resource":"r0","start":1,"end":2},{"task":"t6","resource":"r1","start":5,"end":6},{"task":"t7","resource":"r1","start":2,"end":3}]},"dual_bound":22.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":16,"runtime_seconds":0.001571046988829039},"exact":{"status":"optimal","best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":12,"task":"t6","group":"g3","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":5,"task":"t2","group":"g1","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true}],"bits":[0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0],"qubo_energy":22},"combinations":256,"feasible_count":10,"runtime_seconds":0.004175194000708871},"greedy":{"status":"feasible","best":{"feasible":true,"objective":23,"raw_cost":23,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":6,"task":"t3","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":5,"task":"t2","group":"g1","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":9,"end":10,"reserved_end":10,"changed":true}],"bits":[0,1,0,1,0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":23},"runtime_seconds":4.28649946115911e-05},"resources":{"full":{"depth":22,"operations":{"RX":40,"I":16,"RZ":40,"CNOT":56,"CRY":8,"X":8},"cnot":56,"cry":8},"auto":{"depth":17,"operations":{"RX":40,"I":16,"RZ":32,"CNOT":40,"CRY":8,"X":8},"cnot":40,"cry":8}},"phase_max_probability_error":4.163336342344337e-17,"samples":[{"shots":8,"quantum_objective":23,"uniform_objective":null},{"shots":16,"quantum_objective":22,"uniform_objective":24},{"shots":32,"quantum_objective":23,"uniform_objective":23},{"shots":64,"quantum_objective":22,"uniform_objective":24},{"shots":128,"quantum_objective":22,"uniform_objective":22},{"shots":512,"quantum_objective":22,"uniform_objective":22}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":16,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[16],"max_component_qubits":16,"component_to_original":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]],"components":[{"qubits":16,"penalty":37,"objective_bound":36,"offset":296,"linear":[-33,-34,-33,-31,-34,-35,-37,-33,-33,-31,-36,-32,-37,-32,-37,-34],"quadratic":[[0,1,74],[0,2,37],[1,2,37],[2,3,74],[3,8,37],[4,5,74],[4,7,37],[6,7,74],[6,12,37],[8,9,74],[9,11,37],[10,11,74],[11,14,37],[12,13,74],[13,15,37],[14,15,74]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":5,"cost":4},{"index":1,"task":"t0","resource":"r1","start":3,"cost":3},{"index":2,"task":"t1","resource":"r1","start":3,"cost":4},{"index":3,"task":"t1","resource":"r1","start":7,"cost":6},{"index":4,"task":"t2","resource":"r0","start":6,"cost":3},{"index":5,"task":"t2","resource":"r1","start":8,"cost":2},{"index":6,"task":"t3","resource":"r1","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":6,"cost":4},{"index":8,"task":"t4","resource":"r1","start":7,"cost":4},{"index":9,"task":"t4","resource":"r0","start":2,"cost":6},{"index":10,"task":"t5","resource":"r0","start":1,"cost":1},{"index":11,"task":"t5","resource":"r1","start":2,"cost":5},{"index":12,"task":"t6","resource":"r1","start":5,"cost":0},{"index":13,"task":"t6","resource":"r1","start":9,"cost":5},{"index":14,"task":"t7","resource":"r1","start":2,"cost":0},{"index":15,"task":"t7","resource":"r1","start":9,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["resource","group","precedence"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":6,"j":12,"reasons":["resource"]},{"i":9,"j":11,"reasons":["group"]},{"i":11,"j":14,"reasons":["resource"]},{"i":13,"j":15,"reasons":["resource","group"]}]}]},"diagnostic_seconds":0.060769753996282816}
+{"input":{"file":"evaluation-n8-d1.json","split":"evaluation","tasks":8,"density_parameter":1,"data_seed":20261003,"sha256":"24a78232cc15095f23f1960fce0fa6b469331287e939761855cc9afe88d423e3"},"model":{"qubits":16,"penalty":37,"objective_bound":36,"offset":296,"linear":[-33,-34,-33,-31,-34,-35,-37,-33,-33,-31,-36,-32,-37,-32,-37,-34],"quadratic":[[0,1,74],[0,2,37],[1,2,37],[2,3,74],[3,8,37],[4,5,74],[4,7,37],[6,7,74],[6,12,37],[8,9,74],[9,11,37],[10,11,74],[11,14,37],[12,13,74],[13,15,37],[14,15,74]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":5,"cost":4},{"index":1,"task":"t0","resource":"r1","start":3,"cost":3},{"index":2,"task":"t1","resource":"r1","start":3,"cost":4},{"index":3,"task":"t1","resource":"r1","start":7,"cost":6},{"index":4,"task":"t2","resource":"r0","start":6,"cost":3},{"index":5,"task":"t2","resource":"r1","start":8,"cost":2},{"index":6,"task":"t3","resource":"r1","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":6,"cost":4},{"index":8,"task":"t4","resource":"r1","start":7,"cost":4},{"index":9,"task":"t4","resource":"r0","start":2,"cost":6},{"index":10,"task":"t5","resource":"r0","start":1,"cost":1},{"index":11,"task":"t5","resource":"r1","start":2,"cost":5},{"index":12,"task":"t6","resource":"r1","start":5,"cost":0},{"index":13,"task":"t6","resource":"r1","start":9,"cost":5},{"index":14,"task":"t7","resource":"r1","start":2,"cost":0},{"index":15,"task":"t7","resource":"r1","start":9,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["resource","group","precedence"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":6,"j":12,"reasons":["resource"]},{"i":9,"j":11,"reasons":["group"]},{"i":11,"j":14,"reasons":["resource"]},{"i":13,"j":15,"reasons":["resource","group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":12,"task":"t6","group":"g3","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":5,"task":"t2","group":"g1","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true}],"bits":[0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0],"qubo_energy":22},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3590719717830817,2.9132168625745973],"expected_energy":60.48322308684136,"initial_expected_energy":99.15114855653358,"history":[99.15114855653358,98.25262504133255,95.61978006503068,108.1882220496088,98.74344684296983,94.68126325435023,97.26544163722355,94.2518384901397,93.76350608647923,93.29736301411887,93.73905960617185,93.12124375286511,92.57798204588337,91.49736898936092,89.74802025457973,109.9626114156297,101.87325506968035,89.37405240948188,93.21323660659579,89.7766469883103,89.92433678063017,89.63864876284974,89.32217584450504,89.33381899855615,89.32331795714026,89.28626493243326,89.23144327957071,89.37882910291528,89.18045606912781,89.11488578603034,88.99352617580466,88.94026928632445,88.73720220428154,89.62956487321534,88.56987644857409,88.58662965150538,88.60629096490521,88.55102743588853,88.6402937769488,88.5134350565962,88.48088324168165,88.42082796947537,88.30531405790077,88.15206218917896,88.12467953903422,87.89136555876149,87.92409556839073,88.11278775240751,87.93637325308342,87.86725472571464,87.82564948557174,87.81889047968556,87.74745854391952,87.75278011608566,87.73634123103136,87.7429706681242,87.75349679640175,87.71482912194145,87.71523727789447,87.72608773952105,133.3040786979215,126.03981935652354,102.20947501362939,73.83210123518569,93.84019395772299,89.52208889153403,91.2179665733658,85.63681107843024,75.14165605485758,71.97404255674164,71.62286639644738,75.02014764264047,70.7256467721696,70.17275830762647,69.65054520037671,69.50553414744068,68.01161268188012,68.81876312398146,67.83764075425168,68.90021075779049,67.49673193773276,67.20032408512843,66.66907733437408,65.65241313425963,64.65746443063394,65.15373091064919,67.65717181188114,65.22190852429662,63.89110294774072,63.611395257626704,64.54101809675488,63.373760697037945,63.177221893184274,62.79399382882076,62.112976776776264,61.94769343190867,63.2248877049253,66.32352272910614,62.02863824564496,61.04806778732514,61.16370546448396,61.159146453472715,61.09221458215458,60.974555251742935,60.90336222537499,60.81142260823808,60.66722547701888,60.68028518448139,60.75636163071927,60.71344085739017,60.698400179671765,60.63082248950794,60.643079457991206,60.59537627055416,60.57219691810267,60.612088645975184,60.536089734620894,60.50858641123823,60.600182632294576,60.48322308684136],"feasible_probability":0.2871715092397071,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.283203125,"counts":{"0101010101010101":2,"0101010101011001":1,"0101010101100101":1,"0101010101100110":3,"0101010101101001":1,"0101010110011001":1,"0101010110011010":1,"0101010110100101":10,"0101010110100110":6,"0101010110101001":4,"0101010110101010":5,"0101011001011001":3,"0101011001011010":2,"0101011001101001":2,"0101011001101010":1,"0101011010011001":1,"0101011010011010":2,"0101011010100101":3,"0101011010101001":12,"0101011010101010":13,"0101100101101010":1,"0101100110010110":1,"0101100110101001":1,"0101101001010101":1,"0101101001101010":1,"0101101010101001":3,"0101101010101010":3,"0110010101010101":9,"0110010101010110":11,"0110010101011001":2,"0110010101011010":7,"0110010101100101":10,"0110010101100110":10,"0110010101101001":5,"0110010101101010":2,"0110010110010101":1,"0110010110011010":1,"0110010110100101":4,"0110010110100110":6,"0110010110101001":3,"0110010110101010":5,"0110011001010101":1,"0110011001010110":2,"0110011001011001":16,"0110011001011010":17,"0110011001100101":1,"0110011001101001":14,"0110011001101010":15,"0110011010101001":12,"0110011010101010":7,"0110100101010101":1,"0110100101011001":3,"0110100101011010":5,"0110100101100101":2,"0110100101101001":3,"0110100101101010":4,"0110100110101001":3,"0110100110101010":2,"0110101001011001":2,"0110101001011010":1,"0110101001100101":1,"0110101001101001":1,"0110101001101010":2,"0110101010101001":4,"0110101010101010":3,"1001010101010101":6,"1001010101010110":3,"1001010101011001":1,"1001010101011010":2,"1001010101100101":3,"1001010101100110":3,"1001010101101010":1,"1001010110010101":1,"1001010110010110":1,"1001010110011001":1,"1001010110011010":1,"1001010110100101":9,"1001010110100110":6,"1001010110101001":4,"1001010110101010":8,"1001011001010110":2,"1001011001011001":16,"1001011001011010":2,"1001011001101001":5,"1001011001101010":2,"1001011010101001":19,"1001011010101010":20,"1001100101010101":1,"1001100101010110":6,"1001100101011001":7,"1001100101011010":3,"1001100101100101":1,"1001100101100110":1,"1001100101101001":2,"1001100101101010":5,"1001100110010101":1,"1001100110100101":10,"1001100110100110":4,"1001100110101001":4,"1001100110101010":10,"1001101001101001":1,"1001101010100101":2,"1001101010101001":2,"1001101010101010":7,"1010010101010110":1,"1010010101011001":1,"1010010101011010":2,"1010010101100101":1,"1010010101100110":1,"1010010110101010":2,"1010011001011001":1,"1010011001011010":3,"1010011001101001":1,"1010011001101010":2,"1010011010011010":1,"1010100101010101":1,"1010100101010110":2,"1010100101011001":3,"1010100101011010":4,"1010100101100101":8,"1010100101100110":1,"1010100101101001":2,"1010100101101010":4,"1010100110100101":1,"1010100110100110":1,"1010101001011010":1,"1010101001101001":1,"1010101010011010":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.9633713660005014},"metrics":{"exact_objective":22,"optimal_count":1,"combinations":256,"optimal_probability":0.029933057461012675,"feasible_probability":0.2871715092397071,"uniform_optimal_probability":0.00390625,"uniform_feasible_probability":0.0390625,"shots_for_95_percent":99,"hit_curve":[{"shots":8,"quantum":0.21582382864476288,"uniform":0.0308260755190447},{"shots":16,"quantum":0.38506773227864177,"uniform":0.060701904106183556},{"shots":32,"quantum":0.6218583061150679,"uniform":0.1177190870502508},{"shots":64,"quantum":0.8570088593458343,"uniform":0.2215803906445571},{"shots":128,"quantum":0.9795535336944206,"uniform":0.3940629117709197},{"shots":512,"quantum":0.9999998252275217,"uniform":0.865193714387987}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":17,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":22,"preference_cost":10,"change_cost":12,"changed_tasks":5,"max_start_shift":5,"choices":[2,1,1,1,1,0,0,0],"schedule":[{"task":"t0","resource":"r1","start":3,"end":4},{"task":"t1","resource":"r1","start":7,"end":8},{"task":"t2","resource":"r1","start":8,"end":9},{"task":"t3","resource":"r0","start":6,"end":7},{"task":"t4","resource":"r0","start":2,"end":3},{"task":"t5","resource":"r0","start":1,"end":2},{"task":"t6","resource":"r1","start":5,"end":6},{"task":"t7","resource":"r1","start":2,"end":3}]},"dual_bound":22.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":16,"runtime_seconds":0.001571046988829039},"exact":{"status":"optimal","best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":12,"task":"t6","group":"g3","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":5,"task":"t2","group":"g1","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true}],"bits":[0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0],"qubo_energy":22},"combinations":256,"feasible_count":10,"runtime_seconds":0.004175194000708871},"greedy":{"status":"feasible","best":{"feasible":true,"objective":23,"raw_cost":23,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":6,"task":"t3","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":5,"task":"t2","group":"g1","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":9,"end":10,"reserved_end":10,"changed":true}],"bits":[0,1,0,1,0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":23},"runtime_seconds":4.28649946115911e-05},"resources":{"full":{"depth":22,"operations":{"RX":40,"I":16,"RZ":40,"CNOT":56,"CRY":8,"X":8},"cnot":56,"cry":8},"auto":{"depth":17,"operations":{"RX":40,"I":16,"RZ":32,"CNOT":40,"CRY":8,"X":8},"cnot":40,"cry":8}},"phase_max_probability_error":5.551115123125783e-17,"samples":[{"shots":8,"quantum_objective":22,"uniform_objective":null},{"shots":16,"quantum_objective":22,"uniform_objective":23},{"shots":32,"quantum_objective":22,"uniform_objective":24},{"shots":64,"quantum_objective":22,"uniform_objective":23},{"shots":128,"quantum_objective":22,"uniform_objective":23},{"shots":512,"quantum_objective":22,"uniform_objective":22}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":16,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[16],"max_component_qubits":16,"component_to_original":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]],"components":[{"qubits":16,"penalty":37,"objective_bound":36,"offset":296,"linear":[-33,-34,-33,-31,-34,-35,-37,-33,-33,-31,-36,-32,-37,-32,-37,-34],"quadratic":[[0,1,74],[0,2,37],[1,2,37],[2,3,74],[3,8,37],[4,5,74],[4,7,37],[6,7,74],[6,12,37],[8,9,74],[9,11,37],[10,11,74],[11,14,37],[12,13,74],[13,15,37],[14,15,74]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":5,"cost":4},{"index":1,"task":"t0","resource":"r1","start":3,"cost":3},{"index":2,"task":"t1","resource":"r1","start":3,"cost":4},{"index":3,"task":"t1","resource":"r1","start":7,"cost":6},{"index":4,"task":"t2","resource":"r0","start":6,"cost":3},{"index":5,"task":"t2","resource":"r1","start":8,"cost":2},{"index":6,"task":"t3","resource":"r1","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":6,"cost":4},{"index":8,"task":"t4","resource":"r1","start":7,"cost":4},{"index":9,"task":"t4","resource":"r0","start":2,"cost":6},{"index":10,"task":"t5","resource":"r0","start":1,"cost":1},{"index":11,"task":"t5","resource":"r1","start":2,"cost":5},{"index":12,"task":"t6","resource":"r1","start":5,"cost":0},{"index":13,"task":"t6","resource":"r1","start":9,"cost":5},{"index":14,"task":"t7","resource":"r1","start":2,"cost":0},{"index":15,"task":"t7","resource":"r1","start":9,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["resource","group","precedence"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":6,"j":12,"reasons":["resource"]},{"i":9,"j":11,"reasons":["group"]},{"i":11,"j":14,"reasons":["resource"]},{"i":13,"j":15,"reasons":["resource","group"]}]}]},"diagnostic_seconds":0.0652482909936225}
+{"input":{"file":"evaluation-n8-d1.json","split":"evaluation","tasks":8,"density_parameter":1,"data_seed":20261003,"sha256":"24a78232cc15095f23f1960fce0fa6b469331287e939761855cc9afe88d423e3"},"model":{"qubits":16,"penalty":37,"objective_bound":36,"offset":296,"linear":[-33,-34,-33,-31,-34,-35,-37,-33,-33,-31,-36,-32,-37,-32,-37,-34],"quadratic":[[0,1,74],[0,2,37],[1,2,37],[2,3,74],[3,8,37],[4,5,74],[4,7,37],[6,7,74],[6,12,37],[8,9,74],[9,11,37],[10,11,74],[11,14,37],[12,13,74],[13,15,37],[14,15,74]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":5,"cost":4},{"index":1,"task":"t0","resource":"r1","start":3,"cost":3},{"index":2,"task":"t1","resource":"r1","start":3,"cost":4},{"index":3,"task":"t1","resource":"r1","start":7,"cost":6},{"index":4,"task":"t2","resource":"r0","start":6,"cost":3},{"index":5,"task":"t2","resource":"r1","start":8,"cost":2},{"index":6,"task":"t3","resource":"r1","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":6,"cost":4},{"index":8,"task":"t4","resource":"r1","start":7,"cost":4},{"index":9,"task":"t4","resource":"r0","start":2,"cost":6},{"index":10,"task":"t5","resource":"r0","start":1,"cost":1},{"index":11,"task":"t5","resource":"r1","start":2,"cost":5},{"index":12,"task":"t6","resource":"r1","start":5,"cost":0},{"index":13,"task":"t6","resource":"r1","start":9,"cost":5},{"index":14,"task":"t7","resource":"r1","start":2,"cost":0},{"index":15,"task":"t7","resource":"r1","start":9,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["resource","group","precedence"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":6,"j":12,"reasons":["resource"]},{"i":9,"j":11,"reasons":["group"]},{"i":11,"j":14,"reasons":["resource"]},{"i":13,"j":15,"reasons":["resource","group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":12,"task":"t6","group":"g3","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":5,"task":"t2","group":"g1","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true}],"bits":[0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0],"qubo_energy":22},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.2178152022675521,1.3391009377203726],"expected_energy":60.019383412757115,"initial_expected_energy":80.60716370688871,"history":[80.60716370688871,88.7990490357387,124.82742341416878,91.52494782063332,65.29217169737933,133.5519071485919,62.906436933036616,61.823177880016885,64.09457736151806,63.18441824539075,60.467250036412864,60.13488534704409,62.04112341706332,61.42413711431759,60.851589673109814,60.113490486988184,60.11176670783868,60.15108323117673,60.136431392732305,60.07767519079632,60.08130424233545,60.08253699377171,60.079852058883866,60.074005096033275,60.06927479927922,60.06328103772532,60.05296889427528,60.05264746529562,60.03480157599225,60.099561747878354,60.05131393158445,60.0333902003979,60.04023418476936,60.032635818720976,60.03116345614823,60.028443139011614,60.02513034586767,60.041325651559795,60.02447002238311,60.0238550071927,60.024079078557726,60.02445895012629,60.02293788473922,60.02229484705735,60.02350407513141,60.02198597218786,60.02195453594996,60.02154297595135,60.02135672621934,60.02067759315656,60.02066556086591,60.01971412705293,60.02160725440174,60.02053573467961,60.01961914535449,60.0197729830628,60.01957238878644,60.019815566486706,60.01944954885498,60.019383412757115,103.66632145177404,96.35466457034882,97.70393264517512,81.98870529405811,64.66717370952843,99.92852438911834,110.74571633864596,128.22229043034991,89.17588527601006,65.9370579110372,82.05651054535639,63.34339676303817,65.4922986839702,63.47889955108124,63.464355140560095,63.28273981203602,63.36728354954455,63.30007977381864,63.27575474967238,63.26949681123526,63.297253806354746,63.26202382062482,63.26157841484675,63.25819151079789,63.25390102085173,63.25078988112063,63.25757220883518,63.24910359588082,63.24784744812494,63.249598071198065,63.24708466212536,63.246406077460286,63.245102563101014,63.243585872912156,63.24137125321636,63.24063332610896,63.2483905985694,63.23890853963182,63.23830376153881,63.23735555484985,63.23573169398743,63.23681037050136,63.236796845290954,63.235510048157344,63.23691704168818,63.235038522069814,63.234769537875,63.234406162754226,63.234062046652376,63.23354908836363,63.23284679343734,63.231563871952645,63.23273827426971,63.23483403343664,63.23135457961863,63.232202159656616,63.23135786564749,63.231301421607014,63.23129383489505,63.23149888454013],"feasible_probability":0.2865292193132428,"one_hot_probability":0.9999999999999997,"sampled_feasible_fraction":0.27734375,"counts":{"0101010101010101":2,"0101010101010110":2,"0101010101011001":1,"0101010101101001":1,"0101010101101010":1,"0101010110010110":1,"0101010110100101":5,"0101010110100110":8,"0101010110101001":4,"0101010110101010":4,"0101011001011010":1,"0101011001101001":2,"0101011001101010":4,"0101011010010101":1,"0101011010011010":2,"0101011010100101":1,"0101011010100110":1,"0101011010101001":14,"0101011010101010":9,"0101100110100101":1,"0101100110101001":1,"0101100110101010":3,"0101101010100101":1,"0101101010101010":1,"0110010101010101":8,"0110010101010110":14,"0110010101011001":4,"0110010101011010":7,"0110010101100101":9,"0110010101100110":10,"0110010101101001":12,"0110010101101010":5,"0110010110100101":1,"0110010110100110":3,"0110010110101001":5,"0110010110101010":3,"0110011001010101":1,"0110011001010110":1,"0110011001011001":10,"0110011001011010":16,"0110011001100101":1,"0110011001101001":10,"0110011001101010":18,"0110011010011010":2,"0110011010100110":3,"0110011010101001":10,"0110011010101010":6,"0110100101010101":1,"0110100101011001":2,"0110100101011010":3,"0110100101101001":2,"0110100110100101":2,"0110100110101001":1,"0110100110101010":4,"0110101001011001":1,"0110101001101001":3,"0110101010100110":1,"0110101010101010":2,"1001010101010101":2,"1001010101010110":2,"1001010101011001":1,"1001010101011010":1,"1001010101100101":1,"1001010101100110":4,"1001010101101010":2,"1001010110010110":1,"1001010110011001":1,"1001010110011010":1,"1001010110100101":11,"1001010110100110":13,"1001010110101001":5,"1001010110101010":5,"1001011001011001":6,"1001011001011010":6,"1001011001100101":1,"1001011001101001":5,"1001011001101010":4,"1001011010010110":1,"1001011010011001":1,"1001011010011010":2,"1001011010100101":2,"1001011010100110":4,"1001011010101001":22,"1001011010101010":27,"1001100101010101":4,"1001100101010110":2,"1001100101011001":3,"1001100101011010":3,"1001100101100101":2,"1001100101100110":1,"1001100101101001":1,"1001100101101010":1,"1001100110010101":1,"1001100110010110":1,"1001100110011010":1,"1001100110100101":8,"1001100110100110":8,"1001100110101001":13,"1001100110101010":5,"1001101001101001":1,"1001101010101001":6,"1001101010101010":5,"1010010101010101":2,"1010010101010110":2,"1010010101011001":2,"1010010101011010":1,"1010010101100101":2,"1010010101100110":3,"1010010101101001":1,"1010010101101010":1,"1010010110010101":1,"1010010110011001":1,"1010010110100101":1,"1010010110100110":1,"1010011001011001":2,"1010011001011010":2,"1010011001100101":1,"1010011001100110":1,"1010011001101001":4,"1010011001101010":5,"1010100101010101":2,"1010100101010110":4,"1010100101011001":2,"1010100101011010":3,"1010100101100101":4,"1010100101100110":3,"1010100101101001":2,"1010100101101010":3,"1010100110101001":1,"1010100110101010":2,"1010101001011001":1,"1010101001011010":1,"1010101001101010":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.9335638389893575},"metrics":{"exact_objective":22,"optimal_count":1,"combinations":256,"optimal_probability":0.029583031117702618,"feasible_probability":0.2865292193132428,"uniform_optimal_probability":0.00390625,"uniform_feasible_probability":0.0390625,"shots_for_95_percent":100,"hit_curve":[{"shots":8,"quantum":0.21355735239909068,"uniform":0.0308260755190447},{"shots":16,"quantum":0.38150796203447196,"uniform":0.060701904106183556},{"shots":32,"quantum":0.6174675989732479,"uniform":0.1177190870502508},{"shots":64,"quantum":0.853668962164708,"uniform":0.2215803906445571},{"shots":128,"quantum":0.9785872273660463,"uniform":0.3940629117709197},{"shots":512,"quantum":0.9999997897714851,"uniform":0.865193714387987}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":17,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":22,"preference_cost":10,"change_cost":12,"changed_tasks":5,"max_start_shift":5,"choices":[2,1,1,1,1,0,0,0],"schedule":[{"task":"t0","resource":"r1","start":3,"end":4},{"task":"t1","resource":"r1","start":7,"end":8},{"task":"t2","resource":"r1","start":8,"end":9},{"task":"t3","resource":"r0","start":6,"end":7},{"task":"t4","resource":"r0","start":2,"end":3},{"task":"t5","resource":"r0","start":1,"end":2},{"task":"t6","resource":"r1","start":5,"end":6},{"task":"t7","resource":"r1","start":2,"end":3}]},"dual_bound":22.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":16,"runtime_seconds":0.001571046988829039},"exact":{"status":"optimal","best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":12,"task":"t6","group":"g3","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":5,"task":"t2","group":"g1","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true}],"bits":[0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0],"qubo_energy":22},"combinations":256,"feasible_count":10,"runtime_seconds":0.004175194000708871},"greedy":{"status":"feasible","best":{"feasible":true,"objective":23,"raw_cost":23,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":6,"task":"t3","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":5,"task":"t2","group":"g1","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":9,"end":10,"reserved_end":10,"changed":true}],"bits":[0,1,0,1,0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":23},"runtime_seconds":4.28649946115911e-05},"resources":{"full":{"depth":22,"operations":{"RX":40,"I":16,"RZ":40,"CNOT":56,"CRY":8,"X":8},"cnot":56,"cry":8},"auto":{"depth":17,"operations":{"RX":40,"I":16,"RZ":32,"CNOT":40,"CRY":8,"X":8},"cnot":40,"cry":8}},"phase_max_probability_error":4.85722573273506e-17,"samples":[{"shots":8,"quantum_objective":23,"uniform_objective":null},{"shots":16,"quantum_objective":22,"uniform_objective":null},{"shots":32,"quantum_objective":22,"uniform_objective":26},{"shots":64,"quantum_objective":22,"uniform_objective":23},{"shots":128,"quantum_objective":22,"uniform_objective":22},{"shots":512,"quantum_objective":22,"uniform_objective":22}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":16,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[16],"max_component_qubits":16,"component_to_original":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]],"components":[{"qubits":16,"penalty":37,"objective_bound":36,"offset":296,"linear":[-33,-34,-33,-31,-34,-35,-37,-33,-33,-31,-36,-32,-37,-32,-37,-34],"quadratic":[[0,1,74],[0,2,37],[1,2,37],[2,3,74],[3,8,37],[4,5,74],[4,7,37],[6,7,74],[6,12,37],[8,9,74],[9,11,37],[10,11,74],[11,14,37],[12,13,74],[13,15,37],[14,15,74]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":5,"cost":4},{"index":1,"task":"t0","resource":"r1","start":3,"cost":3},{"index":2,"task":"t1","resource":"r1","start":3,"cost":4},{"index":3,"task":"t1","resource":"r1","start":7,"cost":6},{"index":4,"task":"t2","resource":"r0","start":6,"cost":3},{"index":5,"task":"t2","resource":"r1","start":8,"cost":2},{"index":6,"task":"t3","resource":"r1","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":6,"cost":4},{"index":8,"task":"t4","resource":"r1","start":7,"cost":4},{"index":9,"task":"t4","resource":"r0","start":2,"cost":6},{"index":10,"task":"t5","resource":"r0","start":1,"cost":1},{"index":11,"task":"t5","resource":"r1","start":2,"cost":5},{"index":12,"task":"t6","resource":"r1","start":5,"cost":0},{"index":13,"task":"t6","resource":"r1","start":9,"cost":5},{"index":14,"task":"t7","resource":"r1","start":2,"cost":0},{"index":15,"task":"t7","resource":"r1","start":9,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["resource","group","precedence"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":6,"j":12,"reasons":["resource"]},{"i":9,"j":11,"reasons":["group"]},{"i":11,"j":14,"reasons":["resource"]},{"i":13,"j":15,"reasons":["resource","group"]}]}]},"diagnostic_seconds":0.06346847199893091}
+{"input":{"file":"evaluation-n8-d1.json","split":"evaluation","tasks":8,"density_parameter":1,"data_seed":20261003,"sha256":"24a78232cc15095f23f1960fce0fa6b469331287e939761855cc9afe88d423e3"},"model":{"qubits":16,"penalty":37,"objective_bound":36,"offset":296,"linear":[-33,-34,-33,-31,-34,-35,-37,-33,-33,-31,-36,-32,-37,-32,-37,-34],"quadratic":[[0,1,74],[0,2,37],[1,2,37],[2,3,74],[3,8,37],[4,5,74],[4,7,37],[6,7,74],[6,12,37],[8,9,74],[9,11,37],[10,11,74],[11,14,37],[12,13,74],[13,15,37],[14,15,74]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":5,"cost":4},{"index":1,"task":"t0","resource":"r1","start":3,"cost":3},{"index":2,"task":"t1","resource":"r1","start":3,"cost":4},{"index":3,"task":"t1","resource":"r1","start":7,"cost":6},{"index":4,"task":"t2","resource":"r0","start":6,"cost":3},{"index":5,"task":"t2","resource":"r1","start":8,"cost":2},{"index":6,"task":"t3","resource":"r1","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":6,"cost":4},{"index":8,"task":"t4","resource":"r1","start":7,"cost":4},{"index":9,"task":"t4","resource":"r0","start":2,"cost":6},{"index":10,"task":"t5","resource":"r0","start":1,"cost":1},{"index":11,"task":"t5","resource":"r1","start":2,"cost":5},{"index":12,"task":"t6","resource":"r1","start":5,"cost":0},{"index":13,"task":"t6","resource":"r1","start":9,"cost":5},{"index":14,"task":"t7","resource":"r1","start":2,"cost":0},{"index":15,"task":"t7","resource":"r1","start":9,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["resource","group","precedence"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":6,"j":12,"reasons":["resource"]},{"i":9,"j":11,"reasons":["group"]},{"i":11,"j":14,"reasons":["resource"]},{"i":13,"j":15,"reasons":["resource","group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":12,"task":"t6","group":"g3","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":5,"task":"t2","group":"g1","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true}],"bits":[0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0],"qubo_energy":22},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.347268089631455,1.335620371890458],"expected_energy":60.42710186644699,"initial_expected_energy":98.01107550701023,"history":[98.01107550701023,99.51937380020254,93.71266902562655,109.86977721505764,97.70322937230293,89.77065297130738,83.76777887724197,103.35639501319827,96.80539157540431,84.7954519658172,81.12484112573196,77.90707810834868,72.7028641528079,72.30310205323644,72.5807014062824,75.075306293094,68.7682653057223,67.72799206360327,76.97516345854935,66.51324733777574,66.84582791520698,66.94250066573875,66.73501699954016,67.47136121967984,66.1915119012717,66.08709243451342,66.36867042812023,66.03407883464607,65.93495832030979,65.74791242366851,65.42153508627464,65.71960727295358,65.18380743392794,64.8652412584687,64.4795885296254,66.87976297640785,63.95151992521278,63.828068275804085,63.427996903533085,62.89987713274782,62.268319711257014,61.637827733731946,62.964945315158886,64.20818714806809,61.484000574330835,61.186792181342,61.25378673910236,61.31600853435875,61.200597133476585,61.13527736319873,61.03668351194365,60.85431155501035,60.54129272972984,65.82454749143224,61.58226763132587,60.482541975878675,60.958844462628335,60.461186250249035,60.42710186644699,60.5537668497169,99.57727022010629,93.85290036282453,104.70901149149455,104.18363032841054,107.99328589609307,94.83864361622142,94.03134554806994,94.86492800557511,93.29557049785527,94.04778327200468,93.04172930996793,93.17247929546544,92.92552636424688,92.87148619044588,93.02370930515687,92.84205237228456,92.78372737056091,92.67237084374528,92.46543081105891,92.06517343399466,91.70545013730134,91.34545359470776,91.5852480185182,92.63066599198159,91.2967667316038,90.97213746071901,90.9072349114432,91.13643242722307,90.85632605417536,90.76887855405235,90.61794796870744,90.55394911575615,90.13909162342995,90.63859961093574,90.04764977383587,90.35971991182635,89.99883178835742,89.91435422247262,89.76358542634688,89.680349185323,89.39609418588901,89.95709138532682,89.27146249932775,89.54698064690015,89.2611624144229,89.18177803180822,89.13865104291833,89.06731556987143,89.00532259556311,88.8725731138083,88.63272126060751,90.60207761807783,89.10852809690442,88.86592663378971,88.59617052664288,88.59187965941474,88.55718115477521,88.49094807784253,88.36903115519219,88.14498247676349],"feasible_probability":0.28747498252291614,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.263671875,"counts":{"0101010101010101":1,"0101010101010110":1,"0101010101011001":1,"0101010101011010":1,"0101010101100101":3,"0101010101101001":1,"0101010110010110":1,"0101010110100101":13,"0101010110100110":12,"0101010110101001":2,"0101010110101010":1,"0101011001011001":4,"0101011001011010":1,"0101011001101010":1,"0101011010011001":2,"0101011010011010":1,"0101011010100101":1,"0101011010100110":1,"0101011010101001":14,"0101011010101010":16,"0101100101010110":1,"0101100101101001":1,"0101101001011001":1,"0101101001101001":1,"0101101010011001":1,"0101101010100110":1,"0101101010101010":1,"0110010101010101":5,"0110010101010110":11,"0110010101011001":5,"0110010101011010":6,"0110010101100101":8,"0110010101100110":8,"0110010101101001":5,"0110010101101010":4,"0110010110100101":4,"0110010110100110":9,"0110010110101001":4,"0110010110101010":5,"0110011001010101":1,"0110011001010110":2,"0110011001011001":10,"0110011001011010":9,"0110011001100110":1,"0110011001101001":16,"0110011001101010":15,"0110011010011001":1,"0110011010011010":1,"0110011010100110":1,"0110011010101001":9,"0110011010101010":5,"0110100101010101":1,"0110100101011010":2,"0110100101101001":2,"0110100101101010":3,"0110100110100101":1,"0110100110101001":2,"0110100110101010":2,"0110101001010101":1,"0110101001100101":1,"0110101001101001":4,"0110101001101010":5,"0110101010101001":1,"1001010101010101":5,"1001010101010110":2,"1001010101011001":1,"1001010101011010":3,"1001010101100101":1,"1001010101101010":2,"1001010110010110":1,"1001010110011010":2,"1001010110100101":10,"1001010110100110":9,"1001010110101001":7,"1001010110101010":11,"1001011001011001":4,"1001011001011010":13,"1001011001100110":1,"1001011001101001":3,"1001011001101010":1,"1001011010011010":2,"1001011010100110":3,"1001011010101001":24,"1001011010101010":17,"1001100101010101":5,"1001100101010110":4,"1001100101011001":7,"1001100101011010":5,"1001100101100101":1,"1001100101100110":4,"1001100101101001":2,"1001100110011001":1,"1001100110011010":2,"1001100110100101":7,"1001100110100110":8,"1001100110101001":12,"1001100110101010":9,"1001101001011001":2,"1001101001011010":1,"1001101010100101":1,"1001101010100110":1,"1001101010101001":3,"1001101010101010":2,"1010010101101001":1,"1010010101101010":2,"1010010110101001":1,"1010011001011010":6,"1010011001101001":3,"1010011001101010":1,"1010011010011010":1,"1010011010101001":1,"1010100101010101":1,"1010100101010110":4,"1010100101011001":3,"1010100101011010":3,"1010100101100101":6,"1010100101100110":5,"1010100101101001":4,"1010100101101010":5,"1010100110010101":1,"1010100110100110":1,"1010100110101001":1,"1010101001011001":2,"1010101001011010":1,"1010101001101001":1,"1010101001101010":2,"1010101010101001":1,"1010101010101010":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.9365705929958494},"metrics":{"exact_objective":22,"optimal_count":1,"combinations":256,"optimal_probability":0.030209678194964985,"feasible_probability":0.2874749825229161,"uniform_optimal_probability":0.00390625,"uniform_feasible_probability":0.0390625,"shots_for_95_percent":98,"hit_curve":[{"shots":8,"quantum":0.21761094667721906,"uniform":0.0308260755190447},{"shots":16,"quantum":0.38786736924068266,"uniform":0.060701904106183556},{"shots":32,"quantum":0.6252936423596772,"uniform":0.1177190870502508},{"shots":64,"quantum":0.8595951455439226,"uniform":0.2215803906445571},{"shots":128,"quantum":0.9802864768451677,"uniform":0.3940629117709197},{"shots":512,"quantum":0.9999998489721676,"uniform":0.865193714387987}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":17,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":22,"preference_cost":10,"change_cost":12,"changed_tasks":5,"max_start_shift":5,"choices":[2,1,1,1,1,0,0,0],"schedule":[{"task":"t0","resource":"r1","start":3,"end":4},{"task":"t1","resource":"r1","start":7,"end":8},{"task":"t2","resource":"r1","start":8,"end":9},{"task":"t3","resource":"r0","start":6,"end":7},{"task":"t4","resource":"r0","start":2,"end":3},{"task":"t5","resource":"r0","start":1,"end":2},{"task":"t6","resource":"r1","start":5,"end":6},{"task":"t7","resource":"r1","start":2,"end":3}]},"dual_bound":22.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":16,"runtime_seconds":0.001571046988829039},"exact":{"status":"optimal","best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":12,"task":"t6","group":"g3","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":5,"task":"t2","group":"g1","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true}],"bits":[0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0],"qubo_energy":22},"combinations":256,"feasible_count":10,"runtime_seconds":0.004175194000708871},"greedy":{"status":"feasible","best":{"feasible":true,"objective":23,"raw_cost":23,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":6,"task":"t3","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":5,"task":"t2","group":"g1","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":9,"end":10,"reserved_end":10,"changed":true}],"bits":[0,1,0,1,0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":23},"runtime_seconds":4.28649946115911e-05},"resources":{"full":{"depth":22,"operations":{"RX":40,"I":16,"RZ":40,"CNOT":56,"CRY":8,"X":8},"cnot":56,"cry":8},"auto":{"depth":17,"operations":{"RX":40,"I":16,"RZ":32,"CNOT":40,"CRY":8,"X":8},"cnot":40,"cry":8}},"phase_max_probability_error":3.122502256758253e-17,"samples":[{"shots":8,"quantum_objective":23,"uniform_objective":null},{"shots":16,"quantum_objective":22,"uniform_objective":null},{"shots":32,"quantum_objective":22,"uniform_objective":null},{"shots":64,"quantum_objective":22,"uniform_objective":22},{"shots":128,"quantum_objective":22,"uniform_objective":22},{"shots":512,"quantum_objective":22,"uniform_objective":22}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":16,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[16],"max_component_qubits":16,"component_to_original":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]],"components":[{"qubits":16,"penalty":37,"objective_bound":36,"offset":296,"linear":[-33,-34,-33,-31,-34,-35,-37,-33,-33,-31,-36,-32,-37,-32,-37,-34],"quadratic":[[0,1,74],[0,2,37],[1,2,37],[2,3,74],[3,8,37],[4,5,74],[4,7,37],[6,7,74],[6,12,37],[8,9,74],[9,11,37],[10,11,74],[11,14,37],[12,13,74],[13,15,37],[14,15,74]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":5,"cost":4},{"index":1,"task":"t0","resource":"r1","start":3,"cost":3},{"index":2,"task":"t1","resource":"r1","start":3,"cost":4},{"index":3,"task":"t1","resource":"r1","start":7,"cost":6},{"index":4,"task":"t2","resource":"r0","start":6,"cost":3},{"index":5,"task":"t2","resource":"r1","start":8,"cost":2},{"index":6,"task":"t3","resource":"r1","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":6,"cost":4},{"index":8,"task":"t4","resource":"r1","start":7,"cost":4},{"index":9,"task":"t4","resource":"r0","start":2,"cost":6},{"index":10,"task":"t5","resource":"r0","start":1,"cost":1},{"index":11,"task":"t5","resource":"r1","start":2,"cost":5},{"index":12,"task":"t6","resource":"r1","start":5,"cost":0},{"index":13,"task":"t6","resource":"r1","start":9,"cost":5},{"index":14,"task":"t7","resource":"r1","start":2,"cost":0},{"index":15,"task":"t7","resource":"r1","start":9,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["resource","group","precedence"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":6,"j":12,"reasons":["resource"]},{"i":9,"j":11,"reasons":["group"]},{"i":11,"j":14,"reasons":["resource"]},{"i":13,"j":15,"reasons":["resource","group"]}]}]},"diagnostic_seconds":0.06227380799828097}
+{"input":{"file":"evaluation-n8-d1.json","split":"evaluation","tasks":8,"density_parameter":1,"data_seed":20261003,"sha256":"24a78232cc15095f23f1960fce0fa6b469331287e939761855cc9afe88d423e3"},"model":{"qubits":16,"penalty":37,"objective_bound":36,"offset":296,"linear":[-33,-34,-33,-31,-34,-35,-37,-33,-33,-31,-36,-32,-37,-32,-37,-34],"quadratic":[[0,1,74],[0,2,37],[1,2,37],[2,3,74],[3,8,37],[4,5,74],[4,7,37],[6,7,74],[6,12,37],[8,9,74],[9,11,37],[10,11,74],[11,14,37],[12,13,74],[13,15,37],[14,15,74]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":5,"cost":4},{"index":1,"task":"t0","resource":"r1","start":3,"cost":3},{"index":2,"task":"t1","resource":"r1","start":3,"cost":4},{"index":3,"task":"t1","resource":"r1","start":7,"cost":6},{"index":4,"task":"t2","resource":"r0","start":6,"cost":3},{"index":5,"task":"t2","resource":"r1","start":8,"cost":2},{"index":6,"task":"t3","resource":"r1","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":6,"cost":4},{"index":8,"task":"t4","resource":"r1","start":7,"cost":4},{"index":9,"task":"t4","resource":"r0","start":2,"cost":6},{"index":10,"task":"t5","resource":"r0","start":1,"cost":1},{"index":11,"task":"t5","resource":"r1","start":2,"cost":5},{"index":12,"task":"t6","resource":"r1","start":5,"cost":0},{"index":13,"task":"t6","resource":"r1","start":9,"cost":5},{"index":14,"task":"t7","resource":"r1","start":2,"cost":0},{"index":15,"task":"t7","resource":"r1","start":9,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["resource","group","precedence"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":6,"j":12,"reasons":["resource"]},{"i":9,"j":11,"reasons":["group"]},{"i":11,"j":14,"reasons":["resource"]},{"i":13,"j":15,"reasons":["resource","group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":12,"task":"t6","group":"g3","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":5,"task":"t2","group":"g1","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true}],"bits":[0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0],"qubo_energy":22},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.2290741392143996,2.9100394775265976],"expected_energy":60.01907750615173,"initial_expected_energy":100.0483780514966,"history":[100.0483780514966,100.11837061842833,61.56818102557095,139.0795402752123,80.92169146334373,67.12411058888901,65.6183827462791,61.67843420710577,60.10173833608883,62.80939787323982,60.14903164785514,60.05707063265319,60.081241878448054,60.05931360483845,60.053724123812074,60.04569265316759,60.0285550475211,60.04719750796997,60.10550360381909,60.02639696125877,60.05201912397939,60.03955803907934,60.033440979364485,60.0257752844384,60.025893273499875,60.0259825579502,60.02532205431663,60.024954836788766,60.02683456812633,60.024427634975765,60.02403443007035,60.02332540420467,60.02374845362952,60.02335041026967,60.023160591270596,60.02315401181629,60.0239974637764,60.02261122391771,60.02234965866322,60.02204943036473,60.021711280062746,60.02117616285234,60.02117809545575,60.021642710639505,60.021058190941304,60.02101741903322,60.021132725215736,60.02098319426362,60.020918187818744,60.02079344897972,60.02068760105189,60.02041840763515,60.0202634760045,60.02002924630477,60.01976664514335,60.01950054167716,60.019350440377906,60.020869653007914,60.01907750615173,60.019141991285764,101.20882700027451,110.90479903493784,98.7671241588527,101.76935599642647,96.9995977950801,98.06118750752779,99.73416842609282,96.90145232626324,98.2966554974719,97.08638865941428,96.97256171478084,97.09393302082248,96.9083920676242,96.80677864557097,96.62084057415908,96.27776037571155,97.62894539070815,96.3596462699883,96.25287715656334,96.73258019324862,96.207130854253,96.05719189862381,95.95572599674838,96.00505895151362,95.91726381640626,95.88033895132311,95.80875153109,95.67533071677867,95.59752307428366,95.24574547926079,95.47029807418826,95.17355001693359,95.44094649007982,95.08904553825396,95.01300034726889,94.86786821519159,94.60785848395176,94.44341454915349,94.04875372107298,95.87215868439316,93.71349587812367,94.31587690873386,93.63042641939577,93.64020917004056,93.6127899029351,93.5541713461804,93.54741071834285,93.46200486040453,93.40768967604518,93.34356221509117,93.21887652967983,93.01945150060632,94.22543602225893,94.05368727595385,92.94719757544115,92.92528913331104,92.75758621910792,92.8353707727924,92.84710744561502,92.74822150768904],"feasible_probability":0.28699520362859565,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.30078125,"counts":{"0101010101010101":1,"0101010101010110":4,"0101010101011010":1,"0101010101100101":3,"0101010101100110":2,"0101010110100101":6,"0101010110100110":5,"0101010110101001":6,"0101010110101010":2,"0101011001010110":2,"0101011001011001":2,"0101011001011010":1,"0101011001101001":3,"0101011001101010":3,"0101011010011001":1,"0101011010100101":1,"0101011010101001":15,"0101011010101010":21,"0101101001010101":1,"0101101001100101":1,"0101101010011010":1,"0110010101010101":11,"0110010101010110":8,"0110010101011001":4,"0110010101011010":4,"0110010101100101":6,"0110010101100110":14,"0110010101101001":7,"0110010101101010":7,"0110010110100101":3,"0110010110100110":7,"0110010110101001":4,"0110010110101010":3,"0110011001010101":1,"0110011001011001":13,"0110011001011010":11,"0110011001101001":18,"0110011001101010":16,"0110011010100110":1,"0110011010101001":18,"0110011010101010":11,"0110100101010110":2,"0110100101011001":2,"0110100101100110":1,"0110100101101001":5,"0110100101101010":2,"0110100110101001":1,"0110101001010101":1,"0110101001011001":1,"0110101001011010":2,"0110101001100101":1,"0110101001101001":1,"0110101001101010":1,"0110101010011010":1,"0110101010101001":2,"0110101010101010":1,"1001010101010101":3,"1001010101010110":2,"1001010101011001":1,"1001010101011010":3,"1001010101100101":2,"1001010101100110":2,"1001010110010101":1,"1001010110011001":1,"1001010110100101":12,"1001010110100110":7,"1001010110101001":10,"1001010110101010":5,"1001011001010101":2,"1001011001011001":10,"1001011001011010":5,"1001011001101001":7,"1001011001101010":3,"1001011010011001":1,"1001011010100101":1,"1001011010100110":1,"1001011010101001":8,"1001011010101010":23,"1001100101010101":4,"1001100101010110":2,"1001100101011001":3,"1001100101011010":4,"1001100101100110":3,"1001100101101010":2,"1001100110010110":3,"1001100110100101":13,"1001100110100110":5,"1001100110101001":11,"1001100110101010":12,"1001101001011001":1,"1001101001101001":1,"1001101010011001":1,"1001101010100110":1,"1001101010101001":3,"1010010101010110":1,"1010010101011001":2,"1010010101011010":1,"1010010101100101":2,"1010010101100110":3,"1010010101101001":1,"1010010101101010":1,"1010010110100101":1,"1010010110101001":1,"1010010110101010":1,"1010011001011001":3,"1010011001011010":2,"1010011001101001":5,"1010011001101010":5,"1010011010011001":1,"1010011010011010":1,"1010011010101001":2,"1010011010101010":2,"1010100101010101":1,"1010100101011001":2,"1010100101011010":3,"1010100101100101":3,"1010100101100110":1,"1010100101101001":3,"1010100101101010":3,"1010100110011010":1,"1010101001011001":1,"1010101001011010":1,"1010101001101001":1,"1010101001101010":5},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.9530057509982726},"metrics":{"exact_objective":22,"optimal_count":1,"combinations":256,"optimal_probability":0.029651799094443737,"feasible_probability":0.28699520362859565,"uniform_optimal_probability":0.00390625,"uniform_feasible_probability":0.0390625,"shots_for_95_percent":100,"hit_curve":[{"shots":8,"quantum":0.21400308786839023,"uniform":0.0308260755190447},{"shots":16,"quantum":0.3822088541195745,"uniform":0.060701904106183556},{"shots":32,"quantum":0.6183341000717508,"uniform":0.1177190870502508},{"shots":64,"quantum":0.8543311408319597,"uniform":0.2215803906445571},{"shots":128,"quantum":0.9787805834686817,"uniform":0.3940629117709197},{"shots":512,"quantum":0.9999997972626563,"uniform":0.865193714387987}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":17,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":22,"preference_cost":10,"change_cost":12,"changed_tasks":5,"max_start_shift":5,"choices":[2,1,1,1,1,0,0,0],"schedule":[{"task":"t0","resource":"r1","start":3,"end":4},{"task":"t1","resource":"r1","start":7,"end":8},{"task":"t2","resource":"r1","start":8,"end":9},{"task":"t3","resource":"r0","start":6,"end":7},{"task":"t4","resource":"r0","start":2,"end":3},{"task":"t5","resource":"r0","start":1,"end":2},{"task":"t6","resource":"r1","start":5,"end":6},{"task":"t7","resource":"r1","start":2,"end":3}]},"dual_bound":22.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":16,"runtime_seconds":0.001571046988829039},"exact":{"status":"optimal","best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":12,"task":"t6","group":"g3","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":5,"task":"t2","group":"g1","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true}],"bits":[0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0],"qubo_energy":22},"combinations":256,"feasible_count":10,"runtime_seconds":0.004175194000708871},"greedy":{"status":"feasible","best":{"feasible":true,"objective":23,"raw_cost":23,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":6,"task":"t3","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":5,"task":"t2","group":"g1","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":9,"end":10,"reserved_end":10,"changed":true}],"bits":[0,1,0,1,0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":23},"runtime_seconds":4.28649946115911e-05},"resources":{"full":{"depth":22,"operations":{"RX":40,"I":16,"RZ":40,"CNOT":56,"CRY":8,"X":8},"cnot":56,"cry":8},"auto":{"depth":17,"operations":{"RX":40,"I":16,"RZ":32,"CNOT":40,"CRY":8,"X":8},"cnot":40,"cry":8}},"phase_max_probability_error":2.0816681711721685e-17,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":22,"uniform_objective":25},{"shots":32,"quantum_objective":22,"uniform_objective":24},{"shots":64,"quantum_objective":22,"uniform_objective":null},{"shots":128,"quantum_objective":22,"uniform_objective":22},{"shots":512,"quantum_objective":22,"uniform_objective":22}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":16,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[16],"max_component_qubits":16,"component_to_original":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]],"components":[{"qubits":16,"penalty":37,"objective_bound":36,"offset":296,"linear":[-33,-34,-33,-31,-34,-35,-37,-33,-33,-31,-36,-32,-37,-32,-37,-34],"quadratic":[[0,1,74],[0,2,37],[1,2,37],[2,3,74],[3,8,37],[4,5,74],[4,7,37],[6,7,74],[6,12,37],[8,9,74],[9,11,37],[10,11,74],[11,14,37],[12,13,74],[13,15,37],[14,15,74]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":5,"cost":4},{"index":1,"task":"t0","resource":"r1","start":3,"cost":3},{"index":2,"task":"t1","resource":"r1","start":3,"cost":4},{"index":3,"task":"t1","resource":"r1","start":7,"cost":6},{"index":4,"task":"t2","resource":"r0","start":6,"cost":3},{"index":5,"task":"t2","resource":"r1","start":8,"cost":2},{"index":6,"task":"t3","resource":"r1","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":6,"cost":4},{"index":8,"task":"t4","resource":"r1","start":7,"cost":4},{"index":9,"task":"t4","resource":"r0","start":2,"cost":6},{"index":10,"task":"t5","resource":"r0","start":1,"cost":1},{"index":11,"task":"t5","resource":"r1","start":2,"cost":5},{"index":12,"task":"t6","resource":"r1","start":5,"cost":0},{"index":13,"task":"t6","resource":"r1","start":9,"cost":5},{"index":14,"task":"t7","resource":"r1","start":2,"cost":0},{"index":15,"task":"t7","resource":"r1","start":9,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["resource","group","precedence"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":6,"j":12,"reasons":["resource"]},{"i":9,"j":11,"reasons":["group"]},{"i":11,"j":14,"reasons":["resource"]},{"i":13,"j":15,"reasons":["resource","group"]}]}]},"diagnostic_seconds":0.06719047600927297}
+{"input":{"file":"evaluation-n8-d1.json","split":"evaluation","tasks":8,"density_parameter":1,"data_seed":20261003,"sha256":"24a78232cc15095f23f1960fce0fa6b469331287e939761855cc9afe88d423e3"},"model":{"qubits":16,"penalty":37,"objective_bound":36,"offset":296,"linear":[-33,-34,-33,-31,-34,-35,-37,-33,-33,-31,-36,-32,-37,-32,-37,-34],"quadratic":[[0,1,74],[0,2,37],[1,2,37],[2,3,74],[3,8,37],[4,5,74],[4,7,37],[6,7,74],[6,12,37],[8,9,74],[9,11,37],[10,11,74],[11,14,37],[12,13,74],[13,15,37],[14,15,74]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":5,"cost":4},{"index":1,"task":"t0","resource":"r1","start":3,"cost":3},{"index":2,"task":"t1","resource":"r1","start":3,"cost":4},{"index":3,"task":"t1","resource":"r1","start":7,"cost":6},{"index":4,"task":"t2","resource":"r0","start":6,"cost":3},{"index":5,"task":"t2","resource":"r1","start":8,"cost":2},{"index":6,"task":"t3","resource":"r1","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":6,"cost":4},{"index":8,"task":"t4","resource":"r1","start":7,"cost":4},{"index":9,"task":"t4","resource":"r0","start":2,"cost":6},{"index":10,"task":"t5","resource":"r0","start":1,"cost":1},{"index":11,"task":"t5","resource":"r1","start":2,"cost":5},{"index":12,"task":"t6","resource":"r1","start":5,"cost":0},{"index":13,"task":"t6","resource":"r1","start":9,"cost":5},{"index":14,"task":"t7","resource":"r1","start":2,"cost":0},{"index":15,"task":"t7","resource":"r1","start":9,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["resource","group","precedence"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":6,"j":12,"reasons":["resource"]},{"i":9,"j":11,"reasons":["group"]},{"i":11,"j":14,"reasons":["resource"]},{"i":13,"j":15,"reasons":["resource","group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":12,"task":"t6","group":"g3","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":5,"task":"t2","group":"g1","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true}],"bits":[0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0],"qubo_energy":22},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.707598340151905,0.22477563313640814],"expected_energy":63.35858207247286,"initial_expected_energy":92.78161813101057,"history":[92.78161813101057,97.5679836277233,98.61644798392159,122.52243186323429,104.25866295459869,96.9092516586432,92.6076572910377,93.59914765303472,92.81000716984911,92.76438833496627,92.6674671934282,92.50519158658761,92.3384909276599,91.98123167106598,91.37433087386299,100.58069710676772,94.24749993305494,92.6516149393297,91.34489323681139,91.26148172569233,91.0986795848906,90.80979797789487,90.48720395076403,92.64507095561213,92.4491446479421,90.35341460552065,90.58517446676447,90.44068490391979,90.34877912580471,90.31197652105737,90.29132700019913,90.2485436602849,90.21141299903175,90.17841638115146,90.13539901299619,90.19562034996355,90.23554189444692,90.14454055056675,90.10362911088166,90.09558400157997,90.07870700170741,90.06504004289911,90.03612814714836,89.98823050776657,90.55075210090004,90.05934368725734,90.06473828666446,89.97714378975914,89.96692245276152,89.9563798699883,89.96414163335957,89.94921169683643,89.94852830176913,89.95275909832667,89.94870368885643,89.94690069604526,89.94390202516585,89.93973489764937,89.93449078240099,89.929027684972,108.1818981856617,96.63952493820602,98.99136072073829,83.60023351554631,97.45023119622209,107.1901261589736,81.34363276224576,109.96500498841415,94.04874280062873,71.92237954489593,129.16955856208494,84.03394788765686,72.33953168659106,92.04855979276508,68.18186391657017,67.97306230024462,69.2459627085915,67.18430690672972,66.7611649978178,69.96326275134103,65.81438430263817,67.60045587125364,66.4273871342669,65.92741398204106,65.58152919410314,65.6205744425244,65.51453701972808,65.45947952976591,65.39699349883358,65.60938040990558,65.30171435930964,65.22494935104362,65.10000597995268,64.84402762119777,64.40796734162183,64.70255358848368,65.66226003573215,64.44332339480479,64.38447831116538,64.54876807513031,64.30080202272211,64.24136262049268,64.16336387966086,64.06607954233718,63.894381762272126,63.604670574439965,66.380861469725,64.90874343064455,63.861777256318064,63.577346201423325,63.676465926303095,63.561210971126556,63.53208221816006,63.4771188308403,63.38903610590717,63.51005012345195,63.60552336202397,63.37571644390498,63.515447721526115,63.35858207247286],"feasible_probability":0.32229362674223366,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.28125,"counts":{"0101010101100110":2,"0101010110100101":3,"0101010110100110":1,"0101011001101001":2,"0101011001101010":2,"0101011010011001":1,"0101011010011010":5,"0101011010100101":2,"0101011010100110":1,"0101011010101010":4,"0101100101010110":1,"0101100101011001":2,"0101100101011010":1,"0101100110010101":1,"0101100110100101":1,"0101101001011001":1,"0101101001100101":1,"0101101010011010":1,"0101101010101001":1,"0101101010101010":1,"0110010101010101":6,"0110010101010110":6,"0110010101011001":2,"0110010101011010":1,"0110010101100101":2,"0110010101100110":6,"0110010101101010":1,"0110010110100101":9,"0110010110100110":11,"0110010110101001":4,"0110010110101010":4,"0110011001010101":1,"0110011001011001":18,"0110011001011010":13,"0110011001101001":8,"0110011001101010":6,"0110011010011001":1,"0110011010100101":2,"0110011010100110":1,"0110011010101001":31,"0110011010101010":19,"0110100101010101":1,"0110100101011001":2,"0110100101011010":4,"0110100101101010":2,"0110100110100101":1,"0110100110101001":3,"0110100110101010":4,"0110101001010101":3,"0110101001010110":1,"0110101001011001":2,"0110101001100101":1,"0110101010011010":1,"0110101010100101":2,"0110101010100110":1,"1001010101010101":1,"1001010101010110":1,"1001010101011001":1,"1001010110010101":2,"1001010110010110":2,"1001010110011001":1,"1001010110100101":11,"1001010110100110":8,"1001010110101001":2,"1001010110101010":1,"1001011001010101":1,"1001011001011001":2,"1001011001011010":4,"1001011010011001":4,"1001011010011010":4,"1001011010100101":1,"1001011010101001":30,"1001011010101010":15,"1001100101010101":1,"1001100101010110":2,"1001100101011001":3,"1001100101011010":1,"1001100110010101":5,"1001100110010110":1,"1001100110011001":3,"1001100110011010":3,"1001100110100101":15,"1001100110100110":5,"1001100110101001":9,"1001100110101010":12,"1001101001011010":1,"1001101010010110":1,"1001101010011001":1,"1001101010100101":1,"1001101010101001":5,"1001101010101010":5,"1010010101010101":2,"1010010101011001":1,"1010010101100101":2,"1010010101101010":3,"1010010110011001":1,"1010010110100101":2,"1010010110101001":3,"1010010110101010":3,"1010011001010101":1,"1010011001011001":14,"1010011001011010":8,"1010011001101001":3,"1010011001101010":3,"1010011010011001":1,"1010011010011010":1,"1010011010101001":3,"1010011010101010":4,"1010100101010101":2,"1010100101010110":4,"1010100101011001":10,"1010100101011010":10,"1010100101100101":1,"1010100101100110":1,"1010100101101001":4,"1010100101101010":3,"1010100110011010":3,"1010100110100101":6,"1010100110100110":2,"1010100110101001":7,"1010100110101010":3,"1010101001011001":5,"1010101001011010":4,"1010101001101001":3,"1010101001101010":3,"1010101010011010":1,"1010101010100101":1,"1010101010101001":2,"1010101010101010":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.9175328739947872},"metrics":{"exact_objective":22,"optimal_count":1,"combinations":256,"optimal_probability":0.006678143104804413,"feasible_probability":0.32229362674223366,"uniform_optimal_probability":0.00390625,"uniform_feasible_probability":0.0390625,"shots_for_95_percent":448,"hit_curve":[{"shots":8,"quantum":0.05219295211532675,"uniform":0.0308260755190447},{"shots":16,"quantum":0.10166179998014072,"uniform":0.060701904106183556},{"shots":32,"quantum":0.1929884783850793,"uniform":0.1177190870502508},{"shots":64,"quantum":0.3487324039807703,"uniform":0.2215803906445571},{"shots":128,"quantum":0.5758505183753335,"uniform":0.3940629117709197},{"shots":512,"quantum":0.9676349887543183,"uniform":0.865193714387987}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":17,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":22,"preference_cost":10,"change_cost":12,"changed_tasks":5,"max_start_shift":5,"choices":[2,1,1,1,1,0,0,0],"schedule":[{"task":"t0","resource":"r1","start":3,"end":4},{"task":"t1","resource":"r1","start":7,"end":8},{"task":"t2","resource":"r1","start":8,"end":9},{"task":"t3","resource":"r0","start":6,"end":7},{"task":"t4","resource":"r0","start":2,"end":3},{"task":"t5","resource":"r0","start":1,"end":2},{"task":"t6","resource":"r1","start":5,"end":6},{"task":"t7","resource":"r1","start":2,"end":3}]},"dual_bound":22.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":16,"runtime_seconds":0.001571046988829039},"exact":{"status":"optimal","best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":12,"task":"t6","group":"g3","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":5,"task":"t2","group":"g1","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true}],"bits":[0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0],"qubo_energy":22},"combinations":256,"feasible_count":10,"runtime_seconds":0.004175194000708871},"greedy":{"status":"feasible","best":{"feasible":true,"objective":23,"raw_cost":23,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":6,"task":"t3","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":5,"task":"t2","group":"g1","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":9,"end":10,"reserved_end":10,"changed":true}],"bits":[0,1,0,1,0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":23},"runtime_seconds":4.28649946115911e-05},"resources":{"full":{"depth":22,"operations":{"RX":40,"I":16,"RZ":40,"CNOT":56,"CRY":8,"X":8},"cnot":56,"cry":8},"auto":{"depth":17,"operations":{"RX":40,"I":16,"RZ":32,"CNOT":40,"CRY":8,"X":8},"cnot":40,"cry":8}},"phase_max_probability_error":4.163336342344337e-17,"samples":[{"shots":8,"quantum_objective":23,"uniform_objective":27},{"shots":16,"quantum_objective":23,"uniform_objective":24},{"shots":32,"quantum_objective":23,"uniform_objective":null},{"shots":64,"quantum_objective":22,"uniform_objective":23},{"shots":128,"quantum_objective":23,"uniform_objective":23},{"shots":512,"quantum_objective":22,"uniform_objective":22}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":16,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[16],"max_component_qubits":16,"component_to_original":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]],"components":[{"qubits":16,"penalty":37,"objective_bound":36,"offset":296,"linear":[-33,-34,-33,-31,-34,-35,-37,-33,-33,-31,-36,-32,-37,-32,-37,-34],"quadratic":[[0,1,74],[0,2,37],[1,2,37],[2,3,74],[3,8,37],[4,5,74],[4,7,37],[6,7,74],[6,12,37],[8,9,74],[9,11,37],[10,11,74],[11,14,37],[12,13,74],[13,15,37],[14,15,74]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":5,"cost":4},{"index":1,"task":"t0","resource":"r1","start":3,"cost":3},{"index":2,"task":"t1","resource":"r1","start":3,"cost":4},{"index":3,"task":"t1","resource":"r1","start":7,"cost":6},{"index":4,"task":"t2","resource":"r0","start":6,"cost":3},{"index":5,"task":"t2","resource":"r1","start":8,"cost":2},{"index":6,"task":"t3","resource":"r1","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":6,"cost":4},{"index":8,"task":"t4","resource":"r1","start":7,"cost":4},{"index":9,"task":"t4","resource":"r0","start":2,"cost":6},{"index":10,"task":"t5","resource":"r0","start":1,"cost":1},{"index":11,"task":"t5","resource":"r1","start":2,"cost":5},{"index":12,"task":"t6","resource":"r1","start":5,"cost":0},{"index":13,"task":"t6","resource":"r1","start":9,"cost":5},{"index":14,"task":"t7","resource":"r1","start":2,"cost":0},{"index":15,"task":"t7","resource":"r1","start":9,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["resource","group","precedence"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":6,"j":12,"reasons":["resource"]},{"i":9,"j":11,"reasons":["group"]},{"i":11,"j":14,"reasons":["resource"]},{"i":13,"j":15,"reasons":["resource","group"]}]}]},"diagnostic_seconds":0.06035152399272192}
+{"input":{"file":"evaluation-n8-d1.json","split":"evaluation","tasks":8,"density_parameter":1,"data_seed":20261003,"sha256":"24a78232cc15095f23f1960fce0fa6b469331287e939761855cc9afe88d423e3"},"model":{"qubits":16,"penalty":37,"objective_bound":36,"offset":296,"linear":[-33,-34,-33,-31,-34,-35,-37,-33,-33,-31,-36,-32,-37,-32,-37,-34],"quadratic":[[0,1,74],[0,2,37],[1,2,37],[2,3,74],[3,8,37],[4,5,74],[4,7,37],[6,7,74],[6,12,37],[8,9,74],[9,11,37],[10,11,74],[11,14,37],[12,13,74],[13,15,37],[14,15,74]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":5,"cost":4},{"index":1,"task":"t0","resource":"r1","start":3,"cost":3},{"index":2,"task":"t1","resource":"r1","start":3,"cost":4},{"index":3,"task":"t1","resource":"r1","start":7,"cost":6},{"index":4,"task":"t2","resource":"r0","start":6,"cost":3},{"index":5,"task":"t2","resource":"r1","start":8,"cost":2},{"index":6,"task":"t3","resource":"r1","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":6,"cost":4},{"index":8,"task":"t4","resource":"r1","start":7,"cost":4},{"index":9,"task":"t4","resource":"r0","start":2,"cost":6},{"index":10,"task":"t5","resource":"r0","start":1,"cost":1},{"index":11,"task":"t5","resource":"r1","start":2,"cost":5},{"index":12,"task":"t6","resource":"r1","start":5,"cost":0},{"index":13,"task":"t6","resource":"r1","start":9,"cost":5},{"index":14,"task":"t7","resource":"r1","start":2,"cost":0},{"index":15,"task":"t7","resource":"r1","start":9,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["resource","group","precedence"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":6,"j":12,"reasons":["resource"]},{"i":9,"j":11,"reasons":["group"]},{"i":11,"j":14,"reasons":["resource"]},{"i":13,"j":15,"reasons":["resource","group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":12,"task":"t6","group":"g3","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":5,"task":"t2","group":"g1","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true}],"bits":[0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0],"qubo_energy":22},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.2211759633581973,2.9099191142892162],"expected_energy":60.01859442067911,"initial_expected_energy":114.06903306604644,"history":[114.06903306604644,102.56183368269726,97.3856261989398,96.50592137155323,103.12121180333506,103.198292409393,95.96225768113209,98.66765885148995,96.19631629390885,96.01607291367115,96.32116525390798,95.49731646808613,95.50379741462382,95.81650296689745,95.53033128279331,95.34258342628982,95.0417166876451,94.46244819902667,94.38400791885175,93.29763214726239,93.53689821616322,93.68465738066035,93.49771549557062,93.10407422880067,93.34599127000459,93.04040612176294,92.92272812967245,92.79170360576578,92.53779354148864,92.13975529902626,92.39732636204273,92.91008620169441,91.91887274804876,91.76681534569728,92.11347299266527,91.62621206765972,91.51452149575722,91.2863493902739,90.97368804124088,90.76396854935817,90.4096744580238,89.69480421626432,88.489745899879,108.82947189917428,102.73211230080895,88.34254324244432,95.3803752755498,87.87416971979414,88.85514937704485,88.0814981271751,87.83779314119202,87.9154202556181,87.83355221730739,87.80770385106322,87.76896040684524,87.6843153683403,87.5335370633783,88.91408649422368,88.05471299340613,87.51040892718939,88.10332963195903,94.41238423862058,117.39760388054079,90.18101741547262,67.15698113631827,64.20836968844407,120.90111459747706,65.37127649806058,62.55632560097529,65.79152582665222,64.50021119131296,60.181600268226475,61.82847285728886,60.096780178389544,60.3135523577774,60.088346180831934,60.07223755725276,60.07818686329826,60.08045458373293,60.07275970811428,60.06915331121332,60.06376805187895,60.05362224624567,60.03818662172533,60.12248993541078,60.140151620748625,60.03463539689875,60.045378356715496,60.038181330982795,60.03344044985343,60.03020956724046,60.02514573967318,60.0343852047543,60.03863441163162,60.031802426478144,60.02444253163612,60.02465464355472,60.024613832753595,60.02400058095785,60.02395983513375,60.023531277313,60.02315434843493,60.02247187893056,60.02161315953388,60.02092173945561,60.0200670522179,60.01936736207524,60.03867885708331,60.01950475615463,60.01937626064792,60.02163570124354,60.018783250418956,60.01861306938158,60.018749035207534,60.018640610166656,60.01862086322403,60.01862024666634,60.018610653893376,60.01865228419523,60.01859442067911],"feasible_probability":0.28667614483011217,"one_hot_probability":0.9999999999999997,"sampled_feasible_fraction":0.287109375,"counts":{"0101010101010101":1,"0101010101010110":3,"0101010101011001":1,"0101010101011010":1,"0101010101100101":3,"0101010101100110":2,"0101010101101001":1,"0101010101101010":1,"0101010110010110":2,"0101010110100101":10,"0101010110100110":6,"0101010110101001":1,"0101010110101010":7,"0101011001011001":5,"0101011001011010":1,"0101011001100110":3,"0101011001101001":3,"0101011001101010":5,"0101011010011001":2,"0101011010011010":1,"0101011010100101":1,"0101011010100110":1,"0101011010101001":8,"0101011010101010":19,"0101100101100110":1,"0101100110010110":1,"0101100110100101":1,"0101100110101010":1,"0110010101010101":4,"0110010101010110":10,"0110010101011001":1,"0110010101011010":4,"0110010101100101":10,"0110010101100110":11,"0110010101101001":7,"0110010101101010":5,"0110010110100101":3,"0110010110100110":2,"0110010110101010":3,"0110011001010110":2,"0110011001011001":11,"0110011001011010":16,"0110011001100101":1,"0110011001101001":13,"0110011001101010":19,"0110011010100101":1,"0110011010101001":8,"0110011010101010":5,"0110100101010110":1,"0110100101011001":4,"0110100101011010":1,"0110100101100101":1,"0110100101101001":2,"0110100110100101":1,"0110100110100110":2,"0110100110101001":3,"0110101001011001":1,"0110101001011010":3,"0110101001101001":1,"0110101010100101":1,"0110101010101001":1,"0110101010101010":2,"1001010101010101":2,"1001010101010110":6,"1001010101011001":2,"1001010101011010":3,"1001010101100101":3,"1001010101100110":1,"1001010101101001":1,"1001010101101010":1,"1001010110010101":1,"1001010110100101":2,"1001010110100110":9,"1001010110101001":2,"1001010110101010":5,"1001011001010110":1,"1001011001011001":8,"1001011001011010":13,"1001011001101001":3,"1001011001101010":6,"1001011010011001":3,"1001011010011010":1,"1001011010100101":2,"1001011010100110":2,"1001011010101001":23,"1001011010101010":25,"1001100101010101":6,"1001100101010110":3,"1001100101011001":3,"1001100101011010":5,"1001100101100101":1,"1001100101100110":3,"1001100101101001":1,"1001100101101010":2,"1001100110010110":1,"1001100110011010":1,"1001100110100101":7,"1001100110100110":8,"1001100110101001":8,"1001100110101010":10,"1001101001101010":2,"1001101010100110":1,"1001101010101001":4,"1001101010101010":2,"1010010101010101":1,"1010010101010110":2,"1010010101011001":1,"1010010101011010":5,"1010010101100101":1,"1010010101100110":1,"1010010101101001":1,"1010010101101010":4,"1010010110100101":3,"1010011001010101":1,"1010011001011001":3,"1010011001011010":3,"1010011001101001":6,"1010011001101010":1,"1010100101010101":5,"1010100101010110":2,"1010100101011001":2,"1010100101011010":3,"1010100101100101":1,"1010100101100110":1,"1010100101101001":6,"1010100101101010":3,"1010100110010110":1,"1010100110100110":1,"1010100110101010":2,"1010101001011001":2,"1010101001101010":2,"1010101010101001":2,"1010101010101010":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.9755811149952933},"metrics":{"exact_objective":22,"optimal_count":1,"combinations":256,"optimal_probability":0.02960497826522707,"feasible_probability":0.28667614483011217,"uniform_optimal_probability":0.00390625,"uniform_feasible_probability":0.0390625,"shots_for_95_percent":100,"hit_curve":[{"shots":8,"quantum":0.21369963191120245,"uniform":0.0308260755190447},{"shots":16,"quantum":0.3817317311434215,"uniform":0.060701904106183556},{"shots":32,"quantum":0.6177443477250896,"uniform":0.1177190870502508},{"shots":64,"quantum":0.8538806163038828,"uniform":0.2215803906445571},{"shots":128,"quantum":0.9786491257082669,"uniform":0.3940629117709197},{"shots":512,"quantum":0.9999997921918127,"uniform":0.865193714387987}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":17,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":22,"preference_cost":10,"change_cost":12,"changed_tasks":5,"max_start_shift":5,"choices":[2,1,1,1,1,0,0,0],"schedule":[{"task":"t0","resource":"r1","start":3,"end":4},{"task":"t1","resource":"r1","start":7,"end":8},{"task":"t2","resource":"r1","start":8,"end":9},{"task":"t3","resource":"r0","start":6,"end":7},{"task":"t4","resource":"r0","start":2,"end":3},{"task":"t5","resource":"r0","start":1,"end":2},{"task":"t6","resource":"r1","start":5,"end":6},{"task":"t7","resource":"r1","start":2,"end":3}]},"dual_bound":22.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":16,"runtime_seconds":0.001571046988829039},"exact":{"status":"optimal","best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":12,"task":"t6","group":"g3","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":5,"task":"t2","group":"g1","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true}],"bits":[0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0],"qubo_energy":22},"combinations":256,"feasible_count":10,"runtime_seconds":0.004175194000708871},"greedy":{"status":"feasible","best":{"feasible":true,"objective":23,"raw_cost":23,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":6,"task":"t3","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":5,"task":"t2","group":"g1","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":9,"end":10,"reserved_end":10,"changed":true}],"bits":[0,1,0,1,0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":23},"runtime_seconds":4.28649946115911e-05},"resources":{"full":{"depth":22,"operations":{"RX":40,"I":16,"RZ":40,"CNOT":56,"CRY":8,"X":8},"cnot":56,"cry":8},"auto":{"depth":17,"operations":{"RX":40,"I":16,"RZ":32,"CNOT":40,"CRY":8,"X":8},"cnot":40,"cry":8}},"phase_max_probability_error":2.7755575615628914e-17,"samples":[{"shots":8,"quantum_objective":25,"uniform_objective":null},{"shots":16,"quantum_objective":23,"uniform_objective":27},{"shots":32,"quantum_objective":22,"uniform_objective":null},{"shots":64,"quantum_objective":22,"uniform_objective":25},{"shots":128,"quantum_objective":22,"uniform_objective":22},{"shots":512,"quantum_objective":22,"uniform_objective":22}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":16,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[16],"max_component_qubits":16,"component_to_original":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]],"components":[{"qubits":16,"penalty":37,"objective_bound":36,"offset":296,"linear":[-33,-34,-33,-31,-34,-35,-37,-33,-33,-31,-36,-32,-37,-32,-37,-34],"quadratic":[[0,1,74],[0,2,37],[1,2,37],[2,3,74],[3,8,37],[4,5,74],[4,7,37],[6,7,74],[6,12,37],[8,9,74],[9,11,37],[10,11,74],[11,14,37],[12,13,74],[13,15,37],[14,15,74]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":5,"cost":4},{"index":1,"task":"t0","resource":"r1","start":3,"cost":3},{"index":2,"task":"t1","resource":"r1","start":3,"cost":4},{"index":3,"task":"t1","resource":"r1","start":7,"cost":6},{"index":4,"task":"t2","resource":"r0","start":6,"cost":3},{"index":5,"task":"t2","resource":"r1","start":8,"cost":2},{"index":6,"task":"t3","resource":"r1","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":6,"cost":4},{"index":8,"task":"t4","resource":"r1","start":7,"cost":4},{"index":9,"task":"t4","resource":"r0","start":2,"cost":6},{"index":10,"task":"t5","resource":"r0","start":1,"cost":1},{"index":11,"task":"t5","resource":"r1","start":2,"cost":5},{"index":12,"task":"t6","resource":"r1","start":5,"cost":0},{"index":13,"task":"t6","resource":"r1","start":9,"cost":5},{"index":14,"task":"t7","resource":"r1","start":2,"cost":0},{"index":15,"task":"t7","resource":"r1","start":9,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["resource","group","precedence"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":6,"j":12,"reasons":["resource"]},{"i":9,"j":11,"reasons":["group"]},{"i":11,"j":14,"reasons":["resource"]},{"i":13,"j":15,"reasons":["resource","group"]}]}]},"diagnostic_seconds":0.062071396998362616}
+{"input":{"file":"evaluation-n8-d1.json","split":"evaluation","tasks":8,"density_parameter":1,"data_seed":20261003,"sha256":"24a78232cc15095f23f1960fce0fa6b469331287e939761855cc9afe88d423e3"},"model":{"qubits":16,"penalty":37,"objective_bound":36,"offset":296,"linear":[-33,-34,-33,-31,-34,-35,-37,-33,-33,-31,-36,-32,-37,-32,-37,-34],"quadratic":[[0,1,74],[0,2,37],[1,2,37],[2,3,74],[3,8,37],[4,5,74],[4,7,37],[6,7,74],[6,12,37],[8,9,74],[9,11,37],[10,11,74],[11,14,37],[12,13,74],[13,15,37],[14,15,74]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":5,"cost":4},{"index":1,"task":"t0","resource":"r1","start":3,"cost":3},{"index":2,"task":"t1","resource":"r1","start":3,"cost":4},{"index":3,"task":"t1","resource":"r1","start":7,"cost":6},{"index":4,"task":"t2","resource":"r0","start":6,"cost":3},{"index":5,"task":"t2","resource":"r1","start":8,"cost":2},{"index":6,"task":"t3","resource":"r1","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":6,"cost":4},{"index":8,"task":"t4","resource":"r1","start":7,"cost":4},{"index":9,"task":"t4","resource":"r0","start":2,"cost":6},{"index":10,"task":"t5","resource":"r0","start":1,"cost":1},{"index":11,"task":"t5","resource":"r1","start":2,"cost":5},{"index":12,"task":"t6","resource":"r1","start":5,"cost":0},{"index":13,"task":"t6","resource":"r1","start":9,"cost":5},{"index":14,"task":"t7","resource":"r1","start":2,"cost":0},{"index":15,"task":"t7","resource":"r1","start":9,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["resource","group","precedence"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":6,"j":12,"reasons":["resource"]},{"i":9,"j":11,"reasons":["group"]},{"i":11,"j":14,"reasons":["resource"]},{"i":13,"j":15,"reasons":["resource","group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":12,"task":"t6","group":"g3","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":5,"task":"t2","group":"g1","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true}],"bits":[0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0],"qubo_energy":22},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.2896527710048207,2.9079171399835126],"expected_energy":60.137099756708025,"initial_expected_energy":109.21791769505148,"history":[109.21791769505148,108.5772575719091,81.6804256901539,112.08643366129789,81.67806670434099,87.16412024292863,82.48662151363459,81.67569208882902,80.33362549164774,79.00776323865989,76.43897291689666,71.55337799575915,70.83461053977068,69.43177940702739,83.3444646703941,67.61739040370679,63.214512937557544,62.18425600826123,63.71124456201687,61.99423123328306,63.170039946222374,61.88861945459163,61.65183407822005,61.56595998189129,61.82620053909045,61.498583604530765,61.43834005293726,61.32715372038095,61.159438140635956,61.16823219006257,61.393112564092576,61.07473464326898,61.01378055049703,61.14656876667196,60.95843729356322,60.91706525379631,60.82898753525479,60.691744168146116,61.03078892430487,61.133276264259216,60.64108282650567,60.589857497977015,60.63209229991903,60.54486710294822,60.544313412465954,60.58641718513972,60.50558875491121,60.436405344248634,60.31958703339309,60.65114207613911,60.655166455238465,60.327916330726914,60.28806761066523,60.32265546630583,60.258026706235555,60.24707977471597,60.21990875034547,60.193503370740856,60.152213824542216,60.1799583163276,123.19058148612035,116.55995962366114,107.13259886022166,79.1212149345117,99.09480695948005,125.9150694844731,88.63373177765948,77.37130331672412,80.38614902565797,78.0123513434782,77.69183596889815,77.9590539558578,77.46568371852335,77.06262436647208,76.49231731599949,76.23806510909438,74.64964359392323,74.53511089313432,73.53609055063848,72.55904119106926,71.67706605873232,74.70965184599972,71.09422973749281,70.42605229949723,71.25112732306346,69.51977427713838,69.18305933504293,68.58761268040888,67.4773293928919,65.72264423058584,76.12092973983985,76.06084677445065,65.71525190985021,65.00772669478937,63.85679611788359,62.39636070052882,63.45745140659381,64.92177933669761,62.584303547119646,62.271487479214386,62.08916443647655,61.93125196304717,62.01299115219062,61.882862748391204,62.17287833755394,61.83991123329012,61.764936031839454,61.63651823721369,61.415802036473,61.1063894066086,60.77006237999029,60.635776203095574,68.15892436107953,60.41177966567192,61.15114748180744,60.33536193265698,60.18078838351408,60.16261294606309,60.20423531285272,60.137099756708025],"feasible_probability":0.2882593184843217,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.248046875,"counts":{"0101010101010101":2,"0101010101010110":2,"0101010101011001":1,"0101010101011010":1,"0101010101100101":2,"0101010101100110":3,"0101010101101010":2,"0101010110100101":6,"0101010110100110":12,"0101010110101010":6,"0101011001010110":1,"0101011001011001":2,"0101011001011010":2,"0101011001100101":1,"0101011001101001":1,"0101011001101010":5,"0101011010010101":1,"0101011010011010":1,"0101011010100101":3,"0101011010101001":9,"0101011010101010":13,"0101100101100110":1,"0101101010101001":1,"0101101010101010":3,"0110010101010101":9,"0110010101010110":5,"0110010101011001":3,"0110010101011010":5,"0110010101100101":9,"0110010101100110":16,"0110010101101001":7,"0110010101101010":9,"0110010110010110":1,"0110010110100101":2,"0110010110100110":5,"0110010110101001":4,"0110010110101010":2,"0110011001010101":2,"0110011001011001":11,"0110011001011010":12,"0110011001100101":1,"0110011001101001":14,"0110011001101010":12,"0110011010100101":1,"0110011010101001":10,"0110011010101010":6,"0110100101010110":3,"0110100101011001":2,"0110100101011010":6,"0110100101100101":1,"0110100101100110":1,"0110100101101001":3,"0110100101101010":2,"0110100110100101":1,"0110100110101001":2,"0110101001011010":3,"0110101001100101":1,"0110101001101010":2,"0110101010100110":2,"0110101010101001":2,"0110101010101010":2,"1001010101010101":5,"1001010101010110":3,"1001010101011001":5,"1001010101100101":2,"1001010101100110":1,"1001010101101001":1,"1001010110010110":1,"1001010110011010":1,"1001010110100101":12,"1001010110100110":11,"1001010110101001":5,"1001010110101010":5,"1001011001010101":1,"1001011001010110":1,"1001011001011001":10,"1001011001011010":6,"1001011001100110":1,"1001011001101001":4,"1001011001101010":6,"1001011010011001":3,"1001011010011010":2,"1001011010100110":3,"1001011010101001":21,"1001011010101010":19,"1001100101010101":4,"1001100101010110":2,"1001100101011001":3,"1001100101011010":3,"1001100101100101":1,"1001100110010101":1,"1001100110010110":1,"1001100110011001":1,"1001100110100101":6,"1001100110100110":20,"1001100110101001":7,"1001100110101010":15,"1001101001011010":2,"1001101010011010":1,"1001101010101001":5,"1001101010101010":2,"1010010101010110":2,"1010010101011001":3,"1010010101011010":1,"1010010101100110":2,"1010010110010101":1,"1010010110010110":1,"1010010110100110":2,"1010011001011010":4,"1010011001100101":1,"1010011001101010":3,"1010011010010101":1,"1010011010011001":1,"1010011010101001":1,"1010100101010101":2,"1010100101010110":2,"1010100101011001":3,"1010100101011010":3,"1010100101100101":2,"1010100101100110":1,"1010100101101001":1,"1010100101101010":6,"1010100110011010":1,"1010100110101010":1,"1010101001011001":2,"1010101001101010":1,"1010101010101001":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.920527766997111},"metrics":{"exact_objective":22,"optimal_count":1,"combinations":256,"optimal_probability":0.030027164012532134,"feasible_probability":0.2882593184843218,"uniform_optimal_probability":0.00390625,"uniform_feasible_probability":0.0390625,"shots_for_95_percent":99,"hit_curve":[{"shots":8,"quantum":0.21643220780242067,"uniform":0.0308260755190447},{"shots":16,"quantum":0.3860215150306111,"uniform":0.060701904106183556},{"shots":32,"quantum":0.6230304199946939,"uniform":0.1177190870502508},{"shots":64,"quantum":0.8578939357506231,"uniform":0.2215803906445571},{"shots":128,"quantum":0.979805866503552,"uniform":0.3940629117709197},{"shots":512,"quantum":0.9999998336966907,"uniform":0.865193714387987}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":17,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":22,"preference_cost":10,"change_cost":12,"changed_tasks":5,"max_start_shift":5,"choices":[2,1,1,1,1,0,0,0],"schedule":[{"task":"t0","resource":"r1","start":3,"end":4},{"task":"t1","resource":"r1","start":7,"end":8},{"task":"t2","resource":"r1","start":8,"end":9},{"task":"t3","resource":"r0","start":6,"end":7},{"task":"t4","resource":"r0","start":2,"end":3},{"task":"t5","resource":"r0","start":1,"end":2},{"task":"t6","resource":"r1","start":5,"end":6},{"task":"t7","resource":"r1","start":2,"end":3}]},"dual_bound":22.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":16,"runtime_seconds":0.001571046988829039},"exact":{"status":"optimal","best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":12,"task":"t6","group":"g3","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":5,"task":"t2","group":"g1","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true}],"bits":[0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0],"qubo_energy":22},"combinations":256,"feasible_count":10,"runtime_seconds":0.004175194000708871},"greedy":{"status":"feasible","best":{"feasible":true,"objective":23,"raw_cost":23,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":6,"task":"t3","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":5,"task":"t2","group":"g1","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":9,"end":10,"reserved_end":10,"changed":true}],"bits":[0,1,0,1,0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":23},"runtime_seconds":4.28649946115911e-05},"resources":{"full":{"depth":22,"operations":{"RX":40,"I":16,"RZ":40,"CNOT":56,"CRY":8,"X":8},"cnot":56,"cry":8},"auto":{"depth":17,"operations":{"RX":40,"I":16,"RZ":32,"CNOT":40,"CRY":8,"X":8},"cnot":40,"cry":8}},"phase_max_probability_error":4.85722573273506e-17,"samples":[{"shots":8,"quantum_objective":23,"uniform_objective":null},{"shots":16,"quantum_objective":23,"uniform_objective":null},{"shots":32,"quantum_objective":24,"uniform_objective":25},{"shots":64,"quantum_objective":22,"uniform_objective":24},{"shots":128,"quantum_objective":22,"uniform_objective":25},{"shots":512,"quantum_objective":22,"uniform_objective":22}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":16,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[16],"max_component_qubits":16,"component_to_original":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]],"components":[{"qubits":16,"penalty":37,"objective_bound":36,"offset":296,"linear":[-33,-34,-33,-31,-34,-35,-37,-33,-33,-31,-36,-32,-37,-32,-37,-34],"quadratic":[[0,1,74],[0,2,37],[1,2,37],[2,3,74],[3,8,37],[4,5,74],[4,7,37],[6,7,74],[6,12,37],[8,9,74],[9,11,37],[10,11,74],[11,14,37],[12,13,74],[13,15,37],[14,15,74]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":5,"cost":4},{"index":1,"task":"t0","resource":"r1","start":3,"cost":3},{"index":2,"task":"t1","resource":"r1","start":3,"cost":4},{"index":3,"task":"t1","resource":"r1","start":7,"cost":6},{"index":4,"task":"t2","resource":"r0","start":6,"cost":3},{"index":5,"task":"t2","resource":"r1","start":8,"cost":2},{"index":6,"task":"t3","resource":"r1","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":6,"cost":4},{"index":8,"task":"t4","resource":"r1","start":7,"cost":4},{"index":9,"task":"t4","resource":"r0","start":2,"cost":6},{"index":10,"task":"t5","resource":"r0","start":1,"cost":1},{"index":11,"task":"t5","resource":"r1","start":2,"cost":5},{"index":12,"task":"t6","resource":"r1","start":5,"cost":0},{"index":13,"task":"t6","resource":"r1","start":9,"cost":5},{"index":14,"task":"t7","resource":"r1","start":2,"cost":0},{"index":15,"task":"t7","resource":"r1","start":9,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["resource","group","precedence"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":6,"j":12,"reasons":["resource"]},{"i":9,"j":11,"reasons":["group"]},{"i":11,"j":14,"reasons":["resource"]},{"i":13,"j":15,"reasons":["resource","group"]}]}]},"diagnostic_seconds":0.06353430700255558}
+{"input":{"file":"evaluation-n8-d1.json","split":"evaluation","tasks":8,"density_parameter":1,"data_seed":20261003,"sha256":"24a78232cc15095f23f1960fce0fa6b469331287e939761855cc9afe88d423e3"},"model":{"qubits":16,"penalty":37,"objective_bound":36,"offset":296,"linear":[-33,-34,-33,-31,-34,-35,-37,-33,-33,-31,-36,-32,-37,-32,-37,-34],"quadratic":[[0,1,74],[0,2,37],[1,2,37],[2,3,74],[3,8,37],[4,5,74],[4,7,37],[6,7,74],[6,12,37],[8,9,74],[9,11,37],[10,11,74],[11,14,37],[12,13,74],[13,15,37],[14,15,74]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":5,"cost":4},{"index":1,"task":"t0","resource":"r1","start":3,"cost":3},{"index":2,"task":"t1","resource":"r1","start":3,"cost":4},{"index":3,"task":"t1","resource":"r1","start":7,"cost":6},{"index":4,"task":"t2","resource":"r0","start":6,"cost":3},{"index":5,"task":"t2","resource":"r1","start":8,"cost":2},{"index":6,"task":"t3","resource":"r1","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":6,"cost":4},{"index":8,"task":"t4","resource":"r1","start":7,"cost":4},{"index":9,"task":"t4","resource":"r0","start":2,"cost":6},{"index":10,"task":"t5","resource":"r0","start":1,"cost":1},{"index":11,"task":"t5","resource":"r1","start":2,"cost":5},{"index":12,"task":"t6","resource":"r1","start":5,"cost":0},{"index":13,"task":"t6","resource":"r1","start":9,"cost":5},{"index":14,"task":"t7","resource":"r1","start":2,"cost":0},{"index":15,"task":"t7","resource":"r1","start":9,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["resource","group","precedence"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":6,"j":12,"reasons":["resource"]},{"i":9,"j":11,"reasons":["group"]},{"i":11,"j":14,"reasons":["resource"]},{"i":13,"j":15,"reasons":["resource","group"]}]},"quantum":{"status":"feasible","best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":12,"task":"t6","group":"g3","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":5,"task":"t2","group":"g1","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true}],"bits":[0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0],"qubo_energy":22},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.2471596328319967,1.339738205114685],"expected_energy":60.032532536443924,"initial_expected_energy":68.44734302330997,"history":[68.44734302330997,64.57717443190445,130.53768374104794,108.1212199656004,121.68641009385092,64.28466832721537,63.59030173500365,68.68029673101614,64.89823901776118,60.74427062348653,61.90442157553716,60.49837574631406,60.627080074373104,60.473427708189874,60.456259203701904,60.426679673539674,60.409440950761194,60.46451097044462,60.37680345943298,60.3582402549673,60.32832537024426,60.30473617807924,60.25759808289616,60.17062018073824,60.32045054998413,60.41123154748766,60.26520729432075,60.15953256711586,60.167966860033104,60.150251707702026,60.177793259226576,60.138021021474955,60.13130856645623,60.12311418053156,60.10910785815217,60.14691772047856,60.109005666109724,60.09823141006043,60.08238777180557,60.06387647911009,60.0682620958424,60.086487626002864,60.06916472373402,60.059291708396685,60.055361520183624,60.060067343116316,60.053089078611606,60.051177007649265,60.054192897145704,60.04957140205575,60.04745599945312,60.04363937901117,60.04300124589878,60.03515857190217,60.03579975590227,60.03476035939252,60.035753726778616,60.03434328355934,60.03362124022203,60.032532536443924,100.1403731278559,98.81197807141402,100.69444044233711,94.96203381692528,92.95072389997753,95.15609684117085,103.11063224376235,97.90067322656421,97.08257108056354,92.06853628053774,94.68329377935638,92.96511176955163,91.05532180117046,91.17212520459918,91.66869438078511,91.10898707781769,91.11584212860043,90.98941835049963,91.02493125737158,91.01481872203468,90.94688022116273,90.89453548824346,90.94059124313216,90.87261979722393,90.82666060883669,90.73694300697905,90.56185099353723,90.24312613709404,90.13762412277225,89.78247076951709,92.17619845548428,89.26576646390487,89.89659079267523,89.18788815633492,89.35240622902124,89.14438284124626,89.066451962843,88.96778801569984,88.82121155960841,88.69160021278199,88.55162542254487,88.59200432453173,89.03680225176434,88.43240518792315,88.40861466142627,88.50393145752088,88.37881149819344,88.35418424727875,88.33145765440761,88.4361369773179,88.31022579503835,88.27615054339678,88.24893741772783,88.25215142710131,88.23635151362068,88.22527627179824,88.20958779988237,88.26249025238869,88.18148072735019,88.15875659450433],"feasible_probability":0.2875881594952926,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.28125,"counts":{"0101010101010101":1,"0101010101010110":1,"0101010101100101":1,"0101010101100110":1,"0101010110011001":1,"0101010110011010":1,"0101010110100101":7,"0101010110100110":8,"0101010110101001":7,"0101010110101010":7,"0101011001010110":1,"0101011001011001":3,"0101011001011010":6,"0101011001100110":1,"0101011001101001":4,"0101011001101010":2,"0101011010010101":1,"0101011010011001":2,"0101011010011010":1,"0101011010100101":2,"0101011010100110":2,"0101011010101001":11,"0101011010101010":21,"0101100101011001":1,"0101100110101001":1,"0101101010100101":2,"0101101010100110":1,"0101101010101001":1,"0101101010101010":2,"0110010101010101":8,"0110010101010110":13,"0110010101011001":5,"0110010101011010":2,"0110010101100101":4,"0110010101100110":12,"0110010101101001":4,"0110010101101010":4,"0110010110100101":4,"0110010110100110":8,"0110010110101001":2,"0110010110101010":2,"0110011001010101":3,"0110011001010110":2,"0110011001011001":14,"0110011001011010":12,"0110011001100101":1,"0110011001100110":1,"0110011001101001":12,"0110011001101010":12,"0110011010011001":1,"0110011010011010":1,"0110011010100101":4,"0110011010101001":8,"0110011010101010":11,"0110100101010101":2,"0110100101010110":2,"0110100101011001":3,"0110100101011010":7,"0110100101100101":1,"0110100101101010":1,"0110100110100110":1,"0110100110101001":2,"0110100110101010":1,"0110101001011001":2,"0110101001101001":1,"0110101001101010":1,"0110101010101001":2,"1001010101010101":5,"1001010101010110":3,"1001010101011001":5,"1001010101011010":1,"1001010101100101":2,"1001010101100110":1,"1001010101101001":2,"1001010101101010":4,"1001010110010101":1,"1001010110010110":1,"1001010110100101":6,"1001010110100110":7,"1001010110101001":6,"1001010110101010":10,"1001011001010110":1,"1001011001011001":8,"1001011001011010":12,"1001011001100110":1,"1001011001101010":2,"1001011010011001":2,"1001011010100101":2,"1001011010100110":5,"1001011010101001":18,"1001011010101010":25,"1001100101010101":3,"1001100101010110":2,"1001100101011001":5,"1001100101011010":3,"1001100101100101":1,"1001100101101010":3,"1001100110010110":1,"1001100110100101":6,"1001100110100110":12,"1001100110101001":10,"1001100110101010":9,"1001101001011010":1,"1001101001101010":1,"1001101010100101":1,"1010010101010101":2,"1010010101010110":1,"1010010101100110":1,"1010010101101001":1,"1010010110010110":1,"1010010110100101":1,"1010011001011001":2,"1010011001011010":2,"1010011001101001":4,"1010011001101010":1,"1010011010011001":2,"1010011010101001":1,"1010100101010101":1,"1010100101011001":1,"1010100101011010":2,"1010100101100101":1,"1010100101100110":2,"1010100101101001":4,"1010100101101010":5,"1010100110010101":2,"1010100110011010":1,"1010100110100101":1,"1010100110100110":3,"1010100110101001":1,"1010101001011001":2,"1010101001011010":1,"1010101001101001":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.9877238760091132},"metrics":{"exact_objective":22,"optimal_count":1,"combinations":256,"optimal_probability":0.029738806887356965,"feasible_probability":0.2875881594952926,"uniform_optimal_probability":0.00390625,"uniform_feasible_probability":0.0390625,"shots_for_95_percent":100,"hit_curve":[{"shots":8,"quantum":0.21456673211881913,"uniform":0.0308260755190447},{"shots":16,"quantum":0.38309458170548916,"uniform":0.060701904106183556},{"shots":32,"quantum":0.6194277048788746,"uniform":0.1177190870502508},{"shots":64,"quantum":0.855164728186239,"uniform":0.2215803906445571},{"shots":128,"quantum":0.979022744038634,"uniform":0.3940629117709197},{"shots":512,"quantum":0.9999998063601624,"uniform":0.865193714387987}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":17,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":22,"preference_cost":10,"change_cost":12,"changed_tasks":5,"max_start_shift":5,"choices":[2,1,1,1,1,0,0,0],"schedule":[{"task":"t0","resource":"r1","start":3,"end":4},{"task":"t1","resource":"r1","start":7,"end":8},{"task":"t2","resource":"r1","start":8,"end":9},{"task":"t3","resource":"r0","start":6,"end":7},{"task":"t4","resource":"r0","start":2,"end":3},{"task":"t5","resource":"r0","start":1,"end":2},{"task":"t6","resource":"r1","start":5,"end":6},{"task":"t7","resource":"r1","start":2,"end":3}]},"dual_bound":22.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":16,"runtime_seconds":0.001571046988829039},"exact":{"status":"optimal","best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":12,"task":"t6","group":"g3","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t1","group":"g0","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":5,"task":"t2","group":"g1","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true}],"bits":[0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0],"qubo_energy":22},"combinations":256,"feasible_count":10,"runtime_seconds":0.004175194000708871},"greedy":{"status":"feasible","best":{"feasible":true,"objective":23,"raw_cost":23,"violation_count":0,"violations":[],"schedule":[{"variable":10,"task":"t5","group":"g2","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":9,"task":"t4","group":"g2","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":14,"task":"t7","group":"g3","resource":"r1","start":2,"end":3,"reserved_end":3,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":6,"task":"t3","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":3,"task":"t1","group":"g0","resource":"r1","start":7,"end":8,"reserved_end":8,"changed":true},{"variable":5,"task":"t2","group":"g1","resource":"r1","start":8,"end":9,"reserved_end":9,"changed":true},{"variable":13,"task":"t6","group":"g3","resource":"r1","start":9,"end":10,"reserved_end":10,"changed":true}],"bits":[0,1,0,1,0,1,1,0,0,1,1,0,0,1,1,0],"qubo_energy":23},"runtime_seconds":4.28649946115911e-05},"resources":{"full":{"depth":22,"operations":{"RX":40,"I":16,"RZ":40,"CNOT":56,"CRY":8,"X":8},"cnot":56,"cry":8},"auto":{"depth":17,"operations":{"RX":40,"I":16,"RZ":32,"CNOT":40,"CRY":8,"X":8},"cnot":40,"cry":8}},"phase_max_probability_error":3.469446951953614e-17,"samples":[{"shots":8,"quantum_objective":25,"uniform_objective":null},{"shots":16,"quantum_objective":23,"uniform_objective":null},{"shots":32,"quantum_objective":22,"uniform_objective":25},{"shots":64,"quantum_objective":22,"uniform_objective":22},{"shots":128,"quantum_objective":22,"uniform_objective":23},{"shots":512,"quantum_objective":22,"uniform_objective":22}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":16,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[16],"max_component_qubits":16,"component_to_original":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]],"components":[{"qubits":16,"penalty":37,"objective_bound":36,"offset":296,"linear":[-33,-34,-33,-31,-34,-35,-37,-33,-33,-31,-36,-32,-37,-32,-37,-34],"quadratic":[[0,1,74],[0,2,37],[1,2,37],[2,3,74],[3,8,37],[4,5,74],[4,7,37],[6,7,74],[6,12,37],[8,9,74],[9,11,37],[10,11,74],[11,14,37],[12,13,74],[13,15,37],[14,15,74]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":5,"cost":4},{"index":1,"task":"t0","resource":"r1","start":3,"cost":3},{"index":2,"task":"t1","resource":"r1","start":3,"cost":4},{"index":3,"task":"t1","resource":"r1","start":7,"cost":6},{"index":4,"task":"t2","resource":"r0","start":6,"cost":3},{"index":5,"task":"t2","resource":"r1","start":8,"cost":2},{"index":6,"task":"t3","resource":"r1","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":6,"cost":4},{"index":8,"task":"t4","resource":"r1","start":7,"cost":4},{"index":9,"task":"t4","resource":"r0","start":2,"cost":6},{"index":10,"task":"t5","resource":"r0","start":1,"cost":1},{"index":11,"task":"t5","resource":"r1","start":2,"cost":5},{"index":12,"task":"t6","resource":"r1","start":5,"cost":0},{"index":13,"task":"t6","resource":"r1","start":9,"cost":5},{"index":14,"task":"t7","resource":"r1","start":2,"cost":0},{"index":15,"task":"t7","resource":"r1","start":9,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["resource","group","precedence"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource","group"]},{"i":6,"j":12,"reasons":["resource"]},{"i":9,"j":11,"reasons":["group"]},{"i":11,"j":14,"reasons":["resource"]},{"i":13,"j":15,"reasons":["resource","group"]}]}]},"diagnostic_seconds":0.06138956599170342}
+{"input":{"file":"evaluation-n8-d2.json","split":"evaluation","tasks":8,"density_parameter":2,"data_seed":20261004,"sha256":"829ea1e178a972a60b33f01009260d9577a71277b317cd63e6abab4823d5f8f2"},"model":{"qubits":16,"penalty":39,"objective_bound":38,"offset":312,"linear":[-34,-32,-39,-31,-35,-34,-39,-36,-38,-38,-35,-37,-35,-34,-37,-34],"quadratic":[[0,1,78],[0,12,39],[0,15,39],[1,5,39],[2,3,78],[2,6,39],[2,9,39],[2,11,39],[3,4,39],[3,8,39],[4,5,78],[4,8,39],[6,7,78],[6,9,39],[6,11,39],[7,10,39],[7,13,39],[7,14,39],[8,9,78],[9,11,39],[10,11,78],[10,13,39],[10,14,39],[12,13,78],[12,15,39],[13,14,39],[14,15,78]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":5},{"index":1,"task":"t0","resource":"r0","start":2,"cost":7},{"index":2,"task":"t1","resource":"r0","start":5,"cost":0},{"index":3,"task":"t1","resource":"r0","start":3,"cost":8},{"index":4,"task":"t2","resource":"r0","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":4,"cost":3},{"index":8,"task":"t4","resource":"r0","start":3,"cost":1},{"index":9,"task":"t4","resource":"r0","start":5,"cost":1},{"index":10,"task":"t5","resource":"r0","start":4,"cost":4},{"index":11,"task":"t5","resource":"r0","start":5,"cost":2},{"index":12,"task":"t6","resource":"r0","start":1,"cost":4},{"index":13,"task":"t6","resource":"r0","start":4,"cost":5},{"index":14,"task":"t7","resource":"r0","start":4,"cost":2},{"index":15,"task":"t7","resource":"r0","start":1,"cost":5}],"conflicts":[{"i":0,"j":12,"reasons":["resource"]},{"i":0,"j":15,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":2,"j":11,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":8,"reasons":["resource"]},{"i":6,"j":9,"reasons":["resource"]},{"i":6,"j":11,"reasons":["resource"]},{"i":7,"j":10,"reasons":["resource"]},{"i":7,"j":13,"reasons":["resource"]},{"i":7,"j":14,"reasons":["resource"]},{"i":9,"j":11,"reasons":["resource","group"]},{"i":10,"j":13,"reasons":["resource"]},{"i":10,"j":14,"reasons":["resource"]},{"i":12,"j":15,"reasons":["resource","group"]},{"i":13,"j":14,"reasons":["resource","group"]}]},"quantum":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":21,"violation_count":3,"violations":[{"kind":"conflict","tasks":["t0","t6"],"variables":[0,12],"reasons":["resource"]},{"kind":"conflict","tasks":["t1","t3"],"variables":[2,6],"reasons":["resource"]},{"kind":"conflict","tasks":["t5","t7"],"variables":[10,14],"reasons":["resource"]}],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":12,"task":"t6","group":"g3","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":10,"task":"t5","group":"g2","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":14,"task":"t7","group":"g3","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false}],"bits":[1,0,1,0,0,1,1,0,1,0,1,0,1,0,1,0],"qubo_energy":138},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.0776390714655744,1.5732694430463912],"expected_energy":213.2499054426678,"initial_expected_energy":214.91341828669556,"history":[214.91341828669556,214.9987018343343,213.60486200142543,217.2247853490568,219.53911943251137,213.86628297087012,213.25190019234563,213.71419372401937,213.2503754127282,213.26708244689564,213.2957892643834,213.25361940074316,213.2506942633528,213.25324836700042,213.25010574298668,213.25001206412523,213.25002312602552,213.2505406033312,213.2499782245336,213.25010636322656,213.24997860053463,213.24997449650536,213.24998362489154,213.24997307540784,213.24997050763503,213.24997212537474,213.24997133874314,213.24997046748481,213.24997028890493,213.24997011535356,213.24996977176068,213.24996908486375,213.24996769243535,213.24996502505184,213.2499592741472,213.24997816358757,213.2500143702045,213.2499840346222,213.249958371533,213.24995923877265,213.2499587749234,213.24995767415965,213.2499575242574,213.24995807485942,213.24995731094037,213.2499571127073,213.24995675333247,213.2499564041883,213.24995537202648,213.24995561308316,213.24995513011027,213.24995549029805,213.2499548886646,213.24995466128155,213.249954211976,213.2499533093358,213.2499514686244,213.24994946810457,213.2499492140305,213.2499441285378,237.5412483970009,222.13003593023348,214.4786050422065,213.36067530947486,213.25588556955114,216.14828883759782,213.69831352588417,213.3926715397397,213.26032143398112,213.26742418690714,213.25045268127906,213.2528277898517,213.2596583310014,213.25007843489044,213.25001803906463,213.2505434254603,213.25007009116243,213.25013413460778,213.2500535040665,213.24996440609075,213.24995561185088,213.24996494305827,213.2499574220852,213.24995741201388,213.2499562743747,213.2499558790287,213.24995596948506,213.2499551635979,213.24995513202674,213.24995541531806,213.24995487731647,213.24995439400158,213.24995350930712,213.2499516959433,213.2499478504879,213.2499559788689,213.24996602943668,213.24995128565035,213.2499486629646,213.24994812546956,213.2499476992815,213.24994844244898,213.24994741940395,213.24994715380498,213.2499466374052,213.2499456237759,213.24994357729486,213.2499396298173,213.24993165033305,213.24991605952192,213.25009686095598,213.2501521306559,213.25004893858747,213.24991331817756,213.24990916508207,213.24991315935108,213.24991163808357,213.24990583891997,213.2499054426678,213.24990697387662],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"0101010101010101":3,"0101010101010110":2,"0101010101011001":3,"0101010101011010":2,"0101010101100101":2,"0101010101100110":1,"0101010101101001":1,"0101010110010101":3,"0101010110010110":3,"0101010110011001":2,"0101010110011010":1,"0101010110100110":2,"0101010110101001":1,"0101010110101010":4,"0101011001010101":3,"0101011001010110":2,"0101011001011001":2,"0101011001011010":2,"0101011001100101":2,"0101011001100110":2,"0101011001101001":1,"0101011001101010":3,"0101011010010101":6,"0101011010010110":2,"0101011010011001":3,"0101011010011010":2,"0101011010100101":1,"0101011010100110":2,"0101011010101001":2,"0101100101010101":2,"0101100101010110":1,"0101100101011001":1,"0101100101011010":2,"0101100101100101":2,"0101100101100110":2,"0101100101101001":2,"0101100101101010":2,"0101100110010101":2,"0101100110010110":1,"0101100110011001":3,"0101100110011010":3,"0101100110100101":2,"0101100110100110":2,"0101100110101001":1,"0101100110101010":3,"0101101001010101":2,"0101101001010110":2,"0101101001011001":3,"0101101001011010":3,"0101101001100101":1,"0101101001100110":3,"0101101001101001":3,"0101101001101010":1,"0101101010010101":1,"0101101010010110":4,"0101101010011001":2,"0101101010100101":3,"0101101010100110":1,"0101101010101001":3,"0101101010101010":1,"0110010101010101":2,"0110010101010110":1,"0110010101011001":3,"0110010101011010":1,"0110010101100101":4,"0110010101100110":4,"0110010101101001":4,"0110010110010101":5,"0110010110010110":1,"0110010110011010":2,"0110010110100101":3,"0110010110100110":2,"0110010110101001":1,"0110010110101010":1,"0110011001010101":2,"0110011001010110":2,"0110011001011001":2,"0110011001100101":1,"0110011001101010":1,"0110011010010101":2,"0110011010010110":3,"0110011010011001":1,"0110011010011010":3,"0110011010100101":1,"0110011010101001":2,"0110011010101010":1,"0110100101010101":3,"0110100101010110":5,"0110100101011001":2,"0110100101011010":2,"0110100101100101":4,"0110100101100110":3,"0110100101101001":4,"0110100101101010":2,"0110100110010101":2,"0110100110010110":3,"0110100110011001":1,"0110100110011010":1,"0110100110100101":2,"0110100110100110":1,"0110100110101001":2,"0110100110101010":2,"0110101001010101":3,"0110101001010110":3,"0110101001011010":3,"0110101001100101":1,"0110101001100110":3,"0110101001101001":2,"0110101001101010":2,"0110101010010101":1,"0110101010010110":3,"0110101010011001":2,"0110101010011010":1,"0110101010100110":2,"0110101010101010":1,"1001010101010101":3,"1001010101010110":6,"1001010101011001":3,"1001010101011010":3,"1001010101100101":1,"1001010101100110":4,"1001010101101001":3,"1001010101101010":3,"1001010110010101":2,"1001010110010110":3,"1001010110011010":3,"1001010110101010":3,"1001011001010101":1,"1001011001010110":1,"1001011001011001":1,"1001011001011010":3,"1001011001100101":2,"1001011001100110":5,"1001011001101001":2,"1001011001101010":2,"1001011010010110":3,"1001011010011001":3,"1001011010011010":3,"1001011010100101":2,"1001011010100110":1,"1001011010101001":2,"1001011010101010":2,"1001100101010101":2,"1001100101010110":3,"1001100101011001":7,"1001100101011010":3,"1001100101100101":1,"1001100101100110":4,"1001100110010101":3,"1001100110010110":2,"1001100110011001":3,"1001100110011010":2,"1001100110100101":3,"1001100110100110":1,"1001100110101001":1,"1001100110101010":2,"1001101001010101":1,"1001101001011001":2,"1001101001011010":1,"1001101001100110":2,"1001101001101001":2,"1001101001101010":1,"1001101010010101":3,"1001101010010110":2,"1001101010011001":3,"1001101010011010":1,"1001101010100101":2,"1001101010100110":2,"1001101010101001":2,"1010010101010101":1,"1010010101010110":6,"1010010101011001":3,"1010010101011010":5,"1010010101100101":2,"1010010101100110":1,"1010010101101001":1,"1010010101101010":2,"1010010110010101":4,"1010010110011001":3,"1010010110011010":2,"1010010110100101":5,"1010010110100110":2,"1010010110101001":3,"1010010110101010":3,"1010011001010101":3,"1010011001010110":2,"1010011001011001":4,"1010011001011010":2,"1010011001100101":6,"1010011001100110":2,"1010011001101001":4,"1010011001101010":3,"1010011010010101":2,"1010011010010110":1,"1010011010011001":1,"1010011010011010":2,"1010011010100101":1,"1010011010100110":1,"1010100101010101":3,"1010100101010110":5,"1010100101011010":1,"1010100101101001":3,"1010100110010110":3,"1010100110011001":1,"1010100110011010":2,"1010100110100101":1,"1010100110100110":2,"1010100110101001":2,"1010100110101010":2,"1010101001010101":2,"1010101001010110":1,"1010101001011010":1,"1010101001100101":2,"1010101001100110":2,"1010101001101001":4,"1010101001101010":3,"1010101010010101":2,"1010101010010110":5,"1010101010011010":2,"1010101010100101":1,"1010101010100110":1,"1010101010101001":1,"1010101010101010":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":1.2923246050049784},"metrics":{"exact_objective":null,"optimal_count":0,"combinations":256,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":17,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":27,"runtime_seconds":0.0013811569951940328},"exact":{"status":"infeasible","best":null,"combinations":256,"feasible_count":0,"runtime_seconds":0.00355522999598179},"greedy":{"status":"dead_end","best":null,"runtime_seconds":5.5792988860048354e-05},"resources":{"full":{"depth":34,"operations":{"RX":40,"I":16,"RZ":51,"CNOT":78,"CRY":8,"X":8},"cnot":78,"cry":8},"auto":{"depth":25,"operations":{"RX":40,"I":16,"RZ":43,"CNOT":62,"CRY":8,"X":8},"cnot":62,"cry":8}},"phase_max_probability_error":1.0408340855860843e-17,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":null,"uniform_objective":null},{"shots":64,"quantum_objective":null,"uniform_objective":null},{"shots":128,"quantum_objective":null,"uniform_objective":null},{"shots":512,"quantum_objective":null,"uniform_objective":null}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":16,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[16],"max_component_qubits":16,"component_to_original":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]],"components":[{"qubits":16,"penalty":39,"objective_bound":38,"offset":312,"linear":[-34,-32,-39,-31,-35,-34,-39,-36,-38,-38,-35,-37,-35,-34,-37,-34],"quadratic":[[0,1,78],[0,12,39],[0,15,39],[1,5,39],[2,3,78],[2,6,39],[2,9,39],[2,11,39],[3,4,39],[3,8,39],[4,5,78],[4,8,39],[6,7,78],[6,9,39],[6,11,39],[7,10,39],[7,13,39],[7,14,39],[8,9,78],[9,11,39],[10,11,78],[10,13,39],[10,14,39],[12,13,78],[12,15,39],[13,14,39],[14,15,78]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":5},{"index":1,"task":"t0","resource":"r0","start":2,"cost":7},{"index":2,"task":"t1","resource":"r0","start":5,"cost":0},{"index":3,"task":"t1","resource":"r0","start":3,"cost":8},{"index":4,"task":"t2","resource":"r0","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":4,"cost":3},{"index":8,"task":"t4","resource":"r0","start":3,"cost":1},{"index":9,"task":"t4","resource":"r0","start":5,"cost":1},{"index":10,"task":"t5","resource":"r0","start":4,"cost":4},{"index":11,"task":"t5","resource":"r0","start":5,"cost":2},{"index":12,"task":"t6","resource":"r0","start":1,"cost":4},{"index":13,"task":"t6","resource":"r0","start":4,"cost":5},{"index":14,"task":"t7","resource":"r0","start":4,"cost":2},{"index":15,"task":"t7","resource":"r0","start":1,"cost":5}],"conflicts":[{"i":0,"j":12,"reasons":["resource"]},{"i":0,"j":15,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":2,"j":11,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":8,"reasons":["resource"]},{"i":6,"j":9,"reasons":["resource"]},{"i":6,"j":11,"reasons":["resource"]},{"i":7,"j":10,"reasons":["resource"]},{"i":7,"j":13,"reasons":["resource"]},{"i":7,"j":14,"reasons":["resource"]},{"i":9,"j":11,"reasons":["resource","group"]},{"i":10,"j":13,"reasons":["resource"]},{"i":10,"j":14,"reasons":["resource"]},{"i":12,"j":15,"reasons":["resource","group"]},{"i":13,"j":14,"reasons":["resource","group"]}]}]},"diagnostic_seconds":0.06554417900042608}
+{"input":{"file":"evaluation-n8-d2.json","split":"evaluation","tasks":8,"density_parameter":2,"data_seed":20261004,"sha256":"829ea1e178a972a60b33f01009260d9577a71277b317cd63e6abab4823d5f8f2"},"model":{"qubits":16,"penalty":39,"objective_bound":38,"offset":312,"linear":[-34,-32,-39,-31,-35,-34,-39,-36,-38,-38,-35,-37,-35,-34,-37,-34],"quadratic":[[0,1,78],[0,12,39],[0,15,39],[1,5,39],[2,3,78],[2,6,39],[2,9,39],[2,11,39],[3,4,39],[3,8,39],[4,5,78],[4,8,39],[6,7,78],[6,9,39],[6,11,39],[7,10,39],[7,13,39],[7,14,39],[8,9,78],[9,11,39],[10,11,78],[10,13,39],[10,14,39],[12,13,78],[12,15,39],[13,14,39],[14,15,78]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":5},{"index":1,"task":"t0","resource":"r0","start":2,"cost":7},{"index":2,"task":"t1","resource":"r0","start":5,"cost":0},{"index":3,"task":"t1","resource":"r0","start":3,"cost":8},{"index":4,"task":"t2","resource":"r0","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":4,"cost":3},{"index":8,"task":"t4","resource":"r0","start":3,"cost":1},{"index":9,"task":"t4","resource":"r0","start":5,"cost":1},{"index":10,"task":"t5","resource":"r0","start":4,"cost":4},{"index":11,"task":"t5","resource":"r0","start":5,"cost":2},{"index":12,"task":"t6","resource":"r0","start":1,"cost":4},{"index":13,"task":"t6","resource":"r0","start":4,"cost":5},{"index":14,"task":"t7","resource":"r0","start":4,"cost":2},{"index":15,"task":"t7","resource":"r0","start":1,"cost":5}],"conflicts":[{"i":0,"j":12,"reasons":["resource"]},{"i":0,"j":15,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":2,"j":11,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":8,"reasons":["resource"]},{"i":6,"j":9,"reasons":["resource"]},{"i":6,"j":11,"reasons":["resource"]},{"i":7,"j":10,"reasons":["resource"]},{"i":7,"j":13,"reasons":["resource"]},{"i":7,"j":14,"reasons":["resource"]},{"i":9,"j":11,"reasons":["resource","group"]},{"i":10,"j":13,"reasons":["resource"]},{"i":10,"j":14,"reasons":["resource"]},{"i":12,"j":15,"reasons":["resource","group"]},{"i":13,"j":14,"reasons":["resource","group"]}]},"quantum":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":21,"violation_count":3,"violations":[{"kind":"conflict","tasks":["t0","t6"],"variables":[0,12],"reasons":["resource"]},{"kind":"conflict","tasks":["t1","t3"],"variables":[2,6],"reasons":["resource"]},{"kind":"conflict","tasks":["t5","t7"],"variables":[10,14],"reasons":["resource"]}],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":12,"task":"t6","group":"g3","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":10,"task":"t5","group":"g2","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":14,"task":"t7","group":"g3","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false}],"bits":[1,0,1,0,0,1,1,0,1,0,1,0,1,0,1,0],"qubo_energy":138},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.517478433494421,1.590594682095883],"expected_energy":213.13551573561546,"initial_expected_energy":230.49906406543334,"history":[230.49906406543334,221.51169997800125,221.35498660868882,213.3501962835927,232.68529263859696,213.6492641122577,215.4750412398135,213.3144327800224,213.44149230809435,213.3492224374426,213.30683362305086,213.27557112381226,213.2575175764385,213.25285174478546,213.26847275512256,213.25002307147852,213.25035327571027,213.25736850296542,213.25246342175137,213.25000996866822,213.2502318247109,213.2500784019113,213.24998283170902,213.2500801180501,213.24996981361724,213.24999054978218,213.2499690099688,213.24996456523547,213.24996244025772,213.2499562211068,213.24995312154016,213.24994576651363,213.24993399884949,213.24989870266006,213.24985769893976,213.2496753109648,213.24966976173312,213.24933087521774,213.2491690729488,213.24921217496717,213.24971574051006,213.2492160013166,213.24908431821308,213.24910618727125,213.24910160571574,213.24908898560022,213.24907553756395,213.2490678383965,213.24905973627426,213.24904774003898,213.2490445251578,213.24904027370627,213.24905290729535,213.2490497315274,213.24904167387476,213.24903715032406,213.249036026498,213.24903489574638,213.24903487127264,213.24903348273648,232.33741380872436,222.58488469548593,215.10070745508364,215.88620689082305,216.88380856518722,217.64730353571025,213.23788427027463,213.25407712658114,213.1662746011731,213.47641857336507,213.155392611564,213.63419856671408,213.38080901592087,213.15960921715754,213.15614129305698,213.16717319759584,213.1478158750018,213.15327136149378,213.14864214351124,213.14801588310075,213.1476483982214,213.14846767174663,213.1474639240804,213.14730544503553,213.1470130573864,213.14645953684416,213.145691246912,213.14495978194958,213.14425089890398,213.1484396257012,213.14461451938269,213.14417622743585,213.14653943245398,213.1437190962679,213.14317746060362,213.14300292059932,213.14346525293212,213.14285833463822,213.1427290625557,213.1425115673236,213.142142225601,213.14161709245366,213.14076244092996,213.13886012454068,213.13796611313592,213.18278957759082,213.1688410259272,213.138097944673,213.13602566177752,213.1433179428595,213.13609021392244,213.1357444267208,213.1355703804993,213.13561990888815,213.13572149841482,213.13553180372463,213.1355300253218,213.13555630231332,213.1355318382188,213.13551573561546],"feasible_probability":0.0,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.0,"counts":{"0101010101010101":2,"0101010101010110":3,"0101010101011001":2,"0101010101100101":2,"0101010101100110":1,"0101010101101001":1,"0101010101101010":2,"0101010110010101":2,"0101010110011001":2,"0101010110011010":2,"0101010110100101":2,"0101010110101001":2,"0101010110101010":2,"0101011001010101":3,"0101011001010110":2,"0101011001011001":1,"0101011001011010":2,"0101011001100101":4,"0101011001101001":1,"0101011001101010":1,"0101011010010101":2,"0101011010010110":3,"0101011010011001":4,"0101011010011010":3,"0101011010100101":3,"0101011010100110":7,"0101011010101010":2,"0101100101010101":1,"0101100101011001":4,"0101100101011010":3,"0101100101100101":1,"0101100101100110":2,"0101100101101001":2,"0101100110010101":3,"0101100110011001":5,"0101100110011010":5,"0101100110100101":1,"0101100110100110":1,"0101100110101001":5,"0101101001010101":1,"0101101001010110":1,"0101101001011001":2,"0101101001011010":2,"0101101001100101":1,"0101101001100110":2,"0101101001101001":1,"0101101001101010":1,"0101101010010101":3,"0101101010010110":8,"0101101010011001":2,"0101101010100101":1,"0101101010100110":1,"0101101010101001":2,"0101101010101010":5,"0110010101010101":2,"0110010101010110":2,"0110010101011001":4,"0110010101011010":3,"0110010101100101":4,"0110010101100110":1,"0110010101101001":4,"0110010101101010":1,"0110010110010101":3,"0110010110010110":2,"0110010110011010":3,"0110010110100110":3,"0110010110101001":1,"0110010110101010":1,"0110011001010101":1,"0110011001010110":2,"0110011001011001":1,"0110011001100101":2,"0110011001100110":2,"0110011001101001":3,"0110011010010101":2,"0110011010010110":3,"0110011010011010":3,"0110011010100110":1,"0110011010101001":3,"0110011010101010":4,"0110100101010101":2,"0110100101010110":3,"0110100101011001":1,"0110100101011010":3,"0110100101100110":2,"0110100101101001":1,"0110100101101010":1,"0110100110010101":3,"0110100110010110":2,"0110100110011001":2,"0110100110011010":2,"0110100110100101":2,"0110100110100110":3,"0110100110101001":3,"0110100110101010":5,"0110101001010101":1,"0110101001010110":1,"0110101001100101":1,"0110101001100110":1,"0110101001101010":2,"0110101010010110":1,"0110101010011001":2,"0110101010011010":1,"0110101010100101":1,"0110101010100110":1,"0110101010101001":1,"0110101010101010":1,"1001010101010101":3,"1001010101010110":2,"1001010101011001":1,"1001010101011010":6,"1001010101100101":3,"1001010101100110":3,"1001010101101010":2,"1001010110010101":2,"1001010110011001":2,"1001010110011010":2,"1001010110100101":3,"1001010110100110":5,"1001010110101001":1,"1001010110101010":2,"1001011001010101":2,"1001011001010110":1,"1001011001011001":4,"1001011001011010":1,"1001011001100110":3,"1001011001101001":5,"1001011001101010":3,"1001011010010110":1,"1001011010011001":4,"1001011010011010":2,"1001011010100110":1,"1001011010101001":3,"1001011010101010":1,"1001100101010101":3,"1001100101011001":7,"1001100101011010":1,"1001100101100101":1,"1001100101100110":2,"1001100101101001":6,"1001100101101010":1,"1001100110010110":1,"1001100110011001":1,"1001100110011010":3,"1001100110100101":5,"1001100110100110":3,"1001100110101001":1,"1001101001010101":2,"1001101001010110":4,"1001101001011001":2,"1001101001011010":1,"1001101001100101":3,"1001101001100110":3,"1001101001101001":2,"1001101001101010":4,"1001101010010101":1,"1001101010010110":4,"1001101010011001":1,"1001101010011010":1,"1001101010100101":4,"1001101010100110":2,"1001101010101001":2,"1001101010101010":1,"1010010101010101":1,"1010010101011001":4,"1010010101100101":1,"1010010101100110":5,"1010010101101001":5,"1010010101101010":3,"1010010110010101":1,"1010010110010110":3,"1010010110011010":1,"1010010110100101":3,"1010010110100110":5,"1010010110101001":1,"1010010110101010":2,"1010011001010101":1,"1010011001011001":2,"1010011001011010":3,"1010011001100101":1,"1010011001100110":3,"1010011001101001":1,"1010011001101010":4,"1010011010010101":1,"1010011010010110":1,"1010011010011001":5,"1010011010011010":3,"1010011010100101":3,"1010011010101001":1,"1010011010101010":3,"1010100101010101":2,"1010100101010110":1,"1010100101011001":2,"1010100101011010":1,"1010100101100101":1,"1010100101100110":2,"1010100101101001":3,"1010100110010101":3,"1010100110010110":2,"1010100110011001":1,"1010100110011010":3,"1010100110100101":3,"1010100110100110":3,"1010100110101001":4,"1010100110101010":3,"1010101001010101":4,"1010101001010110":2,"1010101001011001":4,"1010101001011010":2,"1010101001100101":3,"1010101001100110":3,"1010101001101010":2,"1010101010011001":2,"1010101010011010":1,"1010101010100101":2,"1010101010101001":2,"1010101010101010":5},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":1.2893407499941532},"metrics":{"exact_objective":null,"optimal_count":0,"combinations":256,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":17,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":27,"runtime_seconds":0.0013811569951940328},"exact":{"status":"infeasible","best":null,"combinations":256,"feasible_count":0,"runtime_seconds":0.00355522999598179},"greedy":{"status":"dead_end","best":null,"runtime_seconds":5.5792988860048354e-05},"resources":{"full":{"depth":34,"operations":{"RX":40,"I":16,"RZ":51,"CNOT":78,"CRY":8,"X":8},"cnot":78,"cry":8},"auto":{"depth":25,"operations":{"RX":40,"I":16,"RZ":43,"CNOT":62,"CRY":8,"X":8},"cnot":62,"cry":8}},"phase_max_probability_error":9.540979117872439e-18,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":null,"uniform_objective":null},{"shots":64,"quantum_objective":null,"uniform_objective":null},{"shots":128,"quantum_objective":null,"uniform_objective":null},{"shots":512,"quantum_objective":null,"uniform_objective":null}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":16,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[16],"max_component_qubits":16,"component_to_original":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]],"components":[{"qubits":16,"penalty":39,"objective_bound":38,"offset":312,"linear":[-34,-32,-39,-31,-35,-34,-39,-36,-38,-38,-35,-37,-35,-34,-37,-34],"quadratic":[[0,1,78],[0,12,39],[0,15,39],[1,5,39],[2,3,78],[2,6,39],[2,9,39],[2,11,39],[3,4,39],[3,8,39],[4,5,78],[4,8,39],[6,7,78],[6,9,39],[6,11,39],[7,10,39],[7,13,39],[7,14,39],[8,9,78],[9,11,39],[10,11,78],[10,13,39],[10,14,39],[12,13,78],[12,15,39],[13,14,39],[14,15,78]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":5},{"index":1,"task":"t0","resource":"r0","start":2,"cost":7},{"index":2,"task":"t1","resource":"r0","start":5,"cost":0},{"index":3,"task":"t1","resource":"r0","start":3,"cost":8},{"index":4,"task":"t2","resource":"r0","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":4,"cost":3},{"index":8,"task":"t4","resource":"r0","start":3,"cost":1},{"index":9,"task":"t4","resource":"r0","start":5,"cost":1},{"index":10,"task":"t5","resource":"r0","start":4,"cost":4},{"index":11,"task":"t5","resource":"r0","start":5,"cost":2},{"index":12,"task":"t6","resource":"r0","start":1,"cost":4},{"index":13,"task":"t6","resource":"r0","start":4,"cost":5},{"index":14,"task":"t7","resource":"r0","start":4,"cost":2},{"index":15,"task":"t7","resource":"r0","start":1,"cost":5}],"conflicts":[{"i":0,"j":12,"reasons":["resource"]},{"i":0,"j":15,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":2,"j":11,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":8,"reasons":["resource"]},{"i":6,"j":9,"reasons":["resource"]},{"i":6,"j":11,"reasons":["resource"]},{"i":7,"j":10,"reasons":["resource"]},{"i":7,"j":13,"reasons":["resource"]},{"i":7,"j":14,"reasons":["resource"]},{"i":9,"j":11,"reasons":["resource","group"]},{"i":10,"j":13,"reasons":["resource"]},{"i":10,"j":14,"reasons":["resource"]},{"i":12,"j":15,"reasons":["resource","group"]},{"i":13,"j":14,"reasons":["resource","group"]}]}]},"diagnostic_seconds":0.06984450400341302}
+{"input":{"file":"evaluation-n8-d2.json","split":"evaluation","tasks":8,"density_parameter":2,"data_seed":20261004,"sha256":"829ea1e178a972a60b33f01009260d9577a71277b317cd63e6abab4823d5f8f2"},"model":{"qubits":16,"penalty":39,"objective_bound":38,"offset":312,"linear":[-34,-32,-39,-31,-35,-34,-39,-36,-38,-38,-35,-37,-35,-34,-37,-34],"quadratic":[[0,1,78],[0,12,39],[0,15,39],[1,5,39],[2,3,78],[2,6,39],[2,9,39],[2,11,39],[3,4,39],[3,8,39],[4,5,78],[4,8,39],[6,7,78],[6,9,39],[6,11,39],[7,10,39],[7,13,39],[7,14,39],[8,9,78],[9,11,39],[10,11,78],[10,13,39],[10,14,39],[12,13,78],[12,15,39],[13,14,39],[14,15,78]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":5},{"index":1,"task":"t0","resource":"r0","start":2,"cost":7},{"index":2,"task":"t1","resource":"r0","start":5,"cost":0},{"index":3,"task":"t1","resource":"r0","start":3,"cost":8},{"index":4,"task":"t2","resource":"r0","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":4,"cost":3},{"index":8,"task":"t4","resource":"r0","start":3,"cost":1},{"index":9,"task":"t4","resource":"r0","start":5,"cost":1},{"index":10,"task":"t5","resource":"r0","start":4,"cost":4},{"index":11,"task":"t5","resource":"r0","start":5,"cost":2},{"index":12,"task":"t6","resource":"r0","start":1,"cost":4},{"index":13,"task":"t6","resource":"r0","start":4,"cost":5},{"index":14,"task":"t7","resource":"r0","start":4,"cost":2},{"index":15,"task":"t7","resource":"r0","start":1,"cost":5}],"conflicts":[{"i":0,"j":12,"reasons":["resource"]},{"i":0,"j":15,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":2,"j":11,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":8,"reasons":["resource"]},{"i":6,"j":9,"reasons":["resource"]},{"i":6,"j":11,"reasons":["resource"]},{"i":7,"j":10,"reasons":["resource"]},{"i":7,"j":13,"reasons":["resource"]},{"i":7,"j":14,"reasons":["resource"]},{"i":9,"j":11,"reasons":["resource","group"]},{"i":10,"j":13,"reasons":["resource"]},{"i":10,"j":14,"reasons":["resource"]},{"i":12,"j":15,"reasons":["resource","group"]},{"i":13,"j":14,"reasons":["resource","group"]}]},"quantum":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":21,"violation_count":3,"violations":[{"kind":"conflict","tasks":["t0","t6"],"variables":[0,12],"reasons":["resource"]},{"kind":"conflict","tasks":["t1","t3"],"variables":[2,6],"reasons":["resource"]},{"kind":"conflict","tasks":["t5","t7"],"variables":[10,14],"reasons":["resource"]}],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":12,"task":"t6","group":"g3","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":10,"task":"t5","group":"g2","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":14,"task":"t7","group":"g3","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false}],"bits":[1,0,1,0,0,1,1,0,1,0,1,0,1,0,1,0],"qubo_energy":138},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0689630967072865,2.2199231940951725],"expected_energy":184.52878921507738,"initial_expected_energy":216.7858815472137,"history":[216.7858815472137,215.76082862145068,214.36371848840835,218.7545754739943,213.32446053718832,215.7436790989419,213.3528266030831,213.37395925032328,213.3607099620229,213.31724733879264,213.42700894051333,213.29644584626237,213.28190238740697,213.2719974427882,213.2653634131291,213.25834840667525,213.25469416663492,213.25073283216017,213.24937536078198,213.2490668604264,213.24955689641158,213.24905304308163,213.24913740722593,213.24909216425448,213.2490728582907,213.24905135938738,213.24904515339222,213.24904251668428,213.2490364365939,213.24904905658582,213.2490341814221,213.24904075832774,213.24903466145963,213.24903301570777,213.24903385592717,213.24903260614806,213.24903264658766,213.24903241447515,213.249032276997,213.24903230624238,213.24903208919324,213.2490318922736,213.24903156229803,213.24903108673047,213.24903035693177,213.24902944916784,213.24902963767414,213.2490305416133,213.2490296324483,213.24902937268536,213.24902920321796,213.2490291637966,213.2490298527027,213.24902898628167,213.24902890794255,213.24902885146372,213.24902893091786,213.2490288108808,213.24902877576386,213.24902879847224,278.58318533236354,245.90227924984697,215.64164872238965,238.30773087828354,238.90113331593304,212.92428021184185,218.0700321557218,214.0372928046676,212.2428549386852,212.87590341042556,212.82439983849088,212.19134097782427,212.4043102551098,212.2126346167704,212.109728105899,212.00169910052472,212.0946805437992,211.9400863991869,211.8812868410128,211.78906281625328,211.50660276130952,211.0137794851574,209.16937436078064,215.93078568669097,212.25533760499383,209.78780193494327,208.93801118228512,208.8632077210687,209.7604262569041,208.50572570833046,207.90364692457982,207.03281209226162,204.19930904496817,202.26546591724286,202.50190121605215,210.33186867545965,204.89277902239127,198.6948957436994,199.4413092483286,197.6889233687661,196.8245810014332,195.22793351814047,193.78924785290985,192.29491986454957,194.45766288150946,197.55601845048747,192.84227043300348,190.57065336980156,190.1559579923789,189.39815032892523,188.95244551107857,188.11404377394578,187.78110241406412,186.1590867241003,187.4685615835811,185.9219362037391,187.2710226511271,185.52016175518912,185.16689845687813,184.52878921507738],"feasible_probability":0.0,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.0,"counts":{"0101010101010101":7,"0101010101010110":5,"0101010101011001":1,"0101010101011010":1,"0101010101100101":8,"0101010101100110":5,"0101010101101001":3,"0101010110011001":3,"0101010110011010":3,"0101010110100101":2,"0101010110101001":3,"0101010110101010":1,"0101011001010101":2,"0101011001010110":1,"0101011001011001":4,"0101011001011010":8,"0101011001101001":8,"0101011001101010":1,"0101011010010101":6,"0101011010010110":4,"0101011010011010":1,"0101011010100101":5,"0101011010101001":1,"0101100101010110":2,"0101100101011010":4,"0101100101101001":3,"0101100101101010":4,"0101100110010101":3,"0101100110010110":20,"0101100110011001":2,"0101100110100101":5,"0101100110100110":5,"0101100110101001":2,"0101101001010101":3,"0101101001010110":1,"0101101001011010":1,"0101101001100101":1,"0101101001100110":1,"0101101001101010":1,"0101101010010101":3,"0101101010010110":5,"0101101010011001":4,"0101101010011010":6,"0101101010101001":12,"0101101010101010":3,"0110010101010101":5,"0110010101010110":1,"0110010101100101":5,"0110010110010101":3,"0110010110011001":1,"0110010110011010":2,"0110010110100101":1,"0110010110101001":1,"0110010110101010":1,"0110011001010101":4,"0110011001011001":6,"0110011001011010":1,"0110011001101001":4,"0110011010010110":1,"0110011010011001":1,"0110011010011010":1,"0110011010101001":3,"0110100101010101":9,"0110100101010110":3,"0110100101011001":2,"0110100101011010":3,"0110100101100101":6,"0110100101101001":10,"0110100101101010":2,"0110100110010101":3,"0110100110100101":3,"0110100110101001":1,"0110101001011001":6,"0110101001011010":2,"0110101001100101":2,"0110101001101001":3,"0110101001101010":1,"0110101010010101":7,"0110101010011001":5,"0110101010100101":1,"0110101010100110":1,"0110101010101001":9,"1001010101010101":2,"1001010101010110":1,"1001010101100101":2,"1001010101100110":2,"1001010101101010":1,"1001010110010101":1,"1001010110010110":3,"1001010110011001":1,"1001010110011010":3,"1001010110100101":2,"1001010110100110":1,"1001011001010110":1,"1001011001011001":5,"1001011001101001":1,"1001011010010110":3,"1001011010011010":1,"1001011010101001":2,"1001011010101010":2,"1001100101010101":1,"1001100101010110":6,"1001100101011001":1,"1001100101101001":2,"1001100101101010":2,"1001100110010101":2,"1001100110100101":2,"1001100110101010":1,"1001101001011001":1,"1001101001011010":2,"1001101001100101":1,"1001101001101001":3,"1001101010100101":1,"1001101010101010":4,"1010010101010101":1,"1010010101010110":8,"1010010101011001":1,"1010010101011010":2,"1010010101100101":9,"1010010101100110":3,"1010010110011001":3,"1010010110011010":2,"1010010110100101":1,"1010010110101001":1,"1010010110101010":2,"1010011001010101":2,"1010011001010110":2,"1010011001011001":4,"1010011001011010":12,"1010011001101001":7,"1010011001101010":3,"1010011010010101":8,"1010011010010110":5,"1010011010011010":1,"1010011010100101":1,"1010011010100110":1,"1010100101010110":1,"1010100101011001":1,"1010100101011010":3,"1010100101100101":2,"1010100101101001":2,"1010100101101010":3,"1010100110010101":3,"1010100110010110":9,"1010100110011001":1,"1010100110100101":14,"1010100110100110":4,"1010100110101001":1,"1010100110101010":1,"1010101001010110":3,"1010101001011010":1,"1010101001100101":1,"1010101001100110":1,"1010101010010101":2,"1010101010010110":3,"1010101010011001":2,"1010101010011010":13,"1010101010101001":2,"1010101010101010":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":1.246758723995299},"metrics":{"exact_objective":null,"optimal_count":0,"combinations":256,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":17,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":27,"runtime_seconds":0.0013811569951940328},"exact":{"status":"infeasible","best":null,"combinations":256,"feasible_count":0,"runtime_seconds":0.00355522999598179},"greedy":{"status":"dead_end","best":null,"runtime_seconds":5.5792988860048354e-05},"resources":{"full":{"depth":34,"operations":{"RX":40,"I":16,"RZ":51,"CNOT":78,"CRY":8,"X":8},"cnot":78,"cry":8},"auto":{"depth":25,"operations":{"RX":40,"I":16,"RZ":43,"CNOT":62,"CRY":8,"X":8},"cnot":62,"cry":8}},"phase_max_probability_error":1.734723475976807e-17,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":null,"uniform_objective":null},{"shots":64,"quantum_objective":null,"uniform_objective":null},{"shots":128,"quantum_objective":null,"uniform_objective":null},{"shots":512,"quantum_objective":null,"uniform_objective":null}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":16,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[16],"max_component_qubits":16,"component_to_original":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]],"components":[{"qubits":16,"penalty":39,"objective_bound":38,"offset":312,"linear":[-34,-32,-39,-31,-35,-34,-39,-36,-38,-38,-35,-37,-35,-34,-37,-34],"quadratic":[[0,1,78],[0,12,39],[0,15,39],[1,5,39],[2,3,78],[2,6,39],[2,9,39],[2,11,39],[3,4,39],[3,8,39],[4,5,78],[4,8,39],[6,7,78],[6,9,39],[6,11,39],[7,10,39],[7,13,39],[7,14,39],[8,9,78],[9,11,39],[10,11,78],[10,13,39],[10,14,39],[12,13,78],[12,15,39],[13,14,39],[14,15,78]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":5},{"index":1,"task":"t0","resource":"r0","start":2,"cost":7},{"index":2,"task":"t1","resource":"r0","start":5,"cost":0},{"index":3,"task":"t1","resource":"r0","start":3,"cost":8},{"index":4,"task":"t2","resource":"r0","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":4,"cost":3},{"index":8,"task":"t4","resource":"r0","start":3,"cost":1},{"index":9,"task":"t4","resource":"r0","start":5,"cost":1},{"index":10,"task":"t5","resource":"r0","start":4,"cost":4},{"index":11,"task":"t5","resource":"r0","start":5,"cost":2},{"index":12,"task":"t6","resource":"r0","start":1,"cost":4},{"index":13,"task":"t6","resource":"r0","start":4,"cost":5},{"index":14,"task":"t7","resource":"r0","start":4,"cost":2},{"index":15,"task":"t7","resource":"r0","start":1,"cost":5}],"conflicts":[{"i":0,"j":12,"reasons":["resource"]},{"i":0,"j":15,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":2,"j":11,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":8,"reasons":["resource"]},{"i":6,"j":9,"reasons":["resource"]},{"i":6,"j":11,"reasons":["resource"]},{"i":7,"j":10,"reasons":["resource"]},{"i":7,"j":13,"reasons":["resource"]},{"i":7,"j":14,"reasons":["resource"]},{"i":9,"j":11,"reasons":["resource","group"]},{"i":10,"j":13,"reasons":["resource"]},{"i":10,"j":14,"reasons":["resource"]},{"i":12,"j":15,"reasons":["resource","group"]},{"i":13,"j":14,"reasons":["resource","group"]}]}]},"diagnostic_seconds":0.13035932699858677}
+{"input":{"file":"evaluation-n8-d2.json","split":"evaluation","tasks":8,"density_parameter":2,"data_seed":20261004,"sha256":"829ea1e178a972a60b33f01009260d9577a71277b317cd63e6abab4823d5f8f2"},"model":{"qubits":16,"penalty":39,"objective_bound":38,"offset":312,"linear":[-34,-32,-39,-31,-35,-34,-39,-36,-38,-38,-35,-37,-35,-34,-37,-34],"quadratic":[[0,1,78],[0,12,39],[0,15,39],[1,5,39],[2,3,78],[2,6,39],[2,9,39],[2,11,39],[3,4,39],[3,8,39],[4,5,78],[4,8,39],[6,7,78],[6,9,39],[6,11,39],[7,10,39],[7,13,39],[7,14,39],[8,9,78],[9,11,39],[10,11,78],[10,13,39],[10,14,39],[12,13,78],[12,15,39],[13,14,39],[14,15,78]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":5},{"index":1,"task":"t0","resource":"r0","start":2,"cost":7},{"index":2,"task":"t1","resource":"r0","start":5,"cost":0},{"index":3,"task":"t1","resource":"r0","start":3,"cost":8},{"index":4,"task":"t2","resource":"r0","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":4,"cost":3},{"index":8,"task":"t4","resource":"r0","start":3,"cost":1},{"index":9,"task":"t4","resource":"r0","start":5,"cost":1},{"index":10,"task":"t5","resource":"r0","start":4,"cost":4},{"index":11,"task":"t5","resource":"r0","start":5,"cost":2},{"index":12,"task":"t6","resource":"r0","start":1,"cost":4},{"index":13,"task":"t6","resource":"r0","start":4,"cost":5},{"index":14,"task":"t7","resource":"r0","start":4,"cost":2},{"index":15,"task":"t7","resource":"r0","start":1,"cost":5}],"conflicts":[{"i":0,"j":12,"reasons":["resource"]},{"i":0,"j":15,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":2,"j":11,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":8,"reasons":["resource"]},{"i":6,"j":9,"reasons":["resource"]},{"i":6,"j":11,"reasons":["resource"]},{"i":7,"j":10,"reasons":["resource"]},{"i":7,"j":13,"reasons":["resource"]},{"i":7,"j":14,"reasons":["resource"]},{"i":9,"j":11,"reasons":["resource","group"]},{"i":10,"j":13,"reasons":["resource"]},{"i":10,"j":14,"reasons":["resource"]},{"i":12,"j":15,"reasons":["resource","group"]},{"i":13,"j":14,"reasons":["resource","group"]}]},"quantum":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":22,"violation_count":3,"violations":[{"kind":"conflict","tasks":["t1","t3"],"variables":[2,6],"reasons":["resource"]},{"kind":"conflict","tasks":["t2","t4"],"variables":[4,8],"reasons":["resource"]},{"kind":"conflict","tasks":["t5","t7"],"variables":[10,14],"reasons":["resource"]}],"schedule":[{"variable":12,"task":"t6","group":"g3","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":1,"task":"t0","group":"g0","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":4,"task":"t2","group":"g1","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":10,"task":"t5","group":"g2","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":14,"task":"t7","group":"g3","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false}],"bits":[0,1,1,0,1,0,1,0,1,0,1,0,1,0,1,0],"qubo_energy":139},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.4847848512173796,1.5903028191625146],"expected_energy":213.13145265502294,"initial_expected_energy":241.15013440332555,"history":[241.15013440332555,239.10332068328984,218.3362781712133,223.61650984769875,213.52640047062636,215.77385507883614,215.24814933976916,213.5884554164403,213.14238135417423,213.78648952576353,213.13384855451545,213.19438704286472,213.133552864554,213.13584540256147,213.14419136746977,213.13290747147627,213.1359322187097,213.13271779304392,213.13290844324484,213.13263795470166,213.13253666867126,213.13250329079057,213.132648530644,213.1324701575841,213.13244629260848,213.13241854049983,213.13236451320287,213.13225966704272,213.13219123077107,213.1323679423317,213.1328727917061,213.13216552817488,213.1320449053011,213.1320522516365,213.1320621982433,213.13205289332024,213.13203107650514,213.13201076684595,213.13196321110476,213.13187078690774,213.13172096631155,213.13392496445806,213.13326701811184,213.13170839148071,213.1316671575821,213.13178976663954,213.13160360132963,213.13165719799485,213.1315938947662,213.13161080811403,213.13158666374244,213.13157626106596,213.13155732494383,213.13151944500504,213.13145675373394,213.1319952334979,213.13187579012734,213.13146025225856,213.13145265502294,213.13145790777202,220.1171302238341,214.03559402695336,213.31923419924047,217.79484628326134,213.46386129202787,214.03176266749196,213.32021522358195,213.25660623985038,213.2505377765351,213.24924739090778,213.25133909180832,213.25088906778063,213.24945659326028,213.2492124656212,213.24915124087008,213.24911071684213,213.24907555925338,213.24904920608003,213.24909275177262,213.2490551580554,213.24904771846565,213.24905579531477,213.24904627834997,213.249044080711,213.24904143705544,213.24904726438365,213.24903992996735,213.2490385419002,213.24903781605303,213.2490348633432,213.24903560378425,213.24903454707191,213.24903672008276,213.2490333614057,213.24903253739873,213.249031716903,213.2490303504917,213.2490348611575,213.24903370281558,213.24903101789954,213.24903033992473,213.24903058835014,213.2490303640231,213.24903021835092,213.24903006261349,213.24903017951908,213.24902998582832,213.24902991799112,213.24902977301915,213.2490295093417,213.24902990931633,213.24902958568663,213.24902947091218,213.2490296577099,213.24902939039924,213.2490293253031,213.24902921911394,213.2490290118086,213.24902873685315,213.24902895945462],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"0101010101010101":2,"0101010101010110":2,"0101010101011001":3,"0101010101011010":1,"0101010101101001":3,"0101010101101010":2,"0101010110010101":2,"0101010110010110":3,"0101010110100101":1,"0101010110100110":2,"0101010110101001":2,"0101010110101010":2,"0101011001010101":1,"0101011001010110":2,"0101011001100110":1,"0101011001101001":1,"0101011001101010":3,"0101011010010101":4,"0101011010010110":1,"0101011010011001":2,"0101011010011010":3,"0101011010100101":2,"0101011010100110":1,"0101011010101001":1,"0101100101010101":5,"0101100101010110":3,"0101100101011001":3,"0101100101011010":2,"0101100101100101":3,"0101100101100110":3,"0101100110010101":3,"0101100110010110":3,"0101100110011001":2,"0101100110011010":1,"0101100110100101":5,"0101100110100110":1,"0101100110101001":3,"0101100110101010":7,"0101101001010101":1,"0101101001010110":1,"0101101001011001":1,"0101101001011010":3,"0101101001100101":1,"0101101001100110":1,"0101101001101001":2,"0101101001101010":2,"0101101010010110":4,"0101101010011001":2,"0101101010011010":3,"0101101010100101":4,"0101101010100110":1,"0101101010101001":1,"0101101010101010":2,"0110010101010101":2,"0110010101010110":5,"0110010101011001":2,"0110010101011010":3,"0110010101100101":2,"0110010101100110":2,"0110010101101001":7,"0110010101101010":1,"0110010110010101":3,"0110010110010110":1,"0110010110011001":3,"0110010110011010":2,"0110010110101001":4,"0110010110101010":2,"0110011001010101":2,"0110011001010110":1,"0110011001011010":2,"0110011001100101":1,"0110011001101010":2,"0110011010010110":3,"0110011010011001":2,"0110011010011010":6,"0110011010100110":6,"0110011010101001":2,"0110100101010101":3,"0110100101010110":2,"0110100101011001":2,"0110100101011010":3,"0110100101100110":1,"0110100101101001":1,"0110100110010101":4,"0110100110010110":5,"0110100110011001":3,"0110100110011010":1,"0110100110100101":4,"0110100110100110":1,"0110100110101001":2,"0110100110101010":4,"0110101001010101":1,"0110101001010110":1,"0110101001011001":3,"0110101001011010":1,"0110101001100101":1,"0110101001100110":2,"0110101001101001":4,"0110101010010101":3,"0110101010010110":1,"0110101010011001":4,"0110101010011010":2,"0110101010100101":2,"0110101010100110":4,"0110101010101001":1,"0110101010101010":4,"1001010101010101":1,"1001010101010110":1,"1001010101011001":1,"1001010101011010":1,"1001010101100101":2,"1001010101100110":3,"1001010101101001":1,"1001010101101010":2,"1001010110010101":2,"1001010110010110":2,"1001010110011001":3,"1001010110011010":2,"1001010110100101":3,"1001010110100110":3,"1001010110101001":1,"1001010110101010":1,"1001011001010101":1,"1001011001010110":1,"1001011001011001":1,"1001011001011010":1,"1001011001100101":3,"1001011001100110":1,"1001011001101001":3,"1001011001101010":1,"1001011010010101":2,"1001011010010110":4,"1001011010011001":1,"1001011010011010":2,"1001011010100101":3,"1001011010100110":4,"1001011010101001":2,"1001011010101010":3,"1001100101010101":2,"1001100101010110":2,"1001100101011001":2,"1001100101011010":2,"1001100101100101":1,"1001100101100110":1,"1001100101101001":1,"1001100110010101":2,"1001100110010110":3,"1001100110011001":1,"1001100110011010":3,"1001100110100101":2,"1001100110100110":1,"1001100110101001":4,"1001101001010101":1,"1001101001010110":2,"1001101001011001":1,"1001101001011010":1,"1001101001100101":4,"1001101001100110":2,"1001101001101001":2,"1001101001101010":1,"1001101010010101":2,"1001101010010110":3,"1001101010011001":3,"1001101010011010":1,"1001101010100110":1,"1001101010101001":6,"1001101010101010":4,"1010010101010101":3,"1010010101010110":2,"1010010101011001":3,"1010010101011010":3,"1010010101100101":2,"1010010101100110":4,"1010010101101001":2,"1010010101101010":2,"1010010110010101":4,"1010010110010110":1,"1010010110011001":3,"1010010110011010":2,"1010010110100101":4,"1010010110100110":3,"1010010110101001":1,"1010010110101010":2,"1010011001010101":2,"1010011001010110":3,"1010011001011001":1,"1010011001011010":1,"1010011001100101":3,"1010011001100110":4,"1010011001101001":3,"1010011001101010":4,"1010011010010101":2,"1010011010010110":2,"1010011010011001":2,"1010011010100101":4,"1010011010101001":1,"1010011010101010":1,"1010100101010101":2,"1010100101010110":4,"1010100101011001":2,"1010100101011010":2,"1010100101100101":3,"1010100101100110":3,"1010100101101001":1,"1010100101101010":2,"1010100110010101":2,"1010100110010110":1,"1010100110011001":1,"1010100110011010":3,"1010100110100101":1,"1010100110101001":3,"1010100110101010":4,"1010101001010110":2,"1010101001011001":3,"1010101001011010":2,"1010101001100101":3,"1010101001101001":1,"1010101001101010":1,"1010101010010101":4,"1010101010010110":3,"1010101010011001":3,"1010101010011010":1,"1010101010100110":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":1.2154508469975553},"metrics":{"exact_objective":null,"optimal_count":0,"combinations":256,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":17,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":27,"runtime_seconds":0.0013811569951940328},"exact":{"status":"infeasible","best":null,"combinations":256,"feasible_count":0,"runtime_seconds":0.00355522999598179},"greedy":{"status":"dead_end","best":null,"runtime_seconds":5.5792988860048354e-05},"resources":{"full":{"depth":34,"operations":{"RX":40,"I":16,"RZ":51,"CNOT":78,"CRY":8,"X":8},"cnot":78,"cry":8},"auto":{"depth":25,"operations":{"RX":40,"I":16,"RZ":43,"CNOT":62,"CRY":8,"X":8},"cnot":62,"cry":8}},"phase_max_probability_error":1.1275702593849246e-17,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":null,"uniform_objective":null},{"shots":64,"quantum_objective":null,"uniform_objective":null},{"shots":128,"quantum_objective":null,"uniform_objective":null},{"shots":512,"quantum_objective":null,"uniform_objective":null}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":16,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[16],"max_component_qubits":16,"component_to_original":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]],"components":[{"qubits":16,"penalty":39,"objective_bound":38,"offset":312,"linear":[-34,-32,-39,-31,-35,-34,-39,-36,-38,-38,-35,-37,-35,-34,-37,-34],"quadratic":[[0,1,78],[0,12,39],[0,15,39],[1,5,39],[2,3,78],[2,6,39],[2,9,39],[2,11,39],[3,4,39],[3,8,39],[4,5,78],[4,8,39],[6,7,78],[6,9,39],[6,11,39],[7,10,39],[7,13,39],[7,14,39],[8,9,78],[9,11,39],[10,11,78],[10,13,39],[10,14,39],[12,13,78],[12,15,39],[13,14,39],[14,15,78]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":5},{"index":1,"task":"t0","resource":"r0","start":2,"cost":7},{"index":2,"task":"t1","resource":"r0","start":5,"cost":0},{"index":3,"task":"t1","resource":"r0","start":3,"cost":8},{"index":4,"task":"t2","resource":"r0","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":4,"cost":3},{"index":8,"task":"t4","resource":"r0","start":3,"cost":1},{"index":9,"task":"t4","resource":"r0","start":5,"cost":1},{"index":10,"task":"t5","resource":"r0","start":4,"cost":4},{"index":11,"task":"t5","resource":"r0","start":5,"cost":2},{"index":12,"task":"t6","resource":"r0","start":1,"cost":4},{"index":13,"task":"t6","resource":"r0","start":4,"cost":5},{"index":14,"task":"t7","resource":"r0","start":4,"cost":2},{"index":15,"task":"t7","resource":"r0","start":1,"cost":5}],"conflicts":[{"i":0,"j":12,"reasons":["resource"]},{"i":0,"j":15,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":2,"j":11,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":8,"reasons":["resource"]},{"i":6,"j":9,"reasons":["resource"]},{"i":6,"j":11,"reasons":["resource"]},{"i":7,"j":10,"reasons":["resource"]},{"i":7,"j":13,"reasons":["resource"]},{"i":7,"j":14,"reasons":["resource"]},{"i":9,"j":11,"reasons":["resource","group"]},{"i":10,"j":13,"reasons":["resource"]},{"i":10,"j":14,"reasons":["resource"]},{"i":12,"j":15,"reasons":["resource","group"]},{"i":13,"j":14,"reasons":["resource","group"]}]}]},"diagnostic_seconds":0.0694552569912048}
+{"input":{"file":"evaluation-n8-d2.json","split":"evaluation","tasks":8,"density_parameter":2,"data_seed":20261004,"sha256":"829ea1e178a972a60b33f01009260d9577a71277b317cd63e6abab4823d5f8f2"},"model":{"qubits":16,"penalty":39,"objective_bound":38,"offset":312,"linear":[-34,-32,-39,-31,-35,-34,-39,-36,-38,-38,-35,-37,-35,-34,-37,-34],"quadratic":[[0,1,78],[0,12,39],[0,15,39],[1,5,39],[2,3,78],[2,6,39],[2,9,39],[2,11,39],[3,4,39],[3,8,39],[4,5,78],[4,8,39],[6,7,78],[6,9,39],[6,11,39],[7,10,39],[7,13,39],[7,14,39],[8,9,78],[9,11,39],[10,11,78],[10,13,39],[10,14,39],[12,13,78],[12,15,39],[13,14,39],[14,15,78]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":5},{"index":1,"task":"t0","resource":"r0","start":2,"cost":7},{"index":2,"task":"t1","resource":"r0","start":5,"cost":0},{"index":3,"task":"t1","resource":"r0","start":3,"cost":8},{"index":4,"task":"t2","resource":"r0","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":4,"cost":3},{"index":8,"task":"t4","resource":"r0","start":3,"cost":1},{"index":9,"task":"t4","resource":"r0","start":5,"cost":1},{"index":10,"task":"t5","resource":"r0","start":4,"cost":4},{"index":11,"task":"t5","resource":"r0","start":5,"cost":2},{"index":12,"task":"t6","resource":"r0","start":1,"cost":4},{"index":13,"task":"t6","resource":"r0","start":4,"cost":5},{"index":14,"task":"t7","resource":"r0","start":4,"cost":2},{"index":15,"task":"t7","resource":"r0","start":1,"cost":5}],"conflicts":[{"i":0,"j":12,"reasons":["resource"]},{"i":0,"j":15,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":2,"j":11,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":8,"reasons":["resource"]},{"i":6,"j":9,"reasons":["resource"]},{"i":6,"j":11,"reasons":["resource"]},{"i":7,"j":10,"reasons":["resource"]},{"i":7,"j":13,"reasons":["resource"]},{"i":7,"j":14,"reasons":["resource"]},{"i":9,"j":11,"reasons":["resource","group"]},{"i":10,"j":13,"reasons":["resource"]},{"i":10,"j":14,"reasons":["resource"]},{"i":12,"j":15,"reasons":["resource","group"]},{"i":13,"j":14,"reasons":["resource","group"]}]},"quantum":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":21,"violation_count":3,"violations":[{"kind":"conflict","tasks":["t0","t6"],"variables":[0,12],"reasons":["resource"]},{"kind":"conflict","tasks":["t1","t3"],"variables":[2,6],"reasons":["resource"]},{"kind":"conflict","tasks":["t5","t7"],"variables":[10,14],"reasons":["resource"]}],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":12,"task":"t6","group":"g3","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":10,"task":"t5","group":"g2","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":14,"task":"t7","group":"g3","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false}],"bits":[1,0,1,0,0,1,1,0,1,0,1,0,1,0,1,0],"qubo_energy":138},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.2843117938256947,0.797204833256906],"expected_energy":213.24909173212237,"initial_expected_energy":213.41608173883526,"history":[213.41608173883526,213.26814947189152,214.09407235350236,215.11552279087857,213.93543908739372,213.6435083988135,213.26890377769993,213.2520348252026,213.29382453039557,213.24926256281535,213.24961210028653,213.24929657202463,213.24930946616962,213.24947003021651,213.24931536334037,213.24925812866053,213.2492766477156,213.249257520709,213.24925373506431,213.24924620912236,213.24923142379237,213.2492066824359,213.24940079773404,213.2493897274663,213.24919915727838,213.24921051085232,213.24920644356905,213.24919373661822,213.24918971043417,213.249201895115,213.24918511076243,213.24918276606957,213.24917930096217,213.2491725687426,213.2491598182428,213.24917729453114,213.24917621890128,213.24916611594384,213.2491580699047,213.24915783976007,213.2491541441879,213.24914781942704,213.24913618596773,213.2491132192282,213.24914048730017,213.24919245727614,213.24910940148916,213.2491525956571,213.24910566042814,213.24910398294332,213.24912088414874,213.2490995383416,213.24909731814495,213.24909514462638,213.2490951628841,213.24909351325462,213.24909395127224,213.24909502186992,213.24909173212237,213.24909200214816,213.55071362095129,217.82812836351795,213.29066115771175,213.95024421079842,213.2565886163607,213.54029356480567,213.26332561257612,213.26815889283017,213.27312412389057,213.27080731790468,213.2608883867848,213.25075961340917,213.24996337218926,213.25227570497162,213.24995367672597,213.2500028592683,213.2505132332635,213.24991709172582,213.24999151861385,213.24991006269752,213.2499268234776,213.24991064566422,213.24990864655553,213.24991517466816,213.24990686257522,213.2499054053569,213.24990258385563,213.24989755176944,213.24988795072375,213.24986114508243,213.2500465954628,213.25007886855528,213.249854150361,213.24990423789845,213.24985709656158,213.2498567632534,213.24985752802758,213.2498538700936,213.24985217790024,213.24984883317083,213.24984217323905,213.24982852886419,213.24983507488395,213.24987040178485,213.24982518288948,213.24983929755294,213.24982481296007,213.24982110710735,213.24981409863267,213.24979994980157,213.24977099098453,213.2497698101098,213.2497158570681,213.250354971553,213.24976005203575,213.2497122751396,213.2497987395264,213.24969279061625,213.24968940462676,213.24968027210832],"feasible_probability":0.0,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.0,"counts":{"0101010101010101":2,"0101010101010110":2,"0101010101011001":2,"0101010101011010":2,"0101010101100101":4,"0101010101101001":3,"0101010110010101":2,"0101010110010110":3,"0101010110011001":1,"0101010110011010":3,"0101010110100101":5,"0101010110100110":4,"0101010110101001":1,"0101011001010101":1,"0101011001011001":3,"0101011001100101":1,"0101011001100110":1,"0101011010010101":3,"0101011010010110":1,"0101011010011001":4,"0101011010011010":2,"0101011010100101":1,"0101011010100110":1,"0101011010101001":2,"0101011010101010":2,"0101100101010110":4,"0101100101011001":2,"0101100101011010":1,"0101100101100101":2,"0101100101100110":2,"0101100101101001":3,"0101100110010101":2,"0101100110010110":1,"0101100110011001":2,"0101100110100101":2,"0101100110100110":2,"0101100110101001":3,"0101101001010110":3,"0101101001011001":4,"0101101001011010":3,"0101101001100101":2,"0101101001100110":1,"0101101001101001":5,"0101101001101010":2,"0101101010010101":2,"0101101010010110":2,"0101101010011001":4,"0101101010011010":2,"0101101010100110":4,"0101101010101010":1,"0110010101010101":1,"0110010101010110":3,"0110010101011001":3,"0110010101011010":3,"0110010101100101":1,"0110010101100110":1,"0110010101101001":2,"0110010101101010":1,"0110010110010101":2,"0110010110010110":1,"0110010110011001":1,"0110010110011010":3,"0110010110100101":1,"0110010110100110":5,"0110010110101001":3,"0110010110101010":4,"0110011001010101":2,"0110011001010110":3,"0110011001011001":1,"0110011001100110":2,"0110011001101001":2,"0110011001101010":1,"0110011010010101":2,"0110011010010110":2,"0110011010011001":4,"0110011010011010":3,"0110011010100101":1,"0110011010100110":3,"0110011010101001":3,"0110011010101010":1,"0110100101010101":3,"0110100101010110":2,"0110100101011010":2,"0110100101100101":2,"0110100101100110":1,"0110100101101001":1,"0110100101101010":3,"0110100110011001":3,"0110100110011010":3,"0110100110100101":2,"0110100110101001":3,"0110100110101010":3,"0110101001010101":3,"0110101001010110":1,"0110101001011001":1,"0110101001100101":3,"0110101001100110":2,"0110101001101001":5,"0110101001101010":5,"0110101010010101":3,"0110101010010110":3,"0110101010011010":2,"0110101010100101":1,"0110101010100110":2,"0110101010101001":2,"0110101010101010":1,"1001010101010101":3,"1001010101010110":1,"1001010101011001":1,"1001010101011010":2,"1001010101100101":1,"1001010101101001":1,"1001010101101010":3,"1001010110010101":1,"1001010110010110":2,"1001010110011001":1,"1001010110011010":5,"1001010110100101":2,"1001010110100110":1,"1001010110101001":2,"1001010110101010":4,"1001011001010110":1,"1001011001011010":4,"1001011001100101":2,"1001011001100110":3,"1001011001101001":1,"1001011010010101":1,"1001011010010110":2,"1001011010011010":3,"1001011010100110":5,"1001011010101001":3,"1001100101010101":4,"1001100101010110":3,"1001100101011001":5,"1001100101011010":3,"1001100101100101":2,"1001100101100110":5,"1001100101101001":2,"1001100110010101":3,"1001100110010110":2,"1001100110011001":3,"1001100110011010":5,"1001100110100101":1,"1001100110100110":1,"1001100110101001":3,"1001100110101010":1,"1001101001010110":2,"1001101001011001":5,"1001101001011010":3,"1001101001100110":4,"1001101001101001":1,"1001101001101010":2,"1001101010010101":3,"1001101010010110":4,"1001101010011001":3,"1001101010011010":3,"1001101010100101":4,"1001101010100110":2,"1001101010101001":3,"1001101010101010":1,"1010010101010101":1,"1010010101010110":1,"1010010101011001":1,"1010010101011010":1,"1010010101100110":1,"1010010101101001":1,"1010010101101010":3,"1010010110010101":2,"1010010110010110":2,"1010010110011001":2,"1010010110011010":1,"1010010110100101":1,"1010010110101001":4,"1010010110101010":2,"1010011001010101":2,"1010011001010110":3,"1010011001011010":6,"1010011001100101":2,"1010011001100110":4,"1010011001101001":2,"1010011001101010":1,"1010011010010101":2,"1010011010010110":2,"1010011010011001":2,"1010011010011010":3,"1010011010100101":3,"1010011010100110":4,"1010011010101001":3,"1010011010101010":1,"1010100101010101":1,"1010100101010110":3,"1010100101011001":1,"1010100101011010":1,"1010100101100101":5,"1010100101100110":3,"1010100101101001":2,"1010100101101010":3,"1010100110010101":4,"1010100110010110":2,"1010100110011001":1,"1010100110011010":2,"1010100110100101":1,"1010100110100110":3,"1010100110101001":2,"1010101001010101":2,"1010101001010110":2,"1010101001011001":2,"1010101001011010":1,"1010101001100101":2,"1010101001100110":2,"1010101001101001":1,"1010101001101010":2,"1010101010010101":4,"1010101010010110":1,"1010101010011001":2,"1010101010011010":1,"1010101010100101":2,"1010101010100110":3,"1010101010101001":2,"1010101010101010":4},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":1.2524653720029164},"metrics":{"exact_objective":null,"optimal_count":0,"combinations":256,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":17,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":27,"runtime_seconds":0.0013811569951940328},"exact":{"status":"infeasible","best":null,"combinations":256,"feasible_count":0,"runtime_seconds":0.00355522999598179},"greedy":{"status":"dead_end","best":null,"runtime_seconds":5.5792988860048354e-05},"resources":{"full":{"depth":34,"operations":{"RX":40,"I":16,"RZ":51,"CNOT":78,"CRY":8,"X":8},"cnot":78,"cry":8},"auto":{"depth":25,"operations":{"RX":40,"I":16,"RZ":43,"CNOT":62,"CRY":8,"X":8},"cnot":62,"cry":8}},"phase_max_probability_error":9.540979117872439e-18,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":null,"uniform_objective":null},{"shots":64,"quantum_objective":null,"uniform_objective":null},{"shots":128,"quantum_objective":null,"uniform_objective":null},{"shots":512,"quantum_objective":null,"uniform_objective":null}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":16,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[16],"max_component_qubits":16,"component_to_original":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]],"components":[{"qubits":16,"penalty":39,"objective_bound":38,"offset":312,"linear":[-34,-32,-39,-31,-35,-34,-39,-36,-38,-38,-35,-37,-35,-34,-37,-34],"quadratic":[[0,1,78],[0,12,39],[0,15,39],[1,5,39],[2,3,78],[2,6,39],[2,9,39],[2,11,39],[3,4,39],[3,8,39],[4,5,78],[4,8,39],[6,7,78],[6,9,39],[6,11,39],[7,10,39],[7,13,39],[7,14,39],[8,9,78],[9,11,39],[10,11,78],[10,13,39],[10,14,39],[12,13,78],[12,15,39],[13,14,39],[14,15,78]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":5},{"index":1,"task":"t0","resource":"r0","start":2,"cost":7},{"index":2,"task":"t1","resource":"r0","start":5,"cost":0},{"index":3,"task":"t1","resource":"r0","start":3,"cost":8},{"index":4,"task":"t2","resource":"r0","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":4,"cost":3},{"index":8,"task":"t4","resource":"r0","start":3,"cost":1},{"index":9,"task":"t4","resource":"r0","start":5,"cost":1},{"index":10,"task":"t5","resource":"r0","start":4,"cost":4},{"index":11,"task":"t5","resource":"r0","start":5,"cost":2},{"index":12,"task":"t6","resource":"r0","start":1,"cost":4},{"index":13,"task":"t6","resource":"r0","start":4,"cost":5},{"index":14,"task":"t7","resource":"r0","start":4,"cost":2},{"index":15,"task":"t7","resource":"r0","start":1,"cost":5}],"conflicts":[{"i":0,"j":12,"reasons":["resource"]},{"i":0,"j":15,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":2,"j":11,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":8,"reasons":["resource"]},{"i":6,"j":9,"reasons":["resource"]},{"i":6,"j":11,"reasons":["resource"]},{"i":7,"j":10,"reasons":["resource"]},{"i":7,"j":13,"reasons":["resource"]},{"i":7,"j":14,"reasons":["resource"]},{"i":9,"j":11,"reasons":["resource","group"]},{"i":10,"j":13,"reasons":["resource"]},{"i":10,"j":14,"reasons":["resource"]},{"i":12,"j":15,"reasons":["resource","group"]},{"i":13,"j":14,"reasons":["resource","group"]}]}]},"diagnostic_seconds":0.07084975800535176}
+{"input":{"file":"evaluation-n8-d2.json","split":"evaluation","tasks":8,"density_parameter":2,"data_seed":20261004,"sha256":"829ea1e178a972a60b33f01009260d9577a71277b317cd63e6abab4823d5f8f2"},"model":{"qubits":16,"penalty":39,"objective_bound":38,"offset":312,"linear":[-34,-32,-39,-31,-35,-34,-39,-36,-38,-38,-35,-37,-35,-34,-37,-34],"quadratic":[[0,1,78],[0,12,39],[0,15,39],[1,5,39],[2,3,78],[2,6,39],[2,9,39],[2,11,39],[3,4,39],[3,8,39],[4,5,78],[4,8,39],[6,7,78],[6,9,39],[6,11,39],[7,10,39],[7,13,39],[7,14,39],[8,9,78],[9,11,39],[10,11,78],[10,13,39],[10,14,39],[12,13,78],[12,15,39],[13,14,39],[14,15,78]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":5},{"index":1,"task":"t0","resource":"r0","start":2,"cost":7},{"index":2,"task":"t1","resource":"r0","start":5,"cost":0},{"index":3,"task":"t1","resource":"r0","start":3,"cost":8},{"index":4,"task":"t2","resource":"r0","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":4,"cost":3},{"index":8,"task":"t4","resource":"r0","start":3,"cost":1},{"index":9,"task":"t4","resource":"r0","start":5,"cost":1},{"index":10,"task":"t5","resource":"r0","start":4,"cost":4},{"index":11,"task":"t5","resource":"r0","start":5,"cost":2},{"index":12,"task":"t6","resource":"r0","start":1,"cost":4},{"index":13,"task":"t6","resource":"r0","start":4,"cost":5},{"index":14,"task":"t7","resource":"r0","start":4,"cost":2},{"index":15,"task":"t7","resource":"r0","start":1,"cost":5}],"conflicts":[{"i":0,"j":12,"reasons":["resource"]},{"i":0,"j":15,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":2,"j":11,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":8,"reasons":["resource"]},{"i":6,"j":9,"reasons":["resource"]},{"i":6,"j":11,"reasons":["resource"]},{"i":7,"j":10,"reasons":["resource"]},{"i":7,"j":13,"reasons":["resource"]},{"i":7,"j":14,"reasons":["resource"]},{"i":9,"j":11,"reasons":["resource","group"]},{"i":10,"j":13,"reasons":["resource"]},{"i":10,"j":14,"reasons":["resource"]},{"i":12,"j":15,"reasons":["resource","group"]},{"i":13,"j":14,"reasons":["resource","group"]}]},"quantum":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":21,"violation_count":3,"violations":[{"kind":"conflict","tasks":["t0","t6"],"variables":[0,12],"reasons":["resource"]},{"kind":"conflict","tasks":["t1","t3"],"variables":[2,6],"reasons":["resource"]},{"kind":"conflict","tasks":["t5","t7"],"variables":[10,14],"reasons":["resource"]}],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":12,"task":"t6","group":"g3","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":10,"task":"t5","group":"g2","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":14,"task":"t7","group":"g3","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false}],"bits":[1,0,1,0,0,1,1,0,1,0,1,0,1,0,1,0],"qubo_energy":138},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[-0.6695609676281041,0.9292643768957912],"expected_energy":178.1925849547744,"initial_expected_energy":216.85427242698745,"history":[216.85427242698745,214.32172256869447,225.9190851334721,245.5273546473973,244.31832102738252,210.65366398303175,224.51599929378935,211.1924241617289,209.46369524850334,209.7899139637875,210.2561612025678,209.514918526035,209.13844187250237,208.53592754735712,207.20865198537612,203.74335916482192,209.38548609609626,210.93233155485447,205.18460709132248,203.32911788720662,203.50024802620914,202.94298063004373,202.71790983822126,202.98073591007588,202.6166115004054,202.41001705082346,202.01188403937363,201.25872832661054,199.76203835055955,197.75180385802472,196.98049568223183,194.88645715825223,190.44958400023404,191.3595921060018,199.30759009904116,191.32328161748464,192.40622586877822,190.2701326969705,189.2782561769774,189.00172051246687,187.1022312846043,190.67188536583936,188.6929029281542,187.42890575072676,187.2989285321151,186.91693150661996,187.21390577013528,186.7341378261197,186.55962720914604,186.22418991560414,185.635996466003,185.00333510064493,183.43559127008604,185.28969891793366,185.71702641205093,183.85541575382862,183.58560550310858,183.412668744549,183.62568674403198,183.2312415057777,219.98953141753805,246.4540332953976,204.0710664500042,203.7089462718645,221.51331252458635,264.9685367968947,194.5380940518015,186.49282546262793,196.29110320858834,190.58693143706301,188.94736498635854,184.5119851764845,187.82404659776603,185.8414770906143,184.4176387840498,183.9079219674821,183.43281922558685,185.5006714253375,182.84034176109307,182.40025067121303,181.6132632259409,182.17500586969186,181.79045640755845,181.50865636507095,182.05706855081385,181.39955603442502,181.21028430692402,180.9220517421386,180.48998301364242,183.3574919732536,180.4045316877809,180.0891678381749,179.59692782964459,179.0517463601259,179.68237286794633,180.17131926418747,178.9480092856225,178.89602907073464,178.84761916886083,178.84407341038286,179.025095893912,178.7356449321116,178.69659796974753,178.63930330571753,178.59398246866837,178.73356111641937,178.56691557207867,178.52337373011204,178.45969664683878,179.06087320632872,178.45206020616547,178.39922594730436,178.30696081669785,178.20198190760553,178.53312595320477,178.41822368581015,178.1925849547744,178.2287887045288,178.23013427642167,178.2028713726981],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"0101010101010101":4,"0101010101010110":13,"0101010101100101":10,"0101010101100110":4,"0101010101101001":2,"0101010101101010":1,"0101010110011001":1,"0101010110100101":2,"0101011001010101":1,"0101011001010110":9,"0101011001011001":3,"0101011001011010":4,"0101011001101001":8,"0101011001101010":3,"0101011010010101":8,"0101011010010110":5,"0101011010011001":1,"0101011010100101":2,"0101011010101001":2,"0101011010101010":2,"0101100101011010":2,"0101100101100110":1,"0101100101101001":2,"0101100101101010":2,"0101100110010101":9,"0101100110010110":5,"0101100110100101":1,"0101100110100110":1,"0101100110101001":2,"0101100110101010":1,"0101101001010101":1,"0101101001011001":1,"0101101001011010":1,"0101101001100101":2,"0101101010010101":5,"0101101010010110":5,"0101101010011001":4,"0101101010011010":14,"0101101010101001":7,"0101101010101010":2,"0110010101010101":7,"0110010101010110":1,"0110010101100101":3,"0110010101100110":1,"0110010101101001":2,"0110010110101001":1,"0110011001010101":3,"0110011001011001":4,"0110011001101001":8,"0110011010101001":1,"0110100101010101":6,"0110100101010110":5,"0110100101011001":2,"0110100101100101":3,"0110100101100110":1,"0110100101101001":15,"0110100101101010":1,"0110100110010101":5,"0110100110010110":1,"0110100110100101":1,"0110100110101001":1,"0110101001010101":1,"0110101001011001":8,"0110101001011010":6,"0110101001100101":1,"0110101001101001":6,"0110101001101010":1,"0110101010010101":4,"0110101010011001":4,"0110101010011010":4,"0110101010101001":9,"1001010101010110":1,"1001010101100110":1,"1001010110010101":1,"1001010110010110":2,"1001010110100101":3,"1001010110100110":1,"1001010110101001":1,"1001011001011010":1,"1001011001101001":1,"1001011001101010":1,"1001011010010101":1,"1001011010010110":7,"1001011010011010":1,"1001011010100101":1,"1001011010101010":3,"1001100101010101":1,"1001100110010110":6,"1001100110100101":1,"1001100110101010":2,"1001101001011001":1,"1001101001101001":1,"1001101010011001":1,"1001101010011010":3,"1010010101010101":2,"1010010101010110":7,"1010010101100101":11,"1010010101100110":7,"1010010101101001":3,"1010010101101010":2,"1010010110010101":2,"1010010110100101":3,"1010010110100110":1,"1010011001010101":3,"1010011001010110":2,"1010011001011001":9,"1010011001011010":10,"1010011001100101":1,"1010011001101001":14,"1010011001101010":8,"1010011010010101":6,"1010011010010110":3,"1010011010011001":3,"1010011010011010":3,"1010011010100101":3,"1010011010100110":1,"1010011010101001":6,"1010011010101010":3,"1010100101011001":1,"1010100101011010":2,"1010100101100101":1,"1010100101101001":3,"1010100101101010":2,"1010100110010101":6,"1010100110010110":9,"1010100110011010":1,"1010100110100101":8,"1010100110100110":2,"1010100110101001":1,"1010101001011001":1,"1010101001011010":2,"1010101001100101":2,"1010101010010101":7,"1010101010010110":2,"1010101010011001":7,"1010101010011010":16,"1010101010100101":2,"1010101010101001":9,"1010101010101010":4},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":1.2512197839969303},"metrics":{"exact_objective":null,"optimal_count":0,"combinations":256,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":17,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":27,"runtime_seconds":0.0013811569951940328},"exact":{"status":"infeasible","best":null,"combinations":256,"feasible_count":0,"runtime_seconds":0.00355522999598179},"greedy":{"status":"dead_end","best":null,"runtime_seconds":5.5792988860048354e-05},"resources":{"full":{"depth":34,"operations":{"RX":40,"I":16,"RZ":51,"CNOT":78,"CRY":8,"X":8},"cnot":78,"cry":8},"auto":{"depth":25,"operations":{"RX":40,"I":16,"RZ":43,"CNOT":62,"CRY":8,"X":8},"cnot":62,"cry":8}},"phase_max_probability_error":2.0816681711721685e-17,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":null,"uniform_objective":null},{"shots":64,"quantum_objective":null,"uniform_objective":null},{"shots":128,"quantum_objective":null,"uniform_objective":null},{"shots":512,"quantum_objective":null,"uniform_objective":null}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":16,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[16],"max_component_qubits":16,"component_to_original":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]],"components":[{"qubits":16,"penalty":39,"objective_bound":38,"offset":312,"linear":[-34,-32,-39,-31,-35,-34,-39,-36,-38,-38,-35,-37,-35,-34,-37,-34],"quadratic":[[0,1,78],[0,12,39],[0,15,39],[1,5,39],[2,3,78],[2,6,39],[2,9,39],[2,11,39],[3,4,39],[3,8,39],[4,5,78],[4,8,39],[6,7,78],[6,9,39],[6,11,39],[7,10,39],[7,13,39],[7,14,39],[8,9,78],[9,11,39],[10,11,78],[10,13,39],[10,14,39],[12,13,78],[12,15,39],[13,14,39],[14,15,78]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":5},{"index":1,"task":"t0","resource":"r0","start":2,"cost":7},{"index":2,"task":"t1","resource":"r0","start":5,"cost":0},{"index":3,"task":"t1","resource":"r0","start":3,"cost":8},{"index":4,"task":"t2","resource":"r0","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":4,"cost":3},{"index":8,"task":"t4","resource":"r0","start":3,"cost":1},{"index":9,"task":"t4","resource":"r0","start":5,"cost":1},{"index":10,"task":"t5","resource":"r0","start":4,"cost":4},{"index":11,"task":"t5","resource":"r0","start":5,"cost":2},{"index":12,"task":"t6","resource":"r0","start":1,"cost":4},{"index":13,"task":"t6","resource":"r0","start":4,"cost":5},{"index":14,"task":"t7","resource":"r0","start":4,"cost":2},{"index":15,"task":"t7","resource":"r0","start":1,"cost":5}],"conflicts":[{"i":0,"j":12,"reasons":["resource"]},{"i":0,"j":15,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":2,"j":11,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":8,"reasons":["resource"]},{"i":6,"j":9,"reasons":["resource"]},{"i":6,"j":11,"reasons":["resource"]},{"i":7,"j":10,"reasons":["resource"]},{"i":7,"j":13,"reasons":["resource"]},{"i":7,"j":14,"reasons":["resource"]},{"i":9,"j":11,"reasons":["resource","group"]},{"i":10,"j":13,"reasons":["resource"]},{"i":10,"j":14,"reasons":["resource"]},{"i":12,"j":15,"reasons":["resource","group"]},{"i":13,"j":14,"reasons":["resource","group"]}]}]},"diagnostic_seconds":0.06774270499590784}
+{"input":{"file":"evaluation-n8-d2.json","split":"evaluation","tasks":8,"density_parameter":2,"data_seed":20261004,"sha256":"829ea1e178a972a60b33f01009260d9577a71277b317cd63e6abab4823d5f8f2"},"model":{"qubits":16,"penalty":39,"objective_bound":38,"offset":312,"linear":[-34,-32,-39,-31,-35,-34,-39,-36,-38,-38,-35,-37,-35,-34,-37,-34],"quadratic":[[0,1,78],[0,12,39],[0,15,39],[1,5,39],[2,3,78],[2,6,39],[2,9,39],[2,11,39],[3,4,39],[3,8,39],[4,5,78],[4,8,39],[6,7,78],[6,9,39],[6,11,39],[7,10,39],[7,13,39],[7,14,39],[8,9,78],[9,11,39],[10,11,78],[10,13,39],[10,14,39],[12,13,78],[12,15,39],[13,14,39],[14,15,78]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":5},{"index":1,"task":"t0","resource":"r0","start":2,"cost":7},{"index":2,"task":"t1","resource":"r0","start":5,"cost":0},{"index":3,"task":"t1","resource":"r0","start":3,"cost":8},{"index":4,"task":"t2","resource":"r0","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":4,"cost":3},{"index":8,"task":"t4","resource":"r0","start":3,"cost":1},{"index":9,"task":"t4","resource":"r0","start":5,"cost":1},{"index":10,"task":"t5","resource":"r0","start":4,"cost":4},{"index":11,"task":"t5","resource":"r0","start":5,"cost":2},{"index":12,"task":"t6","resource":"r0","start":1,"cost":4},{"index":13,"task":"t6","resource":"r0","start":4,"cost":5},{"index":14,"task":"t7","resource":"r0","start":4,"cost":2},{"index":15,"task":"t7","resource":"r0","start":1,"cost":5}],"conflicts":[{"i":0,"j":12,"reasons":["resource"]},{"i":0,"j":15,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":2,"j":11,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":8,"reasons":["resource"]},{"i":6,"j":9,"reasons":["resource"]},{"i":6,"j":11,"reasons":["resource"]},{"i":7,"j":10,"reasons":["resource"]},{"i":7,"j":13,"reasons":["resource"]},{"i":7,"j":14,"reasons":["resource"]},{"i":9,"j":11,"reasons":["resource","group"]},{"i":10,"j":13,"reasons":["resource"]},{"i":10,"j":14,"reasons":["resource"]},{"i":12,"j":15,"reasons":["resource","group"]},{"i":13,"j":14,"reasons":["resource","group"]}]},"quantum":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":21,"violation_count":3,"violations":[{"kind":"conflict","tasks":["t0","t6"],"variables":[0,12],"reasons":["resource"]},{"kind":"conflict","tasks":["t1","t3"],"variables":[2,6],"reasons":["resource"]},{"kind":"conflict","tasks":["t5","t7"],"variables":[10,14],"reasons":["resource"]}],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":12,"task":"t6","group":"g3","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":10,"task":"t5","group":"g2","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":14,"task":"t7","group":"g3","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false}],"bits":[1,0,1,0,0,1,1,0,1,0,1,0,1,0,1,0],"qubo_energy":138},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.262221867112713,0.8008848651878576],"expected_energy":213.24902831646244,"initial_expected_energy":220.25875078159692,"history":[220.25875078159692,213.834014203509,214.7792655013466,216.403168462066,218.8058969421153,214.00817692855145,213.29731924484759,213.24997835425856,213.25674697797007,213.24916516797182,213.25385747474746,213.2490328765322,213.24959497916973,213.24904268146835,213.2491582956953,213.24909515145413,213.24906851165093,213.2490285928651,213.24903389288622,213.24902864489218,213.24903055036881,213.24902872638503,213.24902911132216,213.24902842994777,213.24902839448916,213.24902837849083,213.24902848820744,213.249028362708,213.24902837197092,213.24902838372287,213.24902836101342,213.2490283721808,213.249028357473,213.24902835434136,213.2490283487639,213.24902834001446,213.24902836206337,213.24902836495272,213.24902833881228,213.24902833647565,213.24902833213696,213.2490283252648,213.24902833536413,213.24902834021117,213.24902832418223,213.24902833223587,213.24902832360783,213.249028322814,213.24902832507166,213.24902832204182,213.24902832145156,213.2490283202056,213.24902831808873,213.24902832822465,213.249028324001,213.24902831767082,213.24902831965258,213.2490283175836,213.24902831707914,213.24902831646244,220.56065736540694,213.42466885427558,213.24989338132252,213.32879759620553,213.4534673539427,213.25240850562005,213.3852394785003,213.25113287141008,213.25126794902314,213.252641049064,213.24956506973484,213.25022567049672,213.249361405132,213.24909158915662,213.2490311165187,213.2491011583974,213.24903705127508,213.2490305959794,213.24903201978495,213.2490319521865,213.2490291144666,213.24902933423274,213.24902924389593,213.2490292445953,213.24902908493635,213.2490290416849,213.24902899981754,213.2490290001005,213.24902897015096,213.24902896166304,213.24902903569497,213.24902890670822,213.24902886959046,213.2490288305297,213.24902877143097,213.24902874128594,213.24902855793448,213.24902890819243,213.24902883006507,213.24902861186436,213.24902857318676,213.24902856007242,213.24902857023488,213.24902854085775,213.24902853454327,213.24902860120022,213.24902849873408,213.24902849076884,213.24902846403913,213.24902843173808,213.24902839650912,213.24902836051518,213.24902883180852,213.24902836419363,213.249028360203,213.24902842107815,213.24902833775207,213.24902835477155,213.24902833518578,213.24902833913964],"feasible_probability":0.0,"one_hot_probability":1.0000000000000004,"sampled_feasible_fraction":0.0,"counts":{"0101010101010101":1,"0101010101010110":3,"0101010101011001":1,"0101010101100101":1,"0101010101100110":4,"0101010101101010":1,"0101010110010101":2,"0101010110010110":1,"0101010110011010":1,"0101010110100101":4,"0101010110100110":2,"0101010110101010":2,"0101011001010110":2,"0101011001011001":1,"0101011001011010":2,"0101011001100101":1,"0101011001101001":2,"0101011001101010":3,"0101011010010101":2,"0101011010010110":3,"0101011010011001":2,"0101011010011010":8,"0101011010100101":6,"0101011010100110":3,"0101011010101010":2,"0101100101010101":2,"0101100101010110":3,"0101100101011001":5,"0101100101011010":2,"0101100101100101":2,"0101100101100110":1,"0101100101101001":1,"0101100101101010":1,"0101100110010101":5,"0101100110010110":2,"0101100110011001":2,"0101100110011010":1,"0101100110100101":3,"0101100110100110":1,"0101100110101001":2,"0101100110101010":2,"0101101001010101":2,"0101101001010110":4,"0101101001011001":3,"0101101001011010":1,"0101101001100101":5,"0101101001100110":2,"0101101001101001":3,"0101101001101010":2,"0101101010010101":3,"0101101010010110":1,"0101101010011001":2,"0101101010011010":2,"0101101010100101":1,"0101101010100110":2,"0101101010101001":1,"0101101010101010":1,"0110010101010101":1,"0110010101010110":2,"0110010101011001":1,"0110010101011010":1,"0110010101100101":1,"0110010101100110":4,"0110010101101001":1,"0110010101101010":2,"0110010110010101":1,"0110010110010110":2,"0110010110011001":1,"0110010110011010":1,"0110010110100101":1,"0110010110100110":3,"0110010110101001":2,"0110010110101010":2,"0110011001010101":2,"0110011001010110":2,"0110011001011001":1,"0110011001011010":1,"0110011001100101":1,"0110011001101001":1,"0110011001101010":1,"0110011010010101":1,"0110011010010110":2,"0110011010011001":3,"0110011010011010":1,"0110011010100101":4,"0110011010100110":2,"0110011010101001":3,"0110011010101010":1,"0110100101010101":3,"0110100101010110":1,"0110100101011001":2,"0110100101011010":5,"0110100101100101":2,"0110100101100110":3,"0110100101101010":4,"0110100110010101":3,"0110100110010110":1,"0110100110011001":1,"0110100110011010":2,"0110100110100101":3,"0110100110100110":1,"0110100110101001":2,"0110100110101010":3,"0110101001010101":6,"0110101001010110":4,"0110101001011001":4,"0110101001011010":2,"0110101001100101":4,"0110101001100110":2,"0110101001101010":1,"0110101010010101":3,"0110101010010110":1,"0110101010011001":2,"0110101010011010":4,"0110101010100101":3,"0110101010100110":3,"0110101010101001":1,"1001010101010101":1,"1001010101010110":1,"1001010101011001":3,"1001010101011010":2,"1001010101100110":3,"1001010101101001":4,"1001010110010101":3,"1001010110010110":4,"1001010110011001":4,"1001010110011010":1,"1001010110100101":4,"1001010110100110":3,"1001010110101001":1,"1001010110101010":1,"1001011001010101":4,"1001011001010110":1,"1001011001011010":1,"1001011001100101":4,"1001011001100110":2,"1001011001101001":3,"1001011001101010":4,"1001011010010101":1,"1001011010010110":3,"1001011010011001":1,"1001011010011010":2,"1001011010100101":2,"1001011010100110":1,"1001011010101001":2,"1001011010101010":3,"1001100101010101":1,"1001100101011001":4,"1001100101011010":1,"1001100101100110":1,"1001100101101001":3,"1001100101101010":2,"1001100110010101":2,"1001100110011001":2,"1001100110011010":7,"1001100110100101":1,"1001100110100110":3,"1001100110101001":4,"1001100110101010":5,"1001101001010101":1,"1001101001010110":2,"1001101001011001":1,"1001101001011010":1,"1001101001100101":4,"1001101001100110":1,"1001101001101001":3,"1001101001101010":2,"1001101010010101":3,"1001101010010110":4,"1001101010011001":5,"1001101010011010":1,"1001101010100101":2,"1001101010100110":3,"1001101010101010":2,"1010010101010101":1,"1010010101010110":1,"1010010101011001":3,"1010010101011010":1,"1010010101100110":3,"1010010101101001":1,"1010010101101010":3,"1010010110010101":4,"1010010110011001":1,"1010010110011010":2,"1010010110100110":2,"1010010110101001":2,"1010010110101010":1,"1010011001010101":1,"1010011001010110":3,"1010011001011001":3,"1010011001011010":3,"1010011001100101":2,"1010011001101001":2,"1010011001101010":2,"1010011010010101":4,"1010011010010110":2,"1010011010011001":2,"1010011010011010":1,"1010011010100101":1,"1010011010100110":1,"1010011010101001":1,"1010011010101010":2,"1010100101010101":3,"1010100101010110":3,"1010100101011001":3,"1010100101100101":4,"1010100101101001":1,"1010100101101010":1,"1010100110010110":2,"1010100110011001":1,"1010100110011010":2,"1010100110100101":1,"1010100110100110":3,"1010100110101001":1,"1010100110101010":3,"1010101001010101":2,"1010101001010110":2,"1010101001011001":1,"1010101001011010":1,"1010101001100110":4,"1010101001101001":1,"1010101001101010":1,"1010101010010110":5,"1010101010011001":1,"1010101010011010":2,"1010101010100101":5,"1010101010100110":2,"1010101010101001":2,"1010101010101010":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":1.2757996209984412},"metrics":{"exact_objective":null,"optimal_count":0,"combinations":256,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":17,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":27,"runtime_seconds":0.0013811569951940328},"exact":{"status":"infeasible","best":null,"combinations":256,"feasible_count":0,"runtime_seconds":0.00355522999598179},"greedy":{"status":"dead_end","best":null,"runtime_seconds":5.5792988860048354e-05},"resources":{"full":{"depth":34,"operations":{"RX":40,"I":16,"RZ":51,"CNOT":78,"CRY":8,"X":8},"cnot":78,"cry":8},"auto":{"depth":25,"operations":{"RX":40,"I":16,"RZ":43,"CNOT":62,"CRY":8,"X":8},"cnot":62,"cry":8}},"phase_max_probability_error":1.0408340855860843e-17,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":null,"uniform_objective":null},{"shots":64,"quantum_objective":null,"uniform_objective":null},{"shots":128,"quantum_objective":null,"uniform_objective":null},{"shots":512,"quantum_objective":null,"uniform_objective":null}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":16,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[16],"max_component_qubits":16,"component_to_original":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]],"components":[{"qubits":16,"penalty":39,"objective_bound":38,"offset":312,"linear":[-34,-32,-39,-31,-35,-34,-39,-36,-38,-38,-35,-37,-35,-34,-37,-34],"quadratic":[[0,1,78],[0,12,39],[0,15,39],[1,5,39],[2,3,78],[2,6,39],[2,9,39],[2,11,39],[3,4,39],[3,8,39],[4,5,78],[4,8,39],[6,7,78],[6,9,39],[6,11,39],[7,10,39],[7,13,39],[7,14,39],[8,9,78],[9,11,39],[10,11,78],[10,13,39],[10,14,39],[12,13,78],[12,15,39],[13,14,39],[14,15,78]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":5},{"index":1,"task":"t0","resource":"r0","start":2,"cost":7},{"index":2,"task":"t1","resource":"r0","start":5,"cost":0},{"index":3,"task":"t1","resource":"r0","start":3,"cost":8},{"index":4,"task":"t2","resource":"r0","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":4,"cost":3},{"index":8,"task":"t4","resource":"r0","start":3,"cost":1},{"index":9,"task":"t4","resource":"r0","start":5,"cost":1},{"index":10,"task":"t5","resource":"r0","start":4,"cost":4},{"index":11,"task":"t5","resource":"r0","start":5,"cost":2},{"index":12,"task":"t6","resource":"r0","start":1,"cost":4},{"index":13,"task":"t6","resource":"r0","start":4,"cost":5},{"index":14,"task":"t7","resource":"r0","start":4,"cost":2},{"index":15,"task":"t7","resource":"r0","start":1,"cost":5}],"conflicts":[{"i":0,"j":12,"reasons":["resource"]},{"i":0,"j":15,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":2,"j":11,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":8,"reasons":["resource"]},{"i":6,"j":9,"reasons":["resource"]},{"i":6,"j":11,"reasons":["resource"]},{"i":7,"j":10,"reasons":["resource"]},{"i":7,"j":13,"reasons":["resource"]},{"i":7,"j":14,"reasons":["resource"]},{"i":9,"j":11,"reasons":["resource","group"]},{"i":10,"j":13,"reasons":["resource"]},{"i":10,"j":14,"reasons":["resource"]},{"i":12,"j":15,"reasons":["resource","group"]},{"i":13,"j":14,"reasons":["resource","group"]}]}]},"diagnostic_seconds":0.06552443199325353}
+{"input":{"file":"evaluation-n8-d2.json","split":"evaluation","tasks":8,"density_parameter":2,"data_seed":20261004,"sha256":"829ea1e178a972a60b33f01009260d9577a71277b317cd63e6abab4823d5f8f2"},"model":{"qubits":16,"penalty":39,"objective_bound":38,"offset":312,"linear":[-34,-32,-39,-31,-35,-34,-39,-36,-38,-38,-35,-37,-35,-34,-37,-34],"quadratic":[[0,1,78],[0,12,39],[0,15,39],[1,5,39],[2,3,78],[2,6,39],[2,9,39],[2,11,39],[3,4,39],[3,8,39],[4,5,78],[4,8,39],[6,7,78],[6,9,39],[6,11,39],[7,10,39],[7,13,39],[7,14,39],[8,9,78],[9,11,39],[10,11,78],[10,13,39],[10,14,39],[12,13,78],[12,15,39],[13,14,39],[14,15,78]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":5},{"index":1,"task":"t0","resource":"r0","start":2,"cost":7},{"index":2,"task":"t1","resource":"r0","start":5,"cost":0},{"index":3,"task":"t1","resource":"r0","start":3,"cost":8},{"index":4,"task":"t2","resource":"r0","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":4,"cost":3},{"index":8,"task":"t4","resource":"r0","start":3,"cost":1},{"index":9,"task":"t4","resource":"r0","start":5,"cost":1},{"index":10,"task":"t5","resource":"r0","start":4,"cost":4},{"index":11,"task":"t5","resource":"r0","start":5,"cost":2},{"index":12,"task":"t6","resource":"r0","start":1,"cost":4},{"index":13,"task":"t6","resource":"r0","start":4,"cost":5},{"index":14,"task":"t7","resource":"r0","start":4,"cost":2},{"index":15,"task":"t7","resource":"r0","start":1,"cost":5}],"conflicts":[{"i":0,"j":12,"reasons":["resource"]},{"i":0,"j":15,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":2,"j":11,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":8,"reasons":["resource"]},{"i":6,"j":9,"reasons":["resource"]},{"i":6,"j":11,"reasons":["resource"]},{"i":7,"j":10,"reasons":["resource"]},{"i":7,"j":13,"reasons":["resource"]},{"i":7,"j":14,"reasons":["resource"]},{"i":9,"j":11,"reasons":["resource","group"]},{"i":10,"j":13,"reasons":["resource"]},{"i":10,"j":14,"reasons":["resource"]},{"i":12,"j":15,"reasons":["resource","group"]},{"i":13,"j":14,"reasons":["resource","group"]}]},"quantum":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":21,"violation_count":3,"violations":[{"kind":"conflict","tasks":["t0","t6"],"variables":[0,12],"reasons":["resource"]},{"kind":"conflict","tasks":["t1","t3"],"variables":[2,6],"reasons":["resource"]},{"kind":"conflict","tasks":["t5","t7"],"variables":[10,14],"reasons":["resource"]}],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":12,"task":"t6","group":"g3","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":10,"task":"t5","group":"g2","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":14,"task":"t7","group":"g3","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false}],"bits":[1,0,1,0,0,1,1,0,1,0,1,0,1,0,1,0],"qubo_energy":138},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.516112203219349,3.1617063272823196],"expected_energy":213.13528132720486,"initial_expected_energy":218.75132359747445,"history":[218.75132359747445,214.05243283786942,213.7562845568612,213.71074624869652,218.5850256163949,217.76847484392823,213.35569539298365,214.73659664854353,213.3826819804064,213.25503526078236,213.40971937181354,213.26374732172428,213.2646138151125,213.25009844830493,213.26027850919252,213.2500968105469,213.25379759436004,213.2496281661169,213.25239101909617,213.24941562777497,213.24943989364078,213.24939534969275,213.24937923209072,213.24939687988035,213.24937098036315,213.24939107860627,213.2493682000508,213.24936409236,213.24935763959246,213.2494058242471,213.24935333154139,213.24935088143204,213.24935380098287,213.24934640891868,213.24934345764083,213.24934116778513,213.24934424809513,213.24933924478927,213.2493366982182,213.24933181698134,213.24932216086114,213.2493082784526,213.24940430335988,213.24941519481334,213.249303199786,213.24929815619154,213.249295724037,213.24930208086948,213.24929337359526,213.24928984294453,213.24928975674334,213.2492884395777,213.24928721234988,213.24928512253945,213.24928458724003,213.24927622723374,213.24927444751094,213.24926728227467,213.2492586852536,213.24924498486757,242.70244636232445,235.676940673768,214.96328216623544,225.17244136106348,221.9804321481713,213.43358075075042,213.1436933624956,213.66150651448632,213.18049219016612,213.62760437236,213.2940230194086,213.16836387173515,213.14980334585442,213.14434872926392,213.15055129714057,213.14487285438562,213.1440354796561,213.14362763235638,213.14380053321753,213.14348994338246,213.14336050308725,213.14310285192337,213.14260505731033,213.14179472160373,213.14210933444014,213.14688849079337,213.1417824869206,213.14138876892304,213.140781083138,213.13999877461418,213.1401342317945,213.14118232731443,213.14021807107292,213.1398772089746,213.13969752996533,213.13975828893012,213.13957571152096,213.1395822203258,213.13962778556726,213.1394909956731,213.13939742452968,213.13988698844912,213.13922975578043,213.139144983089,213.1390424036895,213.13887646111797,213.13989593534095,213.13878732834797,213.13869279795327,213.13849619884553,213.13808664360866,213.1372142798504,213.13637023986792,213.14335090546993,213.1443997841265,213.13630615499295,213.13553193753057,213.13688742227512,213.1353488401876,213.13528132720486],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"0101010101010101":1,"0101010101010110":3,"0101010101011001":3,"0101010101011010":2,"0101010101100101":3,"0101010101100110":2,"0101010101101001":2,"0101010101101010":3,"0101010110010101":2,"0101010110010110":4,"0101010110011001":2,"0101010110011010":2,"0101010110100101":3,"0101010110100110":1,"0101010110101010":4,"0101011001010101":1,"0101011001010110":1,"0101011001011010":3,"0101011001100110":1,"0101011001101001":1,"0101011001101010":2,"0101011010010101":2,"0101011010010110":2,"0101011010011001":2,"0101011010011010":4,"0101011010100101":1,"0101011010100110":1,"0101011010101001":2,"0101100101010101":3,"0101100101010110":2,"0101100101011001":2,"0101100101011010":2,"0101100101100101":2,"0101100101100110":1,"0101100101101001":2,"0101100101101010":1,"0101100110011001":2,"0101100110100101":4,"0101100110100110":2,"0101100110101001":4,"0101100110101010":1,"0101101001010101":1,"0101101001010110":1,"0101101001011001":3,"0101101001011010":2,"0101101001100101":3,"0101101001101001":1,"0101101001101010":1,"0101101010010101":2,"0101101010010110":4,"0101101010011010":1,"0101101010100110":1,"0101101010101001":3,"0101101010101010":4,"0110010101010101":1,"0110010101010110":1,"0110010101011001":5,"0110010101011010":2,"0110010101100101":3,"0110010101100110":3,"0110010101101001":1,"0110010101101010":3,"0110010110010101":1,"0110010110010110":3,"0110010110011001":3,"0110010110011010":2,"0110010110100101":3,"0110010110100110":2,"0110010110101001":1,"0110010110101010":2,"0110011001010101":6,"0110011001010110":1,"0110011001011001":2,"0110011001100101":2,"0110011001100110":2,"0110011001101001":1,"0110011010010101":1,"0110011010010110":2,"0110011010011010":1,"0110011010100101":2,"0110011010100110":2,"0110011010101010":1,"0110100101010101":5,"0110100101010110":4,"0110100101011001":3,"0110100101011010":3,"0110100101100101":1,"0110100101100110":4,"0110100101101010":1,"0110100110010110":4,"0110100110011001":1,"0110100110011010":1,"0110100110100101":2,"0110100110100110":1,"0110100110101001":4,"0110100110101010":4,"0110101001010101":1,"0110101001010110":2,"0110101001011001":2,"0110101001011010":1,"0110101001100110":4,"0110101001101001":2,"0110101001101010":2,"0110101010010101":4,"0110101010011001":2,"0110101010011010":5,"0110101010100101":1,"0110101010101001":4,"0110101010101010":3,"1001010101010101":4,"1001010101010110":3,"1001010101011001":3,"1001010101011010":1,"1001010101100101":1,"1001010101100110":4,"1001010101101001":2,"1001010101101010":3,"1001010110010101":1,"1001010110010110":1,"1001010110011001":1,"1001010110011010":2,"1001010110100101":2,"1001010110101001":1,"1001011001010101":1,"1001011001010110":2,"1001011001011010":6,"1001011001100101":1,"1001011001101001":2,"1001011001101010":1,"1001011010010101":2,"1001011010011001":2,"1001011010011010":4,"1001011010100101":4,"1001011010100110":3,"1001011010101001":1,"1001011010101010":4,"1001100101010110":1,"1001100101011001":2,"1001100101011010":4,"1001100101100110":2,"1001100101101001":3,"1001100101101010":1,"1001100110010101":1,"1001100110010110":4,"1001100110011001":3,"1001100110011010":6,"1001100110100101":1,"1001100110100110":2,"1001100110101001":1,"1001100110101010":1,"1001101001010101":3,"1001101001011001":2,"1001101001011010":2,"1001101001100101":4,"1001101001100110":4,"1001101001101001":4,"1001101001101010":2,"1001101010010101":2,"1001101010010110":2,"1001101010011001":1,"1001101010011010":3,"1001101010100101":1,"1001101010101001":5,"1001101010101010":1,"1010010101010110":2,"1010010101011001":4,"1010010101011010":6,"1010010101100101":1,"1010010101100110":2,"1010010101101001":1,"1010010101101010":6,"1010010110010101":1,"1010010110010110":2,"1010010110011001":1,"1010010110100101":2,"1010010110100110":1,"1010010110101010":1,"1010011001010110":2,"1010011001011001":5,"1010011001011010":2,"1010011001100101":3,"1010011001100110":3,"1010011001101010":4,"1010011010010101":3,"1010011010010110":1,"1010011010011001":3,"1010011010011010":1,"1010011010100101":2,"1010011010101001":2,"1010100101010101":2,"1010100101010110":2,"1010100101011001":3,"1010100101011010":1,"1010100101100101":1,"1010100101100110":5,"1010100101101001":2,"1010100110010101":2,"1010100110010110":1,"1010100110011001":1,"1010100110011010":5,"1010100110100101":1,"1010100110100110":1,"1010100110101001":2,"1010100110101010":3,"1010101001010101":2,"1010101001010110":1,"1010101001011001":2,"1010101001011010":1,"1010101001100101":2,"1010101001100110":2,"1010101001101001":5,"1010101001101010":4,"1010101010010101":2,"1010101010010110":5,"1010101010011001":2,"1010101010011010":3,"1010101010100101":2,"1010101010100110":2,"1010101010101001":5,"1010101010101010":4},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":1.2343268200056627},"metrics":{"exact_objective":null,"optimal_count":0,"combinations":256,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":17,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":27,"runtime_seconds":0.0013811569951940328},"exact":{"status":"infeasible","best":null,"combinations":256,"feasible_count":0,"runtime_seconds":0.00355522999598179},"greedy":{"status":"dead_end","best":null,"runtime_seconds":5.5792988860048354e-05},"resources":{"full":{"depth":34,"operations":{"RX":40,"I":16,"RZ":51,"CNOT":78,"CRY":8,"X":8},"cnot":78,"cry":8},"auto":{"depth":25,"operations":{"RX":40,"I":16,"RZ":43,"CNOT":62,"CRY":8,"X":8},"cnot":62,"cry":8}},"phase_max_probability_error":1.1275702593849246e-17,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":null,"uniform_objective":null},{"shots":64,"quantum_objective":null,"uniform_objective":null},{"shots":128,"quantum_objective":null,"uniform_objective":null},{"shots":512,"quantum_objective":null,"uniform_objective":null}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":16,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[16],"max_component_qubits":16,"component_to_original":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]],"components":[{"qubits":16,"penalty":39,"objective_bound":38,"offset":312,"linear":[-34,-32,-39,-31,-35,-34,-39,-36,-38,-38,-35,-37,-35,-34,-37,-34],"quadratic":[[0,1,78],[0,12,39],[0,15,39],[1,5,39],[2,3,78],[2,6,39],[2,9,39],[2,11,39],[3,4,39],[3,8,39],[4,5,78],[4,8,39],[6,7,78],[6,9,39],[6,11,39],[7,10,39],[7,13,39],[7,14,39],[8,9,78],[9,11,39],[10,11,78],[10,13,39],[10,14,39],[12,13,78],[12,15,39],[13,14,39],[14,15,78]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":5},{"index":1,"task":"t0","resource":"r0","start":2,"cost":7},{"index":2,"task":"t1","resource":"r0","start":5,"cost":0},{"index":3,"task":"t1","resource":"r0","start":3,"cost":8},{"index":4,"task":"t2","resource":"r0","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":4,"cost":3},{"index":8,"task":"t4","resource":"r0","start":3,"cost":1},{"index":9,"task":"t4","resource":"r0","start":5,"cost":1},{"index":10,"task":"t5","resource":"r0","start":4,"cost":4},{"index":11,"task":"t5","resource":"r0","start":5,"cost":2},{"index":12,"task":"t6","resource":"r0","start":1,"cost":4},{"index":13,"task":"t6","resource":"r0","start":4,"cost":5},{"index":14,"task":"t7","resource":"r0","start":4,"cost":2},{"index":15,"task":"t7","resource":"r0","start":1,"cost":5}],"conflicts":[{"i":0,"j":12,"reasons":["resource"]},{"i":0,"j":15,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":2,"j":11,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":8,"reasons":["resource"]},{"i":6,"j":9,"reasons":["resource"]},{"i":6,"j":11,"reasons":["resource"]},{"i":7,"j":10,"reasons":["resource"]},{"i":7,"j":13,"reasons":["resource"]},{"i":7,"j":14,"reasons":["resource"]},{"i":9,"j":11,"reasons":["resource","group"]},{"i":10,"j":13,"reasons":["resource"]},{"i":10,"j":14,"reasons":["resource"]},{"i":12,"j":15,"reasons":["resource","group"]},{"i":13,"j":14,"reasons":["resource","group"]}]}]},"diagnostic_seconds":0.06835843999579083}
+{"input":{"file":"evaluation-n8-d2.json","split":"evaluation","tasks":8,"density_parameter":2,"data_seed":20261004,"sha256":"829ea1e178a972a60b33f01009260d9577a71277b317cd63e6abab4823d5f8f2"},"model":{"qubits":16,"penalty":39,"objective_bound":38,"offset":312,"linear":[-34,-32,-39,-31,-35,-34,-39,-36,-38,-38,-35,-37,-35,-34,-37,-34],"quadratic":[[0,1,78],[0,12,39],[0,15,39],[1,5,39],[2,3,78],[2,6,39],[2,9,39],[2,11,39],[3,4,39],[3,8,39],[4,5,78],[4,8,39],[6,7,78],[6,9,39],[6,11,39],[7,10,39],[7,13,39],[7,14,39],[8,9,78],[9,11,39],[10,11,78],[10,13,39],[10,14,39],[12,13,78],[12,15,39],[13,14,39],[14,15,78]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":5},{"index":1,"task":"t0","resource":"r0","start":2,"cost":7},{"index":2,"task":"t1","resource":"r0","start":5,"cost":0},{"index":3,"task":"t1","resource":"r0","start":3,"cost":8},{"index":4,"task":"t2","resource":"r0","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":4,"cost":3},{"index":8,"task":"t4","resource":"r0","start":3,"cost":1},{"index":9,"task":"t4","resource":"r0","start":5,"cost":1},{"index":10,"task":"t5","resource":"r0","start":4,"cost":4},{"index":11,"task":"t5","resource":"r0","start":5,"cost":2},{"index":12,"task":"t6","resource":"r0","start":1,"cost":4},{"index":13,"task":"t6","resource":"r0","start":4,"cost":5},{"index":14,"task":"t7","resource":"r0","start":4,"cost":2},{"index":15,"task":"t7","resource":"r0","start":1,"cost":5}],"conflicts":[{"i":0,"j":12,"reasons":["resource"]},{"i":0,"j":15,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":2,"j":11,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":8,"reasons":["resource"]},{"i":6,"j":9,"reasons":["resource"]},{"i":6,"j":11,"reasons":["resource"]},{"i":7,"j":10,"reasons":["resource"]},{"i":7,"j":13,"reasons":["resource"]},{"i":7,"j":14,"reasons":["resource"]},{"i":9,"j":11,"reasons":["resource","group"]},{"i":10,"j":13,"reasons":["resource"]},{"i":10,"j":14,"reasons":["resource"]},{"i":12,"j":15,"reasons":["resource","group"]},{"i":13,"j":14,"reasons":["resource","group"]}]},"quantum":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":21,"violation_count":3,"violations":[{"kind":"conflict","tasks":["t0","t6"],"variables":[0,12],"reasons":["resource"]},{"kind":"conflict","tasks":["t1","t3"],"variables":[2,6],"reasons":["resource"]},{"kind":"conflict","tasks":["t5","t7"],"variables":[10,14],"reasons":["resource"]}],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":12,"task":"t6","group":"g3","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":10,"task":"t5","group":"g2","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":14,"task":"t7","group":"g3","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false}],"bits":[1,0,1,0,0,1,1,0,1,0,1,0,1,0,1,0],"qubo_energy":138},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.209317829965639,2.2303881151544216],"expected_energy":189.3306235044694,"initial_expected_energy":240.42030164135963,"history":[240.42030164135963,223.4049485144231,218.6414518381735,213.17855860718953,215.65471317826132,216.90676964118651,213.53397820886977,216.10492410300054,213.2647122729178,213.59897172659842,213.1943713534402,213.20424841927328,213.1793021565495,213.1854833438119,213.1805668290171,213.18021349279746,213.17838232440226,213.17802898794662,213.17815249210534,213.17786077930603,213.17777235096656,213.177885815416,213.17758995592203,213.1774110220169,213.17705470059772,213.17634261893036,213.1749205312303,213.1721306255696,213.16814934166817,213.18249809242462,213.19219070121613,213.16743605150836,213.16612403475708,213.1681137127748,213.16739154890007,213.166383297179,213.16560105250622,213.16560704310626,213.1654325431893,213.16526604297133,213.16493650652677,213.16429310139853,213.1631632570966,213.17190318025305,213.16407713164347,213.16299467232213,213.16484035243747,213.1626703496523,213.16227180586634,213.16200332607764,213.1623441554005,213.16183866055707,213.1616725295926,213.1614119200261,213.16086801955575,213.16022402575587,213.15886737306056,213.15629290304327,213.1511358902598,213.14325066567517,261.9961964715404,243.52848225516462,220.83721363353754,235.71273224793072,242.99767790309642,213.0903405217726,217.685152471396,213.41819436099294,213.38795623238425,213.00722382036622,215.564656436492,212.57217702427258,212.71139269777726,212.53095242228738,212.58704074956023,212.51419872444148,212.47125570457607,212.4077338941152,212.73663272234367,212.3209322707338,212.22763014722915,212.05353263189954,212.32781465733473,211.9051596485018,211.70089188984025,211.32200095327022,211.8970160162467,210.817684281994,210.84744492886858,211.44033777164483,210.85129012435453,210.5937585963153,210.25639287115058,209.33864989312934,207.17408179519208,212.3443362498929,209.93179810827132,206.693164381408,208.36742043262134,206.1411243674998,205.59606457795195,205.49661247575145,204.32634955221997,203.5179988684376,202.92207580191447,201.3805762512733,198.22873361994718,194.43084535670533,204.0533695492797,212.28324777883535,193.49581930170442,190.98850451970173,191.84964286765944,191.83391554223422,190.8981429136764,191.4251200582221,190.67945960077952,190.47122833703787,190.07481941202485,189.3306235044694],"feasible_probability":0.0,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.0,"counts":{"0101010101010101":5,"0101010101010110":10,"0101010101011001":2,"0101010101011010":1,"0101010101100101":9,"0101010101100110":4,"0101010101101010":3,"0101010110011001":2,"0101010110101010":1,"0101011001010101":2,"0101011001010110":5,"0101011001011001":2,"0101011001011010":7,"0101011001101001":5,"0101011001101010":4,"0101011010010101":12,"0101011010010110":5,"0101011010100101":6,"0101100101010110":1,"0101100101011010":3,"0101100101101001":2,"0101100101101010":1,"0101100110010101":6,"0101100110010110":10,"0101100110011010":1,"0101100110100101":2,"0101100110100110":3,"0101101001010101":2,"0101101001010110":2,"0101101001100101":1,"0101101001100110":1,"0101101010010101":2,"0101101010010110":3,"0101101010011001":5,"0101101010011010":6,"0101101010101001":9,"0101101010101010":4,"0110010101010101":4,"0110010101100101":4,"0110010101100110":2,"0110010110010101":1,"0110010110010110":2,"0110010110011001":2,"0110010110100110":1,"0110010110101001":2,"0110011001010101":7,"0110011001011001":3,"0110011001101001":3,"0110011010010110":2,"0110011010011001":1,"0110011010101001":2,"0110100101010101":6,"0110100101010110":8,"0110100101011001":1,"0110100101011010":3,"0110100101100101":3,"0110100101100110":1,"0110100101101001":11,"0110100101101010":1,"0110100110010101":4,"0110100110011001":1,"0110100110100101":5,"0110101001011001":4,"0110101001011010":5,"0110101001100101":4,"0110101001101010":1,"0110101010010101":8,"0110101010010110":1,"0110101010011001":5,"0110101010100110":4,"0110101010101001":6,"1001010101010101":3,"1001010101010110":1,"1001010101011001":1,"1001010101100101":2,"1001010101101001":1,"1001010110010110":2,"1001010110011010":4,"1001010110100101":3,"1001010110100110":3,"1001011001010101":1,"1001011001011001":2,"1001011001100110":1,"1001011001101001":1,"1001011001101010":1,"1001011010010101":1,"1001011010010110":7,"1001011010011001":2,"1001011010011010":3,"1001011010100110":3,"1001011010101001":2,"1001011010101010":1,"1001100101010101":3,"1001100101010110":4,"1001100101100101":1,"1001100101101001":1,"1001100110010101":3,"1001100110010110":2,"1001100110100101":1,"1001100110100110":5,"1001100110101010":3,"1001101001010101":1,"1001101001011010":7,"1001101001100110":1,"1001101010010101":1,"1001101010011001":3,"1001101010011010":3,"1001101010101001":5,"1001101010101010":1,"1010010101010101":2,"1010010101010110":11,"1010010101011001":3,"1010010101011010":1,"1010010101100101":7,"1010010101100110":4,"1010010110010110":1,"1010010110011001":2,"1010010110011010":1,"1010010110100101":1,"1010010110100110":1,"1010010110101001":3,"1010010110101010":1,"1010011001010101":2,"1010011001010110":2,"1010011001011001":5,"1010011001011010":5,"1010011001100110":2,"1010011001101001":9,"1010011001101010":1,"1010011010010101":7,"1010011010010110":9,"1010011010011010":1,"1010011010100101":4,"1010011010101001":3,"1010100101010110":1,"1010100101011001":1,"1010100101011010":3,"1010100101101001":1,"1010100101101010":1,"1010100110010101":5,"1010100110010110":5,"1010100110011010":2,"1010100110100101":5,"1010100110100110":2,"1010100110101010":1,"1010101001010101":2,"1010101001010110":1,"1010101001011010":2,"1010101001100110":1,"1010101010010101":5,"1010101010010110":7,"1010101010011001":2,"1010101010011010":9,"1010101010100110":1,"1010101010101001":6,"1010101010101010":4},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":1.2853339799912646},"metrics":{"exact_objective":null,"optimal_count":0,"combinations":256,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":17,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":27,"runtime_seconds":0.0013811569951940328},"exact":{"status":"infeasible","best":null,"combinations":256,"feasible_count":0,"runtime_seconds":0.00355522999598179},"greedy":{"status":"dead_end","best":null,"runtime_seconds":5.5792988860048354e-05},"resources":{"full":{"depth":34,"operations":{"RX":40,"I":16,"RZ":51,"CNOT":78,"CRY":8,"X":8},"cnot":78,"cry":8},"auto":{"depth":25,"operations":{"RX":40,"I":16,"RZ":43,"CNOT":62,"CRY":8,"X":8},"cnot":62,"cry":8}},"phase_max_probability_error":3.122502256758253e-17,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":null,"uniform_objective":null},{"shots":64,"quantum_objective":null,"uniform_objective":null},{"shots":128,"quantum_objective":null,"uniform_objective":null},{"shots":512,"quantum_objective":null,"uniform_objective":null}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":16,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[16],"max_component_qubits":16,"component_to_original":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]],"components":[{"qubits":16,"penalty":39,"objective_bound":38,"offset":312,"linear":[-34,-32,-39,-31,-35,-34,-39,-36,-38,-38,-35,-37,-35,-34,-37,-34],"quadratic":[[0,1,78],[0,12,39],[0,15,39],[1,5,39],[2,3,78],[2,6,39],[2,9,39],[2,11,39],[3,4,39],[3,8,39],[4,5,78],[4,8,39],[6,7,78],[6,9,39],[6,11,39],[7,10,39],[7,13,39],[7,14,39],[8,9,78],[9,11,39],[10,11,78],[10,13,39],[10,14,39],[12,13,78],[12,15,39],[13,14,39],[14,15,78]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":5},{"index":1,"task":"t0","resource":"r0","start":2,"cost":7},{"index":2,"task":"t1","resource":"r0","start":5,"cost":0},{"index":3,"task":"t1","resource":"r0","start":3,"cost":8},{"index":4,"task":"t2","resource":"r0","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":4,"cost":3},{"index":8,"task":"t4","resource":"r0","start":3,"cost":1},{"index":9,"task":"t4","resource":"r0","start":5,"cost":1},{"index":10,"task":"t5","resource":"r0","start":4,"cost":4},{"index":11,"task":"t5","resource":"r0","start":5,"cost":2},{"index":12,"task":"t6","resource":"r0","start":1,"cost":4},{"index":13,"task":"t6","resource":"r0","start":4,"cost":5},{"index":14,"task":"t7","resource":"r0","start":4,"cost":2},{"index":15,"task":"t7","resource":"r0","start":1,"cost":5}],"conflicts":[{"i":0,"j":12,"reasons":["resource"]},{"i":0,"j":15,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":2,"j":11,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":8,"reasons":["resource"]},{"i":6,"j":9,"reasons":["resource"]},{"i":6,"j":11,"reasons":["resource"]},{"i":7,"j":10,"reasons":["resource"]},{"i":7,"j":13,"reasons":["resource"]},{"i":7,"j":14,"reasons":["resource"]},{"i":9,"j":11,"reasons":["resource","group"]},{"i":10,"j":13,"reasons":["resource"]},{"i":10,"j":14,"reasons":["resource"]},{"i":12,"j":15,"reasons":["resource","group"]},{"i":13,"j":14,"reasons":["resource","group"]}]}]},"diagnostic_seconds":0.07092982900212519}
+{"input":{"file":"evaluation-n8-d2.json","split":"evaluation","tasks":8,"density_parameter":2,"data_seed":20261004,"sha256":"829ea1e178a972a60b33f01009260d9577a71277b317cd63e6abab4823d5f8f2"},"model":{"qubits":16,"penalty":39,"objective_bound":38,"offset":312,"linear":[-34,-32,-39,-31,-35,-34,-39,-36,-38,-38,-35,-37,-35,-34,-37,-34],"quadratic":[[0,1,78],[0,12,39],[0,15,39],[1,5,39],[2,3,78],[2,6,39],[2,9,39],[2,11,39],[3,4,39],[3,8,39],[4,5,78],[4,8,39],[6,7,78],[6,9,39],[6,11,39],[7,10,39],[7,13,39],[7,14,39],[8,9,78],[9,11,39],[10,11,78],[10,13,39],[10,14,39],[12,13,78],[12,15,39],[13,14,39],[14,15,78]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":5},{"index":1,"task":"t0","resource":"r0","start":2,"cost":7},{"index":2,"task":"t1","resource":"r0","start":5,"cost":0},{"index":3,"task":"t1","resource":"r0","start":3,"cost":8},{"index":4,"task":"t2","resource":"r0","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":4,"cost":3},{"index":8,"task":"t4","resource":"r0","start":3,"cost":1},{"index":9,"task":"t4","resource":"r0","start":5,"cost":1},{"index":10,"task":"t5","resource":"r0","start":4,"cost":4},{"index":11,"task":"t5","resource":"r0","start":5,"cost":2},{"index":12,"task":"t6","resource":"r0","start":1,"cost":4},{"index":13,"task":"t6","resource":"r0","start":4,"cost":5},{"index":14,"task":"t7","resource":"r0","start":4,"cost":2},{"index":15,"task":"t7","resource":"r0","start":1,"cost":5}],"conflicts":[{"i":0,"j":12,"reasons":["resource"]},{"i":0,"j":15,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":2,"j":11,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":8,"reasons":["resource"]},{"i":6,"j":9,"reasons":["resource"]},{"i":6,"j":11,"reasons":["resource"]},{"i":7,"j":10,"reasons":["resource"]},{"i":7,"j":13,"reasons":["resource"]},{"i":7,"j":14,"reasons":["resource"]},{"i":9,"j":11,"reasons":["resource","group"]},{"i":10,"j":13,"reasons":["resource"]},{"i":10,"j":14,"reasons":["resource"]},{"i":12,"j":15,"reasons":["resource","group"]},{"i":13,"j":14,"reasons":["resource","group"]}]},"quantum":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":21,"violation_count":3,"violations":[{"kind":"conflict","tasks":["t0","t6"],"variables":[0,12],"reasons":["resource"]},{"kind":"conflict","tasks":["t1","t3"],"variables":[2,6],"reasons":["resource"]},{"kind":"conflict","tasks":["t5","t7"],"variables":[10,14],"reasons":["resource"]}],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":12,"task":"t6","group":"g3","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":false},{"variable":5,"task":"t2","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":8,"task":"t4","group":"g2","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":10,"task":"t5","group":"g2","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":14,"task":"t7","group":"g3","resource":"r0","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":2,"task":"t1","group":"g0","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":5,"end":6,"reserved_end":6,"changed":false}],"bits":[1,0,1,0,0,1,1,0,1,0,1,0,1,0,1,0],"qubo_energy":138},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.7082414600427923,1.4093189216449182],"expected_energy":164.90713908126088,"initial_expected_energy":166.1294018906102,"history":[166.1294018906102,187.48504703703023,296.4920585150815,271.6751138703167,260.9837291399242,165.5698864419252,200.71821871721872,165.51819490738905,165.45416828359197,172.056871845633,165.0818208624337,165.85237294802113,165.06339098812313,164.9381462107654,164.91568757902354,164.90997583856333,164.9775078722855,164.9118523076938,164.91357487232352,164.9110627541429,164.90827199946108,164.9076863882619,164.90755098628514,164.90837802353914,164.90745738619995,164.90742232255218,164.90769836884425,164.90736956641325,164.90735770242986,164.9073198673795,164.9072789812315,164.9072324752442,164.90720863664058,164.90803191015527,164.90717932459876,164.90723896447213,164.90719058058687,164.9071609395929,164.90715755534475,164.90717288371377,164.90715392853514,164.9071513360615,164.9071496287103,164.90714764275816,164.90714645263012,164.90715150370897,164.90714537409286,164.9071448871053,164.90714399300555,164.90714273107812,164.90714133650593,164.90713971231315,164.90714039530556,164.9071448286265,164.90713968074712,164.90713908126088,164.90713972750393,164.9071392886222,213.23813495586913,213.2493049784631,221.35337895720903,221.839298637289,220.86747693253125,215.16117089317655,213.23227577506174,213.85849286158376,213.4766378123025,213.43911997194544,213.21087042381117,213.24413723572553,213.21015708744608,213.21263487220776,213.2141416614557,213.21102304454857,213.21045473811682,213.2100508740954,213.2098968825705,213.2098788628171,213.20976749138265,213.20966915167816,213.20956077166653,213.2098761825763,213.20947944374083,213.20935808027966,213.20924237876983,213.20919883818794,213.20890361019912,213.20870742731148,213.20846751587607,213.2079809030459,213.20704968919816,213.20516342386998,213.20161858701914,213.35229414169692,213.24320886820934,213.21873625399022,213.20239298696345,213.20147107821543,213.20295453907,213.20099176599342,213.20083144632855,213.20057630924282,213.2003503673894,213.19990141174458,213.19899395550596,213.1978412357422,213.20283123592117,213.2045324400889,213.1975622659441,213.19668280466442,213.19703188012593,213.196941900446,213.19667044525852,213.19683872246495,213.19653059372015,213.19629271280724,213.19585548068878,213.19693996236128],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"0101010101010101":3,"0101010101010110":8,"0101010101011010":1,"0101010101100101":10,"0101010101100110":5,"0101010101101001":2,"0101010101101010":2,"0101010110011001":1,"0101010110011010":1,"0101010110100101":1,"0101010110100110":1,"0101010110101001":1,"0101010110101010":1,"0101011001010110":4,"0101011001011001":3,"0101011001011010":12,"0101011001101001":10,"0101011001101010":5,"0101011010010101":5,"0101011010010110":3,"0101011010011001":1,"0101011010011010":1,"0101011010100101":2,"0101011010101001":1,"0101011010101010":2,"0101100101010101":1,"0101100101010110":4,"0101100101011001":2,"0101100101011010":5,"0101100101101001":6,"0101100101101010":6,"0101100110010101":4,"0101100110010110":7,"0101100110011010":1,"0101100110100101":7,"0101100110100110":3,"0101100110101001":8,"0101100110101010":4,"0101101001011010":3,"0101101001100101":1,"0101101001101001":2,"0101101001101010":1,"0101101010010101":1,"0101101010010110":3,"0101101010011010":10,"0101101010100101":1,"0101101010101001":9,"0101101010101010":7,"0110010101010101":1,"0110010101010110":1,"0110010110100110":2,"0110011001010101":2,"0110011001011001":1,"0110011001101001":1,"0110011010011010":2,"0110011010100101":1,"0110011010101010":1,"0110100101010101":5,"0110100101010110":4,"0110100101011001":1,"0110100101011010":4,"0110100101100101":3,"0110100101101001":4,"0110100110010101":2,"0110100110101001":1,"0110101001011001":3,"0110101001101001":3,"0110101010010110":1,"0110101010011001":2,"0110101010101001":4,"1001010101010110":6,"1001010101100101":1,"1001010101100110":4,"1001010101101001":1,"1001010101101010":9,"1001010110010110":6,"1001010110100101":1,"1001010110100110":5,"1001010110101010":1,"1001011001010110":2,"1001011001011010":10,"1001011001101010":2,"1001011010010101":1,"1001011010010110":5,"1001011010011010":3,"1001011010100101":1,"1001011010100110":5,"1001011010101001":3,"1001011010101010":9,"1001100101101010":1,"1001100110010110":9,"1001100110100101":1,"1001100110100110":9,"1001100110101001":1,"1001100110101010":5,"1001101001101010":1,"1001101010010110":3,"1001101010011010":6,"1001101010100101":1,"1001101010101010":2,"1010010101010101":5,"1010010101010110":9,"1010010101100101":5,"1010010101100110":6,"1010010101101001":6,"1010010101101010":3,"1010010110010110":2,"1010010110011010":1,"1010010110100101":2,"1010011001010101":1,"1010011001010110":2,"1010011001011001":3,"1010011001011010":8,"1010011001101001":12,"1010011001101010":3,"1010011010010101":3,"1010011010010110":3,"1010011010011001":2,"1010011010100101":3,"1010011010101001":2,"1010100101011010":2,"1010100101101001":5,"1010100101101010":7,"1010100110010101":8,"1010100110010110":9,"1010100110011010":2,"1010100110100101":10,"1010100110100110":10,"1010100110101001":5,"1010100110101010":1,"1010101001011001":1,"1010101001011010":3,"1010101001100101":1,"1010101001101001":2,"1010101001101010":2,"1010101010010101":2,"1010101010010110":2,"1010101010011010":6,"1010101010101001":6,"1010101010101010":2},"circuit_evaluations":118,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":58},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":1.4285685970098712},"metrics":{"exact_objective":null,"optimal_count":0,"combinations":256,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded"},"raw_milp":{"variables":17,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":27,"runtime_seconds":0.0013811569951940328},"exact":{"status":"infeasible","best":null,"combinations":256,"feasible_count":0,"runtime_seconds":0.00355522999598179},"greedy":{"status":"dead_end","best":null,"runtime_seconds":5.5792988860048354e-05},"resources":{"full":{"depth":34,"operations":{"RX":40,"I":16,"RZ":51,"CNOT":78,"CRY":8,"X":8},"cnot":78,"cry":8},"auto":{"depth":25,"operations":{"RX":40,"I":16,"RZ":43,"CNOT":62,"CRY":8,"X":8},"cnot":62,"cry":8}},"phase_max_probability_error":2.42861286636753e-17,"samples":[{"shots":8,"quantum_objective":null,"uniform_objective":null},{"shots":16,"quantum_objective":null,"uniform_objective":null},{"shots":32,"quantum_objective":null,"uniform_objective":null},{"shots":64,"quantum_objective":null,"uniform_objective":null},{"shots":128,"quantum_objective":null,"uniform_objective":null},{"shots":512,"quantum_objective":null,"uniform_objective":null}],"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":16,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[16],"max_component_qubits":16,"component_to_original":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]],"components":[{"qubits":16,"penalty":39,"objective_bound":38,"offset":312,"linear":[-34,-32,-39,-31,-35,-34,-39,-36,-38,-38,-35,-37,-35,-34,-37,-34],"quadratic":[[0,1,78],[0,12,39],[0,15,39],[1,5,39],[2,3,78],[2,6,39],[2,9,39],[2,11,39],[3,4,39],[3,8,39],[4,5,78],[4,8,39],[6,7,78],[6,9,39],[6,11,39],[7,10,39],[7,13,39],[7,14,39],[8,9,78],[9,11,39],[10,11,78],[10,13,39],[10,14,39],[12,13,78],[12,15,39],[13,14,39],[14,15,78]],"domains":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15]],"pruned":[],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":5},{"index":1,"task":"t0","resource":"r0","start":2,"cost":7},{"index":2,"task":"t1","resource":"r0","start":5,"cost":0},{"index":3,"task":"t1","resource":"r0","start":3,"cost":8},{"index":4,"task":"t2","resource":"r0","start":3,"cost":4},{"index":5,"task":"t2","resource":"r0","start":2,"cost":5},{"index":6,"task":"t3","resource":"r0","start":5,"cost":0},{"index":7,"task":"t3","resource":"r0","start":4,"cost":3},{"index":8,"task":"t4","resource":"r0","start":3,"cost":1},{"index":9,"task":"t4","resource":"r0","start":5,"cost":1},{"index":10,"task":"t5","resource":"r0","start":4,"cost":4},{"index":11,"task":"t5","resource":"r0","start":5,"cost":2},{"index":12,"task":"t6","resource":"r0","start":1,"cost":4},{"index":13,"task":"t6","resource":"r0","start":4,"cost":5},{"index":14,"task":"t7","resource":"r0","start":4,"cost":2},{"index":15,"task":"t7","resource":"r0","start":1,"cost":5}],"conflicts":[{"i":0,"j":12,"reasons":["resource"]},{"i":0,"j":15,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":2,"j":9,"reasons":["resource"]},{"i":2,"j":11,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":8,"reasons":["resource"]},{"i":4,"j":8,"reasons":["resource"]},{"i":6,"j":9,"reasons":["resource"]},{"i":6,"j":11,"reasons":["resource"]},{"i":7,"j":10,"reasons":["resource"]},{"i":7,"j":13,"reasons":["resource"]},{"i":7,"j":14,"reasons":["resource"]},{"i":9,"j":11,"reasons":["resource","group"]},{"i":10,"j":13,"reasons":["resource"]},{"i":10,"j":14,"reasons":["resource"]},{"i":12,"j":15,"reasons":["resource","group"]},{"i":13,"j":14,"reasons":["resource","group"]}]}]},"diagnostic_seconds":0.08094989501114469}
diff --git a/Tutorials/LabScheduling/results/enhanced/summary.csv b/Tutorials/LabScheduling/results/enhanced/summary.csv
new file mode 100644
index 00000000..fdd4ffa1
--- /dev/null
+++ b/Tutorials/LabScheduling/results/enhanced/summary.csv
@@ -0,0 +1,121 @@
+instance,seed,qubits,conflicts,exact_status,exact_objective,quantum_objective,greedy_objective,p_opt,p_feasible,uniform_p_opt,hit16,uniform_hit16,cnot_full,cnot_auto,depth_full,depth_auto,phase_max_error,evaluations,quantum_seconds,milp_seconds,exact_seconds
+evaluation-n3-d0.json,0,6,2,optimal,8,8,8,0.2614327980332667,0.9748371961666141,0.125,0.9921613678588294,0.8819329129787512,19,13,19,17,2.220446049250313e-16,120,0.09184456900402438,0.004502966010477394,6.851699436083436e-05
+evaluation-n3-d0.json,1,6,2,optimal,8,8,8,0.26174291587784065,0.9751319926544494,0.125,0.9922138642995674,0.8819329129787512,19,13,19,17,1.6653345369377348e-16,120,0.08878751100564841,0.004502966010477394,6.851699436083436e-05
+evaluation-n3-d0.json,2,6,2,optimal,8,8,8,0.2620056797117026,0.9753921540521534,0.125,0.9922580865638623,0.8819329129787512,19,13,19,17,2.220446049250313e-16,120,0.08747898800356779,0.004502966010477394,6.851699436083436e-05
+evaluation-n3-d0.json,3,6,2,optimal,8,8,8,0.2614503472187389,0.9748421704548531,0.125,0.9921643474029415,0.8819329129787512,19,13,19,17,5.551115123125783e-17,120,0.09022140198794659,0.004502966010477394,6.851699436083436e-05
+evaluation-n3-d0.json,4,6,2,optimal,8,8,8,0.2653995456431184,0.9771014475922252,0.125,0.9928085066699703,0.8819329129787512,19,13,19,17,1.1102230246251565e-16,120,0.09245527700113598,0.004502966010477394,6.851699436083436e-05
+evaluation-n3-d0.json,5,6,2,optimal,8,8,8,0.2612440470070083,0.974625392804533,0.125,0.9921292540224755,0.8819329129787512,19,13,19,17,1.6653345369377348e-16,120,0.09163637198798824,0.004502966010477394,6.851699436083436e-05
+evaluation-n3-d0.json,6,6,2,optimal,8,8,8,0.2958152020794941,0.7103145400422374,0.125,0.9963441672150265,0.8819329129787512,19,13,19,17,2.220446049250313e-16,120,0.09251792100258172,0.004502966010477394,6.851699436083436e-05
+evaluation-n3-d0.json,7,6,2,optimal,8,8,8,0.26157994996609263,0.9749706421556402,0.125,0.9921863188253182,0.8819329129787512,19,13,19,17,1.3877787807814457e-16,120,0.09397686300508212,0.004502966010477394,6.851699436083436e-05
+evaluation-n3-d0.json,8,6,2,optimal,8,8,8,0.26143408993850714,0.9748235918381696,0.125,0.9921615872379095,0.8819329129787512,19,13,19,17,1.6653345369377348e-16,120,0.09181333499145694,0.004502966010477394,6.851699436083436e-05
+evaluation-n3-d0.json,9,6,2,optimal,8,8,8,0.26140880097434704,0.974805549226439,0.125,0.9921572918595271,0.8819329129787512,19,13,19,17,2.220446049250313e-16,120,0.09004280899534933,0.004502966010477394,6.851699436083436e-05
+evaluation-n3-d1.json,0,6,3,optimal,5,5,,0.5513163029630032,0.6878877797733494,0.125,0.9999973019832905,0.8819329129787512,21,15,19,19,1.942890293094024e-16,120,0.09222971499548294,0.0010963259992422536,5.920299736317247e-05
+evaluation-n3-d1.json,1,6,3,optimal,5,5,,0.5464945765855659,0.6924020462119727,0.125,0.9999967987487459,0.8819329129787512,21,15,19,19,8.326672684688674e-17,120,0.0933053420012584,0.0010963259992422536,5.920299736317247e-05
+evaluation-n3-d1.json,2,6,3,optimal,5,5,,0.5454496837929579,0.6929208640332477,0.125,0.9999966786745947,0.8819329129787512,21,15,19,19,1.1102230246251565e-16,120,0.09018810799170751,0.0010963259992422536,5.920299736317247e-05
+evaluation-n3-d1.json,3,6,3,optimal,5,5,,0.5465376407753609,0.6923588718980391,0.125,0.9999968036090593,0.8819329129787512,21,15,19,19,1.6653345369377348e-16,120,0.09045115299522877,0.0010963259992422536,5.920299736317247e-05
+evaluation-n3-d1.json,4,6,3,optimal,5,5,,0.5495819258955149,0.6900499217374824,0.125,0.9999971301912938,0.8819329129787512,21,15,19,19,2.220446049250313e-16,120,0.08799156101304106,0.0010963259992422536,5.920299736317247e-05
+evaluation-n3-d1.json,5,6,3,optimal,5,5,,0.5419509537750821,0.6940308941802624,0.125,0.99999624515745,0.8819329129787512,21,15,19,19,1.1102230246251565e-16,120,0.08604533500329126,0.0010963259992422536,5.920299736317247e-05
+evaluation-n3-d1.json,6,6,3,optimal,5,5,,0.5530857421908109,0.6725371739136137,0.125,0.9999974672789416,0.8819329129787512,21,15,19,19,1.5265566588595902e-16,120,0.08862348301045131,0.0010963259992422536,5.920299736317247e-05
+evaluation-n3-d1.json,7,6,3,optimal,5,5,,0.5446086065929655,0.6932597151041332,0.125,0.9999965789683218,0.8819329129787512,21,15,19,19,1.1102230246251565e-16,120,0.08940487200743519,0.0010963259992422536,5.920299736317247e-05
+evaluation-n3-d1.json,8,6,3,optimal,5,5,,0.5495820626263523,0.6899881537906702,0.125,0.9999971302052325,0.8819329129787512,21,15,19,19,1.6653345369377348e-16,120,0.0911469999991823,0.0010963259992422536,5.920299736317247e-05
+evaluation-n3-d1.json,9,6,3,optimal,5,5,,0.5318416213709359,0.6943879464483694,0.125,0.9999946754267532,0.8819329129787512,21,15,19,19,1.1102230246251565e-16,120,0.09305438799492549,0.0010963259992422536,5.920299736317247e-05
+evaluation-n3-d2.json,0,6,4,optimal,11,11,,0.247290458699881,0.4253369328933362,0.125,0.9893820973659624,0.8819329129787512,23,17,25,20,1.6653345369377348e-16,105,0.07833943000878207,0.001244475002749823,5.5931988754309714e-05
+evaluation-n3-d2.json,1,6,4,optimal,11,11,,0.24729430531657298,0.4253415472726614,0.125,0.9893829655135574,0.8819329129787512,23,17,25,20,1.3877787807814457e-16,107,0.07903428698773496,0.001244475002749823,5.5931988754309714e-05
+evaluation-n3-d2.json,2,6,4,optimal,11,11,,0.2472908614078306,0.42533694380569803,0.125,0.9893821882567277,0.8819329129787512,23,17,25,20,2.220446049250313e-16,114,0.08316879300400615,0.001244475002749823,5.5931988754309714e-05
+evaluation-n3-d2.json,3,6,4,optimal,11,11,,0.24729071671511396,0.4253366764784746,0.125,0.989382155599816,0.8819329129787512,23,17,25,20,1.6653345369377348e-16,93,0.06882384201162495,0.001244475002749823,5.5931988754309714e-05
+evaluation-n3-d2.json,4,6,4,optimal,11,11,,0.05419523134910682,0.28385595827653864,0.125,0.5899621103573566,0.8819329129787512,23,17,25,20,1.1102230246251565e-16,118,0.09146997799689416,0.001244475002749823,5.5931988754309714e-05
+evaluation-n3-d2.json,5,6,4,optimal,11,11,,0.31783436009462646,0.6086089253670168,0.125,0.9978009381246559,0.8819329129787512,23,17,25,20,5.551115123125783e-17,120,0.08892984199337661,0.001244475002749823,5.5931988754309714e-05
+evaluation-n3-d2.json,6,6,4,optimal,11,11,,0.24729302793777916,0.4253419314334759,0.125,0.9893826772277656,0.8819329129787512,23,17,25,20,5.551115123125783e-17,101,0.07662301701202523,0.001244475002749823,5.5931988754309714e-05
+evaluation-n3-d2.json,7,6,4,optimal,11,11,,0.24729162717063713,0.4253408576113461,0.125,0.9893823610865844,0.8819329129787512,23,17,25,20,1.1102230246251565e-16,102,0.07645209999463987,0.001244475002749823,5.5931988754309714e-05
+evaluation-n3-d2.json,8,6,4,optimal,11,11,,0.3032496871284798,0.577804709352304,0.125,0.996915144977993,0.8819329129787512,23,17,25,20,1.3877787807814457e-16,113,0.08401714700448792,0.001244475002749823,5.5931988754309714e-05
+evaluation-n3-d2.json,9,6,4,optimal,11,11,,0.30369608967564926,0.5787273672567317,0.125,0.9969466165611854,0.8819329129787512,23,17,25,20,2.220446049250313e-16,108,0.08025632999488153,0.001244475002749823,5.5931988754309714e-05
+evaluation-n5-d0.json,0,10,4,optimal,14,14,14,0.14888613732585426,0.6826006472445605,0.03125,0.924176709493591,0.3982896965679276,33,23,19,13,6.245004513516506e-17,120,0.1199818029999733,0.001137906001531519,0.00023214900284074247
+evaluation-n5-d0.json,1,10,4,optimal,14,14,14,0.15391007374171398,0.6898178718120321,0.03125,0.931029338977486,0.3982896965679276,33,23,19,13,6.938893903907228e-17,120,0.1220032509882003,0.001137906001531519,0.00023214900284074247
+evaluation-n5-d0.json,2,10,4,optimal,14,14,14,0.15375650706760255,0.6912794720883982,0.03125,0.9308287735321289,0.3982896965679276,33,23,19,13,2.220446049250313e-16,120,0.1287448140064953,0.001137906001531519,0.00023214900284074247
+evaluation-n5-d0.json,3,10,4,optimal,14,14,14,0.15439933176326684,0.6903619461773607,0.03125,0.9316647039880024,0.3982896965679276,33,23,19,13,8.326672684688674e-17,120,0.13007842599472497,0.001137906001531519,0.00023214900284074247
+evaluation-n5-d0.json,4,10,4,optimal,14,14,14,0.15019233115370492,0.6832910928158356,0.03125,0.9260172730594365,0.3982896965679276,33,23,19,13,8.326672684688674e-17,120,0.13068487998680212,0.001137906001531519,0.00023214900284074247
+evaluation-n5-d0.json,5,10,4,optimal,14,14,14,0.15360566390143654,0.683896815326513,0.03125,0.9306312328953271,0.3982896965679276,33,23,19,13,1.1102230246251565e-16,120,0.12346870900364593,0.001137906001531519,0.00023214900284074247
+evaluation-n5-d0.json,6,10,4,optimal,14,14,14,0.07105348656912548,0.6598172328124025,0.03125,0.6924955925837699,0.3982896965679276,33,23,19,13,9.71445146547012e-17,120,0.128270942994277,0.001137906001531519,0.00023214900284074247
+evaluation-n5-d0.json,7,10,4,optimal,14,14,14,0.11073812351617535,0.3715063048106658,0.03125,0.8470763041592233,0.3982896965679276,33,23,19,13,1.1102230246251565e-16,120,0.11623611400136724,0.001137906001531519,0.00023214900284074247
+evaluation-n5-d0.json,8,10,4,optimal,14,14,14,0.1502393752132088,0.6829355076852326,0.03125,0.9260827749986074,0.3982896965679276,33,23,19,13,8.326672684688674e-17,120,0.12447628499649,0.001137906001531519,0.00023214900284074247
+evaluation-n5-d0.json,9,10,4,optimal,14,14,14,0.1540201372801822,0.6863067919577166,0.03125,0.9311727516914418,0.3982896965679276,33,23,19,13,8.326672684688674e-17,120,0.12005432599107735,0.001137906001531519,0.00023214900284074247
+evaluation-n5-d1.json,0,10,7,optimal,17,17,,0.20868812498041134,0.20868812498041134,0.03125,0.9763646014474594,0.3982896965679276,39,29,25,22,4.85722573273506e-17,120,0.12320387500221841,0.0012583929928950965,0.00028245199064258486
+evaluation-n5-d1.json,1,10,7,optimal,17,17,,0.20895347370594453,0.20895347370594453,0.03125,0.976491092655261,0.3982896965679276,39,29,25,22,8.326672684688674e-17,120,0.18161357899953146,0.0012583929928950965,0.00028245199064258486
+evaluation-n5-d1.json,2,10,7,optimal,17,17,,0.20765894433039456,0.20765894433039456,0.03125,0.9758679311232057,0.3982896965679276,39,29,25,22,8.326672684688674e-17,120,0.12733137600298505,0.0012583929928950965,0.00028245199064258486
+evaluation-n5-d1.json,3,10,7,optimal,17,17,,0.21105362119707766,0.21105362119707766,0.03125,0.9774700725002086,0.3982896965679276,39,29,25,22,8.326672684688674e-17,120,0.1356646149943117,0.0012583929928950965,0.00028245199064258486
+evaluation-n5-d1.json,4,10,7,optimal,17,17,,0.12173111461468031,0.12173111461468031,0.03125,0.8746743531212642,0.3982896965679276,39,29,25,22,1.8041124150158794e-16,120,0.12897052899643313,0.0012583929928950965,0.00028245199064258486
+evaluation-n5-d1.json,5,10,7,optimal,17,17,,0.20652699885007852,0.20652699885007852,0.03125,0.9753103767206317,0.3982896965679276,39,29,25,22,5.551115123125783e-17,120,0.12436825600161683,0.0012583929928950965,0.00028245199064258486
+evaluation-n5-d1.json,6,10,7,optimal,17,17,,0.04492129182463776,0.04492129182463776,0.03125,0.5206788271942103,0.3982896965679276,39,29,25,22,1.249000902703301e-16,120,0.12145106100069825,0.0012583929928950965,0.00028245199064258486
+evaluation-n5-d1.json,7,10,7,optimal,17,17,,0.2068007802411285,0.2068007802411285,0.03125,0.9754463278125904,0.3982896965679276,39,29,25,22,5.551115123125783e-17,120,0.12487438000971451,0.0012583929928950965,0.00028245199064258486
+evaluation-n5-d1.json,8,10,7,optimal,17,17,,0.2068797945002781,0.2068797945002781,0.03125,0.9754854330740601,0.3982896965679276,39,29,25,22,1.1102230246251565e-16,120,0.1267120429984061,0.0012583929928950965,0.00028245199064258486
+evaluation-n5-d1.json,9,10,7,optimal,17,17,,0.20724863406064953,0.20724863406064953,0.03125,0.975667205739247,0.3982896965679276,39,29,25,22,1.1102230246251565e-16,120,0.13200859499920625,0.0012583929928950965,0.00028245199064258486
+evaluation-n5-d2.json,0,10,16,infeasible,,,,0.0,0.0,0.0,0.0,0.0,57,47,49,36,9.020562075079397e-17,108,0.1358335239929147,0.0012513070105342194,0.00038583800778724253
+evaluation-n5-d2.json,1,10,16,infeasible,,,,0.0,0.0,0.0,0.0,0.0,57,47,49,36,6.938893903907228e-17,108,0.1288047169946367,0.0012513070105342194,0.00038583800778724253
+evaluation-n5-d2.json,2,10,16,infeasible,,,,0.0,0.0,0.0,0.0,0.0,57,47,49,36,4.163336342344337e-17,99,0.11825067800236866,0.0012513070105342194,0.00038583800778724253
+evaluation-n5-d2.json,3,10,16,infeasible,,,,0.0,0.0,0.0,0.0,0.0,57,47,49,36,5.551115123125783e-17,101,0.11575913400156423,0.0012513070105342194,0.00038583800778724253
+evaluation-n5-d2.json,4,10,16,infeasible,,,,0.0,0.0,0.0,0.0,0.0,57,47,49,36,4.163336342344337e-17,100,0.11919978199875914,0.0012513070105342194,0.00038583800778724253
+evaluation-n5-d2.json,5,10,16,infeasible,,,,0.0,0.0,0.0,0.0,0.0,57,47,49,36,8.326672684688674e-17,120,0.14341584598878399,0.0012513070105342194,0.00038583800778724253
+evaluation-n5-d2.json,6,10,16,infeasible,,,,0.0,0.0,0.0,0.0,0.0,57,47,49,36,9.71445146547012e-17,95,0.10533250200387556,0.0012513070105342194,0.00038583800778724253
+evaluation-n5-d2.json,7,10,16,infeasible,,,,0.0,0.0,0.0,0.0,0.0,57,47,49,36,5.898059818321144e-17,109,0.12429187100497074,0.0012513070105342194,0.00038583800778724253
+evaluation-n5-d2.json,8,10,16,infeasible,,,,0.0,0.0,0.0,0.0,0.0,57,47,49,36,9.71445146547012e-17,120,0.14604124400648288,0.0012513070105342194,0.00038583800778724253
+evaluation-n5-d2.json,9,10,16,infeasible,,,,0.0,0.0,0.0,0.0,0.0,57,47,49,36,9.71445146547012e-17,103,0.11645812299684621,0.0012513070105342194,0.00038583800778724253
+evaluation-n6-d0.json,0,12,2,optimal,15,15,20,0.0357539201563212,0.992473071769231,0.015625,0.441521947460459,0.22273482905658715,34,22,17,13,3.469446951953614e-17,120,0.2384694189968286,0.001361773000098765,0.0005678860034095123
+evaluation-n6-d0.json,1,12,2,optimal,15,15,20,0.03574065960473795,0.99950502126734,0.015625,0.4413990495227953,0.22273482905658715,34,22,17,13,4.5102810375396984e-17,120,0.23753514300915413,0.001361773000098765,0.0005678860034095123
+evaluation-n6-d0.json,2,12,2,optimal,15,15,20,0.035701748198829174,0.9996087965373013,0.015625,0.44103827474624646,0.22273482905658715,34,22,17,13,4.85722573273506e-17,120,0.2487923370063072,0.001361773000098765,0.0005678860034095123
+evaluation-n6-d0.json,3,12,2,optimal,15,15,20,0.035683476780396635,0.9996507548213737,0.015625,0.4408687923265722,0.22273482905658715,34,22,17,13,2.7755575615628914e-17,120,0.23546254300163127,0.001361773000098765,0.0005678860034095123
+evaluation-n6-d0.json,4,12,2,optimal,15,15,20,0.032209449131407636,0.881942263626101,0.015625,0.40775413096036034,0.22273482905658715,34,22,17,13,3.8163916471489756e-17,120,0.23280842599342577,0.001361773000098765,0.0005678860034095123
+evaluation-n6-d0.json,5,12,2,optimal,15,15,20,0.03558613845642055,0.9993135130061771,0.015625,0.43996508711861176,0.22273482905658715,34,22,17,13,4.163336342344337e-17,120,0.23271166199992876,0.001361773000098765,0.0005678860034095123
+evaluation-n6-d0.json,6,12,2,optimal,15,15,20,0.018933455133375812,0.5742715555635826,0.015625,0.26349540797125,0.22273482905658715,34,22,17,13,3.469446951953614e-17,120,0.25660091199097224,0.001361773000098765,0.0005678860034095123
+evaluation-n6-d0.json,7,12,2,optimal,15,15,20,0.03583971562805053,0.9986413803859654,0.015625,0.4423164820078257,0.22273482905658715,34,22,17,13,3.469446951953614e-17,120,0.25715542199031916,0.001361773000098765,0.0005678860034095123
+evaluation-n6-d0.json,8,12,2,optimal,15,15,20,0.035697968952831886,0.9996287284761802,0.015625,0.44100322308536555,0.22273482905658715,34,22,17,13,5.551115123125783e-17,120,0.2564655799942557,0.001361773000098765,0.0005678860034095123
+evaluation-n6-d0.json,9,12,2,optimal,15,15,20,0.03566625608118624,0.9996669334851729,0.015625,0.440709012091302,0.22273482905658715,34,22,17,13,3.469446951953614e-17,120,0.24818098101241048,0.001361773000098765,0.0005678860034095123
+evaluation-n6-d1.json,0,12,7,optimal,25,25,,0.18422738386391713,0.33645825495026405,0.03125,0.9615314368475951,0.3982896965679276,44,32,27,25,5.551115123125783e-17,120,0.25963094701000955,0.0012901910085929558,0.0007505779940402135
+evaluation-n6-d1.json,1,12,7,optimal,25,25,,0.1819251786569768,0.3330699253559119,0.03125,0.9597571788218093,0.3982896965679276,44,32,27,25,9.71445146547012e-17,120,0.2635834629909368,0.0012901910085929558,0.0007505779940402135
+evaluation-n6-d1.json,2,12,7,optimal,25,25,,0.18775592114085737,0.3413849178961884,0.03125,0.964109057313271,0.3982896965679276,44,32,27,25,8.326672684688674e-17,120,0.27507112998864613,0.0012901910085929558,0.0007505779940402135
+evaluation-n6-d1.json,3,12,7,optimal,25,25,,0.1832764431924382,0.3350663252150785,0.03125,0.9608076491361791,0.3982896965679276,44,32,27,25,1.1102230246251565e-16,120,0.2742265069973655,0.0012901910085929558,0.0007505779940402135
+evaluation-n6-d1.json,4,12,7,optimal,25,25,,0.19033675076038742,0.34259973227537077,0.03125,0.9658908550752449,0.3982896965679276,44,32,27,25,5.551115123125783e-17,120,0.26511729799676687,0.0012901910085929558,0.0007505779940402135
+evaluation-n6-d1.json,5,12,7,optimal,25,25,,0.18364953358576427,0.33559346624456193,0.03125,0.9610931273480599,0.3982896965679276,44,32,27,25,6.938893903907228e-17,120,0.2604449819918955,0.0012901910085929558,0.0007505779940402135
+evaluation-n6-d1.json,6,12,7,optimal,25,25,,0.18318424578268244,0.33498279581943285,0.03125,0.9607368003083875,0.3982896965679276,44,32,27,25,5.551115123125783e-17,120,0.275019943001098,0.0012901910085929558,0.0007505779940402135
+evaluation-n6-d1.json,7,12,7,optimal,25,25,,0.18590313254669344,0.33892972297393775,0.03125,0.9627764886716013,0.3982896965679276,44,32,27,25,5.551115123125783e-17,120,0.2778877079981612,0.0012901910085929558,0.0007505779940402135
+evaluation-n6-d1.json,8,12,7,optimal,25,25,,0.1834369758616738,0.3353078808437865,0.03125,0.9609307240471632,0.3982896965679276,44,32,27,25,5.551115123125783e-17,120,0.2632162569934735,0.0012901910085929558,0.0007505779940402135
+evaluation-n6-d1.json,9,12,7,optimal,25,25,,0.18289200059964045,0.3345086878466239,0.03125,0.9605114310409637,0.3982896965679276,44,32,27,25,8.326672684688674e-17,120,0.2540054019918898,0.0012901910085929558,0.0007505779940402135
+evaluation-n6-d2.json,0,12,15,infeasible,,,,0.0,0.0,0.0,0.0,0.0,60,48,34,26,2.7755575615628914e-17,120,0.29949891300930176,0.0013372789981076494,0.0006637119950028136
+evaluation-n6-d2.json,1,12,15,infeasible,,,,0.0,0.0,0.0,0.0,0.0,60,48,34,26,4.163336342344337e-17,120,0.2955925109999953,0.0013372789981076494,0.0006637119950028136
+evaluation-n6-d2.json,2,12,15,infeasible,,,,0.0,0.0,0.0,0.0,0.0,60,48,34,26,3.2959746043559335e-17,120,0.3084908849996282,0.0013372789981076494,0.0006637119950028136
+evaluation-n6-d2.json,3,12,15,infeasible,,,,0.0,0.0,0.0,0.0,0.0,60,48,34,26,6.245004513516506e-17,120,0.3045785389986122,0.0013372789981076494,0.0006637119950028136
+evaluation-n6-d2.json,4,12,15,infeasible,,,,0.0,0.0,0.0,0.0,0.0,60,48,34,26,4.163336342344337e-17,120,0.2973008650005795,0.0013372789981076494,0.0006637119950028136
+evaluation-n6-d2.json,5,12,15,infeasible,,,,0.0,0.0,0.0,0.0,0.0,60,48,34,26,7.632783294297951e-17,120,0.3036734789930051,0.0013372789981076494,0.0006637119950028136
+evaluation-n6-d2.json,6,12,15,infeasible,,,,0.0,0.0,0.0,0.0,0.0,60,48,34,26,2.42861286636753e-17,120,0.31049920700024813,0.0013372789981076494,0.0006637119950028136
+evaluation-n6-d2.json,7,12,15,infeasible,,,,0.0,0.0,0.0,0.0,0.0,60,48,34,26,6.938893903907228e-17,120,0.29714077900280245,0.0013372789981076494,0.0006637119950028136
+evaluation-n6-d2.json,8,12,15,infeasible,,,,0.0,0.0,0.0,0.0,0.0,60,48,34,26,4.163336342344337e-17,120,0.301209523997386,0.0013372789981076494,0.0006637119950028136
+evaluation-n6-d2.json,9,12,15,infeasible,,,,0.0,0.0,0.0,0.0,0.0,60,48,34,26,5.551115123125783e-17,117,0.30030054500093684,0.0013372789981076494,0.0006637119950028136
+evaluation-n8-d0.json,0,16,1,optimal,14,14,14,0.0021769764107421627,0.8228835665564912,0.00390625,0.034268652374718184,0.060701904106183556,42,26,20,13,1.0408340855860843e-17,120,0.8439834150049137,0.0015075100091053173,0.003714959995704703
+evaluation-n8-d0.json,1,16,1,optimal,14,14,14,0.01087267159460469,0.9970286334030908,0.00390625,0.16047193869031595,0.060701904106183556,42,26,20,13,1.3877787807814457e-17,120,0.7325944409967633,0.0015075100091053173,0.003714959995704703
+evaluation-n8-d0.json,2,16,1,optimal,14,14,14,0.010939438236260986,0.996694589100695,0.00390625,0.16137817754976735,0.060701904106183556,42,26,20,13,1.3010426069826053e-17,120,0.7584884050011169,0.0015075100091053173,0.003714959995704703
+evaluation-n8-d0.json,3,16,1,optimal,14,14,14,0.010978485343988351,0.9963861971170641,0.00390625,0.16190774775286199,0.060701904106183556,42,26,20,13,8.673617379884035e-18,120,0.7560670590028167,0.0015075100091053173,0.003714959995704703
+evaluation-n8-d0.json,4,16,1,optimal,14,14,14,0.0007763604758730299,0.9990130506519102,0.00390625,0.01234970072984027,0.060701904106183556,42,26,20,13,1.3877787807814457e-17,120,0.8476358350017108,0.0015075100091053173,0.003714959995704703
+evaluation-n8-d0.json,5,16,1,optimal,14,14,14,0.010852151592303329,0.9971185572058877,0.00390625,0.16019323162542526,0.060701904106183556,42,26,20,13,1.214306433183765e-17,120,0.8181990459997905,0.0015075100091053173,0.003714959995704703
+evaluation-n8-d0.json,6,16,1,optimal,14,16,14,0.0007663156715016207,0.9993331195061481,0.00390625,0.012190833358699298,0.060701904106183556,42,26,20,13,1.3877787807814457e-17,120,0.8315619829954812,0.0015075100091053173,0.003714959995704703
+evaluation-n8-d0.json,7,16,1,optimal,14,14,14,0.010972302979788132,0.9954201898030154,0.00390625,0.16182392131417206,0.060701904106183556,42,26,20,13,1.1275702593849246e-17,120,0.7735890460025985,0.0015075100091053173,0.003714959995704703
+evaluation-n8-d0.json,8,16,1,optimal,14,14,14,0.010975194190733988,0.9965119716401358,0.00390625,0.16186312411070156,0.060701904106183556,42,26,20,13,1.0408340855860843e-17,120,0.7964400019991444,0.0015075100091053173,0.003714959995704703
+evaluation-n8-d0.json,9,16,1,optimal,14,14,14,0.010890649108780574,0.9969470386910183,0.00390625,0.1607160418715548,0.060701904106183556,42,26,20,13,1.5612511283791264e-17,120,0.7942655150109204,0.0015075100091053173,0.003714959995704703
+evaluation-n8-d1.json,0,16,8,optimal,22,23,23,0.006623252220371681,0.3198442984207425,0.00390625,0.10086719718369297,0.060701904106183556,56,40,22,17,3.122502256758253e-17,120,0.9247693179931957,0.001571046988829039,0.004175194000708871
+evaluation-n8-d1.json,1,16,8,optimal,22,22,23,0.02913177610372757,0.2731320825331419,0.00390625,0.3768901841565966,0.060701904106183556,56,40,22,17,4.163336342344337e-17,120,0.9468468340055551,0.001571046988829039,0.004175194000708871
+evaluation-n8-d1.json,2,16,8,optimal,22,22,23,0.029933057461012675,0.2871715092397071,0.00390625,0.38506773227864177,0.060701904106183556,56,40,22,17,5.551115123125783e-17,120,0.9633713660005014,0.001571046988829039,0.004175194000708871
+evaluation-n8-d1.json,3,16,8,optimal,22,22,23,0.029583031117702618,0.2865292193132428,0.00390625,0.38150796203447196,0.060701904106183556,56,40,22,17,4.85722573273506e-17,120,0.9335638389893575,0.001571046988829039,0.004175194000708871
+evaluation-n8-d1.json,4,16,8,optimal,22,22,23,0.030209678194964985,0.2874749825229161,0.00390625,0.38786736924068266,0.060701904106183556,56,40,22,17,3.122502256758253e-17,120,0.9365705929958494,0.001571046988829039,0.004175194000708871
+evaluation-n8-d1.json,5,16,8,optimal,22,22,23,0.029651799094443737,0.28699520362859565,0.00390625,0.3822088541195745,0.060701904106183556,56,40,22,17,2.0816681711721685e-17,120,0.9530057509982726,0.001571046988829039,0.004175194000708871
+evaluation-n8-d1.json,6,16,8,optimal,22,22,23,0.006678143104804413,0.32229362674223366,0.00390625,0.10166179998014072,0.060701904106183556,56,40,22,17,4.163336342344337e-17,120,0.9175328739947872,0.001571046988829039,0.004175194000708871
+evaluation-n8-d1.json,7,16,8,optimal,22,22,23,0.02960497826522707,0.28667614483011217,0.00390625,0.3817317311434215,0.060701904106183556,56,40,22,17,2.7755575615628914e-17,120,0.9755811149952933,0.001571046988829039,0.004175194000708871
+evaluation-n8-d1.json,8,16,8,optimal,22,22,23,0.030027164012532134,0.2882593184843218,0.00390625,0.3860215150306111,0.060701904106183556,56,40,22,17,4.85722573273506e-17,120,0.920527766997111,0.001571046988829039,0.004175194000708871
+evaluation-n8-d1.json,9,16,8,optimal,22,22,23,0.029738806887356965,0.2875881594952926,0.00390625,0.38309458170548916,0.060701904106183556,56,40,22,17,3.469446951953614e-17,120,0.9877238760091132,0.001571046988829039,0.004175194000708871
+evaluation-n8-d2.json,0,16,19,infeasible,,,,0.0,0.0,0.0,0.0,0.0,78,62,34,25,1.0408340855860843e-17,120,1.2923246050049784,0.0013811569951940328,0.00355522999598179
+evaluation-n8-d2.json,1,16,19,infeasible,,,,0.0,0.0,0.0,0.0,0.0,78,62,34,25,9.540979117872439e-18,120,1.2893407499941532,0.0013811569951940328,0.00355522999598179
+evaluation-n8-d2.json,2,16,19,infeasible,,,,0.0,0.0,0.0,0.0,0.0,78,62,34,25,1.734723475976807e-17,120,1.246758723995299,0.0013811569951940328,0.00355522999598179
+evaluation-n8-d2.json,3,16,19,infeasible,,,,0.0,0.0,0.0,0.0,0.0,78,62,34,25,1.1275702593849246e-17,120,1.2154508469975553,0.0013811569951940328,0.00355522999598179
+evaluation-n8-d2.json,4,16,19,infeasible,,,,0.0,0.0,0.0,0.0,0.0,78,62,34,25,9.540979117872439e-18,120,1.2524653720029164,0.0013811569951940328,0.00355522999598179
+evaluation-n8-d2.json,5,16,19,infeasible,,,,0.0,0.0,0.0,0.0,0.0,78,62,34,25,2.0816681711721685e-17,120,1.2512197839969303,0.0013811569951940328,0.00355522999598179
+evaluation-n8-d2.json,6,16,19,infeasible,,,,0.0,0.0,0.0,0.0,0.0,78,62,34,25,1.0408340855860843e-17,120,1.2757996209984412,0.0013811569951940328,0.00355522999598179
+evaluation-n8-d2.json,7,16,19,infeasible,,,,0.0,0.0,0.0,0.0,0.0,78,62,34,25,1.1275702593849246e-17,120,1.2343268200056627,0.0013811569951940328,0.00355522999598179
+evaluation-n8-d2.json,8,16,19,infeasible,,,,0.0,0.0,0.0,0.0,0.0,78,62,34,25,3.122502256758253e-17,120,1.2853339799912646,0.0013811569951940328,0.00355522999598179
+evaluation-n8-d2.json,9,16,19,infeasible,,,,0.0,0.0,0.0,0.0,0.0,78,62,34,25,2.42861286636753e-17,118,1.4285685970098712,0.0013811569951940328,0.00355522999598179
diff --git a/Tutorials/LabScheduling/results/enhanced/verification.json b/Tutorials/LabScheduling/results/enhanced/verification.json
new file mode 100644
index 00000000..d39f2f87
--- /dev/null
+++ b/Tutorials/LabScheduling/results/enhanced/verification.json
@@ -0,0 +1,19 @@
+{
+ "date": "2026-09-21",
+ "application_tests": 71,
+ "upstream_tests": 18,
+ "line_coverage_percent": 98.44,
+ "clean_wheel_tests": 71,
+ "repeat_runs": 120,
+ "matching_fields": [
+ "quantum excluding runtime_seconds",
+ "metrics",
+ "samples"
+ ],
+ "input_and_source_hashes_verified": true,
+ "best_samples_in_counts": true,
+ "resource_limit_cli_exit": 5,
+ "medium_clean_objective": 4,
+ "publication": "local only; remote PR head a3ba71c unchanged",
+ "implementation_commit": "22fbbd103c0e187287943de64be5c99ba556914d"
+}
diff --git a/Tutorials/LabScheduling/results/final-review.json b/Tutorials/LabScheduling/results/final-review.json
new file mode 100644
index 00000000..bb182e06
--- /dev/null
+++ b/Tutorials/LabScheduling/results/final-review.json
@@ -0,0 +1,160 @@
+{
+ "after_regression": {
+ "failed": 0,
+ "passed": 5
+ },
+ "application_tests": {
+ "command": "OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 MPLBACKEND=Agg .venv/bin/python -m pytest -c test/LabScheduling/pytest.ini test/LabScheduling --timeout=60 --cov=.venv/lib/python3.12/site-packages/pyqpanda_alg/LabScheduling --cov-fail-under=95",
+ "coverage_percent": 98.92,
+ "passed": 113,
+ "seconds": 41.26
+ },
+ "arc_objective": 3,
+ "before_regression": {
+ "commit": "1d9d8aa0b1469d60d792584624738e582ce697cc",
+ "failed": 4,
+ "passed": 1
+ },
+ "commands": [
+ {
+ "command": [
+ ".venv/bin/python",
+ "-m",
+ "pip",
+ "check"
+ ],
+ "exit_code": 0,
+ "expected_exit_code": 0,
+ "name": "pip-check",
+ "seconds": 0.5999653120088624
+ },
+ {
+ "command": [
+ ".venv/bin/python",
+ "-m",
+ "pyqpanda_alg.LabScheduling",
+ "pyqpanda-algorithm/example/LabScheduling/data/medium.json",
+ "--output",
+ "reports/medium.json"
+ ],
+ "exit_code": 0,
+ "expected_exit_code": 0,
+ "name": "medium",
+ "seconds": 1.9976603179966332
+ },
+ {
+ "command": [
+ ".venv/bin/python",
+ "pyqpanda-algorithm/example/LabScheduling/tradeoff_demo.py",
+ "--sensitivity"
+ ],
+ "exit_code": 0,
+ "expected_exit_code": 0,
+ "name": "tradeoff",
+ "seconds": 5.678206475000479
+ },
+ {
+ "command": [
+ ".venv/bin/python",
+ "-m",
+ "pyqpanda_alg.LabScheduling",
+ "pyqpanda-algorithm/example/LabScheduling/data/support-chain.json",
+ "--reduce",
+ "--pruning",
+ "arc",
+ "--output",
+ "reports/arc.json"
+ ],
+ "exit_code": 0,
+ "expected_exit_code": 0,
+ "name": "arc",
+ "seconds": 1.991893740996602
+ },
+ {
+ "command": [
+ ".venv/bin/python",
+ "-m",
+ "pyqpanda_alg.LabScheduling",
+ "pyqpanda-algorithm/example/LabScheduling/data/support-chain.json",
+ "--reduce",
+ "--output",
+ "reports/resource-limit.json"
+ ],
+ "exit_code": 5,
+ "expected_exit_code": 5,
+ "name": "resource-limit",
+ "seconds": 1.6146869130025152
+ },
+ {
+ "command": [
+ ".venv/bin/python",
+ "-m",
+ "pyqpanda_alg.LabScheduling",
+ "pyqpanda-algorithm/example/LabScheduling/data/infeasible.json",
+ "--reduce",
+ "--output",
+ "reports/infeasible.json"
+ ],
+ "exit_code": 3,
+ "expected_exit_code": 3,
+ "name": "infeasible",
+ "seconds": 1.558603272002074
+ },
+ {
+ "command": [
+ ".venv/bin/python",
+ "-m",
+ "pytest",
+ "-c",
+ "test/LabScheduling/pytest.ini",
+ "-o",
+ "python_files=Test_*.py",
+ "test",
+ "--ignore=test/LabScheduling",
+ "--timeout=60"
+ ],
+ "exit_code": 0,
+ "expected_exit_code": 0,
+ "name": "upstream-tests",
+ "seconds": 11.057248769007856
+ }
+ ],
+ "constraints_sha256": "6ab291f8463f891d421278a03cdda50d6f5af09ebea5a747d155c17dae9c14ac",
+ "existing_report_equivalence": {
+ "cases": [
+ "simple",
+ "medium",
+ "infeasible",
+ "tradeoff",
+ "support-chain"
+ ],
+ "comparison": "all non-timing fields",
+ "passed": true
+ },
+ "infeasible_status": "infeasible",
+ "installed_module": ".venv/lib/python3.12/site-packages/pyqpanda_alg/LabScheduling",
+ "machine": "x86_64",
+ "medium_objective": 4,
+ "module_sha256": {
+ "__init__.py": "1336ac94b68e53a108965f0f2127d619c08d3c4ecfd6b541233c193b6a9ee474",
+ "__main__.py": "6d147f69d578cd770d24d52ce7b7aeea0f487ad7279fb9b70fb413c34c72b328",
+ "bookings.py": "dba45010ef9e5f6a1781d8a8d79e9f3faf4fbf90223f526f550687723de1382a",
+ "classical.py": "d1bd575af9969c49cda59cd15328d98f176bb004ebc22e887be173b43d69aac5",
+ "metrics.py": "b084507c46a7bf6cc1ca2a6a116156e24a23efb3fdea699f02b4a29bdbd503e0",
+ "milp.py": "e8be7deb1be9c5dadea978daac28cf2a7d378e70bb69d370bc6186b0e7309efd",
+ "model.py": "f442c4751a7f17f66e5fae331e14f75eaa327177af5346a49ceddb87e86ef509",
+ "problem.py": "5abd2c9f01a712fb18ac7791bb89cba435eecd35f49b05283a3ca7ad6d7f582b",
+ "quantum.py": "3f8469be5a92afbf87eb0c82f7b80282a6443edfbe335a55635717f40501522f",
+ "reduction.py": "fa249b234ef4fc74c88a916a6bba87bd6150f2905dd47fe860e2e7d5617d7870",
+ "report.py": "2ac48f7ba9f53881a670d1878b7630d008c2be989ae1b566945bd2ba826fc406"
+ },
+ "python": "3.12.3",
+ "resource_limit_status": "resource_limit",
+ "source_commit": "1a544658bb7048419723a741caf4c305ffa08832",
+ "system": "Linux",
+ "upstream_tests": {
+ "passed": 18,
+ "seconds": 10.47
+ },
+ "wheel_sha256": "e664374aeb42ff19ecf4e738a00b00f747d0e8dde994a5c281198e166dd414a4"
+}
diff --git a/Tutorials/LabScheduling/results/matched/SUMMARY.md b/Tutorials/LabScheduling/results/matched/SUMMARY.md
new file mode 100644
index 00000000..f6bca338
--- /dev/null
+++ b/Tutorials/LabScheduling/results/matched/SUMMARY.md
@@ -0,0 +1,62 @@
+# 同总预算对照结果
+
+全部 36 个实例、每实例 10 种子;Q=直接量子,R=分量量子,U=直接均匀随机,S=分量均匀随机。
+
+下表为实际 512 总 shots 下采到精确最优的种子数;不可行行无最优值,记 0。
+
+| 实例 | 类别 | 最优值 | Q | R | U | S |
+|---|---|---:|---:|---:|---:|---:|
+| n3-s0-r0.json | quantum_required | 10 | 10 | 10 | 10 | 10 |
+| n3-s0-r1.json | quantum_required | 19 | 10 | 10 | 10 | 10 |
+| n3-s0-r2.json | quantum_required | 10 | 10 | 10 | 10 | 10 |
+| n3-s0-r3.json | quantum_required | 14 | 10 | 10 | 10 | 10 |
+| n3-s1-r0.json | classical_only | 25 | 10 | 10 | 10 | 10 |
+| n3-s1-r1.json | quantum_required | 10 | 10 | 10 | 10 | 10 |
+| n3-s1-r2.json | infeasible | — | 0 | 0 | 0 | 0 |
+| n3-s1-r3.json | infeasible | — | 0 | 0 | 0 | 0 |
+| n3-s2-r0.json | infeasible | — | 0 | 0 | 0 | 0 |
+| n3-s2-r1.json | quantum_required | 7 | 10 | 10 | 10 | 10 |
+| n3-s2-r2.json | classical_only | 27 | 10 | 10 | 10 | 10 |
+| n3-s2-r3.json | infeasible | — | 0 | 0 | 0 | 0 |
+| n4-s0-r0.json | quantum_required | 22 | 10 | 10 | 10 | 10 |
+| n4-s0-r1.json | quantum_required | 18 | 10 | 10 | 10 | 10 |
+| n4-s0-r2.json | quantum_required | 4 | 9 | 10 | 10 | 10 |
+| n4-s0-r3.json | quantum_required | 10 | 9 | 10 | 10 | 10 |
+| n4-s1-r0.json | infeasible | — | 0 | 0 | 0 | 0 |
+| n4-s1-r1.json | infeasible | — | 0 | 0 | 0 | 0 |
+| n4-s1-r2.json | quantum_required | 18 | 10 | 10 | 10 | 10 |
+| n4-s1-r3.json | quantum_required | 15 | 10 | 10 | 10 | 10 |
+| n4-s2-r0.json | quantum_required | 7 | 10 | 10 | 10 | 10 |
+| n4-s2-r1.json | quantum_required | 3 | 10 | 10 | 10 | 10 |
+| n4-s2-r2.json | quantum_required | 32 | 10 | 10 | 10 | 10 |
+| n4-s2-r3.json | infeasible | — | 0 | 0 | 0 | 0 |
+| n5-s0-r0.json | quantum_required | 17 | 9 | 10 | 10 | 10 |
+| n5-s0-r1.json | quantum_required | 11 | 10 | 10 | 10 | 10 |
+| n5-s0-r2.json | quantum_required | 13 | 10 | 10 | 10 | 10 |
+| n5-s0-r3.json | quantum_required | 3 | 10 | 10 | 10 | 10 |
+| n5-s1-r0.json | infeasible | — | 0 | 0 | 0 | 0 |
+| n5-s1-r1.json | infeasible | — | 0 | 0 | 0 | 0 |
+| n5-s1-r2.json | quantum_required | 20 | 10 | 10 | 10 | 10 |
+| n5-s1-r3.json | infeasible | — | 0 | 0 | 0 | 0 |
+| n5-s2-r0.json | quantum_required | 4 | 10 | 10 | 10 | 10 |
+| n5-s2-r1.json | infeasible | — | 0 | 0 | 0 | 0 |
+| n5-s2-r2.json | infeasible | — | 0 | 0 | 0 | 0 |
+| n5-s2-r3.json | quantum_required | 44 | 10 | 10 | 10 | 10 |
+
+## 同总 shots 的条件命中概率
+
+仅 22 个仍需量子的可行实例,先平均每实例的十种子,再等权平均实例。
+这是训练后理论曲线,低 shots 未重新训练或实际抽样,不包括训练成本。
+
+| 总 shots | Q | R | U | S | R>S 实例 | R
+
+
diff --git a/Tutorials/LabScheduling/results/sensitivity/inputs/w0.json b/Tutorials/LabScheduling/results/sensitivity/inputs/w0.json
new file mode 100644
index 00000000..4ff18638
--- /dev/null
+++ b/Tutorials/LabScheduling/results/sensitivity/inputs/w0.json
@@ -0,0 +1,113 @@
+{
+ "name": "合成连锁改约:低成本整体后移或高成本备用设备",
+ "horizon": 14,
+ "resources": [
+ {
+ "id": "oven",
+ "cleanup": 1,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "backup",
+ "cleanup": 1
+ }
+ ],
+ "tasks": [
+ {
+ "id": "A",
+ "group": "gA",
+ "duration": 2,
+ "original": {
+ "resource": "oven",
+ "start": 0
+ },
+ "change_cost": 0,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 2,
+ "cost": 2
+ },
+ {
+ "resource": "backup",
+ "start": 0,
+ "cost": 12
+ }
+ ]
+ },
+ {
+ "id": "B",
+ "group": "gB",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 3
+ },
+ "change_cost": 0,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 5,
+ "cost": 2
+ },
+ {
+ "resource": "oven",
+ "start": 8,
+ "cost": 5
+ }
+ ]
+ },
+ {
+ "id": "C",
+ "group": "gC",
+ "duration": 2,
+ "original": {
+ "resource": "oven",
+ "start": 5
+ },
+ "change_cost": 0,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 5,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 7,
+ "cost": 2
+ },
+ {
+ "resource": "oven",
+ "start": 10,
+ "cost": 5
+ }
+ ]
+ }
+ ],
+ "precedence": [
+ [
+ "A",
+ "B"
+ ],
+ [
+ "B",
+ "C"
+ ]
+ ]
+}
diff --git a/Tutorials/LabScheduling/results/sensitivity/inputs/w1.json b/Tutorials/LabScheduling/results/sensitivity/inputs/w1.json
new file mode 100644
index 00000000..e4d69604
--- /dev/null
+++ b/Tutorials/LabScheduling/results/sensitivity/inputs/w1.json
@@ -0,0 +1,113 @@
+{
+ "name": "合成连锁改约:低成本整体后移或高成本备用设备",
+ "horizon": 14,
+ "resources": [
+ {
+ "id": "oven",
+ "cleanup": 1,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "backup",
+ "cleanup": 1
+ }
+ ],
+ "tasks": [
+ {
+ "id": "A",
+ "group": "gA",
+ "duration": 2,
+ "original": {
+ "resource": "oven",
+ "start": 0
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 2,
+ "cost": 2
+ },
+ {
+ "resource": "backup",
+ "start": 0,
+ "cost": 12
+ }
+ ]
+ },
+ {
+ "id": "B",
+ "group": "gB",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 3
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 5,
+ "cost": 2
+ },
+ {
+ "resource": "oven",
+ "start": 8,
+ "cost": 5
+ }
+ ]
+ },
+ {
+ "id": "C",
+ "group": "gC",
+ "duration": 2,
+ "original": {
+ "resource": "oven",
+ "start": 5
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 5,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 7,
+ "cost": 2
+ },
+ {
+ "resource": "oven",
+ "start": 10,
+ "cost": 5
+ }
+ ]
+ }
+ ],
+ "precedence": [
+ [
+ "A",
+ "B"
+ ],
+ [
+ "B",
+ "C"
+ ]
+ ]
+}
diff --git a/Tutorials/LabScheduling/results/sensitivity/inputs/w2.json b/Tutorials/LabScheduling/results/sensitivity/inputs/w2.json
new file mode 100644
index 00000000..bc7a5e38
--- /dev/null
+++ b/Tutorials/LabScheduling/results/sensitivity/inputs/w2.json
@@ -0,0 +1,113 @@
+{
+ "name": "合成连锁改约:低成本整体后移或高成本备用设备",
+ "horizon": 14,
+ "resources": [
+ {
+ "id": "oven",
+ "cleanup": 1,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "backup",
+ "cleanup": 1
+ }
+ ],
+ "tasks": [
+ {
+ "id": "A",
+ "group": "gA",
+ "duration": 2,
+ "original": {
+ "resource": "oven",
+ "start": 0
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 2,
+ "cost": 2
+ },
+ {
+ "resource": "backup",
+ "start": 0,
+ "cost": 12
+ }
+ ]
+ },
+ {
+ "id": "B",
+ "group": "gB",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 3
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 5,
+ "cost": 2
+ },
+ {
+ "resource": "oven",
+ "start": 8,
+ "cost": 5
+ }
+ ]
+ },
+ {
+ "id": "C",
+ "group": "gC",
+ "duration": 2,
+ "original": {
+ "resource": "oven",
+ "start": 5
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 5,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 7,
+ "cost": 2
+ },
+ {
+ "resource": "oven",
+ "start": 10,
+ "cost": 5
+ }
+ ]
+ }
+ ],
+ "precedence": [
+ [
+ "A",
+ "B"
+ ],
+ [
+ "B",
+ "C"
+ ]
+ ]
+}
diff --git a/Tutorials/LabScheduling/results/sensitivity/inputs/w3.json b/Tutorials/LabScheduling/results/sensitivity/inputs/w3.json
new file mode 100644
index 00000000..b1eee2e9
--- /dev/null
+++ b/Tutorials/LabScheduling/results/sensitivity/inputs/w3.json
@@ -0,0 +1,113 @@
+{
+ "name": "合成连锁改约:低成本整体后移或高成本备用设备",
+ "horizon": 14,
+ "resources": [
+ {
+ "id": "oven",
+ "cleanup": 1,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "backup",
+ "cleanup": 1
+ }
+ ],
+ "tasks": [
+ {
+ "id": "A",
+ "group": "gA",
+ "duration": 2,
+ "original": {
+ "resource": "oven",
+ "start": 0
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 2,
+ "cost": 2
+ },
+ {
+ "resource": "backup",
+ "start": 0,
+ "cost": 12
+ }
+ ]
+ },
+ {
+ "id": "B",
+ "group": "gB",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 3
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 5,
+ "cost": 2
+ },
+ {
+ "resource": "oven",
+ "start": 8,
+ "cost": 5
+ }
+ ]
+ },
+ {
+ "id": "C",
+ "group": "gC",
+ "duration": 2,
+ "original": {
+ "resource": "oven",
+ "start": 5
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 5,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 7,
+ "cost": 2
+ },
+ {
+ "resource": "oven",
+ "start": 10,
+ "cost": 5
+ }
+ ]
+ }
+ ],
+ "precedence": [
+ [
+ "A",
+ "B"
+ ],
+ [
+ "B",
+ "C"
+ ]
+ ]
+}
diff --git a/Tutorials/LabScheduling/results/sensitivity/inputs/w4.json b/Tutorials/LabScheduling/results/sensitivity/inputs/w4.json
new file mode 100644
index 00000000..5b05a88f
--- /dev/null
+++ b/Tutorials/LabScheduling/results/sensitivity/inputs/w4.json
@@ -0,0 +1,113 @@
+{
+ "name": "合成连锁改约:低成本整体后移或高成本备用设备",
+ "horizon": 14,
+ "resources": [
+ {
+ "id": "oven",
+ "cleanup": 1,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "backup",
+ "cleanup": 1
+ }
+ ],
+ "tasks": [
+ {
+ "id": "A",
+ "group": "gA",
+ "duration": 2,
+ "original": {
+ "resource": "oven",
+ "start": 0
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 2,
+ "cost": 2
+ },
+ {
+ "resource": "backup",
+ "start": 0,
+ "cost": 12
+ }
+ ]
+ },
+ {
+ "id": "B",
+ "group": "gB",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 3
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 5,
+ "cost": 2
+ },
+ {
+ "resource": "oven",
+ "start": 8,
+ "cost": 5
+ }
+ ]
+ },
+ {
+ "id": "C",
+ "group": "gC",
+ "duration": 2,
+ "original": {
+ "resource": "oven",
+ "start": 5
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 5,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 7,
+ "cost": 2
+ },
+ {
+ "resource": "oven",
+ "start": 10,
+ "cost": 5
+ }
+ ]
+ }
+ ],
+ "precedence": [
+ [
+ "A",
+ "B"
+ ],
+ [
+ "B",
+ "C"
+ ]
+ ]
+}
diff --git a/Tutorials/LabScheduling/results/sensitivity/inputs/w5.json b/Tutorials/LabScheduling/results/sensitivity/inputs/w5.json
new file mode 100644
index 00000000..428f8bb8
--- /dev/null
+++ b/Tutorials/LabScheduling/results/sensitivity/inputs/w5.json
@@ -0,0 +1,113 @@
+{
+ "name": "合成连锁改约:低成本整体后移或高成本备用设备",
+ "horizon": 14,
+ "resources": [
+ {
+ "id": "oven",
+ "cleanup": 1,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "backup",
+ "cleanup": 1
+ }
+ ],
+ "tasks": [
+ {
+ "id": "A",
+ "group": "gA",
+ "duration": 2,
+ "original": {
+ "resource": "oven",
+ "start": 0
+ },
+ "change_cost": 5,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 2,
+ "cost": 2
+ },
+ {
+ "resource": "backup",
+ "start": 0,
+ "cost": 12
+ }
+ ]
+ },
+ {
+ "id": "B",
+ "group": "gB",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 3
+ },
+ "change_cost": 5,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 5,
+ "cost": 2
+ },
+ {
+ "resource": "oven",
+ "start": 8,
+ "cost": 5
+ }
+ ]
+ },
+ {
+ "id": "C",
+ "group": "gC",
+ "duration": 2,
+ "original": {
+ "resource": "oven",
+ "start": 5
+ },
+ "change_cost": 5,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 5,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 7,
+ "cost": 2
+ },
+ {
+ "resource": "oven",
+ "start": 10,
+ "cost": 5
+ }
+ ]
+ }
+ ],
+ "precedence": [
+ [
+ "A",
+ "B"
+ ],
+ [
+ "B",
+ "C"
+ ]
+ ]
+}
diff --git a/Tutorials/LabScheduling/results/sensitivity/inputs/w6.json b/Tutorials/LabScheduling/results/sensitivity/inputs/w6.json
new file mode 100644
index 00000000..19ec3554
--- /dev/null
+++ b/Tutorials/LabScheduling/results/sensitivity/inputs/w6.json
@@ -0,0 +1,113 @@
+{
+ "name": "合成连锁改约:低成本整体后移或高成本备用设备",
+ "horizon": 14,
+ "resources": [
+ {
+ "id": "oven",
+ "cleanup": 1,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "backup",
+ "cleanup": 1
+ }
+ ],
+ "tasks": [
+ {
+ "id": "A",
+ "group": "gA",
+ "duration": 2,
+ "original": {
+ "resource": "oven",
+ "start": 0
+ },
+ "change_cost": 6,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 2,
+ "cost": 2
+ },
+ {
+ "resource": "backup",
+ "start": 0,
+ "cost": 12
+ }
+ ]
+ },
+ {
+ "id": "B",
+ "group": "gB",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 3
+ },
+ "change_cost": 6,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 5,
+ "cost": 2
+ },
+ {
+ "resource": "oven",
+ "start": 8,
+ "cost": 5
+ }
+ ]
+ },
+ {
+ "id": "C",
+ "group": "gC",
+ "duration": 2,
+ "original": {
+ "resource": "oven",
+ "start": 5
+ },
+ "change_cost": 6,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 5,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 7,
+ "cost": 2
+ },
+ {
+ "resource": "oven",
+ "start": 10,
+ "cost": 5
+ }
+ ]
+ }
+ ],
+ "precedence": [
+ [
+ "A",
+ "B"
+ ],
+ [
+ "B",
+ "C"
+ ]
+ ]
+}
diff --git a/Tutorials/LabScheduling/results/sensitivity/release-check.json b/Tutorials/LabScheduling/results/sensitivity/release-check.json
new file mode 100644
index 00000000..277b2166
--- /dev/null
+++ b/Tutorials/LabScheduling/results/sensitivity/release-check.json
@@ -0,0 +1,67 @@
+{
+ "source_commit": "51a5067f9b0b3aaf24922b917e143e49fcf5ed6d",
+ "installed_module": ".venv/lib/python3.12/site-packages/pyqpanda_alg/LabScheduling/__init__.py",
+ "installed_core_matches_source": true,
+ "cases": [
+ {
+ "case": "tradeoff_sensitivity",
+ "command": [
+ ".venv/bin/python",
+ "pyqpanda-algorithm/example/LabScheduling/tradeoff_demo.py",
+ "--sensitivity",
+ "--output",
+ "reports/demo"
+ ],
+ "exit_code": 0,
+ "expected_exit_code": 0,
+ "runtime_seconds": 6.984278827992966
+ },
+ {
+ "case": "arc",
+ "command": [
+ ".venv/bin/python",
+ "-m",
+ "pyqpanda_alg.LabScheduling",
+ "pyqpanda-algorithm/example/LabScheduling/data/support-chain.json",
+ "--reduce",
+ "--pruning",
+ "arc",
+ "--output",
+ "reports/arc.json"
+ ],
+ "exit_code": 0,
+ "expected_exit_code": 0,
+ "runtime_seconds": 2.395720750995679
+ },
+ {
+ "case": "resource_limit",
+ "command": [
+ ".venv/bin/python",
+ "-m",
+ "pyqpanda_alg.LabScheduling",
+ "pyqpanda-algorithm/example/LabScheduling/data/support-chain.json",
+ "--reduce",
+ "--output",
+ "reports/limit.json"
+ ],
+ "exit_code": 5,
+ "expected_exit_code": 5,
+ "runtime_seconds": 1.8166655529930722
+ },
+ {
+ "case": "infeasible",
+ "command": [
+ ".venv/bin/python",
+ "-m",
+ "pyqpanda_alg.LabScheduling",
+ "pyqpanda-algorithm/example/LabScheduling/data/infeasible.json",
+ "--reduce",
+ "--output",
+ "reports/infeasible.json"
+ ],
+ "exit_code": 3,
+ "expected_exit_code": 3,
+ "runtime_seconds": 2.253177899008733
+ }
+ ]
+}
diff --git a/Tutorials/LabScheduling/results/sensitivity/replay.json b/Tutorials/LabScheduling/results/sensitivity/replay.json
new file mode 100644
index 00000000..c6793617
--- /dev/null
+++ b/Tutorials/LabScheduling/results/sensitivity/replay.json
@@ -0,0 +1,5 @@
+{
+ "identical_except_timing": true,
+ "weights": 7,
+ "runs": 21
+}
diff --git a/Tutorials/LabScheduling/results/sensitivity/results.json b/Tutorials/LabScheduling/results/sensitivity/results.json
new file mode 100644
index 00000000..6d822288
--- /dev/null
+++ b/Tutorials/LabScheduling/results/sensitivity/results.json
@@ -0,0 +1 @@
+{"config":{"base_input":"tradeoff.json","base_sha256":"fb186f6154a157be65af2f6b9e65c295c016791fd60e21b1e257ab35b2f63b9f","weights":[0,1,2,3,4,5,6],"seeds":[7,19,42],"solver":{"reduce":true,"layers":1,"shots":512,"maxiter":60,"restarts":2,"mixer":"xy"}},"input_sha256":[{"weight":0,"file":"inputs/w0.json","sha256":"6daa84c31e281c4fca842d73cf571ab50870a9c9519008d79ed3541da640e51b"},{"weight":1,"file":"inputs/w1.json","sha256":"baca28144fddd78eebb9d58b10dca898d4f368b0bebd459ee59a0fe29a607a35"},{"weight":2,"file":"inputs/w2.json","sha256":"ca086f1c548fc1d5b8bce08630bb40874d9ab503b078c7c3fa14b5c6bcc9dae2"},{"weight":3,"file":"inputs/w3.json","sha256":"2a30ba6dac08669c90157e0194327c6decd58ffc4bf22e35c0166d29a654d369"},{"weight":4,"file":"inputs/w4.json","sha256":"ecc4c7f58290d0d3f13d3e5d72d401065b0087c2537a901bab0069f1b74ab2af"},{"weight":5,"file":"inputs/w5.json","sha256":"048a2f9e1cf05e623f13cdaa35dcf28cf202a0539c5a443156c5d421ce8d96f2"},{"weight":6,"file":"inputs/w6.json","sha256":"57dab05c68f24f86e4821c2378785d4245c582be33f14d92b0fbf407bc4188ad"}],"source_sha256":{"LabScheduling/__init__.py":"1336ac94b68e53a108965f0f2127d619c08d3c4ecfd6b541233c193b6a9ee474","LabScheduling/__main__.py":"6d147f69d578cd770d24d52ce7b7aeea0f487ad7279fb9b70fb413c34c72b328","LabScheduling/bookings.py":"dba45010ef9e5f6a1781d8a8d79e9f3faf4fbf90223f526f550687723de1382a","LabScheduling/classical.py":"d1bd575af9969c49cda59cd15328d98f176bb004ebc22e887be173b43d69aac5","LabScheduling/metrics.py":"b084507c46a7bf6cc1ca2a6a116156e24a23efb3fdea699f02b4a29bdbd503e0","LabScheduling/milp.py":"fc3b22b705beb95491b6b9c51f875480a021bbb40607810abdc04fd6dc8b97a2","LabScheduling/model.py":"f442c4751a7f17f66e5fae331e14f75eaa327177af5346a49ceddb87e86ef509","LabScheduling/problem.py":"5abd2c9f01a712fb18ac7791bb89cba435eecd35f49b05283a3ca7ad6d7f582b","LabScheduling/quantum.py":"3f8469be5a92afbf87eb0c82f7b80282a6443edfbe335a55635717f40501522f","LabScheduling/reduction.py":"fa249b234ef4fc74c88a916a6bba87bd6150f2905dd47fe860e2e7d5617d7870","LabScheduling/report.py":"3f98ebf581433796cb8c7dd421260bb6e5f30d17495dc24bf7f4be11dfe6644c","example/sensitivity.py":"3332a9bcb670907335c3ea1e97bebd13036c7b2efb9131002bd236618a8c84d1","example/tradeoff_demo.py":"45759239421e53f8ffce347b48c0b0d7ed190c130b139cba0fbd540872cf3cfb","example/stress_benchmark.py":"30c66c5a33cbf8c72c62c422a6a442c7504f3359142d1571f2d071e6a0d0ed4e","example/summarize_matched.py":"1392f64ca1bd1bb953ea7e09c6b49229752c3c15a21db60f42738956bbf17805","protocol":"094e576209b2191be13f5e174acbd39f44c8e4cbcc7bf1b2e70450cf832a3a04","configuration":"bf8d52ee029cb99e7036725c93a8810296d4989a3d1d67817528c5d7ce2d5d6a"},"environment":{"python":"3.12.3","platform":"Linux","pyqpanda3":"0.4.1","pyqpanda_alg":"2.0.0","numpy":"2.5.3","scipy":"1.18.1"},"weights":[{"weight":0,"optimum":6,"optimal_choices":[[1,1,1]],"optimal_changed_tasks":[3],"alternatives":[{"feasible":true,"violations":[],"violation_count":0,"objective":6,"preference_cost":6,"change_cost":0,"changed_tasks":3,"max_start_shift":2,"choices":[1,1,1],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]},{"feasible":true,"violations":[],"violation_count":0,"objective":9,"preference_cost":9,"change_cost":0,"changed_tasks":3,"max_start_shift":5,"choices":[1,1,2],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":10,"end":12}]},{"feasible":true,"violations":[],"violation_count":0,"objective":12,"preference_cost":12,"change_cost":0,"changed_tasks":3,"max_start_shift":5,"choices":[1,2,2],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":8,"end":9},{"task":"C","resource":"oven","start":10,"end":12}]},{"feasible":true,"violations":[],"violation_count":0,"objective":12,"preference_cost":12,"change_cost":0,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]},{"feasible":true,"violations":[],"violation_count":0,"objective":14,"preference_cost":14,"change_cost":0,"changed_tasks":2,"max_start_shift":2,"choices":[2,0,1],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":7,"end":9}]},{"feasible":true,"violations":[],"violation_count":0,"objective":17,"preference_cost":17,"change_cost":0,"changed_tasks":2,"max_start_shift":5,"choices":[2,0,2],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":10,"end":12}]},{"feasible":true,"violations":[],"violation_count":0,"objective":16,"preference_cost":16,"change_cost":0,"changed_tasks":3,"max_start_shift":2,"choices":[2,1,1],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]},{"feasible":true,"violations":[],"violation_count":0,"objective":19,"preference_cost":19,"change_cost":0,"changed_tasks":3,"max_start_shift":5,"choices":[2,1,2],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":10,"end":12}]},{"feasible":true,"violations":[],"violation_count":0,"objective":22,"preference_cost":22,"change_cost":0,"changed_tasks":3,"max_start_shift":5,"choices":[2,2,2],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":8,"end":9},{"task":"C","resource":"oven","start":10,"end":12}]}],"samples":[{"seed":7,"status":"feasible","objective":6,"violation_count":0,"preference_cost":6,"change_cost":0,"changed_tasks":3,"choices":[1,1,1],"absolute_gap":0,"optimal":true,"runtime_seconds":0.14334576900000684},{"seed":19,"status":"feasible","objective":6,"violation_count":0,"preference_cost":6,"change_cost":0,"changed_tasks":3,"choices":[1,1,1],"absolute_gap":0,"optimal":true,"runtime_seconds":0.1556994359998498},{"seed":42,"status":"feasible","objective":6,"violation_count":0,"preference_cost":6,"change_cost":0,"changed_tasks":3,"choices":[1,1,1],"absolute_gap":0,"optimal":true,"runtime_seconds":0.15822440000192728}]},{"weight":1,"optimum":9,"optimal_choices":[[1,1,1]],"optimal_changed_tasks":[3],"alternatives":[{"feasible":true,"violations":[],"violation_count":0,"objective":9,"preference_cost":6,"change_cost":3,"changed_tasks":3,"max_start_shift":2,"choices":[1,1,1],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]},{"feasible":true,"violations":[],"violation_count":0,"objective":12,"preference_cost":9,"change_cost":3,"changed_tasks":3,"max_start_shift":5,"choices":[1,1,2],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":10,"end":12}]},{"feasible":true,"violations":[],"violation_count":0,"objective":15,"preference_cost":12,"change_cost":3,"changed_tasks":3,"max_start_shift":5,"choices":[1,2,2],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":8,"end":9},{"task":"C","resource":"oven","start":10,"end":12}]},{"feasible":true,"violations":[],"violation_count":0,"objective":13,"preference_cost":12,"change_cost":1,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]},{"feasible":true,"violations":[],"violation_count":0,"objective":16,"preference_cost":14,"change_cost":2,"changed_tasks":2,"max_start_shift":2,"choices":[2,0,1],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":7,"end":9}]},{"feasible":true,"violations":[],"violation_count":0,"objective":19,"preference_cost":17,"change_cost":2,"changed_tasks":2,"max_start_shift":5,"choices":[2,0,2],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":10,"end":12}]},{"feasible":true,"violations":[],"violation_count":0,"objective":19,"preference_cost":16,"change_cost":3,"changed_tasks":3,"max_start_shift":2,"choices":[2,1,1],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]},{"feasible":true,"violations":[],"violation_count":0,"objective":22,"preference_cost":19,"change_cost":3,"changed_tasks":3,"max_start_shift":5,"choices":[2,1,2],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":10,"end":12}]},{"feasible":true,"violations":[],"violation_count":0,"objective":25,"preference_cost":22,"change_cost":3,"changed_tasks":3,"max_start_shift":5,"choices":[2,2,2],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":8,"end":9},{"task":"C","resource":"oven","start":10,"end":12}]}],"samples":[{"seed":7,"status":"feasible","objective":9,"violation_count":0,"preference_cost":6,"change_cost":3,"changed_tasks":3,"choices":[1,1,1],"absolute_gap":0,"optimal":true,"runtime_seconds":0.1445694469875889},{"seed":19,"status":"feasible","objective":9,"violation_count":0,"preference_cost":6,"change_cost":3,"changed_tasks":3,"choices":[1,1,1],"absolute_gap":0,"optimal":true,"runtime_seconds":0.1541961100010667},{"seed":42,"status":"feasible","objective":9,"violation_count":0,"preference_cost":6,"change_cost":3,"changed_tasks":3,"choices":[1,1,1],"absolute_gap":0,"optimal":true,"runtime_seconds":0.16018061600334477}]},{"weight":2,"optimum":12,"optimal_choices":[[1,1,1]],"optimal_changed_tasks":[3],"alternatives":[{"feasible":true,"violations":[],"violation_count":0,"objective":12,"preference_cost":6,"change_cost":6,"changed_tasks":3,"max_start_shift":2,"choices":[1,1,1],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]},{"feasible":true,"violations":[],"violation_count":0,"objective":15,"preference_cost":9,"change_cost":6,"changed_tasks":3,"max_start_shift":5,"choices":[1,1,2],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":10,"end":12}]},{"feasible":true,"violations":[],"violation_count":0,"objective":18,"preference_cost":12,"change_cost":6,"changed_tasks":3,"max_start_shift":5,"choices":[1,2,2],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":8,"end":9},{"task":"C","resource":"oven","start":10,"end":12}]},{"feasible":true,"violations":[],"violation_count":0,"objective":14,"preference_cost":12,"change_cost":2,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]},{"feasible":true,"violations":[],"violation_count":0,"objective":18,"preference_cost":14,"change_cost":4,"changed_tasks":2,"max_start_shift":2,"choices":[2,0,1],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":7,"end":9}]},{"feasible":true,"violations":[],"violation_count":0,"objective":21,"preference_cost":17,"change_cost":4,"changed_tasks":2,"max_start_shift":5,"choices":[2,0,2],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":10,"end":12}]},{"feasible":true,"violations":[],"violation_count":0,"objective":22,"preference_cost":16,"change_cost":6,"changed_tasks":3,"max_start_shift":2,"choices":[2,1,1],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]},{"feasible":true,"violations":[],"violation_count":0,"objective":25,"preference_cost":19,"change_cost":6,"changed_tasks":3,"max_start_shift":5,"choices":[2,1,2],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":10,"end":12}]},{"feasible":true,"violations":[],"violation_count":0,"objective":28,"preference_cost":22,"change_cost":6,"changed_tasks":3,"max_start_shift":5,"choices":[2,2,2],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":8,"end":9},{"task":"C","resource":"oven","start":10,"end":12}]}],"samples":[{"seed":7,"status":"feasible","objective":12,"violation_count":0,"preference_cost":6,"change_cost":6,"changed_tasks":3,"choices":[1,1,1],"absolute_gap":0,"optimal":true,"runtime_seconds":0.15546930600248743},{"seed":19,"status":"feasible","objective":12,"violation_count":0,"preference_cost":6,"change_cost":6,"changed_tasks":3,"choices":[1,1,1],"absolute_gap":0,"optimal":true,"runtime_seconds":0.1660860300034983},{"seed":42,"status":"feasible","objective":12,"violation_count":0,"preference_cost":6,"change_cost":6,"changed_tasks":3,"choices":[1,1,1],"absolute_gap":0,"optimal":true,"runtime_seconds":0.22897668200312182}]},{"weight":3,"optimum":15,"optimal_choices":[[1,1,1],[2,0,0]],"optimal_changed_tasks":[1,3],"alternatives":[{"feasible":true,"violations":[],"violation_count":0,"objective":15,"preference_cost":6,"change_cost":9,"changed_tasks":3,"max_start_shift":2,"choices":[1,1,1],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]},{"feasible":true,"violations":[],"violation_count":0,"objective":18,"preference_cost":9,"change_cost":9,"changed_tasks":3,"max_start_shift":5,"choices":[1,1,2],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":10,"end":12}]},{"feasible":true,"violations":[],"violation_count":0,"objective":21,"preference_cost":12,"change_cost":9,"changed_tasks":3,"max_start_shift":5,"choices":[1,2,2],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":8,"end":9},{"task":"C","resource":"oven","start":10,"end":12}]},{"feasible":true,"violations":[],"violation_count":0,"objective":15,"preference_cost":12,"change_cost":3,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]},{"feasible":true,"violations":[],"violation_count":0,"objective":20,"preference_cost":14,"change_cost":6,"changed_tasks":2,"max_start_shift":2,"choices":[2,0,1],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":7,"end":9}]},{"feasible":true,"violations":[],"violation_count":0,"objective":23,"preference_cost":17,"change_cost":6,"changed_tasks":2,"max_start_shift":5,"choices":[2,0,2],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":10,"end":12}]},{"feasible":true,"violations":[],"violation_count":0,"objective":25,"preference_cost":16,"change_cost":9,"changed_tasks":3,"max_start_shift":2,"choices":[2,1,1],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]},{"feasible":true,"violations":[],"violation_count":0,"objective":28,"preference_cost":19,"change_cost":9,"changed_tasks":3,"max_start_shift":5,"choices":[2,1,2],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":10,"end":12}]},{"feasible":true,"violations":[],"violation_count":0,"objective":31,"preference_cost":22,"change_cost":9,"changed_tasks":3,"max_start_shift":5,"choices":[2,2,2],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":8,"end":9},{"task":"C","resource":"oven","start":10,"end":12}]}],"samples":[{"seed":7,"status":"feasible","objective":15,"violation_count":0,"preference_cost":12,"change_cost":3,"changed_tasks":1,"choices":[2,0,0],"absolute_gap":0,"optimal":true,"runtime_seconds":0.16437352499633562},{"seed":19,"status":"feasible","objective":15,"violation_count":0,"preference_cost":12,"change_cost":3,"changed_tasks":1,"choices":[2,0,0],"absolute_gap":0,"optimal":true,"runtime_seconds":0.16197157200076617},{"seed":42,"status":"feasible","objective":15,"violation_count":0,"preference_cost":12,"change_cost":3,"changed_tasks":1,"choices":[2,0,0],"absolute_gap":0,"optimal":true,"runtime_seconds":0.15598869298992213}]},{"weight":4,"optimum":16,"optimal_choices":[[2,0,0]],"optimal_changed_tasks":[1],"alternatives":[{"feasible":true,"violations":[],"violation_count":0,"objective":18,"preference_cost":6,"change_cost":12,"changed_tasks":3,"max_start_shift":2,"choices":[1,1,1],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]},{"feasible":true,"violations":[],"violation_count":0,"objective":21,"preference_cost":9,"change_cost":12,"changed_tasks":3,"max_start_shift":5,"choices":[1,1,2],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":10,"end":12}]},{"feasible":true,"violations":[],"violation_count":0,"objective":24,"preference_cost":12,"change_cost":12,"changed_tasks":3,"max_start_shift":5,"choices":[1,2,2],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":8,"end":9},{"task":"C","resource":"oven","start":10,"end":12}]},{"feasible":true,"violations":[],"violation_count":0,"objective":16,"preference_cost":12,"change_cost":4,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]},{"feasible":true,"violations":[],"violation_count":0,"objective":22,"preference_cost":14,"change_cost":8,"changed_tasks":2,"max_start_shift":2,"choices":[2,0,1],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":7,"end":9}]},{"feasible":true,"violations":[],"violation_count":0,"objective":25,"preference_cost":17,"change_cost":8,"changed_tasks":2,"max_start_shift":5,"choices":[2,0,2],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":10,"end":12}]},{"feasible":true,"violations":[],"violation_count":0,"objective":28,"preference_cost":16,"change_cost":12,"changed_tasks":3,"max_start_shift":2,"choices":[2,1,1],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]},{"feasible":true,"violations":[],"violation_count":0,"objective":31,"preference_cost":19,"change_cost":12,"changed_tasks":3,"max_start_shift":5,"choices":[2,1,2],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":10,"end":12}]},{"feasible":true,"violations":[],"violation_count":0,"objective":34,"preference_cost":22,"change_cost":12,"changed_tasks":3,"max_start_shift":5,"choices":[2,2,2],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":8,"end":9},{"task":"C","resource":"oven","start":10,"end":12}]}],"samples":[{"seed":7,"status":"feasible","objective":16,"violation_count":0,"preference_cost":12,"change_cost":4,"changed_tasks":1,"choices":[2,0,0],"absolute_gap":0,"optimal":true,"runtime_seconds":0.14991560800990555},{"seed":19,"status":"feasible","objective":16,"violation_count":0,"preference_cost":12,"change_cost":4,"changed_tasks":1,"choices":[2,0,0],"absolute_gap":0,"optimal":true,"runtime_seconds":0.1526417299901368},{"seed":42,"status":"feasible","objective":16,"violation_count":0,"preference_cost":12,"change_cost":4,"changed_tasks":1,"choices":[2,0,0],"absolute_gap":0,"optimal":true,"runtime_seconds":0.16101771299145184}]},{"weight":5,"optimum":17,"optimal_choices":[[2,0,0]],"optimal_changed_tasks":[1],"alternatives":[{"feasible":true,"violations":[],"violation_count":0,"objective":21,"preference_cost":6,"change_cost":15,"changed_tasks":3,"max_start_shift":2,"choices":[1,1,1],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]},{"feasible":true,"violations":[],"violation_count":0,"objective":24,"preference_cost":9,"change_cost":15,"changed_tasks":3,"max_start_shift":5,"choices":[1,1,2],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":10,"end":12}]},{"feasible":true,"violations":[],"violation_count":0,"objective":27,"preference_cost":12,"change_cost":15,"changed_tasks":3,"max_start_shift":5,"choices":[1,2,2],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":8,"end":9},{"task":"C","resource":"oven","start":10,"end":12}]},{"feasible":true,"violations":[],"violation_count":0,"objective":17,"preference_cost":12,"change_cost":5,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]},{"feasible":true,"violations":[],"violation_count":0,"objective":24,"preference_cost":14,"change_cost":10,"changed_tasks":2,"max_start_shift":2,"choices":[2,0,1],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":7,"end":9}]},{"feasible":true,"violations":[],"violation_count":0,"objective":27,"preference_cost":17,"change_cost":10,"changed_tasks":2,"max_start_shift":5,"choices":[2,0,2],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":10,"end":12}]},{"feasible":true,"violations":[],"violation_count":0,"objective":31,"preference_cost":16,"change_cost":15,"changed_tasks":3,"max_start_shift":2,"choices":[2,1,1],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]},{"feasible":true,"violations":[],"violation_count":0,"objective":34,"preference_cost":19,"change_cost":15,"changed_tasks":3,"max_start_shift":5,"choices":[2,1,2],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":10,"end":12}]},{"feasible":true,"violations":[],"violation_count":0,"objective":37,"preference_cost":22,"change_cost":15,"changed_tasks":3,"max_start_shift":5,"choices":[2,2,2],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":8,"end":9},{"task":"C","resource":"oven","start":10,"end":12}]}],"samples":[{"seed":7,"status":"feasible","objective":17,"violation_count":0,"preference_cost":12,"change_cost":5,"changed_tasks":1,"choices":[2,0,0],"absolute_gap":0,"optimal":true,"runtime_seconds":0.15659951898851432},{"seed":19,"status":"feasible","objective":17,"violation_count":0,"preference_cost":12,"change_cost":5,"changed_tasks":1,"choices":[2,0,0],"absolute_gap":0,"optimal":true,"runtime_seconds":0.16391396599647123},{"seed":42,"status":"feasible","objective":17,"violation_count":0,"preference_cost":12,"change_cost":5,"changed_tasks":1,"choices":[2,0,0],"absolute_gap":0,"optimal":true,"runtime_seconds":0.1747491020068992}]},{"weight":6,"optimum":18,"optimal_choices":[[2,0,0]],"optimal_changed_tasks":[1],"alternatives":[{"feasible":true,"violations":[],"violation_count":0,"objective":24,"preference_cost":6,"change_cost":18,"changed_tasks":3,"max_start_shift":2,"choices":[1,1,1],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]},{"feasible":true,"violations":[],"violation_count":0,"objective":27,"preference_cost":9,"change_cost":18,"changed_tasks":3,"max_start_shift":5,"choices":[1,1,2],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":10,"end":12}]},{"feasible":true,"violations":[],"violation_count":0,"objective":30,"preference_cost":12,"change_cost":18,"changed_tasks":3,"max_start_shift":5,"choices":[1,2,2],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":8,"end":9},{"task":"C","resource":"oven","start":10,"end":12}]},{"feasible":true,"violations":[],"violation_count":0,"objective":18,"preference_cost":12,"change_cost":6,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]},{"feasible":true,"violations":[],"violation_count":0,"objective":26,"preference_cost":14,"change_cost":12,"changed_tasks":2,"max_start_shift":2,"choices":[2,0,1],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":7,"end":9}]},{"feasible":true,"violations":[],"violation_count":0,"objective":29,"preference_cost":17,"change_cost":12,"changed_tasks":2,"max_start_shift":5,"choices":[2,0,2],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":10,"end":12}]},{"feasible":true,"violations":[],"violation_count":0,"objective":34,"preference_cost":16,"change_cost":18,"changed_tasks":3,"max_start_shift":2,"choices":[2,1,1],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]},{"feasible":true,"violations":[],"violation_count":0,"objective":37,"preference_cost":19,"change_cost":18,"changed_tasks":3,"max_start_shift":5,"choices":[2,1,2],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":10,"end":12}]},{"feasible":true,"violations":[],"violation_count":0,"objective":40,"preference_cost":22,"change_cost":18,"changed_tasks":3,"max_start_shift":5,"choices":[2,2,2],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":8,"end":9},{"task":"C","resource":"oven","start":10,"end":12}]}],"samples":[{"seed":7,"status":"feasible","objective":18,"violation_count":0,"preference_cost":12,"change_cost":6,"changed_tasks":1,"choices":[2,0,0],"absolute_gap":0,"optimal":true,"runtime_seconds":0.17377842299174517},{"seed":19,"status":"feasible","objective":18,"violation_count":0,"preference_cost":12,"change_cost":6,"changed_tasks":1,"choices":[2,0,0],"absolute_gap":0,"optimal":true,"runtime_seconds":0.1764827070001047},{"seed":42,"status":"feasible","objective":18,"violation_count":0,"preference_cost":12,"change_cost":6,"changed_tasks":1,"choices":[2,0,0],"absolute_gap":0,"optimal":true,"runtime_seconds":0.17967920600494836}]}],"runs":[{"weight":0,"seed":7,"report":{"schema_version":2,"problem":"合成连锁改约:低成本整体后移或高成本备用设备","input_sha256":"6daa84c31e281c4fca842d73cf571ab50870a9c9519008d79ed3541da640e51b","environment":{"python":"3.12.3","platform":"Linux","pyqpanda3":"0.4.1","pyqpanda_alg":"2.0.0","numpy":"2.5.3","scipy":"1.18.1"},"model":{"qubits":8,"penalty":23,"objective_bound":22,"offset":69,"linear":[-21,-11,-23,-21,-18,-23,-21,-18],"quadratic":[[0,1,46],[0,2,23],[2,3,46],[2,4,46],[3,4,46],[3,5,23],[4,5,23],[4,6,23],[5,6,46],[5,7,46],[6,7,46]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[{"task":"A","resource":"oven","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":2},{"index":1,"task":"A","resource":"backup","start":0,"cost":12},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":2},{"index":4,"task":"B","resource":"oven","start":8,"cost":5},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":2},{"index":7,"task":"C","resource":"oven","start":10,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]},"quantum":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[0,1,2,3,4,5,6,7]],"components":[{"qubits":8,"penalty":23,"objective_bound":22,"offset":69,"linear":[-21,-11,-23,-21,-18,-23,-21,-18],"quadratic":[[0,1,46],[0,2,23],[2,3,46],[2,4,46],[3,4,46],[3,5,23],[4,5,23],[4,6,23],[5,6,46],[5,7,46],[6,7,46]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":2},{"index":1,"task":"A","resource":"backup","start":0,"cost":12},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":2},{"index":4,"task":"B","resource":"oven","start":8,"cost":5},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":2},{"index":7,"task":"C","resource":"oven","start":10,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":6},"components":[{"status":"feasible","best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":6},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.1283300703173267,1.4536261230718293],"expected_energy":21.717999076498906,"initial_expected_energy":22.092419817748098,"history":[22.092419817748098,21.936018278670815,25.906995308971105,25.634588799449304,25.22815526463792,23.512228206526995,21.928064169718297,21.77089021725913,22.068772444530644,21.75986772599524,21.76521196746296,21.759758806024387,21.764968597782513,21.75814888849051,21.759577977368444,21.75755400002439,21.75848956131232,21.757366833341347,21.757068325292188,21.756704801763487,21.756044419735606,21.756052860293206,21.75563219165936,21.756028084114106,21.7558691164127,21.755316385567255,21.75531586658206,21.75549640372347,21.75534685097827,21.75513973909871,21.75484560604943,21.754865225740275,21.75459774866394,21.75438623217319,21.754146913138207,21.755059713317628,21.75395429071593,21.753588287311338,21.753275323627605,21.75325481410918,21.75288951896053,21.752547551026517,21.751924104859466,21.750795175701203,21.748451326454358,21.7440979080982,21.735386139000077,21.724118769406484,21.96186297322562,21.859743946814895,21.726575884269657,21.72419433170726,21.740477963508496,21.721762576960963,21.719316357565297,21.72027237707026,21.718808121404138,21.718639863657536,21.71804759158492,21.717999076498906,22.196077148305438,22.08510913302354,26.303044840647946,25.380727862662777,24.759258408434235,23.770603450094082,22.07890163551639,21.783679382214878,21.912732826222364,21.786320233018344,21.799488580835867,21.772009823443867,21.788735382912797,21.772869899969983,21.772846844257323,21.771925131191303,21.777658303991075,21.77037238367169,21.76958812895147,21.769022222338336,21.769911369689936,21.768591494291,21.768204807954906,21.7674120662697,21.76597934779096,21.766194845604026,21.767281213227548,21.76553825293828,21.765649108343222,21.76547886885931,21.76504555094493,21.764316978528207,21.762725776865032,21.75959840797786,21.754389871102887,21.816068765728794,21.801297154936208,21.757059766400946,21.75403416135462,21.759055354868188,21.75327102936941,21.752404918596262,21.75185771628528,21.752827171262346,21.751484394347898,21.75113380841929,21.750848438959007,21.74998577107212,21.74947262280864,21.74867566050275,21.74740893467753,21.744498375940758,21.74093891262972,21.752762238078027,21.75906760421669,21.74013426727951,21.73823476275002,21.73917473072283,21.739123227546543,21.738279340726507],"feasible_probability":0.5521234737407527,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.556640625,"counts":{"00100101":22,"00100110":62,"00101001":18,"00101010":11,"00110001":44,"00110010":18,"01000101":2,"01000110":31,"01001001":32,"01001010":20,"01010001":76,"01010010":29,"10000101":7,"10000110":35,"10001001":67,"10001010":8,"10010001":15,"10010010":15},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12273909599753097}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.5521234737407527,"total_shots":512,"runtime_seconds":0.12315800799115095,"business_metrics":{"feasible":true,"violations":[],"violation_count":0,"objective":6,"preference_cost":6,"change_cost":0,"changed_tasks":3,"max_start_shift":2,"choices":[1,1,1],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]}},"exact":{"status":"optimal","best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":6},"combinations":18,"feasible_count":9,"runtime_seconds":0.00011056300718337297},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":6,"preference_cost":6,"change_cost":0,"changed_tasks":3,"max_start_shift":2,"choices":[1,1,1],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]},"dual_bound":6.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.007385001008515246},"uniform_one_hot":{"best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":6},"shots":512,"seed":7,"feasible_probability":0.5,"sampled_feasible_fraction":0.537109375,"runtime_seconds":0.00943051400827244},"absolute_gap":0,"status":"feasible","runtime_seconds":0.14334576900000684}},{"weight":0,"seed":19,"report":{"schema_version":2,"problem":"合成连锁改约:低成本整体后移或高成本备用设备","input_sha256":"6daa84c31e281c4fca842d73cf571ab50870a9c9519008d79ed3541da640e51b","environment":{"python":"3.12.3","platform":"Linux","pyqpanda3":"0.4.1","pyqpanda_alg":"2.0.0","numpy":"2.5.3","scipy":"1.18.1"},"model":{"qubits":8,"penalty":23,"objective_bound":22,"offset":69,"linear":[-21,-11,-23,-21,-18,-23,-21,-18],"quadratic":[[0,1,46],[0,2,23],[2,3,46],[2,4,46],[3,4,46],[3,5,23],[4,5,23],[4,6,23],[5,6,46],[5,7,46],[6,7,46]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[{"task":"A","resource":"oven","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":2},{"index":1,"task":"A","resource":"backup","start":0,"cost":12},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":2},{"index":4,"task":"B","resource":"oven","start":8,"cost":5},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":2},{"index":7,"task":"C","resource":"oven","start":10,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]},"quantum":{"seed":19,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[0,1,2,3,4,5,6,7]],"components":[{"qubits":8,"penalty":23,"objective_bound":22,"offset":69,"linear":[-21,-11,-23,-21,-18,-23,-21,-18],"quadratic":[[0,1,46],[0,2,23],[2,3,46],[2,4,46],[3,4,46],[3,5,23],[4,5,23],[4,6,23],[5,6,46],[5,7,46],[6,7,46]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":2},{"index":1,"task":"A","resource":"backup","start":0,"cost":12},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":2},{"index":4,"task":"B","resource":"oven","start":8,"cost":5},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":2},{"index":7,"task":"C","resource":"oven","start":10,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":6},"components":[{"status":"feasible","best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":6},"seed":797913628,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.5545493801871717,2.918357920091837],"expected_energy":15.08544752554832,"initial_expected_energy":20.068886293828292,"history":[20.068886293828292,20.291459668685015,23.870583568668927,22.772437490234253,20.635353734443076,20.096189740841705,21.32068435272596,19.944076415616422,19.820786101226428,19.744278961221248,19.974995987775976,19.644705571618772,19.55163308996687,19.36971420599044,18.99946023781002,18.433046591694676,22.70243684766581,21.95208672009667,17.667185924202336,18.3429019742812,17.5632616540118,17.82713087805699,17.465801975566176,17.348792424017958,17.127698101156334,16.914728158079697,16.773903502835292,16.623916437511376,17.45679151037796,16.126147961863495,16.248126289375747,16.099639106669734,16.23439024447734,16.047194280067398,16.0163574651423,15.975336215060052,15.93544131155867,15.864760657785064,15.744325649216874,15.486143808060772,15.177296543341836,20.614929400150302,16.445746253362074,15.853120915035777,15.157476927207366,15.132465300950738,15.153682090677568,15.142419448664189,15.118304267095809,15.114389254503044,15.120087813651121,15.11133631499398,15.11926510549007,15.108166433066021,15.1056434209145,15.10062610509247,15.094408825163418,15.087792536388374,15.08544752554832,15.12909861540813,19.972798783138266,19.908747126065837,25.122745365154202,23.485098786541343,22.55124754503528,22.91676915761787,19.914672837028235,19.534524522546185,19.7172800939437,19.55733959436605,19.549599846279456,19.527404426896815,19.528255622870173,19.53068786219732,19.524475006523446,19.526741792171407,19.526064632974233,19.523957654754327,19.530399201307603,19.52187866856066,19.520195116725883,19.51750773412997,19.51173147352616,19.500762834487347,19.521533078542998,19.538976924086707,19.498492358449365,19.513943256343563,19.497776698364973,19.49625765308725,19.493305643323495,19.488518283540145,19.47950253221382,19.465230600001618,19.62529366066125,19.70593134911553,19.485639823390272,19.48805983455924,19.46384355298432,19.461250967767214,19.461749364165957,19.462464721949654,19.461378003812086,19.460769692782034,19.459836961253885,19.458063453014013,19.454779913934324,19.503664571939908,19.461438229920994,19.458880689620067,19.45421320678173,19.45401136821853,19.45358092003646,19.452780879188076,19.451384752187536,19.452757275768107,19.451252089510056,19.450103239202427,19.448089536467847,19.44525144807653],"feasible_probability":0.8114575477772397,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.791015625,"counts":{"00100101":23,"00100110":50,"00101001":22,"00101010":4,"00110001":34,"00110010":15,"01000101":8,"01000110":65,"01001001":110,"01001010":29,"01010001":1,"10000110":17,"10001001":55,"10001010":36,"10010001":37,"10010010":6},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1339732449996518}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.8114575477772397,"total_shots":512,"runtime_seconds":0.1341758009948535,"business_metrics":{"feasible":true,"violations":[],"violation_count":0,"objective":6,"preference_cost":6,"change_cost":0,"changed_tasks":3,"max_start_shift":2,"choices":[1,1,1],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]}},"exact":{"status":"optimal","best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":6},"combinations":18,"feasible_count":9,"runtime_seconds":0.00014746900706086308},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":6,"preference_cost":6,"change_cost":0,"changed_tasks":3,"max_start_shift":2,"choices":[1,1,1],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]},"dual_bound":6.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.0079955639957916},"uniform_one_hot":{"best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":6},"shots":512,"seed":19,"feasible_probability":0.5,"sampled_feasible_fraction":0.5,"runtime_seconds":0.009854580988758244},"absolute_gap":0,"status":"feasible","runtime_seconds":0.1556994359998498}},{"weight":0,"seed":42,"report":{"schema_version":2,"problem":"合成连锁改约:低成本整体后移或高成本备用设备","input_sha256":"6daa84c31e281c4fca842d73cf571ab50870a9c9519008d79ed3541da640e51b","environment":{"python":"3.12.3","platform":"Linux","pyqpanda3":"0.4.1","pyqpanda_alg":"2.0.0","numpy":"2.5.3","scipy":"1.18.1"},"model":{"qubits":8,"penalty":23,"objective_bound":22,"offset":69,"linear":[-21,-11,-23,-21,-18,-23,-21,-18],"quadratic":[[0,1,46],[0,2,23],[2,3,46],[2,4,46],[3,4,46],[3,5,23],[4,5,23],[4,6,23],[5,6,46],[5,7,46],[6,7,46]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[{"task":"A","resource":"oven","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":2},{"index":1,"task":"A","resource":"backup","start":0,"cost":12},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":2},{"index":4,"task":"B","resource":"oven","start":8,"cost":5},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":2},{"index":7,"task":"C","resource":"oven","start":10,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]},"quantum":{"seed":42,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[0,1,2,3,4,5,6,7]],"components":[{"qubits":8,"penalty":23,"objective_bound":22,"offset":69,"linear":[-21,-11,-23,-21,-18,-23,-21,-18],"quadratic":[[0,1,46],[0,2,23],[2,3,46],[2,4,46],[3,4,46],[3,5,23],[4,5,23],[4,6,23],[5,6,46],[5,7,46],[6,7,46]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":2},{"index":1,"task":"A","resource":"backup","start":0,"cost":12},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":2},{"index":4,"task":"B","resource":"oven","start":8,"cost":5},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":2},{"index":7,"task":"C","resource":"oven","start":10,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":6},"components":[{"status":"feasible","best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":6},"seed":2684470948,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.760184148682892,1.458830369624513],"expected_energy":21.684495032957063,"initial_expected_energy":23.750498008268227,"history":[23.750498008268227,24.78410731495378,23.349248674514016,23.112998102752904,24.263815910346278,24.37915974359862,22.95261477664969,23.197386345159927,22.974348209768902,23.00533213000847,22.909719840919166,22.962371156401776,22.887163080489813,22.89948264024828,22.87479210116357,22.86574804940026,22.87458391397356,22.853508629265225,22.840638069695913,22.817115343322723,22.791967870259715,22.736921776744524,22.727784952796135,22.661246854376873,22.675430226612153,22.651050227446397,22.687645969188086,22.643841024800807,22.632730694107252,22.621141822141126,22.611995541671114,22.583171605245184,22.565796704334744,22.539401500650868,22.499141194064332,22.41406047752686,22.268791706984967,26.02610966582489,23.31609105466721,22.24530718754979,23.10260156511513,22.221100173217803,22.25354540188848,22.235488639090285,22.200320004140014,22.1978871086262,22.189957757461038,22.186724389178373,22.211563704618737,22.18347408420555,22.17829880382113,22.172302686459084,22.165637162288554,22.15695763276701,22.174437603925078,22.148227848592107,22.153518690626207,22.144771040076627,22.142741822505712,22.13880602314557,22.626283294092886,22.606334689064187,22.79388275920794,25.483995728327635,28.69496999828011,21.870422249574652,23.861869320690484,21.876704935456345,21.714243245580043,22.155158845817958,21.695855027685866,21.711588319890662,21.695096163956748,21.697431431241796,21.695122012611762,21.69613100815909,21.69503744012512,21.695323351903127,21.695090654005085,21.694955424510592,21.694874944855044,21.694827363483007,21.69462876432131,21.694490621592784,21.694322355263385,21.693989086099606,21.693350085424484,21.692445192960143,21.692722474681684,21.69495743463578,21.69280542515179,21.692116478688895,21.691997525758058,21.693067956617217,21.691757712748156,21.69165983097438,21.69150281094709,21.691189074436934,21.690572870185814,21.689414716777183,21.696963811859632,21.697684464371235,21.68910298535404,21.69066596740833,21.689486150603038,21.68907107289921,21.688904241568267,21.688610939708358,21.688060486285604,21.686942064516174,21.685441421327205,21.70284093637704,21.697132117091527,21.68523251844841,21.684827878430827,21.68531038525454,21.685032071783283,21.68454791452535,21.68454519433606,21.684495032957063],"feasible_probability":0.5427008241961695,"one_hot_probability":1.0,"sampled_feasible_fraction":0.55078125,"counts":{"00100101":18,"00100110":33,"00101001":26,"00101010":20,"00110001":54,"00110010":13,"01000101":4,"01000110":41,"01001001":30,"01001010":10,"01010001":61,"01010010":25,"10000101":9,"10000110":57,"10001001":54,"10001010":14,"10010001":33,"10010010":10},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13342548700165935}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.5427008241961695,"total_shots":512,"runtime_seconds":0.13376269000582397,"business_metrics":{"feasible":true,"violations":[],"violation_count":0,"objective":6,"preference_cost":6,"change_cost":0,"changed_tasks":3,"max_start_shift":2,"choices":[1,1,1],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]}},"exact":{"status":"optimal","best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":6},"combinations":18,"feasible_count":9,"runtime_seconds":0.00011214800179004669},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":6,"preference_cost":6,"change_cost":0,"changed_tasks":3,"max_start_shift":2,"choices":[1,1,1],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]},"dual_bound":6.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.008702460007043555},"uniform_one_hot":{"best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":6},"shots":512,"seed":42,"feasible_probability":0.5,"sampled_feasible_fraction":0.490234375,"runtime_seconds":0.011981939009274356},"absolute_gap":0,"status":"feasible","runtime_seconds":0.15822440000192728}},{"weight":1,"seed":7,"report":{"schema_version":2,"problem":"合成连锁改约:低成本整体后移或高成本备用设备","input_sha256":"baca28144fddd78eebb9d58b10dca898d4f368b0bebd459ee59a0fe29a607a35","environment":{"python":"3.12.3","platform":"Linux","pyqpanda3":"0.4.1","pyqpanda_alg":"2.0.0","numpy":"2.5.3","scipy":"1.18.1"},"model":{"qubits":8,"penalty":26,"objective_bound":25,"offset":78,"linear":[-23,-13,-26,-23,-20,-26,-23,-20],"quadratic":[[0,1,52],[0,2,26],[2,3,52],[2,4,52],[3,4,52],[3,5,26],[4,5,26],[4,6,26],[5,6,52],[5,7,52],[6,7,52]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[{"task":"A","resource":"oven","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":3},{"index":1,"task":"A","resource":"backup","start":0,"cost":13},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":3},{"index":4,"task":"B","resource":"oven","start":8,"cost":6},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":3},{"index":7,"task":"C","resource":"oven","start":10,"cost":6}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]},"quantum":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[0,1,2,3,4,5,6,7]],"components":[{"qubits":8,"penalty":26,"objective_bound":25,"offset":78,"linear":[-23,-13,-26,-23,-20,-26,-23,-20],"quadratic":[[0,1,52],[0,2,26],[2,3,52],[2,4,52],[3,4,52],[3,5,26],[4,5,26],[4,6,26],[5,6,52],[5,7,52],[6,7,52]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":3},{"index":1,"task":"A","resource":"backup","start":0,"cost":13},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":3},{"index":4,"task":"B","resource":"oven","start":8,"cost":6},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":3},{"index":7,"task":"C","resource":"oven","start":10,"cost":6}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":9},"components":[{"status":"feasible","best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":9},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.0648098474224477,1.4543414279454936],"expected_energy":25.475401215653314,"initial_expected_energy":25.87376522948814,"history":[25.87376522948814,25.732707854667574,29.775530095993858,29.969235099499638,29.242681327297856,25.74563722648277,27.592490782340377,25.569335006912503,25.603825000472696,25.60084110759322,25.59882372871515,25.530124152503348,25.520905646138424,25.517044814449378,25.538860522668394,25.515461635928247,25.515823713084707,25.518913739467777,25.514914815454688,25.515642500364677,25.515163286157964,25.514587051613127,25.514771040814367,25.514512762470154,25.514338974207817,25.513988630722842,25.513289637879037,25.511897689337967,25.50959390306724,25.50954957367363,25.503187360018238,25.51890407163791,25.50958435824818,25.502527266290823,25.503930158810743,25.502279331190323,25.50150902805513,25.500322672418275,25.497736976182836,25.4925615776453,25.48261950776675,25.58853842804897,25.585497350471442,25.51151072433497,25.481408275218456,25.488168575459824,25.481770549454527,25.48109584568801,25.485046742709606,25.480159263406456,25.47966067125467,25.47913719644312,25.47859153751091,25.477411789586732,25.477821214710715,25.477042132563312,25.477668716014684,25.47688673155624,25.476591102982084,25.47605262628783,25.99423771523083,25.91169353022407,30.229867083959427,29.651938063537386,28.73242265140501,27.90474504875786,25.907848260912633,25.540258243835307,25.650796701035443,25.542763822985176,25.562389659072107,25.5186511059361,25.528821456350578,25.519459161053177,25.522585691662343,25.518082441997322,25.516229375990747,25.512426228045477,25.505499071479136,25.49618408042756,25.554736110564058,25.565694419409233,25.493386410889904,25.495817961206807,25.49588617106909,25.491523484639657,25.495225699170106,25.490749454623035,25.490954701972015,25.490396674646576,25.490323044504546,25.49088297665876,25.490309543872364,25.490115945358735,25.489789049688316,25.489181725125132,25.48892044309459,25.487356583841986,25.487480783961253,25.487099687844434,25.48756774297811,25.48730419759935,25.486801949250676,25.486771786181176,25.48660908799416,25.4864498345677,25.48613458924759,25.48551263344401,25.48429070827932,25.481889907782424,25.47807717156664,25.505150418870386,25.51648706739571,25.47716561862213,25.478356796086064,25.477851253118097,25.476744141031606,25.4807222064859,25.475771908423475,25.475401215653314],"feasible_probability":0.5553736392691782,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.56640625,"counts":{"00100101":22,"00100110":64,"00101001":17,"00101010":10,"00110001":44,"00110010":20,"01000101":2,"01000110":31,"01001001":32,"01001010":21,"01010001":73,"01010010":30,"10000101":4,"10000110":45,"10001001":50,"10001010":21,"10010001":13,"10010010":13},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13011746099800803}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.5553736392691782,"total_shots":512,"runtime_seconds":0.13033228600397706,"business_metrics":{"feasible":true,"violations":[],"violation_count":0,"objective":9,"preference_cost":6,"change_cost":3,"changed_tasks":3,"max_start_shift":2,"choices":[1,1,1],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]}},"exact":{"status":"optimal","best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":9},"combinations":18,"feasible_count":9,"runtime_seconds":0.00012063099711667746},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":9,"preference_cost":6,"change_cost":3,"changed_tasks":3,"max_start_shift":2,"choices":[1,1,1],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]},"dual_bound":9.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.001892913001938723},"uniform_one_hot":{"best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":9},"shots":512,"seed":7,"feasible_probability":0.5,"sampled_feasible_fraction":0.537109375,"runtime_seconds":0.009075980007764883},"absolute_gap":0,"status":"feasible","runtime_seconds":0.1445694469875889}},{"weight":1,"seed":19,"report":{"schema_version":2,"problem":"合成连锁改约:低成本整体后移或高成本备用设备","input_sha256":"baca28144fddd78eebb9d58b10dca898d4f368b0bebd459ee59a0fe29a607a35","environment":{"python":"3.12.3","platform":"Linux","pyqpanda3":"0.4.1","pyqpanda_alg":"2.0.0","numpy":"2.5.3","scipy":"1.18.1"},"model":{"qubits":8,"penalty":26,"objective_bound":25,"offset":78,"linear":[-23,-13,-26,-23,-20,-26,-23,-20],"quadratic":[[0,1,52],[0,2,26],[2,3,52],[2,4,52],[3,4,52],[3,5,26],[4,5,26],[4,6,26],[5,6,52],[5,7,52],[6,7,52]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[{"task":"A","resource":"oven","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":3},{"index":1,"task":"A","resource":"backup","start":0,"cost":13},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":3},{"index":4,"task":"B","resource":"oven","start":8,"cost":6},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":3},{"index":7,"task":"C","resource":"oven","start":10,"cost":6}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]},"quantum":{"seed":19,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[0,1,2,3,4,5,6,7]],"components":[{"qubits":8,"penalty":26,"objective_bound":25,"offset":78,"linear":[-23,-13,-26,-23,-20,-26,-23,-20],"quadratic":[[0,1,52],[0,2,26],[2,3,52],[2,4,52],[3,4,52],[3,5,26],[4,5,26],[4,6,26],[5,6,52],[5,7,52],[6,7,52]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":3},{"index":1,"task":"A","resource":"backup","start":0,"cost":13},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":3},{"index":4,"task":"B","resource":"oven","start":8,"cost":6},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":3},{"index":7,"task":"C","resource":"oven","start":10,"cost":6}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":9},"components":[{"status":"feasible","best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":9},"seed":797913628,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3004026104436057,2.9137468402484137],"expected_energy":18.727189820415305,"initial_expected_energy":23.763883456329303,"history":[23.763883456329303,24.124334994041487,27.78424066239983,26.435731817142965,24.354356333990616,24.91863438411852,23.721481329800906,23.544050536136496,23.57359856470969,23.485005500857547,23.438053979752823,23.431822631541912,23.60936700765206,23.435072950922173,23.35323078957188,23.219250125818235,23.126872798049096,22.88191547912964,22.634861431445852,22.237766865462923,25.985510764243116,21.950794165528446,21.718339138920193,21.272357952814474,20.66538282493619,25.195993411481297,19.96924103269949,21.667024414880963,20.295568544261407,20.009620451868773,19.922724340755092,19.861312437027152,19.854456755732443,19.912470544128475,19.843254658198916,19.821817576621545,19.779629505806177,19.6973496334801,19.54444642855048,19.487342758725266,19.335201514604183,20.589700528896287,19.08211610522299,19.196200949232935,19.057828699392786,19.151152762518386,19.045827225734858,19.014916107058877,18.96053847471469,18.904347950480215,18.854187820918195,18.88135834269074,19.04477117828437,18.847985696817794,18.801743211800584,18.7890333225014,18.822280557055016,18.775890059606585,18.752860443232542,18.727189820415305,23.544397999021257,23.368333994099725,29.172675351797295,27.36490160689826,26.307915804886935,26.71570215340237,23.363315320019684,22.93804721461005,23.138559652164936,22.932573482864996,22.996186809607472,22.931959791915173,22.917021368586944,22.908203580879455,22.90329738622777,22.902604148751315,22.898539062113038,22.89090652238954,22.876862807427194,22.894143316591162,22.915158128539645,22.89022097441719,22.876490659918996,22.87231416318079,22.86605004351521,22.853222293142213,22.83327232897386,23.44826541629715,23.093425025619553,22.85851533016942,22.856804794167225,22.831168863724887,22.828723120024407,22.827881535112397,22.836128616367965,22.82584242832103,22.824787365337265,22.823653732042157,22.822483041075685,22.819877859806198,22.82033300716121,22.819154400989248,22.82005202042283,22.81951279257394,22.818658076871742,22.818741034284443,22.81853864798635,22.81831450788056,22.817898513575905,22.8172428294256,22.818632633716565,22.816386728388565,22.81563308036756,22.816643045169144,22.814934201639492,22.814079489393297,22.812661858839416,22.818935705295175,22.811768354601796,22.810355317880195],"feasible_probability":0.7929916097746272,"one_hot_probability":1.0,"sampled_feasible_fraction":0.806640625,"counts":{"00100101":14,"00100110":51,"00101001":24,"00101010":4,"00110001":24,"00110010":15,"01000101":12,"01000110":67,"01001001":106,"01001010":25,"01010001":6,"10000110":27,"10001001":60,"10001010":25,"10010001":39,"10010010":13},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1381530539947562}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.7929916097746272,"total_shots":512,"runtime_seconds":0.13837184000294656,"business_metrics":{"feasible":true,"violations":[],"violation_count":0,"objective":9,"preference_cost":6,"change_cost":3,"changed_tasks":3,"max_start_shift":2,"choices":[1,1,1],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]}},"exact":{"status":"optimal","best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":9},"combinations":18,"feasible_count":9,"runtime_seconds":0.0001251579960808158},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":9,"preference_cost":6,"change_cost":3,"changed_tasks":3,"max_start_shift":2,"choices":[1,1,1],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]},"dual_bound":9.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.0018254219903610647},"uniform_one_hot":{"best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":9},"shots":512,"seed":19,"feasible_probability":0.5,"sampled_feasible_fraction":0.5,"runtime_seconds":0.010085586007335223},"absolute_gap":0,"status":"feasible","runtime_seconds":0.1541961100010667}},{"weight":1,"seed":42,"report":{"schema_version":2,"problem":"合成连锁改约:低成本整体后移或高成本备用设备","input_sha256":"baca28144fddd78eebb9d58b10dca898d4f368b0bebd459ee59a0fe29a607a35","environment":{"python":"3.12.3","platform":"Linux","pyqpanda3":"0.4.1","pyqpanda_alg":"2.0.0","numpy":"2.5.3","scipy":"1.18.1"},"model":{"qubits":8,"penalty":26,"objective_bound":25,"offset":78,"linear":[-23,-13,-26,-23,-20,-26,-23,-20],"quadratic":[[0,1,52],[0,2,26],[2,3,52],[2,4,52],[3,4,52],[3,5,26],[4,5,26],[4,6,26],[5,6,52],[5,7,52],[6,7,52]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[{"task":"A","resource":"oven","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":3},{"index":1,"task":"A","resource":"backup","start":0,"cost":13},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":3},{"index":4,"task":"B","resource":"oven","start":8,"cost":6},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":3},{"index":7,"task":"C","resource":"oven","start":10,"cost":6}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]},"quantum":{"seed":42,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[0,1,2,3,4,5,6,7]],"components":[{"qubits":8,"penalty":26,"objective_bound":25,"offset":78,"linear":[-23,-13,-26,-23,-20,-26,-23,-20],"quadratic":[[0,1,52],[0,2,26],[2,3,52],[2,4,52],[3,4,52],[3,5,26],[4,5,26],[4,6,26],[5,6,52],[5,7,52],[6,7,52]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":3},{"index":1,"task":"A","resource":"backup","start":0,"cost":13},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":3},{"index":4,"task":"B","resource":"oven","start":8,"cost":6},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":3},{"index":7,"task":"C","resource":"oven","start":10,"cost":6}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":9},"components":[{"status":"feasible","best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":9},"seed":2684470948,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.505895841007195,1.4597007345822055],"expected_energy":25.399091465517493,"initial_expected_energy":27.5532525836218,"history":[27.5532525836218,28.775861735060534,27.161670151193718,27.092239859134093,27.603670749569865,28.14447463060864,26.73472115120736,26.932419727410974,26.70671911332403,26.69981903305406,26.623708487440094,26.615900990762707,26.51417237313275,26.49995507277518,26.39223923993034,26.393007704554382,26.457418932226403,26.429252810100685,26.410794335977606,26.40253431913062,26.378004653217104,26.376208447037254,26.390313449270877,26.376826209851792,26.370789174584495,26.360988303051144,26.351796363170667,26.329432828178696,26.313356314929997,26.27300203598615,26.2107394352985,26.50676866436276,26.62522464155221,26.204414257174363,26.18263926556388,26.138402680741784,26.064901577776883,25.956906040904283,26.49848711885563,26.425722997820944,25.957539583355157,25.95529425812456,25.96072276574496,25.968935182154517,25.935695208086262,25.930602099981193,25.957495447441502,25.922900726170393,25.917109971936178,25.9197564910121,25.908296804686188,25.905860036826933,25.92055657565181,25.901052225388344,25.897156378019783,25.890532141250013,25.87608537909543,25.84875296883539,25.828543466902566,25.943646314982168,26.408503625036765,26.376713549995994,26.399007209818475,29.15565116241634,26.34904627089636,25.595388401118104,28.04739735320681,26.231212684926298,25.920256261688493,25.882737927435223,25.41667838766294,25.583471670616337,25.47238295497742,25.404755983477607,25.403931618090294,25.40731580885487,25.408023470228823,25.399809127721028,25.401454224034943,25.39989919505142,25.39997028817466,25.39973751848644,25.399827620248004,25.399774045972283,25.399709114163883,25.399755458877852,25.39967988921544,25.399681587065004,25.399669057559635,25.39966871277632,25.399681077571575,25.39966929604824,25.399662507225067,25.39965246767374,25.39965179629781,25.39964242731896,25.39963325114102,25.399615251078018,25.39958029450861,25.39951236312654,25.39939774746528,25.399912511302617,25.40025672515577,25.399429091901915,25.399390225424632,25.399465094296374,25.399362604722256,25.3993498840315,25.399333300549223,25.399318859333015,25.39928668384836,25.39923408540238,25.399100012989955,25.399243150462596,25.39977178037017,25.399200898764846,25.399134334919943,25.399111035138272,25.399091465517493,25.399112303940015],"feasible_probability":0.550264636239668,"one_hot_probability":1.0,"sampled_feasible_fraction":0.541015625,"counts":{"00100101":23,"00100110":51,"00101001":25,"00101010":18,"00110001":45,"00110010":23,"01000101":4,"01000110":27,"01001001":37,"01001010":15,"01010001":61,"01010010":24,"10000101":12,"10000110":46,"10001001":36,"10001010":18,"10010001":23,"10010010":24},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1440574820007896}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.550264636239668,"total_shots":512,"runtime_seconds":0.14427110299584456,"business_metrics":{"feasible":true,"violations":[],"violation_count":0,"objective":9,"preference_cost":6,"change_cost":3,"changed_tasks":3,"max_start_shift":2,"choices":[1,1,1],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]}},"exact":{"status":"optimal","best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":9},"combinations":18,"feasible_count":9,"runtime_seconds":0.00012426599278114736},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":9,"preference_cost":6,"change_cost":3,"changed_tasks":3,"max_start_shift":2,"choices":[1,1,1],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]},"dual_bound":9.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.002177677000872791},"uniform_one_hot":{"best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":9},"shots":512,"seed":42,"feasible_probability":0.5,"sampled_feasible_fraction":0.490234375,"runtime_seconds":0.010579280991805717},"absolute_gap":0,"status":"feasible","runtime_seconds":0.16018061600334477}},{"weight":2,"seed":7,"report":{"schema_version":2,"problem":"合成连锁改约:低成本整体后移或高成本备用设备","input_sha256":"ca086f1c548fc1d5b8bce08630bb40874d9ab503b078c7c3fa14b5c6bcc9dae2","environment":{"python":"3.12.3","platform":"Linux","pyqpanda3":"0.4.1","pyqpanda_alg":"2.0.0","numpy":"2.5.3","scipy":"1.18.1"},"model":{"qubits":8,"penalty":29,"objective_bound":28,"offset":87,"linear":[-25,-15,-29,-25,-22,-29,-25,-22],"quadratic":[[0,1,58],[0,2,29],[2,3,58],[2,4,58],[3,4,58],[3,5,29],[4,5,29],[4,6,29],[5,6,58],[5,7,58],[6,7,58]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[{"task":"A","resource":"oven","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":4},{"index":1,"task":"A","resource":"backup","start":0,"cost":14},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":4},{"index":4,"task":"B","resource":"oven","start":8,"cost":7},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":4},{"index":7,"task":"C","resource":"oven","start":10,"cost":7}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]},"quantum":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[0,1,2,3,4,5,6,7]],"components":[{"qubits":8,"penalty":29,"objective_bound":28,"offset":87,"linear":[-25,-15,-29,-25,-22,-29,-25,-22],"quadratic":[[0,1,58],[0,2,29],[2,3,58],[2,4,58],[3,4,58],[3,5,29],[4,5,29],[4,6,29],[5,6,58],[5,7,58],[6,7,58]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":4},{"index":1,"task":"A","resource":"backup","start":0,"cost":14},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":4},{"index":4,"task":"B","resource":"oven","start":8,"cost":7},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":4},{"index":7,"task":"C","resource":"oven","start":10,"cost":7}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":12,"raw_cost":12,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":12},"components":[{"status":"feasible","best":{"feasible":true,"objective":12,"raw_cost":12,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":12},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.092786972576943,1.456100045288597],"expected_energy":29.190260151910458,"initial_expected_energy":29.613481700185602,"history":[29.613481700185602,29.493786408763174,33.66427684583551,34.25254556790344,33.26227415318608,31.619366169119214,29.48860256528762,29.23559827259821,29.55129564282673,29.23075418465455,29.263924908273367,29.230843111320365,29.22676266867058,29.22833407501895,29.22756458869051,29.226936357784744,29.226356746963248,29.226255058089087,29.22518299841374,29.22459278565833,29.223699670006972,29.22213262169249,29.21886060567848,29.21248848577187,29.209574619269528,29.3029055704771,29.300259288558273,29.210204025076088,29.200492747030154,29.21571201810537,29.201725982617987,29.200199171045426,29.199777213026344,29.20108839150789,29.199355963395885,29.19903343780053,29.198321763701507,29.19692848147548,29.195075700184816,29.197062971432697,29.200295018303134,29.194459348772344,29.193782263132732,29.193437729387433,29.195106592572444,29.19298690102641,29.192696182431746,29.19236559795894,29.191752550813625,29.191795673792544,29.1915694323406,29.191995696316262,29.19166592753621,29.19138269147191,29.191244092216493,29.191504465270516,29.191196125189872,29.191059178930107,29.19078832393528,29.190260151910458,29.7459761895576,29.69689278623816,34.17555317181457,33.87981874881274,32.709983663723264,29.713824882217672,31.952697989133558,29.430429819141672,29.259408451999448,29.505479368541433,29.272238425012272,29.276480177041428,29.251047122315846,29.276006592382956,29.2499275269532,29.253111124795474,29.24857550553354,29.25339779715378,29.24748230946806,29.24664317358912,29.24578371779567,29.244259054630525,29.249132276860095,29.244321649362575,29.243980252165525,29.244159165517424,29.244448337286578,29.243258108743667,29.242713777252327,29.24408881261447,29.242236631529632,29.241822462554232,29.241375292149904,29.240320661141112,29.239868314637057,29.237668895458846,29.240718875993167,29.238833055803163,29.23735356211345,29.238138086434184,29.2371683859962,29.23675284982835,29.236370137721085,29.235420915791295,29.234845801555473,29.233880981218604,29.2327126733933,29.230830990572144,29.230809224198552,29.22706076791119,29.233378984419296,29.229762054116684,29.22662552695039,29.22702705124167,29.22633604398746,29.226384951845013,29.22625853675175,29.22608195180556,29.2257460014915,29.225097421919482],"feasible_probability":0.5569311480320706,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.5625,"counts":{"00100101":22,"00100110":65,"00101001":17,"00101010":11,"00110001":44,"00110010":21,"01000101":2,"01000110":31,"01001001":32,"01001010":22,"01010001":69,"01010010":28,"10000101":10,"10000110":51,"10001001":45,"10001010":16,"10010001":15,"10010010":11},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1388658200012287}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.5569311480320706,"total_shots":512,"runtime_seconds":0.13910103199305013,"business_metrics":{"feasible":true,"violations":[],"violation_count":0,"objective":12,"preference_cost":6,"change_cost":6,"changed_tasks":3,"max_start_shift":2,"choices":[1,1,1],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]}},"exact":{"status":"optimal","best":{"feasible":true,"objective":12,"raw_cost":12,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":12},"combinations":18,"feasible_count":9,"runtime_seconds":0.00011454000195953995},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":12,"preference_cost":6,"change_cost":6,"changed_tasks":3,"max_start_shift":2,"choices":[1,1,1],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]},"dual_bound":12.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.001655733009101823},"uniform_one_hot":{"best":{"feasible":true,"objective":12,"raw_cost":12,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":12},"shots":512,"seed":7,"feasible_probability":0.5,"sampled_feasible_fraction":0.537109375,"runtime_seconds":0.011348751999321394},"absolute_gap":0,"status":"feasible","runtime_seconds":0.15546930600248743}},{"weight":2,"seed":19,"report":{"schema_version":2,"problem":"合成连锁改约:低成本整体后移或高成本备用设备","input_sha256":"ca086f1c548fc1d5b8bce08630bb40874d9ab503b078c7c3fa14b5c6bcc9dae2","environment":{"python":"3.12.3","platform":"Linux","pyqpanda3":"0.4.1","pyqpanda_alg":"2.0.0","numpy":"2.5.3","scipy":"1.18.1"},"model":{"qubits":8,"penalty":29,"objective_bound":28,"offset":87,"linear":[-25,-15,-29,-25,-22,-29,-25,-22],"quadratic":[[0,1,58],[0,2,29],[2,3,58],[2,4,58],[3,4,58],[3,5,29],[4,5,29],[4,6,29],[5,6,58],[5,7,58],[6,7,58]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[{"task":"A","resource":"oven","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":4},{"index":1,"task":"A","resource":"backup","start":0,"cost":14},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":4},{"index":4,"task":"B","resource":"oven","start":8,"cost":7},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":4},{"index":7,"task":"C","resource":"oven","start":10,"cost":7}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]},"quantum":{"seed":19,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[0,1,2,3,4,5,6,7]],"components":[{"qubits":8,"penalty":29,"objective_bound":28,"offset":87,"linear":[-25,-15,-29,-25,-22,-29,-25,-22],"quadratic":[[0,1,58],[0,2,29],[2,3,58],[2,4,58],[3,4,58],[3,5,29],[4,5,29],[4,6,29],[5,6,58],[5,7,58],[6,7,58]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":4},{"index":1,"task":"A","resource":"backup","start":0,"cost":14},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":4},{"index":4,"task":"B","resource":"oven","start":8,"cost":7},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":4},{"index":7,"task":"C","resource":"oven","start":10,"cost":7}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":12,"raw_cost":12,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":12},"components":[{"status":"feasible","best":{"feasible":true,"objective":12,"raw_cost":12,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":12},"seed":797913628,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3714967539685285,2.926334714213248],"expected_energy":21.684541918051004,"initial_expected_energy":27.439176260564672,"history":[27.439176260564672,27.90152834979003,31.702194218237956,30.09948454922,28.04626943480858,27.478091958017632,28.894944898364265,27.18187079663476,27.114970390395413,26.91342325588192,26.39160834675403,25.21545746032556,23.621249032025936,31.83827324349324,29.522483515960513,23.364930211480647,22.878911944886646,24.46292254519924,23.265729654357756,22.94255025747916,22.801945613351442,22.689559858703124,22.64948176236484,22.766671518729666,22.62355182777441,22.591442568266963,22.61178923902777,22.578805408969586,22.5542247263635,22.514707846281,22.442517509581357,22.48030536733844,22.42847504704581,22.499689401183925,22.423552679766168,22.395817878539987,22.35645596216058,22.284892555247616,22.23470228755977,22.15962186719068,22.06050642424954,21.95595119158053,21.888266786728984,22.438280858631693,21.816512883967473,21.85718872208994,21.830697252686882,21.809429659011002,21.77671044033272,21.76799114192912,21.70607715922004,21.799944355098937,21.753042788876023,21.713636319812064,21.712241234858546,21.699493741466924,21.704419513842545,21.688750371899555,21.684541918051004,21.70119575726204,27.12909670925059,26.865450292492397,33.185366698449016,31.2479931125805,30.068573054965384,26.94305798301962,30.404538624987786,26.553015299467642,26.44287674544443,26.63150853138011,26.538033433019827,26.56126246398771,26.427248217879566,26.401676553890532,26.42239055395713,26.396366774561812,26.39690093737501,26.392608140884025,26.39216670241529,26.403553142973397,26.38489930431475,26.38102433205776,26.37585746909732,26.365890060130848,26.349376577324758,26.433775952774766,26.42931713622277,26.34501787587805,26.341526283879055,26.33882356892198,26.37667886552682,26.333195545847833,26.32632479107749,26.323822965575875,26.318783401935512,26.31425309490556,26.305413486888778,26.289050495040588,26.271794071086738,26.302782282357704,26.38390914561252,26.266810880513656,26.253635292050134,26.261054793547046,26.258109824158197,26.254694713491237,26.252450408925583,26.252596955052603,26.251435765322263,26.250698719756414,26.250543159920543,26.25321519284011,26.249415742669484,26.247411570690993,26.244157684609487,26.237010910285857,26.223830154162385,26.23984619126316,26.28335783890147,26.23312815609194],"feasible_probability":0.8013267206363912,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.787109375,"counts":{"00100101":22,"00100110":54,"00101001":25,"00101010":6,"00110001":24,"00110010":12,"01000101":15,"01000110":57,"01001001":86,"01001010":31,"01010001":2,"10000101":3,"10000110":19,"10001001":63,"10001010":38,"10010001":37,"10010010":18},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1489808660116978}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.8013267206363912,"total_shots":512,"runtime_seconds":0.149202521002735,"business_metrics":{"feasible":true,"violations":[],"violation_count":0,"objective":12,"preference_cost":6,"change_cost":6,"changed_tasks":3,"max_start_shift":2,"choices":[1,1,1],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]}},"exact":{"status":"optimal","best":{"feasible":true,"objective":12,"raw_cost":12,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":12},"combinations":18,"feasible_count":9,"runtime_seconds":0.00012365399743430316},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":12,"preference_cost":6,"change_cost":6,"changed_tasks":3,"max_start_shift":2,"choices":[1,1,1],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]},"dual_bound":12.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.0017060579993994907},"uniform_one_hot":{"best":{"feasible":true,"objective":12,"raw_cost":12,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":12},"shots":512,"seed":19,"feasible_probability":0.5,"sampled_feasible_fraction":0.5,"runtime_seconds":0.011970399995334446},"absolute_gap":0,"status":"feasible","runtime_seconds":0.1660860300034983}},{"weight":2,"seed":42,"report":{"schema_version":2,"problem":"合成连锁改约:低成本整体后移或高成本备用设备","input_sha256":"ca086f1c548fc1d5b8bce08630bb40874d9ab503b078c7c3fa14b5c6bcc9dae2","environment":{"python":"3.12.3","platform":"Linux","pyqpanda3":"0.4.1","pyqpanda_alg":"2.0.0","numpy":"2.5.3","scipy":"1.18.1"},"model":{"qubits":8,"penalty":29,"objective_bound":28,"offset":87,"linear":[-25,-15,-29,-25,-22,-29,-25,-22],"quadratic":[[0,1,58],[0,2,29],[2,3,58],[2,4,58],[3,4,58],[3,5,29],[4,5,29],[4,6,29],[5,6,58],[5,7,58],[6,7,58]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[{"task":"A","resource":"oven","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":4},{"index":1,"task":"A","resource":"backup","start":0,"cost":14},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":4},{"index":4,"task":"B","resource":"oven","start":8,"cost":7},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":4},{"index":7,"task":"C","resource":"oven","start":10,"cost":7}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]},"quantum":{"seed":42,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[0,1,2,3,4,5,6,7]],"components":[{"qubits":8,"penalty":29,"objective_bound":28,"offset":87,"linear":[-25,-15,-29,-25,-22,-29,-25,-22],"quadratic":[[0,1,58],[0,2,29],[2,3,58],[2,4,58],[3,4,58],[3,5,29],[4,5,29],[4,6,29],[5,6,58],[5,7,58],[6,7,58]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":4},{"index":1,"task":"A","resource":"backup","start":0,"cost":14},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":4},{"index":4,"task":"B","resource":"oven","start":8,"cost":7},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":4},{"index":7,"task":"C","resource":"oven","start":10,"cost":7}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":12,"raw_cost":12,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":12},"components":[{"status":"feasible","best":{"feasible":true,"objective":12,"raw_cost":12,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":12},"seed":2684470948,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.4459711015307617,2.181456670024517],"expected_energy":26.069439721491932,"initial_expected_energy":31.353638640252548,"history":[31.353638640252548,32.75078573661582,30.970493953105994,31.069108863707598,31.021512160807795,30.918484909578297,30.85350712232188,30.967623034471426,30.831177789036236,30.76737906756288,30.610316718162824,31.089678493565934,30.480436220855218,30.510399491078267,30.480222580561367,30.58483415815848,30.395791450264117,30.364206813835654,30.212406544060595,30.71318911232571,30.41337255485547,30.290224314593036,30.27691385274955,30.193817546083835,30.168542163229446,30.143966208290305,30.361625588690377,30.101431576259003,30.090141201435625,30.05942127401603,30.008793922985355,29.907583579713332,29.7595691843978,33.54929890360697,32.361698421379884,29.72461932893612,30.01561233879024,30.03910422728893,29.685434010725224,29.711845581395032,29.690852843930934,29.69099617599191,29.6827526107622,29.68394422293442,29.678833284450928,29.676882497187226,29.681611987823896,29.672699167423616,29.66880582468198,29.661024723989865,29.64671579343173,29.644713394838483,29.612090742538633,29.658526794129422,29.641256921908614,29.608230574528484,29.61227291549003,29.60596395850733,29.607942833204728,29.602331120114584,30.191075238369077,30.152736319249694,30.011880797755637,35.08277106445345,37.28673998522109,31.864511209245407,26.80146412543879,28.087906842694473,26.805712818389853,27.432469476579428,26.843915021561713,27.049745175783293,26.749670694331726,26.73865871955882,26.71085247403078,26.65746788519491,26.563428526638862,26.700733845585017,27.04413804166186,26.571647294361725,26.55592590782861,26.800441700708877,26.50951267794663,26.507367512716257,26.493910305532822,26.471963744046057,26.44337023003471,26.405457732643846,26.389567813827444,26.38265378768051,26.344139647808284,26.224609635462514,26.38149186494453,26.558272178305618,26.208244623826623,26.26680307006434,26.215328664505122,26.203991305005985,26.202185242966877,26.258221558292654,26.186537769176013,26.178349073143927,26.173336752654173,26.182627755047868,26.169609050412852,26.166066478660525,26.159011197548516,26.145935738590342,26.128426885413333,26.098420694897293,26.147328830337955,26.141226703363266,26.11701998875627,26.102691956942543,26.096004465161833,26.08941593729294,26.083374846281984,26.074410629308133,26.10890371347783,26.069439721491932],"feasible_probability":0.6773403079106122,"one_hot_probability":1.0,"sampled_feasible_fraction":0.69140625,"counts":{"00100101":15,"00100110":76,"00101001":30,"00101010":28,"00110001":25,"00110010":7,"01000101":29,"01000110":44,"01001001":7,"01001010":50,"01010001":22,"01010010":2,"10000110":14,"10001001":39,"10001010":29,"10010001":58,"10010010":37},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.2126451609947253}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.6773403079106122,"total_shots":512,"runtime_seconds":0.21287505599320866,"business_metrics":{"feasible":true,"violations":[],"violation_count":0,"objective":12,"preference_cost":6,"change_cost":6,"changed_tasks":3,"max_start_shift":2,"choices":[1,1,1],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]}},"exact":{"status":"optimal","best":{"feasible":true,"objective":12,"raw_cost":12,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":12},"combinations":18,"feasible_count":9,"runtime_seconds":0.00013520100037567317},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":12,"preference_cost":6,"change_cost":6,"changed_tasks":3,"max_start_shift":2,"choices":[1,1,1],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]},"dual_bound":12.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.0017140270065283403},"uniform_one_hot":{"best":{"feasible":true,"objective":12,"raw_cost":12,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":12},"shots":512,"seed":42,"feasible_probability":0.5,"sampled_feasible_fraction":0.490234375,"runtime_seconds":0.01132190300268121},"absolute_gap":0,"status":"feasible","runtime_seconds":0.22897668200312182}},{"weight":3,"seed":7,"report":{"schema_version":2,"problem":"合成连锁改约:低成本整体后移或高成本备用设备","input_sha256":"2a30ba6dac08669c90157e0194327c6decd58ffc4bf22e35c0166d29a654d369","environment":{"python":"3.12.3","platform":"Linux","pyqpanda3":"0.4.1","pyqpanda_alg":"2.0.0","numpy":"2.5.3","scipy":"1.18.1"},"model":{"qubits":8,"penalty":32,"objective_bound":31,"offset":96,"linear":[-27,-17,-32,-27,-24,-32,-27,-24],"quadratic":[[0,1,64],[0,2,32],[2,3,64],[2,4,64],[3,4,64],[3,5,32],[4,5,32],[4,6,32],[5,6,64],[5,7,64],[6,7,64]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[{"task":"A","resource":"oven","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":5},{"index":1,"task":"A","resource":"backup","start":0,"cost":15},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":5},{"index":4,"task":"B","resource":"oven","start":8,"cost":8},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":5},{"index":7,"task":"C","resource":"oven","start":10,"cost":8}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]},"quantum":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[0,1,2,3,4,5,6,7]],"components":[{"qubits":8,"penalty":32,"objective_bound":31,"offset":96,"linear":[-27,-17,-32,-27,-24,-32,-27,-24],"quadratic":[[0,1,64],[0,2,32],[2,3,64],[2,4,64],[3,4,64],[3,5,32],[4,5,32],[4,6,32],[5,6,64],[5,7,64],[6,7,64]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":5},{"index":1,"task":"A","resource":"backup","start":0,"cost":15},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":5},{"index":4,"task":"B","resource":"oven","start":8,"cost":8},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":5},{"index":7,"task":"C","resource":"oven","start":10,"cost":8}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":15},"components":[{"status":"feasible","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":15},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.0478885572177274,1.456434121596944],"expected_energy":32.91108983270405,"initial_expected_energy":33.322941118870105,"history":[33.322941118870105,33.228251192511934,37.56922216696353,38.498271633958154,37.286136715552765,35.58257600857146,33.22582198697141,32.94156338409805,33.27918716848842,32.938099499279645,32.975226306113335,32.938365387790995,32.933436178367394,32.93502759753682,32.93419799812594,32.933661066067735,32.933030896241874,32.93269752349068,32.933250980167394,32.93241070273669,32.932024123129075,32.931246664557165,32.929693862964875,32.92664269488851,32.92374758870721,32.943720023183864,32.94906323005324,32.92036691857626,32.92253970676539,32.920064818200274,32.92112841413535,32.91979482704423,32.919447412390284,32.9187671832493,32.91758515080694,32.93095084913649,32.91825339166873,32.91818245281731,32.917918326955146,32.91716805010095,32.91724468890007,32.917097222780285,32.91697179247032,32.91675048429124,32.916508512866436,32.917922371218175,32.916373452853136,32.9159732014011,32.91571497775633,32.91593387201375,32.915575093315525,32.91545915507315,32.915173111670185,32.91462273135231,32.91350036631984,32.91131383879371,32.913245892170224,32.91931225225713,32.91256395445424,32.91108983270405,33.46400313940289,33.45128019578419,38.13641986885309,38.076317473701515,36.69117148290073,35.95948195273863,33.45579138195238,32.988442070824995,33.098536826534286,33.006806529573105,33.01723282843773,32.95743921032883,32.96329400056682,32.957092883293335,32.96537526334757,32.95421256809351,32.95642990545238,32.95356978840251,32.95406735110679,32.953482925702815,32.95329370863736,32.95294485335441,32.95278242028812,32.951940904697935,32.951323400536644,32.949947304657044,32.947216935124786,32.942120656733465,33.00693178752017,32.979699081996785,32.94071860672208,32.94582746692511,32.941862808035154,32.94046868798521,32.939546641381405,32.93802900574228,32.93584285909519,32.93620338252635,32.94411632920913,32.935383768739975,32.934841196106674,32.938868304499564,32.93392103529182,32.9335598154981,32.93287148314441,32.931606354113676,32.92920344822517,32.92427963561617,32.915107902639406,33.27506011749348,33.062393345744155,32.94341828436252,32.91409615604206,32.92544490362893,32.91384113916624,32.91334975296125,32.915989689985956,32.91252409769946,32.91236233596499,32.91168199446916],"feasible_probability":0.5583646614593932,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.564453125,"counts":{"00100101":22,"00100110":66,"00101001":16,"00101010":11,"00110001":44,"00110010":22,"01000101":2,"01000110":32,"01001001":31,"01001010":23,"01010001":67,"01010010":29,"10000101":10,"10000110":51,"10001001":44,"10001010":16,"10010001":14,"10010010":12},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.14390621699567419}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.5583646614593932,"total_shots":512,"runtime_seconds":0.14411202899646014,"business_metrics":{"feasible":true,"violations":[],"violation_count":0,"objective":15,"preference_cost":12,"change_cost":3,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]}},"exact":{"status":"optimal","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":15},"combinations":18,"feasible_count":9,"runtime_seconds":0.00012018100824207067},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":15,"preference_cost":12,"change_cost":3,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]},"dual_bound":15.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.007501763000618666},"uniform_one_hot":{"best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":15},"shots":512,"seed":7,"feasible_probability":0.5,"sampled_feasible_fraction":0.537109375,"runtime_seconds":0.009687362995464355},"absolute_gap":0,"status":"feasible","runtime_seconds":0.16437352499633562}},{"weight":3,"seed":19,"report":{"schema_version":2,"problem":"合成连锁改约:低成本整体后移或高成本备用设备","input_sha256":"2a30ba6dac08669c90157e0194327c6decd58ffc4bf22e35c0166d29a654d369","environment":{"python":"3.12.3","platform":"Linux","pyqpanda3":"0.4.1","pyqpanda_alg":"2.0.0","numpy":"2.5.3","scipy":"1.18.1"},"model":{"qubits":8,"penalty":32,"objective_bound":31,"offset":96,"linear":[-27,-17,-32,-27,-24,-32,-27,-24],"quadratic":[[0,1,64],[0,2,32],[2,3,64],[2,4,64],[3,4,64],[3,5,32],[4,5,32],[4,6,32],[5,6,64],[5,7,64],[6,7,64]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[{"task":"A","resource":"oven","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":5},{"index":1,"task":"A","resource":"backup","start":0,"cost":15},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":5},{"index":4,"task":"B","resource":"oven","start":8,"cost":8},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":5},{"index":7,"task":"C","resource":"oven","start":10,"cost":8}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]},"quantum":{"seed":19,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[0,1,2,3,4,5,6,7]],"components":[{"qubits":8,"penalty":32,"objective_bound":31,"offset":96,"linear":[-27,-17,-32,-27,-24,-32,-27,-24],"quadratic":[[0,1,64],[0,2,32],[2,3,64],[2,4,64],[3,4,64],[3,5,32],[4,5,32],[4,6,32],[5,6,64],[5,7,64],[6,7,64]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":5},{"index":1,"task":"A","resource":"backup","start":0,"cost":15},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":5},{"index":4,"task":"B","resource":"oven","start":8,"cost":8},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":5},{"index":7,"task":"C","resource":"oven","start":10,"cost":8}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":15},"components":[{"status":"feasible","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":15},"seed":797913628,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.5912729302540125,2.9356837000159564],"expected_energy":24.44002967370333,"initial_expected_energy":31.100299223952057,"history":[31.100299223952057,31.63859419662348,35.623236658377685,33.75956913468838,31.719703760784622,32.34848183676409,31.197034758681717,30.801116090476683,30.752144679535284,30.5324986238857,30.274191486641456,29.633708565776168,28.359453035077173,25.958882099170943,39.52621838845166,36.77370035691274,32.47017877393812,25.789952027948182,28.07904513389394,25.775829314551608,25.495204150085996,25.1062645054942,24.864475931107446,25.485938756797907,25.802979400702576,24.825759015871107,24.81664554287355,24.92110876618052,24.807873412178953,24.78129222871005,24.763482117763274,24.766571454661324,24.7566869878727,24.750468098984797,24.739074839221672,24.71788125213297,24.680435227632792,24.615794809193478,24.551819887484935,25.02456055706902,25.199606077594616,24.553150822477544,24.496918575206482,24.643621485482477,24.504595181308964,24.492146044621823,24.488859691282507,24.483345379419355,24.4735358216103,24.472765007424133,24.452009984738385,24.477058203974476,24.449828280369935,24.4557634165162,24.4491591019651,24.44667953510495,24.444514699937542,24.44002967370333,24.440076011345212,24.44307312114676,30.723209897277346,30.389576844439077,37.17126001390592,35.131988371870634,33.8334352817796,34.42245569752505,30.369067598142458,29.862688149629008,30.098812905760813,29.85173839833113,29.929618990058753,29.850204149910564,29.8315145557712,29.819874666400658,29.812683354794213,29.809586512669288,29.80396955159339,29.794586076805047,29.81261817345289,29.791892592435527,29.785392291912327,29.7723674677296,29.751168292669853,29.7142517002475,29.76190144150865,30.015047774690782,29.703137063801393,29.752044021377525,29.716099081134697,29.70142048831501,29.69669653976506,29.68787509597869,29.673926955863564,29.72028162754093,29.701650648247206,29.671941322793106,29.70729356639816,29.664955705951588,29.664235625518664,29.65917483242433,29.655466347911123,29.647586085533238,29.632859863363166,29.613568915644485,29.758012488385685,29.724075081731925,29.60676981696053,29.6188425153934,29.608947016346804,29.607101521808094,29.610745675858865,29.606785490954913,29.605394315304743,29.60441869765618,29.602809853273875,29.602489796025786,29.600685209573392,29.598342194295434,29.595211808869124,29.590625358633318],"feasible_probability":0.812774979704864,"one_hot_probability":1.0,"sampled_feasible_fraction":0.791015625,"counts":{"00100101":21,"00100110":58,"00101001":22,"00101010":3,"00110001":35,"00110010":21,"01000101":5,"01000110":65,"01001001":95,"01001010":31,"10000110":22,"10001001":49,"10001010":39,"10010001":37,"10010010":9},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1411974359943997}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.812774979704864,"total_shots":512,"runtime_seconds":0.14139627999975346,"business_metrics":{"feasible":true,"violations":[],"violation_count":0,"objective":15,"preference_cost":12,"change_cost":3,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]}},"exact":{"status":"optimal","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":15},"combinations":18,"feasible_count":9,"runtime_seconds":0.00011648099462036043},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":15,"preference_cost":12,"change_cost":3,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]},"dual_bound":15.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.00681240699486807},"uniform_one_hot":{"best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":15},"shots":512,"seed":19,"feasible_probability":0.5,"sampled_feasible_fraction":0.5,"runtime_seconds":0.01066835000528954},"absolute_gap":0,"status":"feasible","runtime_seconds":0.16197157200076617}},{"weight":3,"seed":42,"report":{"schema_version":2,"problem":"合成连锁改约:低成本整体后移或高成本备用设备","input_sha256":"2a30ba6dac08669c90157e0194327c6decd58ffc4bf22e35c0166d29a654d369","environment":{"python":"3.12.3","platform":"Linux","pyqpanda3":"0.4.1","pyqpanda_alg":"2.0.0","numpy":"2.5.3","scipy":"1.18.1"},"model":{"qubits":8,"penalty":32,"objective_bound":31,"offset":96,"linear":[-27,-17,-32,-27,-24,-32,-27,-24],"quadratic":[[0,1,64],[0,2,32],[2,3,64],[2,4,64],[3,4,64],[3,5,32],[4,5,32],[4,6,32],[5,6,64],[5,7,64],[6,7,64]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[{"task":"A","resource":"oven","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":5},{"index":1,"task":"A","resource":"backup","start":0,"cost":15},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":5},{"index":4,"task":"B","resource":"oven","start":8,"cost":8},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":5},{"index":7,"task":"C","resource":"oven","start":10,"cost":8}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]},"quantum":{"seed":42,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[0,1,2,3,4,5,6,7]],"components":[{"qubits":8,"penalty":32,"objective_bound":31,"offset":96,"linear":[-27,-17,-32,-27,-24,-32,-27,-24],"quadratic":[[0,1,64],[0,2,32],[2,3,64],[2,4,64],[3,4,64],[3,5,32],[4,5,32],[4,6,32],[5,6,64],[5,7,64],[6,7,64]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":5},{"index":1,"task":"A","resource":"backup","start":0,"cost":15},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":5},{"index":4,"task":"B","resource":"oven","start":8,"cost":8},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":5},{"index":7,"task":"C","resource":"oven","start":10,"cost":8}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":15},"components":[{"status":"feasible","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":15},"seed":2684470948,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.5989421711148744,2.177139210465691],"expected_energy":29.546170316369576,"initial_expected_energy":35.15232248235772,"history":[35.15232248235772,36.713606470027806,34.77673195460524,35.03966846555099,34.714831079977635,34.29828842100366,35.19136117588513,36.018800660238796,34.225577448016026,34.07326476238597,34.38967714416104,34.16797015256837,34.13230292232575,33.991408618273084,34.03397597048419,34.02379704924624,33.99529623780997,33.97556015024195,33.94517649254098,33.900161090994565,33.93203683264474,34.00591549047468,33.871295681732825,33.85425989651728,33.903599838651346,33.836654279318935,33.82247269062297,33.79509439604372,33.77887991813054,33.72282691451433,33.793459148045756,33.70352385747532,33.756157686372006,33.68867829272527,33.676623157102426,33.68010708897653,33.667297440922525,33.67076303916371,33.67009641928965,33.662794460613526,33.65808730916032,33.66884123617421,33.655094764243174,33.64940397275006,33.63886618910358,33.61897836383133,33.580040337254665,33.50246696532891,33.37350573193817,36.37777393145853,35.42937870505126,33.66118094311277,33.36296095093299,33.573813567556016,33.34824705481284,33.35324281171326,33.35419526074065,33.34422561294577,33.34069643976894,33.342054843705824,33.97355210911508,33.93214070596153,33.63367614644798,39.66121470915188,41.644422173374394,35.69214240670483,30.112650432791753,31.553304666628364,30.17256384754803,30.30931179111589,30.6686944714424,30.183496231801378,30.17258475925004,30.099731470050965,30.077070134863018,30.06034958214795,30.057615056518056,30.046993202261103,30.037908657463277,30.032595377898932,30.003070410167197,29.995011189474855,29.96837972314675,29.939672632582607,29.889690215126322,29.899205220483992,29.930151127840983,29.899530494726008,29.904575228185575,29.882141603592444,29.871175277442514,29.849791381849077,29.80909331255431,29.742254777798507,29.744177665168404,30.083892530547672,29.71464899615283,29.772071567752512,29.709617344098845,29.68308992707508,29.70206085976664,29.68620498268665,29.679362829353423,29.677491338482493,29.694142270791716,29.665821209473705,29.65715335501597,29.639184027908286,29.612727374326553,29.70593727667113,29.742860165255,29.595609714331147,29.5917749640357,29.644683091829734,29.576996095066594,29.56817345459981,29.560922708562735,29.575662151012434,29.55452013696818,29.546170316369576],"feasible_probability":0.6723542659498918,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.69140625,"counts":{"00100101":14,"00100110":74,"00101001":35,"00101010":28,"00110001":26,"00110010":7,"01000101":20,"01000110":44,"01001001":7,"01001010":54,"01010001":23,"01010010":4,"10000101":1,"10000110":13,"10001001":41,"10001010":27,"10010001":56,"10010010":38},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1339843540044967}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.6723542659498918,"total_shots":512,"runtime_seconds":0.13437651601270773,"business_metrics":{"feasible":true,"violations":[],"violation_count":0,"objective":15,"preference_cost":12,"change_cost":3,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]}},"exact":{"status":"optimal","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":15},"combinations":18,"feasible_count":9,"runtime_seconds":0.00027333600155543536},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":15,"preference_cost":12,"change_cost":3,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]},"dual_bound":15.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.006993457995122299},"uniform_one_hot":{"best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":15},"shots":512,"seed":42,"feasible_probability":0.5,"sampled_feasible_fraction":0.490234375,"runtime_seconds":0.011013844996341504},"absolute_gap":0,"status":"feasible","runtime_seconds":0.15598869298992213}},{"weight":4,"seed":7,"report":{"schema_version":2,"problem":"合成连锁改约:低成本整体后移或高成本备用设备","input_sha256":"ecc4c7f58290d0d3f13d3e5d72d401065b0087c2537a901bab0069f1b74ab2af","environment":{"python":"3.12.3","platform":"Linux","pyqpanda3":"0.4.1","pyqpanda_alg":"2.0.0","numpy":"2.5.3","scipy":"1.18.1"},"model":{"qubits":8,"penalty":35,"objective_bound":34,"offset":105,"linear":[-29,-19,-35,-29,-26,-35,-29,-26],"quadratic":[[0,1,70],[0,2,35],[2,3,70],[2,4,70],[3,4,70],[3,5,35],[4,5,35],[4,6,35],[5,6,70],[5,7,70],[6,7,70]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[{"task":"A","resource":"oven","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":6},{"index":1,"task":"A","resource":"backup","start":0,"cost":16},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":6},{"index":4,"task":"B","resource":"oven","start":8,"cost":9},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":6},{"index":7,"task":"C","resource":"oven","start":10,"cost":9}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]},"quantum":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[0,1,2,3,4,5,6,7]],"components":[{"qubits":8,"penalty":35,"objective_bound":34,"offset":105,"linear":[-29,-19,-35,-29,-26,-35,-29,-26],"quadratic":[[0,1,70],[0,2,35],[2,3,70],[2,4,70],[3,4,70],[3,5,35],[4,5,35],[4,6,35],[5,6,70],[5,7,70],[6,7,70]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":6},{"index":1,"task":"A","resource":"backup","start":0,"cost":16},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":6},{"index":4,"task":"B","resource":"oven","start":8,"cost":9},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":6},{"index":7,"task":"C","resource":"oven","start":10,"cost":9}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":16,"raw_cost":16,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":16},"components":[{"status":"feasible","best":{"feasible":true,"objective":16,"raw_cost":16,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":16},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.9903186577239949,1.4537902171593593],"expected_energy":36.622935669495305,"initial_expected_energy":37.009838464642854,"history":[37.009838464642854,36.94255498182147,41.487087051636024,42.716044998721046,41.31350645046754,36.960644501191624,39.496273166083114,36.64303453477311,37.008658902866316,36.66920767724505,36.64368226933799,36.65134015501141,36.64426921241454,36.64590966890133,36.643509329439226,36.643375254830644,36.64253184774655,36.6422004374295,36.641821873564766,36.64111392887624,36.6408644530771,36.63910907061296,36.642060730143,36.6386010219052,36.63800469055309,36.63815127961594,36.63754191062894,36.63708631335783,36.637688818727575,36.63657201273572,36.63628735271659,36.63591360603992,36.635205933666434,36.63432613598811,36.63350944053305,36.633257806939525,36.64171835765562,36.63147147854692,36.631193545625386,36.63042354663677,36.62898437993175,36.6266447061739,36.633518677893775,36.633804110657024,36.62628966198404,36.63333771358019,36.6251565824149,36.62535376214403,36.62497849025817,36.62523616243778,36.62488898259372,36.62475245879231,36.62472621346461,36.6245878367397,36.624452610036386,36.62418901104701,36.62371265272718,36.625295301635326,36.62352363999696,36.622935669495305,37.156905521607115,37.18238320256492,40.675257266670116,42.08223534394128,40.16538497607716,37.176730157549535,39.063739879448406,36.975326368207966,36.934152508398384,36.959084766552266,37.05833757299811,36.89893305954021,36.89436006609829,36.907723577975446,36.89625910500574,36.89060275591022,36.89230567355455,36.88906292507711,36.8882184787505,36.89002630445188,36.88775793371805,36.88683743817171,36.88515227373499,36.88201871033999,36.87588318246256,36.87676608268215,36.877090290102586,36.874999787218435,36.876181943316865,36.874052439948926,36.87237806816539,36.869501957634014,36.87485897293721,36.86792205420505,36.86445758480559,36.85791901822387,36.84637266022967,36.8536919676419,36.887342212856886,36.84278286617102,36.85083168526464,36.843324817701884,36.84060205606606,36.84162576661525,36.83913801132104,36.83877318488955,36.840884660786564,36.83868270522211,36.83776759378976,36.83626866781344,36.833307061224644,36.82989821415289,36.82465996179289,36.82473453687216,36.830641633426296,36.823152281815005,36.822660153337566,36.82412551409097,36.822251186516,36.8214748459632],"feasible_probability":0.5596630683135709,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.57421875,"counts":{"00100101":21,"00100110":68,"00101001":16,"00101010":11,"00110001":43,"00110010":23,"01000101":2,"01000110":32,"01001001":30,"01001010":23,"01010001":66,"01010010":33,"10000101":3,"10000110":45,"10001001":48,"10001010":22,"10010001":12,"10010010":14},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13592893100576475}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.5596630683135709,"total_shots":512,"runtime_seconds":0.1361546739935875,"business_metrics":{"feasible":true,"violations":[],"violation_count":0,"objective":16,"preference_cost":12,"change_cost":4,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]}},"exact":{"status":"optimal","best":{"feasible":true,"objective":16,"raw_cost":16,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":16},"combinations":18,"feasible_count":9,"runtime_seconds":0.0001188809983432293},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":16,"preference_cost":12,"change_cost":4,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]},"dual_bound":16.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.0016319139976985753},"uniform_one_hot":{"best":{"feasible":true,"objective":16,"raw_cost":16,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":16},"shots":512,"seed":7,"feasible_probability":0.5,"sampled_feasible_fraction":0.537109375,"runtime_seconds":0.009214007994160056},"absolute_gap":0,"status":"feasible","runtime_seconds":0.14991560800990555}},{"weight":4,"seed":19,"report":{"schema_version":2,"problem":"合成连锁改约:低成本整体后移或高成本备用设备","input_sha256":"ecc4c7f58290d0d3f13d3e5d72d401065b0087c2537a901bab0069f1b74ab2af","environment":{"python":"3.12.3","platform":"Linux","pyqpanda3":"0.4.1","pyqpanda_alg":"2.0.0","numpy":"2.5.3","scipy":"1.18.1"},"model":{"qubits":8,"penalty":35,"objective_bound":34,"offset":105,"linear":[-29,-19,-35,-29,-26,-35,-29,-26],"quadratic":[[0,1,70],[0,2,35],[2,3,70],[2,4,70],[3,4,70],[3,5,35],[4,5,35],[4,6,35],[5,6,70],[5,7,70],[6,7,70]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[{"task":"A","resource":"oven","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":6},{"index":1,"task":"A","resource":"backup","start":0,"cost":16},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":6},{"index":4,"task":"B","resource":"oven","start":8,"cost":9},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":6},{"index":7,"task":"C","resource":"oven","start":10,"cost":9}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]},"quantum":{"seed":19,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[0,1,2,3,4,5,6,7]],"components":[{"qubits":8,"penalty":35,"objective_bound":34,"offset":105,"linear":[-29,-19,-35,-29,-26,-35,-29,-26],"quadratic":[[0,1,70],[0,2,35],[2,3,70],[2,4,70],[3,4,70],[3,5,35],[4,5,35],[4,6,35],[5,6,70],[5,7,70],[6,7,70]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":6},{"index":1,"task":"A","resource":"backup","start":0,"cost":16},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":6},{"index":4,"task":"B","resource":"oven","start":8,"cost":9},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":6},{"index":7,"task":"C","resource":"oven","start":10,"cost":9}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":16,"raw_cost":16,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":16},"components":[{"status":"feasible","best":{"feasible":true,"objective":16,"raw_cost":16,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":16},"seed":797913628,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4284203146605723,2.9141208866873374],"expected_energy":27.819327411564316,"initial_expected_energy":34.75089323986783,"history":[34.75089323986783,35.345825141249726,39.54657386017419,37.41456035048684,35.37983459167451,36.06465787445532,34.86211645678978,34.42172262307575,34.3602776758643,34.11931234736622,33.83628889115164,33.131427632234335,31.674413817860803,29.12849621393339,49.67036141615993,40.84084247347772,36.13667851699008,28.95825897444604,31.49355955890642,28.821360889427762,29.02002209904933,28.834915895562936,28.84634440907125,28.799615772046213,28.832401508613017,28.815506060636306,28.773896421442767,28.753410673533768,28.807907057122442,28.73011411104174,28.708196903852865,28.667042731524248,28.603541282836886,28.55689347764325,28.330155689218167,28.406301723659475,28.677265575781732,28.335181836333753,28.343631718153176,28.31771389534285,28.33103921406766,28.33307489509393,28.29383714968638,28.27666601416533,28.32904019526878,28.257344714951383,28.239685773720403,28.208005690440253,28.187298048131346,28.10643758778062,28.14123017432362,28.09244165426911,28.146709975132527,28.073708863013927,28.057121318288914,28.02603671159673,27.96851554172078,27.909431432687576,27.85430483003084,27.819327411564316,34.32431554948574,33.93377013216499,41.137249803234965,39.0159757710892,37.60200205190921,34.03731077243101,38.08562634147643,33.38812970551122,33.64200051498097,33.45391653928259,33.407490008811074,33.37066344867443,33.35535866520992,33.36962526975219,33.34808685755133,33.35113325934537,33.34127760140416,33.33666223966512,33.34452628094445,33.32971604654513,33.32416401634121,33.33941299775692,33.319062788806455,33.31265062158562,33.30098886265788,33.30351137990506,33.296954408175026,33.30818152501856,33.30101498759737,33.28979040560678,33.29138383571896,33.28684331983017,33.2846331012698,33.284897282879356,33.2814119063926,33.27936138403246,33.27973012581987,33.27852551017385,33.27699511705882,33.2744492250526,33.273094408937695,33.285687636589564,33.27313244955067,33.26873561709574,33.26569565078499,33.266429406461,33.26488444119854,33.26334136657226,33.260364621265204,33.25490914522633,33.250861238528486,33.236025166408304,33.24029534404026,33.2329446246151,33.24024525428649,33.23118557630619,33.2279317618249,33.221779125392445,33.20987795093932,33.187223968641426],"feasible_probability":0.8011699807730367,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.82421875,"counts":{"00100101":11,"00100110":58,"00101001":22,"00101010":3,"00110001":28,"00110010":14,"01000101":7,"01000110":63,"01001001":83,"01001010":32,"01010001":2,"10000101":3,"10000110":19,"10001001":66,"10001010":46,"10010001":37,"10010010":18},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13672665700141806}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.8011699807730367,"total_shots":512,"runtime_seconds":0.13693116800277494,"business_metrics":{"feasible":true,"violations":[],"violation_count":0,"objective":16,"preference_cost":12,"change_cost":4,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]}},"exact":{"status":"optimal","best":{"feasible":true,"objective":16,"raw_cost":16,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":16},"combinations":18,"feasible_count":9,"runtime_seconds":0.00011721900955308229},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":16,"preference_cost":12,"change_cost":4,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]},"dual_bound":16.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.0016691580094629899},"uniform_one_hot":{"best":{"feasible":true,"objective":16,"raw_cost":16,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":16},"shots":512,"seed":19,"feasible_probability":0.5,"sampled_feasible_fraction":0.5,"runtime_seconds":0.010653774996171705},"absolute_gap":0,"status":"feasible","runtime_seconds":0.1526417299901368}},{"weight":4,"seed":42,"report":{"schema_version":2,"problem":"合成连锁改约:低成本整体后移或高成本备用设备","input_sha256":"ecc4c7f58290d0d3f13d3e5d72d401065b0087c2537a901bab0069f1b74ab2af","environment":{"python":"3.12.3","platform":"Linux","pyqpanda3":"0.4.1","pyqpanda_alg":"2.0.0","numpy":"2.5.3","scipy":"1.18.1"},"model":{"qubits":8,"penalty":35,"objective_bound":34,"offset":105,"linear":[-29,-19,-35,-29,-26,-35,-29,-26],"quadratic":[[0,1,70],[0,2,35],[2,3,70],[2,4,70],[3,4,70],[3,5,35],[4,5,35],[4,6,35],[5,6,70],[5,7,70],[6,7,70]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[{"task":"A","resource":"oven","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":6},{"index":1,"task":"A","resource":"backup","start":0,"cost":16},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":6},{"index":4,"task":"B","resource":"oven","start":8,"cost":9},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":6},{"index":7,"task":"C","resource":"oven","start":10,"cost":9}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]},"quantum":{"seed":42,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[0,1,2,3,4,5,6,7]],"components":[{"qubits":8,"penalty":35,"objective_bound":34,"offset":105,"linear":[-29,-19,-35,-29,-26,-35,-29,-26],"quadratic":[[0,1,70],[0,2,35],[2,3,70],[2,4,70],[3,4,70],[3,5,35],[4,5,35],[4,6,35],[5,6,70],[5,7,70],[6,7,70]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":6},{"index":1,"task":"A","resource":"backup","start":0,"cost":16},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":6},{"index":4,"task":"B","resource":"oven","start":8,"cost":9},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":6},{"index":7,"task":"C","resource":"oven","start":10,"cost":9}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":16,"raw_cost":16,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":16},"components":[{"status":"feasible","best":{"feasible":true,"objective":16,"raw_cost":16,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":16},"seed":2684470948,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.468610281643736,2.173833028702568],"expected_energy":32.60194565365152,"initial_expected_energy":38.94974193762731,"history":[38.94974193762731,40.66743913778167,38.58104912259833,39.00437586531493,38.393866613790266,39.648768399058255,38.19998760622106,37.989165206537194,37.85336333514952,38.30406432955313,37.770630517895725,37.74756918680772,37.66198134193556,37.697818046164926,37.69905960407907,37.67484315511108,37.69738424428819,37.65333773515658,37.656561331832464,37.64990591574946,37.64286319667479,37.62913416016834,37.602496304524266,37.55086854369313,37.45231623063636,37.55778529359378,37.75454795280447,37.49758595594398,37.442024834255356,37.45843188672774,37.43267583648782,37.42155899834725,37.40159216530704,37.41379291587391,37.39069837182511,37.42942379891707,37.38370808557674,37.37153613688591,37.34909108760246,37.31287542267225,37.359787937307374,37.43308487685984,37.299416624101625,37.2868386016751,37.308072381297265,37.272698347577006,37.26474346215399,37.254480669532924,37.23538330062845,37.22217724718047,37.1943078945756,37.27020702425153,37.23974973702147,37.18116166176887,37.17268958299835,37.17702767239373,37.16352008405018,37.1543014183178,37.16358306033278,37.1496085506274,37.75577461776493,37.713652959268686,37.26406706203294,44.132493277117284,45.97962890143383,39.51682148384806,33.44706134429336,35.03532223494632,33.45867270569137,34.18484695801972,33.511255999429494,33.7392483872779,33.39059695991817,33.37924486536163,33.34264893156157,33.288112842928776,33.16664851056768,32.982638654051904,37.1535165545623,35.51413956031969,33.23496873992816,33.23461535067128,32.96316741011628,32.93557343712801,32.932323019092024,32.9591198563755,32.933380227387275,32.91426460084834,32.905714003344144,32.915885851007616,32.895824722186255,32.88932164525744,32.878311273645686,32.86236608102764,32.82333285152002,32.770249936690774,32.855554867933485,32.92868095482166,32.756107969796844,32.73912018305994,32.73316183661582,32.78798902163514,32.71939190536534,32.71196113128114,32.704140187017344,32.6964082514929,32.677677295167356,32.67974503975405,32.67280727355153,32.677359411898394,32.678112428157235,32.66716020723466,32.67437095495214,32.66276852446292,32.658511365838756,32.65072578853105,32.63392900045393,32.60194565365152,32.60343349701917,32.674453547878855],"feasible_probability":0.6755371205035943,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.693359375,"counts":{"00100101":16,"00100110":74,"00101001":19,"00101010":22,"00110001":22,"00110010":8,"01000101":31,"01000110":39,"01001001":4,"01001010":42,"01010001":30,"01010010":5,"10000101":4,"10000110":12,"10001001":48,"10001010":31,"10010001":62,"10010010":43},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1457665839989204}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.6755371205035943,"total_shots":512,"runtime_seconds":0.14600168399920221,"business_metrics":{"feasible":true,"violations":[],"violation_count":0,"objective":16,"preference_cost":12,"change_cost":4,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]}},"exact":{"status":"optimal","best":{"feasible":true,"objective":16,"raw_cost":16,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":16},"combinations":18,"feasible_count":9,"runtime_seconds":0.00012253900058567524},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":16,"preference_cost":12,"change_cost":4,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]},"dual_bound":16.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.0017922209954122081},"uniform_one_hot":{"best":{"feasible":true,"objective":16,"raw_cost":16,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":16},"shots":512,"seed":42,"feasible_probability":0.5,"sampled_feasible_fraction":0.490234375,"runtime_seconds":0.009916847993736155},"absolute_gap":0,"status":"feasible","runtime_seconds":0.16101771299145184}},{"weight":5,"seed":7,"report":{"schema_version":2,"problem":"合成连锁改约:低成本整体后移或高成本备用设备","input_sha256":"048a2f9e1cf05e623f13cdaa35dcf28cf202a0539c5a443156c5d421ce8d96f2","environment":{"python":"3.12.3","platform":"Linux","pyqpanda3":"0.4.1","pyqpanda_alg":"2.0.0","numpy":"2.5.3","scipy":"1.18.1"},"model":{"qubits":8,"penalty":38,"objective_bound":37,"offset":114,"linear":[-31,-21,-38,-31,-28,-38,-31,-28],"quadratic":[[0,1,76],[0,2,38],[2,3,76],[2,4,76],[3,4,76],[3,5,38],[4,5,38],[4,6,38],[5,6,76],[5,7,76],[6,7,76]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[{"task":"A","resource":"oven","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":7},{"index":1,"task":"A","resource":"backup","start":0,"cost":17},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":7},{"index":4,"task":"B","resource":"oven","start":8,"cost":10},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":7},{"index":7,"task":"C","resource":"oven","start":10,"cost":10}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]},"quantum":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[0,1,2,3,4,5,6,7]],"components":[{"qubits":8,"penalty":38,"objective_bound":37,"offset":114,"linear":[-31,-21,-38,-31,-28,-38,-31,-28],"quadratic":[[0,1,76],[0,2,38],[2,3,76],[2,4,76],[3,4,76],[3,5,38],[4,5,38],[4,6,38],[5,6,76],[5,7,76],[6,7,76]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":7},{"index":1,"task":"A","resource":"backup","start":0,"cost":17},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":7},{"index":4,"task":"B","resource":"oven","start":8,"cost":10},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":7},{"index":7,"task":"C","resource":"oven","start":10,"cost":10}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":17},"components":[{"status":"feasible","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":17},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.9689812120901868,1.4538647580718775],"expected_energy":40.31384599769048,"initial_expected_energy":40.67952356157767,"history":[40.67952356157767,40.641341234364276,45.415306536384634,46.91265527012542,45.34373678163158,43.39660408363561,40.64567204951078,40.326561588781125,40.72664952327243,40.335929338857184,40.327987681415124,40.34150540406171,40.32765359994236,40.330761249152175,40.325853050020015,40.325973329775636,40.326061271904095,40.325679527998034,40.32593870111377,40.325760152848,40.325556512610746,40.32553052050253,40.32538881865328,40.325250055160076,40.324975101234784,40.32442984539102,40.32335627202679,40.32188771696222,40.32174247120639,40.31918982005502,40.32053294519126,40.32197532319354,40.31956208928136,40.319101417694405,40.31884399625206,40.31860528565511,40.318174396762245,40.317742590414156,40.322856833712265,40.31716419318998,40.316726786128086,40.316525054651365,40.31794860175325,40.31615004479907,40.315945345109824,40.31572104349357,40.31543698370631,40.31606721870085,40.31512553168233,40.31520135772189,40.31500469477241,40.314899268951166,40.3147481363579,40.315491499673676,40.31450365828391,40.31433584179905,40.31461961515561,40.31420695655324,40.31408617486004,40.31384599769048,40.83064716564638,40.89559424595531,44.56579917442084,46.18429593882192,44.12305799402723,40.85289490614104,42.86032260818634,40.6443651243297,40.61924754587537,40.61373819160124,41.17674369901468,40.53369640820228,40.58423540946224,40.53020924560461,40.55356429525153,40.52910283022022,40.52686234683168,40.52881411135087,40.52530266647569,40.52516207200769,40.526122815060475,40.525202170993175,40.52479227572616,40.524110796604774,40.52315746620844,40.52197244307396,40.52073148853988,40.51826386452328,40.51338069662076,40.50550434199947,40.51088193917208,40.53753314354352,40.503456859594074,40.501607128205066,40.51710437078968,40.49816941120814,40.49651484781215,40.49417089061644,40.489470556885564,40.480288101091375,40.46363914561857,40.615278408428566,40.59558176592285,40.46579092385039,40.469684589652594,40.47040393571972,40.462579948754666,40.46575723232016,40.46167267070521,40.460306175936665,40.45919037569884,40.45906275461719,40.45846561794091,40.45789118745647,40.45679005315645,40.45471168268959,40.45058637968006,40.44351895082194,40.48043532761072,40.48325652229323],"feasible_probability":0.5603744529996991,"one_hot_probability":1.0,"sampled_feasible_fraction":0.564453125,"counts":{"00100101":21,"00100110":69,"00101001":16,"00101010":11,"00110001":43,"00110010":24,"01000101":2,"01000110":32,"01001001":30,"01001010":23,"01010001":66,"01010010":31,"10000101":9,"10000110":50,"10001001":43,"10001010":17,"10010001":13,"10010010":12},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13912000600248575}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.5603744529996991,"total_shots":512,"runtime_seconds":0.1393660049943719,"business_metrics":{"feasible":true,"violations":[],"violation_count":0,"objective":17,"preference_cost":12,"change_cost":5,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]}},"exact":{"status":"optimal","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":17},"combinations":18,"feasible_count":9,"runtime_seconds":0.00013206498988438398},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":17,"preference_cost":12,"change_cost":5,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]},"dual_bound":17.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.0018194699950981885},"uniform_one_hot":{"best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":17},"shots":512,"seed":7,"feasible_probability":0.5,"sampled_feasible_fraction":0.537109375,"runtime_seconds":0.011912018002476543},"absolute_gap":0,"status":"feasible","runtime_seconds":0.15659951898851432}},{"weight":5,"seed":19,"report":{"schema_version":2,"problem":"合成连锁改约:低成本整体后移或高成本备用设备","input_sha256":"048a2f9e1cf05e623f13cdaa35dcf28cf202a0539c5a443156c5d421ce8d96f2","environment":{"python":"3.12.3","platform":"Linux","pyqpanda3":"0.4.1","pyqpanda_alg":"2.0.0","numpy":"2.5.3","scipy":"1.18.1"},"model":{"qubits":8,"penalty":38,"objective_bound":37,"offset":114,"linear":[-31,-21,-38,-31,-28,-38,-31,-28],"quadratic":[[0,1,76],[0,2,38],[2,3,76],[2,4,76],[3,4,76],[3,5,38],[4,5,38],[4,6,38],[5,6,76],[5,7,76],[6,7,76]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[{"task":"A","resource":"oven","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":7},{"index":1,"task":"A","resource":"backup","start":0,"cost":17},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":7},{"index":4,"task":"B","resource":"oven","start":8,"cost":10},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":7},{"index":7,"task":"C","resource":"oven","start":10,"cost":10}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]},"quantum":{"seed":19,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[0,1,2,3,4,5,6,7]],"components":[{"qubits":8,"penalty":38,"objective_bound":37,"offset":114,"linear":[-31,-21,-38,-31,-28,-38,-31,-28],"quadratic":[[0,1,76],[0,2,38],[2,3,76],[2,4,76],[3,4,76],[3,5,38],[4,5,38],[4,6,38],[5,6,76],[5,7,76],[6,7,76]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":7},{"index":1,"task":"A","resource":"backup","start":0,"cost":17},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":7},{"index":4,"task":"B","resource":"oven","start":8,"cost":10},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":7},{"index":7,"task":"C","resource":"oven","start":10,"cost":10}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":17},"components":[{"status":"feasible","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":17},"seed":797913628,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4998034242077836,2.943689061054713],"expected_energy":30.619655184901646,"initial_expected_energy":38.39345108939081,"history":[38.39345108939081,39.03029045708293,43.4716622651176,41.06430716861724,39.02979778362452,39.781594603878254,38.51745202542972,38.0336652190274,37.958065742358116,37.69330165420335,37.3831136457087,36.61273371131296,34.985511958575344,32.23414184979691,54.56762960735146,44.83785898349308,31.727391894318096,41.85132508475364,32.132125642738416,34.0563519072663,31.96766137062876,31.85716596336215,31.698907249335626,31.783309784223206,31.693721090100446,31.668007046395548,31.62719327768634,31.542128856972717,31.38002639723376,31.123907787882153,32.82844024475756,33.00840987330793,31.05996032832015,31.247100019713834,31.143064770507255,31.02419283489959,30.990620820973493,31.10321676919245,30.941616450236257,30.93357109716285,30.900045703141533,30.853228880610867,30.800307976452114,30.72686837324526,30.853384517483548,30.89973936063381,30.707802332862222,30.706255425480236,30.73625614393801,30.68746658331463,30.678894883693484,30.67224126584948,30.68056248377439,30.66734196751605,30.663166359126265,30.65424931523708,30.63784403378652,30.619655184901646,30.630113944149468,30.661808512928342,37.930756484917595,37.493268660520705,45.08806426308034,42.89957585462875,41.37366588274107,42.21963653172304,37.461956589436184,36.862123078262286,37.11961134857678,36.847234953660816,36.941036124582716,36.84486471908562,36.821766668956826,36.80672118680722,36.797210387962316,36.79204027779158,36.78509905973182,36.77714256080911,36.791060923606935,36.76771656648759,36.768818316381584,36.76089342814977,36.7550355415673,36.75118193296006,36.73273582097579,36.73704824671614,36.7294566468074,36.7369136234179,36.7221814673533,36.716033353584415,36.7023231918983,36.678141858188766,36.72583562604297,36.762092153155834,36.678386565175096,36.676402302605084,36.67436557330531,36.67728084928852,36.681591362224566,36.66528412281582,36.66496316287647,36.67329074374558,36.65766929148057,36.644982304569616,36.622105576763765,36.57719817970189,36.73301730752,36.85082338666839,36.66110438706082,36.57157483000921,36.5861498452278,36.57222898784376,36.56975897187077,36.56956213196488,36.57400071873787,36.56957977288657,36.56784967850322,36.565464540866564,36.56669412373201,36.56423285710111],"feasible_probability":0.8085923765830121,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.794921875,"counts":{"00100101":16,"00100110":57,"00101001":22,"00101010":4,"00110001":34,"00110010":23,"01000101":5,"01000110":64,"01001001":92,"01001010":32,"01010001":1,"10000110":20,"10001001":41,"10001010":50,"10010001":38,"10010010":13},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1493869870027993}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.8085923765830121,"total_shots":512,"runtime_seconds":0.1496195509971585,"business_metrics":{"feasible":true,"violations":[],"violation_count":0,"objective":17,"preference_cost":12,"change_cost":5,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]}},"exact":{"status":"optimal","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":17},"combinations":18,"feasible_count":9,"runtime_seconds":0.00012801999400835484},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":17,"preference_cost":12,"change_cost":5,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]},"dual_bound":17.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.0014689359959447756},"uniform_one_hot":{"best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":17},"shots":512,"seed":19,"feasible_probability":0.5,"sampled_feasible_fraction":0.5,"runtime_seconds":0.0097408580040792},"absolute_gap":0,"status":"feasible","runtime_seconds":0.16391396599647123}},{"weight":5,"seed":42,"report":{"schema_version":2,"problem":"合成连锁改约:低成本整体后移或高成本备用设备","input_sha256":"048a2f9e1cf05e623f13cdaa35dcf28cf202a0539c5a443156c5d421ce8d96f2","environment":{"python":"3.12.3","platform":"Linux","pyqpanda3":"0.4.1","pyqpanda_alg":"2.0.0","numpy":"2.5.3","scipy":"1.18.1"},"model":{"qubits":8,"penalty":38,"objective_bound":37,"offset":114,"linear":[-31,-21,-38,-31,-28,-38,-31,-28],"quadratic":[[0,1,76],[0,2,38],[2,3,76],[2,4,76],[3,4,76],[3,5,38],[4,5,38],[4,6,38],[5,6,76],[5,7,76],[6,7,76]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[{"task":"A","resource":"oven","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":7},{"index":1,"task":"A","resource":"backup","start":0,"cost":17},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":7},{"index":4,"task":"B","resource":"oven","start":8,"cost":10},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":7},{"index":7,"task":"C","resource":"oven","start":10,"cost":10}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]},"quantum":{"seed":42,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[0,1,2,3,4,5,6,7]],"components":[{"qubits":8,"penalty":38,"objective_bound":37,"offset":114,"linear":[-31,-21,-38,-31,-28,-38,-31,-28],"quadratic":[[0,1,76],[0,2,38],[2,3,76],[2,4,76],[3,4,76],[3,5,38],[4,5,38],[4,6,38],[5,6,76],[5,7,76],[6,7,76]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":7},{"index":1,"task":"A","resource":"backup","start":0,"cost":17},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":7},{"index":4,"task":"B","resource":"oven","start":8,"cost":10},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":7},{"index":7,"task":"C","resource":"oven","start":10,"cost":10}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":17},"components":[{"status":"feasible","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":17},"seed":2684470948,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.5727360686849723,2.1770567492770216],"expected_energy":36.08433143666469,"initial_expected_energy":42.74619654922337,"history":[42.74619654922337,44.6144178233438,42.383900436122275,42.96440463560678,42.09820822116603,43.86450934334077,42.48020628717416,42.00897995303335,41.953673851253384,42.053834926067324,41.88281017260212,41.73811532818112,41.46491326964812,41.282520566982726,46.62386201563773,41.17919960050783,42.036065776743584,41.80156629408331,40.802544205976936,41.99588856958544,40.72507920260109,40.70326094936157,40.699574007336935,40.62539371863982,41.05210892998696,40.806900396145224,40.86636319617386,40.660720746883904,40.621039638231196,40.64138056534965,40.61916067086023,40.61599960948161,40.61843348290523,40.61424500177196,40.6134954696918,40.611496163642045,40.60786628531089,40.60083640707763,40.595387360056684,40.58645059702391,40.60666617999903,40.60598638547144,40.58080735414569,40.576495580755136,40.5707645258849,40.58158205283683,40.56794490728252,40.56452947023871,40.56182787521185,40.56382992891571,40.56023162224757,40.55997790292916,40.562104710698655,40.55949637622027,40.55857802211609,40.556815000699004,40.55350042728356,40.547006912983534,40.53892832962997,40.53791644394411,41.53770068345189,41.49652313639819,40.90222075129474,48.56114233522717,50.29889983594143,43.341287682016976,36.79983884924485,38.53052900265426,36.86895514380488,37.0614011697477,37.482714155489596,36.88002575268709,36.87339734724372,36.78599805705828,36.7615583239261,36.743625087639025,36.74257633452356,36.72978052660886,36.71745586793523,36.69467826421713,36.67564254126848,36.62210246655974,36.67883274418341,36.60392410229509,36.64788390068553,36.590014578323405,36.577683702491235,36.563697250799194,36.53482172554898,36.52721146870251,36.46578427723364,36.51100656509536,36.45775615498036,36.50637787381666,36.44277029985395,36.429394047280184,36.40449364077319,36.35770937633518,36.28104733001796,36.838100031467874,36.81403854798274,36.25661131931403,36.27522694401564,36.28007077027133,36.234802699069995,36.225278846559505,36.28351295682764,36.20978466625028,36.200386001763476,36.19041606636368,36.17701389549117,36.15674773079141,36.149538322312566,36.21058169889559,36.13337217835704,36.12410269808551,36.115084512263195,36.11196068264436,36.08433143666469,36.0847330478268],"feasible_probability":0.6716090583590146,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.6953125,"counts":{"00100101":16,"00100110":73,"00101001":35,"00101010":25,"00110001":24,"00110010":6,"01000101":22,"01000110":41,"01001001":9,"01001010":51,"01010001":23,"01010010":4,"10000101":1,"10000110":14,"10001001":46,"10001010":28,"10010001":61,"10010010":33},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.15928334499767516}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.6716090583590146,"total_shots":512,"runtime_seconds":0.15950093200081028,"business_metrics":{"feasible":true,"violations":[],"violation_count":0,"objective":17,"preference_cost":12,"change_cost":5,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]}},"exact":{"status":"optimal","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":17},"combinations":18,"feasible_count":9,"runtime_seconds":0.00013302300067152828},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":17,"preference_cost":12,"change_cost":5,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]},"dual_bound":17.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.0015404480072902516},"uniform_one_hot":{"best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":17},"shots":512,"seed":42,"feasible_probability":0.5,"sampled_feasible_fraction":0.490234375,"runtime_seconds":0.010480587006895803},"absolute_gap":0,"status":"feasible","runtime_seconds":0.1747491020068992}},{"weight":6,"seed":7,"report":{"schema_version":2,"problem":"合成连锁改约:低成本整体后移或高成本备用设备","input_sha256":"57dab05c68f24f86e4821c2378785d4245c582be33f14d92b0fbf407bc4188ad","environment":{"python":"3.12.3","platform":"Linux","pyqpanda3":"0.4.1","pyqpanda_alg":"2.0.0","numpy":"2.5.3","scipy":"1.18.1"},"model":{"qubits":8,"penalty":41,"objective_bound":40,"offset":123,"linear":[-33,-23,-41,-33,-30,-41,-33,-30],"quadratic":[[0,1,82],[0,2,41],[2,3,82],[2,4,82],[3,4,82],[3,5,41],[4,5,41],[4,6,41],[5,6,82],[5,7,82],[6,7,82]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[{"task":"A","resource":"oven","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":8},{"index":1,"task":"A","resource":"backup","start":0,"cost":18},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":8},{"index":4,"task":"B","resource":"oven","start":8,"cost":11},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":8},{"index":7,"task":"C","resource":"oven","start":10,"cost":11}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]},"quantum":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[0,1,2,3,4,5,6,7]],"components":[{"qubits":8,"penalty":41,"objective_bound":40,"offset":123,"linear":[-33,-23,-41,-33,-30,-41,-33,-30],"quadratic":[[0,1,82],[0,2,41],[2,3,82],[2,4,82],[3,4,82],[3,5,41],[4,5,41],[4,6,41],[5,6,82],[5,7,82],[6,7,82]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":8},{"index":1,"task":"A","resource":"backup","start":0,"cost":18},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":8},{"index":4,"task":"B","resource":"oven","start":8,"cost":11},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":8},{"index":7,"task":"C","resource":"oven","start":10,"cost":11}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":18},"components":[{"status":"feasible","best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":18},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.9946042579144678,1.4538685898614305],"expected_energy":43.98678595834282,"initial_expected_energy":44.335811394638924,"history":[44.335811394638924,44.32799271111862,49.351896097069876,51.092947623575725,49.37630349108821,47.263767487772164,44.33603458596453,44.002396199892885,44.44054616595878,44.0096171636348,44.00262317473903,44.007703169443474,44.002448393392015,44.00982433229331,44.00114071153577,44.00163133768703,44.00103331922112,44.001675235164576,44.00098726151889,44.00083030781629,44.00071383594269,44.00086238363085,44.00060637990991,44.00053025960854,44.00059290113459,44.00041421880077,44.00035190663177,44.00046809242784,44.00023681037308,44.00012451247285,43.99990187505064,43.99946636279195,43.998681112034,43.99737691911651,43.995328054802656,43.99206342113821,44.05705121159038,44.01886788026809,43.99160574461553,44.00931150659542,43.990295635467746,43.991238728634315,43.99055106738597,43.99051019896558,43.990073557710275,43.9902085785735,43.989983280404275,43.989941284670685,43.98983469781811,43.98967251978232,43.98930958946845,43.988588004369745,43.987235063536716,43.990835405344214,43.99516861046625,43.98698884916564,43.990943449909295,43.98678595834282,43.98689990516533,43.98696998337985,44.48947801748038,44.59482999409306,48.468932071047774,50.27592177622907,48.08443563603085,44.51398247372818,46.63290498487951,44.30062743149041,44.29583700355958,44.25577694296847,44.243736726447835,44.81963501167657,44.2329804513168,44.48497698675432,44.26148820320515,44.23426083488825,44.24743767673091,44.208016602501644,44.17439140044711,44.16446410393355,44.170519324588476,44.16529674004323,44.16365802771442,44.16431186238668,44.16288714714477,44.162384959273865,44.162594741927315,44.16226470564426,44.161975316681946,44.16139693849925,44.16024890702545,44.158231442150964,44.15421014921206,44.14568889291435,44.130025908385406,44.397432078651164,44.21699432145559,44.12706805266647,44.180235820437105,44.123672100392554,44.125464388753514,44.125383023111155,44.12273980863043,44.121779642005755,44.12047905439278,44.11846894555266,44.117398890729575,44.115228708576,44.11436508050734,44.112049489063175,44.111552641880266,44.10674793768732,44.12526285002935,44.10969390196665,44.10616959827307,44.1095458699474,44.10558095335048,44.104679353155404,44.103794166585345,44.10301483496404],"feasible_probability":0.5605986707271561,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.56640625,"counts":{"00100101":22,"00100110":70,"00101001":15,"00101010":11,"00110001":43,"00110010":24,"01000101":2,"01000110":32,"01001001":30,"01001010":24,"01010001":65,"01010010":31,"10000101":9,"10000110":50,"10001001":43,"10001010":16,"10010001":13,"10010010":12},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.15529908800090197}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.5605986707271561,"total_shots":512,"runtime_seconds":0.15553565800655633,"business_metrics":{"feasible":true,"violations":[],"violation_count":0,"objective":18,"preference_cost":12,"change_cost":6,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]}},"exact":{"status":"optimal","best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":18},"combinations":18,"feasible_count":9,"runtime_seconds":0.0001351529936073348},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":18,"preference_cost":12,"change_cost":6,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]},"dual_bound":18.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.0016653119964757934},"uniform_one_hot":{"best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":18},"shots":512,"seed":7,"feasible_probability":0.5,"sampled_feasible_fraction":0.537109375,"runtime_seconds":0.012966818001586944},"absolute_gap":0,"status":"feasible","runtime_seconds":0.17377842299174517}},{"weight":6,"seed":19,"report":{"schema_version":2,"problem":"合成连锁改约:低成本整体后移或高成本备用设备","input_sha256":"57dab05c68f24f86e4821c2378785d4245c582be33f14d92b0fbf407bc4188ad","environment":{"python":"3.12.3","platform":"Linux","pyqpanda3":"0.4.1","pyqpanda_alg":"2.0.0","numpy":"2.5.3","scipy":"1.18.1"},"model":{"qubits":8,"penalty":41,"objective_bound":40,"offset":123,"linear":[-33,-23,-41,-33,-30,-41,-33,-30],"quadratic":[[0,1,82],[0,2,41],[2,3,82],[2,4,82],[3,4,82],[3,5,41],[4,5,41],[4,6,41],[5,6,82],[5,7,82],[6,7,82]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[{"task":"A","resource":"oven","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":8},{"index":1,"task":"A","resource":"backup","start":0,"cost":18},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":8},{"index":4,"task":"B","resource":"oven","start":8,"cost":11},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":8},{"index":7,"task":"C","resource":"oven","start":10,"cost":11}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]},"quantum":{"seed":19,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[0,1,2,3,4,5,6,7]],"components":[{"qubits":8,"penalty":41,"objective_bound":40,"offset":123,"linear":[-33,-23,-41,-33,-30,-41,-33,-30],"quadratic":[[0,1,82],[0,2,41],[2,3,82],[2,4,82],[3,4,82],[3,5,41],[4,5,41],[4,6,41],[5,6,82],[5,7,82],[6,7,82]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":8},{"index":1,"task":"A","resource":"backup","start":0,"cost":18},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":8},{"index":4,"task":"B","resource":"oven","start":8,"cost":11},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":8},{"index":7,"task":"C","resource":"oven","start":10,"cost":11}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":18},"components":[{"status":"feasible","best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":18},"seed":797913628,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4278423914139204,2.9309164737437365],"expected_energy":33.75668443936544,"initial_expected_energy":42.02973666267026,"history":[42.02973666267026,42.697000093176094,47.39811733237762,44.70921331079679,42.671522370869695,43.4989123150281,42.16529178042501,41.638827831311296,41.54773279009208,41.25733163402474,40.917878659858616,40.08009110563634,38.294615667357,35.337488874149855,58.17774782775611,48.75169897695102,45.092402375801385,35.06762394365246,37.407124683132324,35.406084819933255,35.201922300069214,35.02324093259938,35.102734437338846,35.00998908675906,34.98319948894857,34.93343665114325,34.86594200751881,34.76584712365404,34.720072350513036,34.617910872231114,34.59735410113569,34.48341625550216,34.47938263619578,34.407570852810075,34.34564041750987,34.2844615133865,34.376059190127215,34.25225051628678,34.22461994381059,34.19420082400755,34.41079428807069,34.15339937588658,34.10554707737957,34.08909579223228,34.05206549200742,34.023692503145725,33.96328750447188,33.85843291269989,35.00487893078608,34.15491425074933,33.92697839737026,33.87039471095359,33.87368027525538,33.841463414687794,33.831336521028035,33.818470754657,33.79394547167833,33.75668443936544,33.91883307739565,33.934632573783425,41.54136065236483,41.06470144416675,49.02705037739287,46.78262921201586,45.14787782439417,46.14001153492465,41.029074818820504,40.379578925160075,40.644596051399944,40.36305078350045,40.46518775787314,40.36026139257298,40.33481382407198,40.317941357358066,40.3072483360874,40.30108595559798,40.29352078570892,40.28711994589378,40.31828169887961,40.27543633276143,40.268509503496574,40.2611176786755,40.251039698241556,40.26848074537203,40.241838589200135,40.24508555168062,40.23433541440562,40.22894504949576,40.23598754792431,40.221732266866475,40.21602378797992,40.23474631723933,40.2102534501301,40.2037435638906,40.19589420048656,40.218168042439274,40.18581114542857,40.18864280882672,40.178476065051946,40.17235456225687,40.17485026791648,40.167550417924744,40.171836170696544,40.17162613166293,40.16359431441971,40.17253917423057,40.15968925981598,40.156075373748145,40.14908470361246,40.13649046587484,40.1198972868239,40.090500319337636,40.154145384362266,40.13794922041512,40.08613422221575,40.121830956096154,40.08253216537878,40.07831259169275,40.076103763282646,40.090916272717116],"feasible_probability":0.804283935708478,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.828125,"counts":{"00100101":12,"00100110":90,"00101001":21,"00101010":7,"00110001":29,"00110010":14,"01000101":2,"01000110":64,"01001001":86,"01001010":23,"01010001":3,"10000110":14,"10001001":59,"10001010":39,"10010001":32,"10010010":17},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1600909109984059}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.804283935708478,"total_shots":512,"runtime_seconds":0.16033524999511428,"business_metrics":{"feasible":true,"violations":[],"violation_count":0,"objective":18,"preference_cost":12,"change_cost":6,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]}},"exact":{"status":"optimal","best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":18},"combinations":18,"feasible_count":9,"runtime_seconds":0.00013621700054500252},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":18,"preference_cost":12,"change_cost":6,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]},"dual_bound":18.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.001570895008626394},"uniform_one_hot":{"best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":18},"shots":512,"seed":19,"feasible_probability":0.5,"sampled_feasible_fraction":0.5,"runtime_seconds":0.010649451010976918},"absolute_gap":0,"status":"feasible","runtime_seconds":0.1764827070001047}},{"weight":6,"seed":42,"report":{"schema_version":2,"problem":"合成连锁改约:低成本整体后移或高成本备用设备","input_sha256":"57dab05c68f24f86e4821c2378785d4245c582be33f14d92b0fbf407bc4188ad","environment":{"python":"3.12.3","platform":"Linux","pyqpanda3":"0.4.1","pyqpanda_alg":"2.0.0","numpy":"2.5.3","scipy":"1.18.1"},"model":{"qubits":8,"penalty":41,"objective_bound":40,"offset":123,"linear":[-33,-23,-41,-33,-30,-41,-33,-30],"quadratic":[[0,1,82],[0,2,41],[2,3,82],[2,4,82],[3,4,82],[3,5,41],[4,5,41],[4,6,41],[5,6,82],[5,7,82],[6,7,82]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[{"task":"A","resource":"oven","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":8},{"index":1,"task":"A","resource":"backup","start":0,"cost":18},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":8},{"index":4,"task":"B","resource":"oven","start":8,"cost":11},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":8},{"index":7,"task":"C","resource":"oven","start":10,"cost":11}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]},"quantum":{"seed":42,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[0,1,2,3,4,5,6,7]],"components":[{"qubits":8,"penalty":41,"objective_bound":40,"offset":123,"linear":[-33,-23,-41,-33,-30,-41,-33,-30],"quadratic":[[0,1,82],[0,2,41],[2,3,82],[2,4,82],[3,4,82],[3,5,41],[4,5,41],[4,6,41],[5,6,82],[5,7,82],[6,7,82]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":8},{"index":1,"task":"A","resource":"backup","start":0,"cost":18},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":8},{"index":4,"task":"B","resource":"oven","start":8,"cost":11},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":8},{"index":7,"task":"C","resource":"oven","start":10,"cost":11}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":18},"components":[{"status":"feasible","best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":18},"seed":2684470948,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.445317151282179,2.1707295016023567],"expected_energy":39.14612652198091,"initial_expected_energy":46.54189817225999,"history":[46.54189817225999,48.55605245046259,46.18560770579917,46.92081645665017,45.82368743479409,48.44660795482376,46.28933660527581,45.76255289071575,45.63473265132937,45.787235353940154,45.54112619934894,45.4541457138251,45.3245372784259,46.32459238708223,45.25666120042345,45.22670871623934,45.42826875443821,45.0949112377741,45.119567243411595,45.073449989589136,45.10519540504012,45.05031384877721,45.0309089412916,44.99454196962761,44.98385927468515,44.88869094248718,44.940242099776476,44.88237544921484,44.91237881834864,44.882903978307446,44.872417564422975,44.85691962513323,44.865196584597655,44.84474484613344,44.83653101188874,44.841105107577164,44.832143002081,44.82466855181021,44.81612672806574,44.82783369594221,44.80923538116902,44.802593676092,44.790299174725526,44.77940986042127,44.74816024543552,44.73655875620581,44.706591820902524,44.684645678300825,44.63233828702913,44.770538412270255,44.67522094496576,44.6255987581127,44.67536615296541,44.61115289089568,44.60357809134308,44.59170790890901,44.58046851977125,44.558717507460685,44.51613950596027,44.43716846633242,45.31933608149484,45.28029240023605,44.547194981405376,52.959826957292364,54.606910304911985,47.166695103955874,40.167307984266714,42.03628805175291,40.18665311968667,41.005183843475734,40.25011488860465,40.49546790642704,40.106455438071656,40.09364282455033,40.04998274374467,39.999008431362924,39.91919485666526,39.93583426638025,40.02307449218135,39.96799234098113,39.92522855203075,39.908005134024904,39.89408256003316,39.86709665093936,39.815036979144054,39.711074678927275,39.57561693126782,40.2435624300742,40.28623414421999,39.551461783935395,39.4955293319811,39.55811098605022,39.532000421772466,39.500605710625315,39.48217865879478,39.481568866999694,39.46833816289211,39.456420268036254,39.434389660725664,39.39009688901653,39.304801841758206,39.365655256593996,39.67670406225464,39.39378802603892,39.29515516527551,39.323377615200855,39.29005735457131,39.279160136736536,39.25835559261603,39.22074969490628,39.193067552794794,39.2002640292339,39.33690220895413,39.17723668561233,39.18129846810008,39.18871806925437,39.161231835573034,39.15353466988061,39.14612652198091,39.14975520805792],"feasible_probability":0.674566941375887,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.6796875,"counts":{"00100101":18,"00100110":73,"00101001":19,"00101010":20,"00110001":21,"00110010":8,"01000101":39,"01000110":47,"01001001":5,"01001010":38,"01010001":30,"01010010":5,"10000101":4,"10000110":12,"10001001":47,"10001010":30,"10010001":65,"10010010":31},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1638391290034633}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.674566941375887,"total_shots":512,"runtime_seconds":0.16406989700044505,"business_metrics":{"feasible":true,"violations":[],"violation_count":0,"objective":18,"preference_cost":12,"change_cost":6,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]}},"exact":{"status":"optimal","best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":18},"combinations":18,"feasible_count":9,"runtime_seconds":0.00014579900016542524},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":18,"preference_cost":12,"change_cost":6,"changed_tasks":1,"max_start_shift":0,"choices":[2,0,0],"schedule":[{"task":"A","resource":"backup","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]},"dual_bound":18.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.0014987920003477484},"uniform_one_hot":{"best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"A","group":"gA","resource":"backup","start":0,"end":2,"reserved_end":3,"changed":true},{"variable":2,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":5,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[0,1,1,0,0,1,0,0],"qubo_energy":18},"shots":512,"seed":42,"feasible_probability":0.5,"sampled_feasible_fraction":0.490234375,"runtime_seconds":0.01049844900262542},"absolute_gap":0,"status":"feasible","runtime_seconds":0.17967920600494836}}]}
diff --git a/Tutorials/LabScheduling/results/sensitivity/sensitivity.svg b/Tutorials/LabScheduling/results/sensitivity/sensitivity.svg
new file mode 100644
index 00000000..9f42d1ee
--- /dev/null
+++ b/Tutorials/LabScheduling/results/sensitivity/sensitivity.svg
@@ -0,0 +1,823 @@
+
+
+
diff --git a/Tutorials/LabScheduling/results/sensitivity/summary.csv b/Tutorials/LabScheduling/results/sensitivity/summary.csv
new file mode 100644
index 00000000..6c583ba5
--- /dev/null
+++ b/Tutorials/LabScheduling/results/sensitivity/summary.csv
@@ -0,0 +1,8 @@
+weight,certified_optimum,optimal_choices,optimal_changed_tasks,feasible_runs,optimal_runs,sampled_objectives,sampled_gaps
+0,6,"[[1, 1, 1]]",[3],3,3,"[6, 6, 6]","[0, 0, 0]"
+1,9,"[[1, 1, 1]]",[3],3,3,"[9, 9, 9]","[0, 0, 0]"
+2,12,"[[1, 1, 1]]",[3],3,3,"[12, 12, 12]","[0, 0, 0]"
+3,15,"[[1, 1, 1], [2, 0, 0]]","[1, 3]",3,3,"[15, 15, 15]","[0, 0, 0]"
+4,16,"[[2, 0, 0]]",[1],3,3,"[16, 16, 16]","[0, 0, 0]"
+5,17,"[[2, 0, 0]]",[1],3,3,"[17, 17, 17]","[0, 0, 0]"
+6,18,"[[2, 0, 0]]",[1],3,3,"[18, 18, 18]","[0, 0, 0]"
diff --git a/Tutorials/LabScheduling/results/simple-x-19.json b/Tutorials/LabScheduling/results/simple-x-19.json
new file mode 100644
index 00000000..45de8e00
--- /dev/null
+++ b/Tutorials/LabScheduling/results/simple-x-19.json
@@ -0,0 +1 @@
+{"schema_version": 1, "problem": "共享光谱仪故障后的两组重排", "input_sha256": "10444caecbe29d22a07730cdca9d58ea0c81ead9e2eb7d55c5f4c0651a5c04c4", "environment": {"python": "3.12.3", "platform": "Linux", "pyqpanda3": "0.4.1", "pyqpanda_alg": "2.0.0", "numpy": "2.5.3", "scipy": "1.18.1"}, "model": {"qubits": 6, "penalty": 10, "objective_bound": 9, "offset": 20, "linear": [-7, -6, -5, -6, -10, -6], "quadratic": [[0, 1, 20], [0, 2, 20], [0, 3, 10], [0, 4, 10], [1, 2, 20], [1, 3, 10], [1, 4, 10], [2, 5, 10], [3, 4, 20], [3, 5, 20], [4, 5, 20]], "domains": [[0, 1, 2], [3, 4, 5]], "pruned": [{"task": "sample-A", "resource": "spectrometer", "start": 0, "reasons": ["downtime"]}], "variables": [{"index": 0, "task": "sample-A", "resource": "spectrometer", "start": 1, "cost": 3}, {"index": 1, "task": "sample-A", "resource": "spectrometer", "start": 3, "cost": 4}, {"index": 2, "task": "sample-A", "resource": "spectrometer", "start": 6, "cost": 5}, {"index": 3, "task": "sample-B", "resource": "spectrometer", "start": 1, "cost": 4}, {"index": 4, "task": "sample-B", "resource": "spectrometer", "start": 3, "cost": 0}, {"index": 5, "task": "sample-B", "resource": "spectrometer", "start": 6, "cost": 4}], "conflicts": [{"i": 0, "j": 3, "reasons": ["resource"]}, {"i": 0, "j": 4, "reasons": ["resource"]}, {"i": 1, "j": 3, "reasons": ["resource"]}, {"i": 1, "j": 4, "reasons": ["resource"]}, {"i": 2, "j": 5, "reasons": ["resource"]}]}, "quantum": {"status": "feasible", "best": {"feasible": true, "objective": 5, "raw_cost": 5, "violation_count": 0, "violations": [], "schedule": [{"variable": 4, "task": "sample-B", "group": "group-B", "resource": "spectrometer", "start": 3, "end": 5, "reserved_end": 6, "changed": false}, {"variable": 2, "task": "sample-A", "group": "group-A", "resource": "spectrometer", "start": 6, "end": 8, "reserved_end": 9, "changed": true}], "bits": [0, 0, 1, 0, 1, 0], "qubo_energy": 5}, "seed": 19, "mixer": "x", "layers": 1, "shots": 512, "maxiter": 60, "restarts": 2, "parameters": [2.7597723167852415, 1.1357721144745379], "expected_energy": 39.06822829940442, "initial_expected_energy": 44.429241228354606, "history": [44.429241228354606, 43.65245841781318, 47.865359719178194, 44.11178509816492, 43.09428173451086, 41.11872887569614, 46.91009756978676, 41.63059182929974, 41.357937995546, 41.09463698244842, 41.04856709043965, 41.37897305140345, 41.07616776306784, 40.98756067902887, 40.959618374760744, 40.98024958104515, 40.96762495127937, 40.961749996374536, 40.959272838861274, 40.96082836861043, 40.9597184301867, 40.95803522666095, 40.95755606822606, 40.95699620010191, 40.9567654484718, 40.956785856457245, 40.956859377987456, 40.95677740740714, 40.95677977063592, 40.956741593137146, 40.95671022233108, 40.956697415271826, 40.956715293822086, 40.95669645473687, 40.956696279019766, 40.9566979758233, 40.956697489073164, 40.95669626401498, 40.956696625239886, 40.956696017951344, 40.95669589854053, 40.95669602076319, 40.95669575171795, 40.956695666202094, 40.95669565570681, 40.95669563280579, 40.95669568867223, 40.956695646736556, 40.95669563629748, 40.95669563427161, 40.95669563100731, 40.95669563188123, 40.95669562923974, 40.95669563073368, 41.81555317033615, 44.476456987653535, 40.51819293009798, 40.88146539153586, 39.93793778993572, 41.501244422951885, 39.58815631333306, 39.323594922839135, 39.10203484500104, 39.68301441111154, 39.100946050260575, 39.254682570233754, 39.087221555783714, 39.18804677166806, 39.10105547411021, 39.08021056869094, 39.0721077664944, 39.074798894190494, 39.07079172324657, 39.069339778535074, 39.06989699029589, 39.06836345415454, 39.06849539399134, 39.068331190881935, 39.0684814904547, 39.06833492682543, 39.06828968345832, 39.06825949252814, 39.06825764547953, 39.06824117119547, 39.068234816762484, 39.06824777556395, 39.068228327669, 39.06823392854357, 39.068229277453156, 39.06822876898522, 39.068228405289844, 39.06822837044036, 39.0682283258013, 39.06822836103765, 39.068228328966406, 39.06822831188296, 39.06822830310637, 39.06822830399078, 39.06822829940442, 39.0682283007819], "feasible_probability": 0.013175458736328177, "one_hot_probability": 0.11980816033924457, "sampled_feasible_fraction": 0.01171875, "counts": {"000000": 9, "000001": 3, "000010": 3, "000011": 18, "000100": 5, "000101": 3, "000110": 3, "000111": 31, "001001": 15, "001010": 20, "001011": 6, "001100": 4, "001101": 12, "001110": 13, "001111": 13, "010000": 5, "010001": 3, "010010": 6, "010011": 1, "010100": 2, "010101": 7, "010110": 14, "010111": 22, "011000": 20, "011010": 1, "011011": 4, "011100": 34, "011101": 2, "011111": 26, "100000": 7, "100011": 23, "100100": 11, "100101": 2, "100110": 3, "100111": 8, "101000": 5, "101001": 16, "101010": 18, "101011": 3, "101101": 4, "101110": 12, "101111": 3, "110000": 3, "110001": 14, "110010": 11, "110011": 4, "110100": 8, "110101": 2, "110110": 4, "111000": 18, "111001": 3, "111010": 3, "111011": 8, "111100": 11, "111110": 1, "111111": 2}, "circuit_evaluations": 100, "optimizer_runs": [{"success": true, "message": "Return from COBYLA because the trust region radius reaches its lower bound.", "evaluations": 54}, {"success": true, "message": "Return from COBYLA because the trust region radius reaches its lower bound.", "evaluations": 46}], "sampling": "seeded NumPy multinomial from CPUQVM Born probabilities", "runtime_seconds": 0.07168420701054856}, "exact": {"status": "optimal", "best": {"feasible": true, "objective": 5, "raw_cost": 5, "violation_count": 0, "violations": [], "schedule": [{"variable": 4, "task": "sample-B", "group": "group-B", "resource": "spectrometer", "start": 3, "end": 5, "reserved_end": 6, "changed": false}, {"variable": 2, "task": "sample-A", "group": "group-A", "resource": "spectrometer", "start": 6, "end": 8, "reserved_end": 9, "changed": true}], "bits": [0, 0, 1, 0, 1, 0], "qubo_energy": 5}, "combinations": 9, "feasible_count": 4, "runtime_seconds": 4.244499723426998e-05}, "uniform_one_hot": {"best": {"feasible": true, "objective": 5, "raw_cost": 5, "violation_count": 0, "violations": [], "schedule": [{"variable": 4, "task": "sample-B", "group": "group-B", "resource": "spectrometer", "start": 3, "end": 5, "reserved_end": 6, "changed": false}, {"variable": 2, "task": "sample-A", "group": "group-A", "resource": "spectrometer", "start": 6, "end": 8, "reserved_end": 9, "changed": true}], "bits": [0, 0, 1, 0, 1, 0], "qubo_energy": 5}, "shots": 512, "seed": 19, "feasible_probability": 0.4444444444444444, "sampled_feasible_fraction": 0.455078125, "runtime_seconds": 0.005581028992310166}, "absolute_gap": 0, "status": "feasible", "runtime_seconds": 0.07943869099835865}
diff --git a/Tutorials/LabScheduling/results/simple-x-42.json b/Tutorials/LabScheduling/results/simple-x-42.json
new file mode 100644
index 00000000..e87c6093
--- /dev/null
+++ b/Tutorials/LabScheduling/results/simple-x-42.json
@@ -0,0 +1 @@
+{"schema_version": 1, "problem": "共享光谱仪故障后的两组重排", "input_sha256": "10444caecbe29d22a07730cdca9d58ea0c81ead9e2eb7d55c5f4c0651a5c04c4", "environment": {"python": "3.12.3", "platform": "Linux", "pyqpanda3": "0.4.1", "pyqpanda_alg": "2.0.0", "numpy": "2.5.3", "scipy": "1.18.1"}, "model": {"qubits": 6, "penalty": 10, "objective_bound": 9, "offset": 20, "linear": [-7, -6, -5, -6, -10, -6], "quadratic": [[0, 1, 20], [0, 2, 20], [0, 3, 10], [0, 4, 10], [1, 2, 20], [1, 3, 10], [1, 4, 10], [2, 5, 10], [3, 4, 20], [3, 5, 20], [4, 5, 20]], "domains": [[0, 1, 2], [3, 4, 5]], "pruned": [{"task": "sample-A", "resource": "spectrometer", "start": 0, "reasons": ["downtime"]}], "variables": [{"index": 0, "task": "sample-A", "resource": "spectrometer", "start": 1, "cost": 3}, {"index": 1, "task": "sample-A", "resource": "spectrometer", "start": 3, "cost": 4}, {"index": 2, "task": "sample-A", "resource": "spectrometer", "start": 6, "cost": 5}, {"index": 3, "task": "sample-B", "resource": "spectrometer", "start": 1, "cost": 4}, {"index": 4, "task": "sample-B", "resource": "spectrometer", "start": 3, "cost": 0}, {"index": 5, "task": "sample-B", "resource": "spectrometer", "start": 6, "cost": 4}], "conflicts": [{"i": 0, "j": 3, "reasons": ["resource"]}, {"i": 0, "j": 4, "reasons": ["resource"]}, {"i": 1, "j": 3, "reasons": ["resource"]}, {"i": 1, "j": 4, "reasons": ["resource"]}, {"i": 2, "j": 5, "reasons": ["resource"]}]}, "quantum": {"status": "feasible", "best": {"feasible": true, "objective": 5, "raw_cost": 5, "violation_count": 0, "violations": [], "schedule": [{"variable": 4, "task": "sample-B", "group": "group-B", "resource": "spectrometer", "start": 3, "end": 5, "reserved_end": 6, "changed": false}, {"variable": 2, "task": "sample-A", "group": "group-A", "resource": "spectrometer", "start": 6, "end": 8, "reserved_end": 9, "changed": true}], "bits": [0, 0, 1, 0, 1, 0], "qubo_energy": 5}, "seed": 42, "mixer": "x", "layers": 1, "shots": 512, "maxiter": 60, "restarts": 2, "parameters": [2.759776232596903, 1.1357679404540237], "expected_energy": 39.068228299166805, "initial_expected_energy": 41.07892444131788, "history": [41.07892444131788, 42.89418122728753, 44.01715212309854, 48.50190123753893, 42.29122642736752, 41.76625179177592, 40.9651953061811, 40.849825382371534, 40.815710705709485, 40.890135065176366, 40.824827204203174, 40.830563867297315, 40.81515691149363, 40.81174046324168, 40.809887075927016, 40.8107262328795, 40.809194278407006, 40.80944797859874, 40.80943952391955, 40.80924457639043, 40.80918505391105, 40.80917679027394, 40.809170852607494, 40.80917455340075, 40.80917334172697, 40.80917099120256, 40.80917099563502, 40.80917102074071, 40.809170799062166, 40.80917079075582, 40.809170804566136, 40.809170793149384, 40.809170789586055, 40.8091707886858, 40.80917079269644, 39.55244085805286, 46.00470812382955, 41.24020309832211, 42.30647120247181, 42.49684765044586, 39.883737682269995, 39.313044414712394, 39.114468202343524, 39.64155776900702, 39.09572415255806, 39.213164420730735, 39.08877533049215, 39.232146054937864, 39.0772980845529, 39.10288507596637, 39.08262278557912, 39.0708286511335, 39.06826947494933, 39.07151263926394, 39.069178840155224, 39.06845403937961, 39.06856229016282, 39.0684883926842, 39.068243662676906, 39.06823179590579, 39.068270490463604, 39.068241621374156, 39.068236742397914, 39.068228661447584, 39.06823617499806, 39.06822907328725, 39.068228520828015, 39.06822908457743, 39.068228312856014, 39.068228351800535, 39.06822832723071, 39.06822832459339, 39.06822830253239, 39.06822830930594, 39.068228299166805, 39.06822830057019, 39.068228300930045], "feasible_probability": 0.013176372564136205, "one_hot_probability": 0.1198100716523653, "sampled_feasible_fraction": 0.013671875, "counts": {"000000": 8, "000001": 1, "000010": 3, "000011": 16, "000100": 11, "000101": 4, "000110": 6, "000111": 17, "001000": 2, "001001": 9, "001010": 14, "001011": 3, "001100": 3, "001101": 17, "001110": 8, "001111": 10, "010000": 11, "010001": 5, "010010": 9, "010011": 1, "010100": 2, "010101": 9, "010110": 10, "010111": 15, "011000": 26, "011001": 1, "011010": 2, "011011": 2, "011100": 42, "011101": 5, "011111": 9, "100000": 9, "100010": 2, "100011": 26, "100100": 9, "100101": 2, "100110": 4, "100111": 8, "101000": 7, "101001": 19, "101010": 20, "101101": 9, "101110": 8, "101111": 2, "110000": 2, "110001": 12, "110010": 19, "110011": 9, "110100": 5, "110101": 6, "110110": 2, "110111": 1, "111000": 25, "111001": 4, "111010": 2, "111011": 11, "111100": 6, "111110": 2}, "circuit_evaluations": 77, "optimizer_runs": [{"success": true, "message": "Return from COBYLA because the trust region radius reaches its lower bound.", "evaluations": 35}, {"success": true, "message": "Return from COBYLA because the trust region radius reaches its lower bound.", "evaluations": 42}], "sampling": "seeded NumPy multinomial from CPUQVM Born probabilities", "runtime_seconds": 0.049558814003830776}, "exact": {"status": "optimal", "best": {"feasible": true, "objective": 5, "raw_cost": 5, "violation_count": 0, "violations": [], "schedule": [{"variable": 4, "task": "sample-B", "group": "group-B", "resource": "spectrometer", "start": 3, "end": 5, "reserved_end": 6, "changed": false}, {"variable": 2, "task": "sample-A", "group": "group-A", "resource": "spectrometer", "start": 6, "end": 8, "reserved_end": 9, "changed": true}], "bits": [0, 0, 1, 0, 1, 0], "qubo_energy": 5}, "combinations": 9, "feasible_count": 4, "runtime_seconds": 4.142100806348026e-05}, "uniform_one_hot": {"best": {"feasible": true, "objective": 5, "raw_cost": 5, "violation_count": 0, "violations": [], "schedule": [{"variable": 4, "task": "sample-B", "group": "group-B", "resource": "spectrometer", "start": 3, "end": 5, "reserved_end": 6, "changed": false}, {"variable": 2, "task": "sample-A", "group": "group-A", "resource": "spectrometer", "start": 6, "end": 8, "reserved_end": 9, "changed": true}], "bits": [0, 0, 1, 0, 1, 0], "qubo_energy": 5}, "shots": 512, "seed": 42, "feasible_probability": 0.4444444444444444, "sampled_feasible_fraction": 0.4453125, "runtime_seconds": 0.005499704988324083}, "absolute_gap": 0, "status": "feasible", "runtime_seconds": 0.05787647199758794}
diff --git a/Tutorials/LabScheduling/results/simple-x-7.json b/Tutorials/LabScheduling/results/simple-x-7.json
new file mode 100644
index 00000000..239919e5
--- /dev/null
+++ b/Tutorials/LabScheduling/results/simple-x-7.json
@@ -0,0 +1 @@
+{"schema_version": 1, "problem": "共享光谱仪故障后的两组重排", "input_sha256": "10444caecbe29d22a07730cdca9d58ea0c81ead9e2eb7d55c5f4c0651a5c04c4", "environment": {"python": "3.12.3", "platform": "Linux", "pyqpanda3": "0.4.1", "pyqpanda_alg": "2.0.0", "numpy": "2.5.3", "scipy": "1.18.1"}, "model": {"qubits": 6, "penalty": 10, "objective_bound": 9, "offset": 20, "linear": [-7, -6, -5, -6, -10, -6], "quadratic": [[0, 1, 20], [0, 2, 20], [0, 3, 10], [0, 4, 10], [1, 2, 20], [1, 3, 10], [1, 4, 10], [2, 5, 10], [3, 4, 20], [3, 5, 20], [4, 5, 20]], "domains": [[0, 1, 2], [3, 4, 5]], "pruned": [{"task": "sample-A", "resource": "spectrometer", "start": 0, "reasons": ["downtime"]}], "variables": [{"index": 0, "task": "sample-A", "resource": "spectrometer", "start": 1, "cost": 3}, {"index": 1, "task": "sample-A", "resource": "spectrometer", "start": 3, "cost": 4}, {"index": 2, "task": "sample-A", "resource": "spectrometer", "start": 6, "cost": 5}, {"index": 3, "task": "sample-B", "resource": "spectrometer", "start": 1, "cost": 4}, {"index": 4, "task": "sample-B", "resource": "spectrometer", "start": 3, "cost": 0}, {"index": 5, "task": "sample-B", "resource": "spectrometer", "start": 6, "cost": 4}], "conflicts": [{"i": 0, "j": 3, "reasons": ["resource"]}, {"i": 0, "j": 4, "reasons": ["resource"]}, {"i": 1, "j": 3, "reasons": ["resource"]}, {"i": 1, "j": 4, "reasons": ["resource"]}, {"i": 2, "j": 5, "reasons": ["resource"]}]}, "quantum": {"status": "feasible", "best": {"feasible": true, "objective": 5, "raw_cost": 5, "violation_count": 0, "violations": [], "schedule": [{"variable": 4, "task": "sample-B", "group": "group-B", "resource": "spectrometer", "start": 3, "end": 5, "reserved_end": 6, "changed": false}, {"variable": 2, "task": "sample-A", "group": "group-A", "resource": "spectrometer", "start": 6, "end": 8, "reserved_end": 9, "changed": true}], "bits": [0, 0, 1, 0, 1, 0], "qubo_energy": 5}, "seed": 7, "mixer": "x", "layers": 1, "shots": 512, "maxiter": 60, "restarts": 2, "parameters": [2.759771913855783, 1.1357710362226063], "expected_energy": 39.068228299351084, "initial_expected_energy": 41.71628103774507, "history": [41.71628103774507, 44.16209901411531, 41.702947817758336, 44.74539031590892, 41.90199751580177, 42.02661981318457, 41.66038449963915, 41.464593345641354, 41.04119210347545, 41.15410757609222, 40.596344920113694, 40.367523338727025, 40.713370835766405, 40.17968819838784, 39.80378790523673, 39.28855759825831, 39.49584023201278, 39.24187125380324, 39.10896717926178, 39.06857264852813, 39.140358915265445, 39.08286804564662, 39.07419062040705, 39.068519809276665, 39.06828686919385, 39.069173433207034, 39.06840678252922, 39.06834093628623, 39.06825091331663, 39.06833008454059, 39.06824164026002, 39.06823482232509, 39.068228349573886, 39.06823284618247, 39.06822942235007, 39.06822892742676, 39.06822842202807, 39.06822831522837, 39.068228437867916, 39.068228353146836, 39.06822832895072, 39.068228309887196, 39.06822830260117, 39.06822830373427, 39.068228299351084, 39.06822830050797, 44.96412768363713, 49.77088784659939, 43.098433329950296, 42.85136447002411, 53.82211843011176, 41.84785110334475, 47.32328991300763, 41.33646617923812, 40.71901934586189, 41.56905547349465, 41.09695151552731, 40.80361002115636, 40.60506589668317, 40.854821727207856, 40.60921650878135, 40.62939660057041, 40.608414208256164, 40.59857122968647, 40.59511936476199, 40.595553773794066, 40.594778011570654, 40.59537564418305, 40.59460285035786, 40.59469628172322, 40.59458680715426, 40.59458660907238, 40.59457825823276, 40.594602669193726, 40.594584144761434, 40.59457690511539, 40.59457548865742, 40.594575085212675, 40.59457600984137, 40.59457559260656, 40.59457517103924, 40.59457505346137, 40.59457502080329, 40.59457504516116, 40.594575014242935, 40.5945750223879, 40.59457501755684], "feasible_probability": 0.013175599362848284, "one_hot_probability": 0.11980859447248007, "sampled_feasible_fraction": 0.015625, "counts": {"000000": 8, "000001": 2, "000010": 2, "000011": 16, "000100": 3, "000101": 4, "000110": 3, "000111": 29, "001000": 2, "001001": 8, "001010": 9, "001011": 3, "001100": 5, "001101": 16, "001110": 16, "001111": 5, "010000": 10, "010001": 7, "010010": 7, "010011": 1, "010100": 2, "010101": 5, "010110": 9, "010111": 22, "011000": 17, "011010": 3, "011011": 1, "011100": 36, "011101": 1, "011110": 2, "011111": 17, "100000": 6, "100010": 1, "100011": 20, "100100": 10, "100101": 3, "100110": 2, "100111": 4, "101000": 6, "101001": 19, "101010": 22, "101011": 2, "101101": 15, "101110": 10, "101111": 3, "110000": 3, "110001": 12, "110010": 15, "110011": 10, "110100": 7, "110101": 4, "110110": 5, "111000": 33, "111001": 6, "111010": 3, "111011": 13, "111100": 6, "111111": 1}, "circuit_evaluations": 87, "optimizer_runs": [{"success": true, "message": "Return from COBYLA because the trust region radius reaches its lower bound.", "evaluations": 46}, {"success": true, "message": "Return from COBYLA because the trust region radius reaches its lower bound.", "evaluations": 41}], "sampling": "seeded NumPy multinomial from CPUQVM Born probabilities", "runtime_seconds": 0.05948293599067256}, "exact": {"status": "optimal", "best": {"feasible": true, "objective": 5, "raw_cost": 5, "violation_count": 0, "violations": [], "schedule": [{"variable": 4, "task": "sample-B", "group": "group-B", "resource": "spectrometer", "start": 3, "end": 5, "reserved_end": 6, "changed": false}, {"variable": 2, "task": "sample-A", "group": "group-A", "resource": "spectrometer", "start": 6, "end": 8, "reserved_end": 9, "changed": true}], "bits": [0, 0, 1, 0, 1, 0], "qubo_energy": 5}, "combinations": 9, "feasible_count": 4, "runtime_seconds": 4.590699973050505e-05}, "uniform_one_hot": {"best": {"feasible": true, "objective": 5, "raw_cost": 5, "violation_count": 0, "violations": [], "schedule": [{"variable": 4, "task": "sample-B", "group": "group-B", "resource": "spectrometer", "start": 3, "end": 5, "reserved_end": 6, "changed": false}, {"variable": 2, "task": "sample-A", "group": "group-A", "resource": "spectrometer", "start": 6, "end": 8, "reserved_end": 9, "changed": true}], "bits": [0, 0, 1, 0, 1, 0], "qubo_energy": 5}, "shots": 512, "seed": 7, "feasible_probability": 0.4444444444444444, "sampled_feasible_fraction": 0.45703125, "runtime_seconds": 0.005293270995025523}, "absolute_gap": 0, "status": "feasible", "runtime_seconds": 0.06705467200663406}
diff --git a/Tutorials/LabScheduling/results/simple-xy-19.json b/Tutorials/LabScheduling/results/simple-xy-19.json
new file mode 100644
index 00000000..b1e35f15
--- /dev/null
+++ b/Tutorials/LabScheduling/results/simple-xy-19.json
@@ -0,0 +1 @@
+{"schema_version": 1, "problem": "共享光谱仪故障后的两组重排", "input_sha256": "10444caecbe29d22a07730cdca9d58ea0c81ead9e2eb7d55c5f4c0651a5c04c4", "environment": {"python": "3.12.3", "platform": "Linux", "pyqpanda3": "0.4.1", "pyqpanda_alg": "2.0.0", "numpy": "2.5.3", "scipy": "1.18.1"}, "model": {"qubits": 6, "penalty": 10, "objective_bound": 9, "offset": 20, "linear": [-7, -6, -5, -6, -10, -6], "quadratic": [[0, 1, 20], [0, 2, 20], [0, 3, 10], [0, 4, 10], [1, 2, 20], [1, 3, 10], [1, 4, 10], [2, 5, 10], [3, 4, 20], [3, 5, 20], [4, 5, 20]], "domains": [[0, 1, 2], [3, 4, 5]], "pruned": [{"task": "sample-A", "resource": "spectrometer", "start": 0, "reasons": ["downtime"]}], "variables": [{"index": 0, "task": "sample-A", "resource": "spectrometer", "start": 1, "cost": 3}, {"index": 1, "task": "sample-A", "resource": "spectrometer", "start": 3, "cost": 4}, {"index": 2, "task": "sample-A", "resource": "spectrometer", "start": 6, "cost": 5}, {"index": 3, "task": "sample-B", "resource": "spectrometer", "start": 1, "cost": 4}, {"index": 4, "task": "sample-B", "resource": "spectrometer", "start": 3, "cost": 0}, {"index": 5, "task": "sample-B", "resource": "spectrometer", "start": 6, "cost": 4}], "conflicts": [{"i": 0, "j": 3, "reasons": ["resource"]}, {"i": 0, "j": 4, "reasons": ["resource"]}, {"i": 1, "j": 3, "reasons": ["resource"]}, {"i": 1, "j": 4, "reasons": ["resource"]}, {"i": 2, "j": 5, "reasons": ["resource"]}]}, "quantum": {"status": "feasible", "best": {"feasible": true, "objective": 5, "raw_cost": 5, "violation_count": 0, "violations": [], "schedule": [{"variable": 4, "task": "sample-B", "group": "group-B", "resource": "spectrometer", "start": 3, "end": 5, "reserved_end": 6, "changed": false}, {"variable": 2, "task": "sample-A", "group": "group-A", "resource": "spectrometer", "start": 6, "end": 8, "reserved_end": 9, "changed": true}], "bits": [0, 0, 1, 0, 1, 0], "qubo_energy": 5}, "seed": 19, "mixer": "xy", "layers": 1, "shots": 512, "maxiter": 60, "restarts": 2, "parameters": [4.345529850978167, 0.3592469574168215], "expected_energy": 10.766212468008138, "initial_expected_energy": 13.080701568014234, "history": [13.080701568014234, 12.1167815760677, 12.471732329831813, 12.22226485548989, 12.180177975232109, 11.888767927427452, 12.095490190657898, 11.577216048453126, 11.475571420266618, 11.234609232799372, 11.384353776272336, 11.475772193607117, 11.206916078778972, 11.283713270951237, 11.158187108172138, 11.206317810689097, 11.12902176680396, 11.140055324896572, 11.120956097669033, 11.107580228864308, 11.093765022741177, 11.143474993962448, 11.087174298702852, 11.069030439708117, 11.053891681571235, 11.058190486735096, 11.040773079883575, 11.029584123115411, 11.016352679831186, 11.060368826118665, 10.997374767411024, 10.98277892040082, 10.958858719447548, 10.915759459677501, 11.053908322261785, 10.919111391285579, 10.910166405817773, 10.92640053768561, 10.921244234479222, 10.892346003440352, 10.882109641118426, 10.914281126556507, 10.876074051459444, 10.866341124015861, 10.855436935833431, 10.90387248321752, 10.850165533662654, 10.83793268289668, 10.829956634160308, 10.837664093721013, 10.826257412551959, 10.823705285629499, 10.819981975900237, 10.812760014331024, 10.798992437323486, 10.775228417679227, 10.816404010779403, 10.832097108383767, 10.77352930678062, 10.766212468008138, 12.551146229719702, 12.442468792665487, 13.196707798610252, 13.054835416662481, 12.151251352629064, 12.423774353728273, 12.356792638571205, 12.186272135378685, 12.46162968875064, 12.146963192396758, 12.136967002749605, 12.167078008053185, 12.129332312260527, 12.143730682812915, 12.129346794814388, 12.126255894390159, 12.126465092016069, 12.12795421279635, 12.12660002779287, 12.124719761683702, 12.12181858592135, 12.11576895086681, 12.102868183261553, 12.098857349720245, 12.103960504545864, 12.19557055481531, 12.077465603225264, 12.07278781967684, 12.068918496630566, 12.08057862567464, 12.06337875472219, 12.060807118932548, 12.057106286692566, 12.050006916986009, 12.039598598766437, 12.09140324801694, 12.117752249173218, 12.031770951075204, 12.033664999376686, 12.0375336833523, 12.030141476359336, 12.029786853320338, 12.032384450798038, 12.02757804212919, 12.023485835432346, 12.015771230969118, 11.999175408099726, 11.978014853590182, 12.02434051879183, 12.082215490276557, 11.971765069659224, 11.96019009504968, 11.961691826816892, 11.965647469735496, 11.960815852347359, 11.957960433263619, 11.953564368457418, 11.94499779068076, 11.928606976379672, 12.140511491665336], "feasible_probability": 0.6881438966232601, "one_hot_probability": 1.0000000000000002, "sampled_feasible_fraction": 0.6796875, "counts": {"001001": 50, "001010": 11, "001100": 241, "010001": 20, "010010": 80, "010100": 14, "100001": 17, "100010": 76, "100100": 3}, "circuit_evaluations": 120, "optimizer_runs": [{"success": false, "message": "Return from COBYLA because the objective function has been evaluated MAXFUN times.", "evaluations": 60}, {"success": false, "message": "Return from COBYLA because the objective function has been evaluated MAXFUN times.", "evaluations": 60}], "sampling": "seeded NumPy multinomial from CPUQVM Born probabilities", "runtime_seconds": 0.10694761799823027}, "exact": {"status": "optimal", "best": {"feasible": true, "objective": 5, "raw_cost": 5, "violation_count": 0, "violations": [], "schedule": [{"variable": 4, "task": "sample-B", "group": "group-B", "resource": "spectrometer", "start": 3, "end": 5, "reserved_end": 6, "changed": false}, {"variable": 2, "task": "sample-A", "group": "group-A", "resource": "spectrometer", "start": 6, "end": 8, "reserved_end": 9, "changed": true}], "bits": [0, 0, 1, 0, 1, 0], "qubo_energy": 5}, "combinations": 9, "feasible_count": 4, "runtime_seconds": 4.044700472149998e-05}, "uniform_one_hot": {"best": {"feasible": true, "objective": 5, "raw_cost": 5, "violation_count": 0, "violations": [], "schedule": [{"variable": 4, "task": "sample-B", "group": "group-B", "resource": "spectrometer", "start": 3, "end": 5, "reserved_end": 6, "changed": false}, {"variable": 2, "task": "sample-A", "group": "group-A", "resource": "spectrometer", "start": 6, "end": 8, "reserved_end": 9, "changed": true}], "bits": [0, 0, 1, 0, 1, 0], "qubo_energy": 5}, "shots": 512, "seed": 19, "feasible_probability": 0.4444444444444444, "sampled_feasible_fraction": 0.455078125, "runtime_seconds": 0.0054155649995664135}, "absolute_gap": 0, "status": "feasible", "runtime_seconds": 0.11456937799812295}
diff --git a/Tutorials/LabScheduling/results/simple-xy-42.json b/Tutorials/LabScheduling/results/simple-xy-42.json
new file mode 100644
index 00000000..bb1d4693
--- /dev/null
+++ b/Tutorials/LabScheduling/results/simple-xy-42.json
@@ -0,0 +1 @@
+{"schema_version": 1, "problem": "共享光谱仪故障后的两组重排", "input_sha256": "10444caecbe29d22a07730cdca9d58ea0c81ead9e2eb7d55c5f4c0651a5c04c4", "environment": {"python": "3.12.3", "platform": "Linux", "pyqpanda3": "0.4.1", "pyqpanda_alg": "2.0.0", "numpy": "2.5.3", "scipy": "1.18.1"}, "model": {"qubits": 6, "penalty": 10, "objective_bound": 9, "offset": 20, "linear": [-7, -6, -5, -6, -10, -6], "quadratic": [[0, 1, 20], [0, 2, 20], [0, 3, 10], [0, 4, 10], [1, 2, 20], [1, 3, 10], [1, 4, 10], [2, 5, 10], [3, 4, 20], [3, 5, 20], [4, 5, 20]], "domains": [[0, 1, 2], [3, 4, 5]], "pruned": [{"task": "sample-A", "resource": "spectrometer", "start": 0, "reasons": ["downtime"]}], "variables": [{"index": 0, "task": "sample-A", "resource": "spectrometer", "start": 1, "cost": 3}, {"index": 1, "task": "sample-A", "resource": "spectrometer", "start": 3, "cost": 4}, {"index": 2, "task": "sample-A", "resource": "spectrometer", "start": 6, "cost": 5}, {"index": 3, "task": "sample-B", "resource": "spectrometer", "start": 1, "cost": 4}, {"index": 4, "task": "sample-B", "resource": "spectrometer", "start": 3, "cost": 0}, {"index": 5, "task": "sample-B", "resource": "spectrometer", "start": 6, "cost": 4}], "conflicts": [{"i": 0, "j": 3, "reasons": ["resource"]}, {"i": 0, "j": 4, "reasons": ["resource"]}, {"i": 1, "j": 3, "reasons": ["resource"]}, {"i": 1, "j": 4, "reasons": ["resource"]}, {"i": 2, "j": 5, "reasons": ["resource"]}]}, "quantum": {"status": "feasible", "best": {"feasible": true, "objective": 5, "raw_cost": 5, "violation_count": 0, "violations": [], "schedule": [{"variable": 4, "task": "sample-B", "group": "group-B", "resource": "spectrometer", "start": 3, "end": 5, "reserved_end": 6, "changed": false}, {"variable": 2, "task": "sample-A", "group": "group-A", "resource": "spectrometer", "start": 6, "end": 8, "reserved_end": 9, "changed": true}], "bits": [0, 0, 1, 0, 1, 0], "qubo_energy": 5}, "seed": 42, "mixer": "xy", "layers": 1, "shots": 512, "maxiter": 60, "restarts": 2, "parameters": [3.9188486349104665, 1.4475411031221486], "expected_energy": 11.224484187298664, "initial_expected_energy": 12.312682965260034, "history": [12.312682965260034, 12.839102497922628, 13.676678318006115, 12.045928216913673, 12.49865344223659, 13.29601672505194, 12.014083555023783, 12.055299427698486, 12.04391951772043, 12.009684293808114, 12.133688120559063, 12.039335806252037, 12.018503234318143, 12.009612472628195, 12.010704116320868, 12.010910033234689, 12.0098461995914, 12.00970601692337, 12.00960552362293, 12.009607365155695, 12.009597742632646, 12.009591534696035, 12.00960036052295, 12.009588066002639, 12.00958455924436, 12.00959722681754, 12.00957794272924, 12.009576289041327, 12.009572360089122, 12.009565000188656, 12.00955114604001, 12.009529458889798, 12.01000554156678, 12.00980546756999, 12.009523692206798, 12.009536856386351, 12.009542844493847, 12.009517128177691, 12.009515642970907, 12.009511956173435, 12.009508637473534, 12.0095028149271, 12.009497417293879, 12.009485391630488, 12.009571709335624, 12.009504318976472, 12.009483981996055, 12.009513304993868, 12.009477903480331, 12.009477172343853, 12.009473493351072, 12.009470422575308, 12.00946446661859, 12.009455010531296, 12.009489737342086, 12.009525651856883, 12.00945172000519, 12.009454990305592, 12.009454649124446, 12.009449107521053, 12.479820836766184, 12.300321738970654, 11.77477754165038, 14.414385931544345, 12.08892257419939, 11.985703964933355, 12.171421981817296, 11.831809374944836, 11.787370525798963, 11.777394216357628, 11.785117694142418, 11.760513209771213, 11.755513262128716, 11.775449101146148, 11.751895486805697, 11.745043700644636, 11.732038494812741, 11.70782811667566, 11.660733513099125, 11.60660942887451, 11.61996673508881, 11.693794372050721, 11.605068083724296, 11.624565019536352, 11.603659591353047, 11.595718789501689, 11.585090616694236, 11.592439454324907, 11.579672726604773, 11.57485242595154, 11.56964194299365, 11.557548070152645, 11.5413736274132, 11.519407810364768, 11.483724989647497, 11.43063002650186, 11.376170650479814, 11.331603778954847, 13.16039906355816, 11.403774880483638, 11.332978551117293, 11.597789252415527, 11.271601222770576, 11.26465827787995, 11.279420754222219, 11.27076074227049, 11.259445924961131, 11.257538417612803, 11.272624991076658, 11.254203150754307, 11.252889699792288, 11.250639225323656, 11.246343593600534, 11.238484268579516, 11.227876356364902, 11.278131536443357, 11.273339977685016, 11.224484187298664, 11.227809465301828, 11.22738490431708], "feasible_probability": 0.4204935942354665, "one_hot_probability": 1.0, "sampled_feasible_fraction": 0.44921875, "counts": {"001001": 35, "001010": 21, "001100": 37, "010001": 126, "010010": 84, "010100": 100, "100001": 43, "100010": 50, "100100": 16}, "circuit_evaluations": 120, "optimizer_runs": [{"success": false, "message": "Return from COBYLA because the objective function has been evaluated MAXFUN times.", "evaluations": 60}, {"success": false, "message": "Return from COBYLA because the objective function has been evaluated MAXFUN times.", "evaluations": 60}], "sampling": "seeded NumPy multinomial from CPUQVM Born probabilities", "runtime_seconds": 0.10352410899940878}, "exact": {"status": "optimal", "best": {"feasible": true, "objective": 5, "raw_cost": 5, "violation_count": 0, "violations": [], "schedule": [{"variable": 4, "task": "sample-B", "group": "group-B", "resource": "spectrometer", "start": 3, "end": 5, "reserved_end": 6, "changed": false}, {"variable": 2, "task": "sample-A", "group": "group-A", "resource": "spectrometer", "start": 6, "end": 8, "reserved_end": 9, "changed": true}], "bits": [0, 0, 1, 0, 1, 0], "qubo_energy": 5}, "combinations": 9, "feasible_count": 4, "runtime_seconds": 3.847399784717709e-05}, "uniform_one_hot": {"best": {"feasible": true, "objective": 5, "raw_cost": 5, "violation_count": 0, "violations": [], "schedule": [{"variable": 4, "task": "sample-B", "group": "group-B", "resource": "spectrometer", "start": 3, "end": 5, "reserved_end": 6, "changed": false}, {"variable": 2, "task": "sample-A", "group": "group-A", "resource": "spectrometer", "start": 6, "end": 8, "reserved_end": 9, "changed": true}], "bits": [0, 0, 1, 0, 1, 0], "qubo_energy": 5}, "shots": 512, "seed": 42, "feasible_probability": 0.4444444444444444, "sampled_feasible_fraction": 0.4453125, "runtime_seconds": 0.006249836995266378}, "absolute_gap": 0, "status": "feasible", "runtime_seconds": 0.11203374899923801}
diff --git a/Tutorials/LabScheduling/results/simple-xy-7.json b/Tutorials/LabScheduling/results/simple-xy-7.json
new file mode 100644
index 00000000..25f661bc
--- /dev/null
+++ b/Tutorials/LabScheduling/results/simple-xy-7.json
@@ -0,0 +1 @@
+{"schema_version": 1, "problem": "共享光谱仪故障后的两组重排", "input_sha256": "10444caecbe29d22a07730cdca9d58ea0c81ead9e2eb7d55c5f4c0651a5c04c4", "environment": {"python": "3.12.3", "platform": "Linux", "pyqpanda3": "0.4.1", "pyqpanda_alg": "2.0.0", "numpy": "2.5.3", "scipy": "1.18.1"}, "model": {"qubits": 6, "penalty": 10, "objective_bound": 9, "offset": 20, "linear": [-7, -6, -5, -6, -10, -6], "quadratic": [[0, 1, 20], [0, 2, 20], [0, 3, 10], [0, 4, 10], [1, 2, 20], [1, 3, 10], [1, 4, 10], [2, 5, 10], [3, 4, 20], [3, 5, 20], [4, 5, 20]], "domains": [[0, 1, 2], [3, 4, 5]], "pruned": [{"task": "sample-A", "resource": "spectrometer", "start": 0, "reasons": ["downtime"]}], "variables": [{"index": 0, "task": "sample-A", "resource": "spectrometer", "start": 1, "cost": 3}, {"index": 1, "task": "sample-A", "resource": "spectrometer", "start": 3, "cost": 4}, {"index": 2, "task": "sample-A", "resource": "spectrometer", "start": 6, "cost": 5}, {"index": 3, "task": "sample-B", "resource": "spectrometer", "start": 1, "cost": 4}, {"index": 4, "task": "sample-B", "resource": "spectrometer", "start": 3, "cost": 0}, {"index": 5, "task": "sample-B", "resource": "spectrometer", "start": 6, "cost": 4}], "conflicts": [{"i": 0, "j": 3, "reasons": ["resource"]}, {"i": 0, "j": 4, "reasons": ["resource"]}, {"i": 1, "j": 3, "reasons": ["resource"]}, {"i": 1, "j": 4, "reasons": ["resource"]}, {"i": 2, "j": 5, "reasons": ["resource"]}]}, "quantum": {"status": "feasible", "best": {"feasible": true, "objective": 5, "raw_cost": 5, "violation_count": 0, "violations": [], "schedule": [{"variable": 4, "task": "sample-B", "group": "group-B", "resource": "spectrometer", "start": 3, "end": 5, "reserved_end": 6, "changed": false}, {"variable": 2, "task": "sample-A", "group": "group-A", "resource": "spectrometer", "start": 6, "end": 8, "reserved_end": 9, "changed": true}], "bits": [0, 0, 1, 0, 1, 0], "qubo_energy": 5}, "seed": 7, "mixer": "xy", "layers": 1, "shots": 512, "maxiter": 60, "restarts": 2, "parameters": [3.6691273845501997, 1.4364612338698604], "expected_energy": 11.356026264696824, "initial_expected_energy": 14.409756692879881, "history": [14.409756692879881, 13.269502879296013, 12.39398041195522, 12.230906060903006, 11.989796870226735, 13.758707374314582, 12.957443963265177, 11.912953607818759, 12.11017579876286, 11.949154795797474, 11.963514648258606, 11.945715632286362, 11.915031035892827, 11.897356588678662, 11.870095720974508, 11.879791455169368, 11.852745573750159, 11.88201517775679, 11.862357913162377, 11.839949133308615, 11.846905820423576, 11.836748083586516, 11.830848329344038, 11.821018743903497, 11.819121161341267, 11.800339708547998, 11.785132366679996, 11.762732258180272, 11.716039504217227, 11.657868344797324, 11.680195560556735, 11.744239288795676, 11.686257149631784, 11.621059677568633, 11.633969273747692, 11.614663120571112, 11.603517250062625, 11.58575018104197, 11.643424504718396, 11.574047953787758, 11.556609148454491, 11.534748952526265, 11.68134123316205, 11.503891138373854, 11.503334347204941, 11.488488201963545, 11.469275335422182, 11.4560000439377, 11.438745528332575, 11.430573592123352, 11.483734700637287, 11.418326201933983, 11.41271232346319, 11.404315022099954, 11.38821878460752, 11.360308860704954, 11.38839276753217, 11.41381390019086, 11.356026264696824, 11.402301816555635, 13.130770238331925, 13.3171285299968, 14.258921464516021, 13.108569200441686, 12.766282244320426, 12.223738794143882, 13.463011856197081, 13.486818191398937, 12.212780194100185, 12.396126741732177, 13.201877827248229, 13.036707639100221, 12.919538082464358, 12.209637968792718, 12.320540457540957, 12.216001374348892, 12.228763931285235, 12.212338981303159, 12.205791362289826, 12.199231714455873, 12.191044348131916, 12.189069133423578, 12.191745052255825, 12.188754639001498, 12.189831662441541, 12.189104168812166, 12.188971141767887, 12.188697886882714, 12.188667582729739, 12.18859328437778, 12.188532149429932, 12.1885772077629, 12.18847399054458, 12.188417765654552, 12.188487655474571, 12.188360656301498, 12.188302552636982, 12.188325750453231, 12.18824751979142, 12.188188439008961, 12.18818301230974, 12.18803317591309, 12.187960767224618, 12.187910271229438, 12.18800340987976, 12.187876312596963, 12.187845898514412, 12.187787505568702, 12.187666532619598, 12.187425546794575, 12.18694903511607, 12.186486336140733, 12.189498497951048, 12.190658583430537, 12.186421734124277, 12.185876132943116, 12.186314684365927, 12.185793178143836, 12.185886659722359, 12.185779871097626], "feasible_probability": 0.38440607800333104, "one_hot_probability": 1.0, "sampled_feasible_fraction": 0.375, "counts": {"001001": 34, "001010": 22, "001100": 28, "010001": 126, "010010": 125, "010100": 98, "100001": 27, "100010": 39, "100100": 13}, "circuit_evaluations": 120, "optimizer_runs": [{"success": false, "message": "Return from COBYLA because the objective function has been evaluated MAXFUN times.", "evaluations": 60}, {"success": false, "message": "Return from COBYLA because the objective function has been evaluated MAXFUN times.", "evaluations": 60}], "sampling": "seeded NumPy multinomial from CPUQVM Born probabilities", "runtime_seconds": 0.1061107989953598}, "exact": {"status": "optimal", "best": {"feasible": true, "objective": 5, "raw_cost": 5, "violation_count": 0, "violations": [], "schedule": [{"variable": 4, "task": "sample-B", "group": "group-B", "resource": "spectrometer", "start": 3, "end": 5, "reserved_end": 6, "changed": false}, {"variable": 2, "task": "sample-A", "group": "group-A", "resource": "spectrometer", "start": 6, "end": 8, "reserved_end": 9, "changed": true}], "bits": [0, 0, 1, 0, 1, 0], "qubo_energy": 5}, "combinations": 9, "feasible_count": 4, "runtime_seconds": 4.6133995056152344e-05}, "uniform_one_hot": {"best": {"feasible": true, "objective": 5, "raw_cost": 5, "violation_count": 0, "violations": [], "schedule": [{"variable": 4, "task": "sample-B", "group": "group-B", "resource": "spectrometer", "start": 3, "end": 5, "reserved_end": 6, "changed": false}, {"variable": 2, "task": "sample-A", "group": "group-A", "resource": "spectrometer", "start": 6, "end": 8, "reserved_end": 9, "changed": true}], "bits": [0, 0, 1, 0, 1, 0], "qubo_energy": 5}, "shots": 512, "seed": 7, "feasible_probability": 0.4444444444444444, "sampled_feasible_fraction": 0.45703125, "runtime_seconds": 0.0059871130069950595}, "absolute_gap": 0, "status": "feasible", "runtime_seconds": 0.11602786400180776}
diff --git a/Tutorials/LabScheduling/results/summary.csv b/Tutorials/LabScheduling/results/summary.csv
new file mode 100644
index 00000000..c43373c1
--- /dev/null
+++ b/Tutorials/LabScheduling/results/summary.csv
@@ -0,0 +1,13 @@
+dataset,seed,mixer,qubits,objective,violations,exact_objective,gap,feasible_probability,one_hot_probability,uniform_feasible_probability,quantum_seconds,exact_seconds,circuit_evaluations
+simple,7,xy,6,5,0,5,0,0.38440607800333104,1.0,0.4444444444444444,0.1061107989953598,4.6133995056152344e-05,120
+simple,7,x,6,5,0,5,0,0.013175599362848284,0.11980859447248007,0.4444444444444444,0.05948293599067256,4.590699973050505e-05,87
+simple,19,xy,6,5,0,5,0,0.6881438966232601,1.0000000000000002,0.4444444444444444,0.10694761799823027,4.044700472149998e-05,120
+simple,19,x,6,5,0,5,0,0.013175458736328177,0.11980816033924457,0.4444444444444444,0.07168420701054856,4.244499723426998e-05,100
+simple,42,xy,6,5,0,5,0,0.4204935942354665,1.0,0.4444444444444444,0.10352410899940878,3.847399784717709e-05,120
+simple,42,x,6,5,0,5,0,0.013176372564136205,0.1198100716523653,0.4444444444444444,0.049558814003830776,4.142100806348026e-05,77
+medium,7,xy,12,4,0,4,0,0.39321371720019777,1.0,0.12345679012345678,0.3019266199989943,0.0010143179970327765,99
+medium,7,x,12,8,0,4,4,0.002104551319087699,0.027481123086510018,0.12345679012345678,0.34227974599343725,0.000773777996073477,91
+medium,19,xy,12,4,0,4,0,0.22151472236408537,0.9999999999999999,0.12345679012345678,0.33169577601074707,0.0005450659955386072,120
+medium,19,x,12,18,0,4,14,0.002104536435839374,0.027481354017823586,0.12345679012345678,0.20405158000357915,0.0006257869972614571,94
+medium,42,xy,12,4,0,4,0,0.13043874311759956,0.9999999999999997,0.12345679012345678,0.32535181699495297,0.0005213779950281605,120
+medium,42,x,12,13,0,4,9,0.0021045374643614586,0.027481349408133404,0.12345679012345678,0.2540627599955769,0.0009578379977028817,98
diff --git a/Tutorials/LabScheduling/results/support/replay.json b/Tutorials/LabScheduling/results/support/replay.json
new file mode 100644
index 00000000..8dff1fca
--- /dev/null
+++ b/Tutorials/LabScheduling/results/support/replay.json
@@ -0,0 +1,3 @@
+{
+ "identical_except_timing": true
+}
diff --git a/Tutorials/LabScheduling/results/support/results.json b/Tutorials/LabScheduling/results/support/results.json
new file mode 100644
index 00000000..36a8e16b
--- /dev/null
+++ b/Tutorials/LabScheduling/results/support/results.json
@@ -0,0 +1,19604 @@
+{
+ "protocol": "ARC_PROTOCOL.md; known V2 corpus and constructed boundary case",
+ "source_sha256": {
+ "pyqpanda-algorithm/pyqpanda_alg/LabScheduling/__init__.py": "1336ac94b68e53a108965f0f2127d619c08d3c4ecfd6b541233c193b6a9ee474",
+ "pyqpanda-algorithm/pyqpanda_alg/LabScheduling/__main__.py": "6d147f69d578cd770d24d52ce7b7aeea0f487ad7279fb9b70fb413c34c72b328",
+ "pyqpanda-algorithm/pyqpanda_alg/LabScheduling/bookings.py": "dba45010ef9e5f6a1781d8a8d79e9f3faf4fbf90223f526f550687723de1382a",
+ "pyqpanda-algorithm/pyqpanda_alg/LabScheduling/classical.py": "d1bd575af9969c49cda59cd15328d98f176bb004ebc22e887be173b43d69aac5",
+ "pyqpanda-algorithm/pyqpanda_alg/LabScheduling/metrics.py": "b084507c46a7bf6cc1ca2a6a116156e24a23efb3fdea699f02b4a29bdbd503e0",
+ "pyqpanda-algorithm/pyqpanda_alg/LabScheduling/milp.py": "fc3b22b705beb95491b6b9c51f875480a021bbb40607810abdc04fd6dc8b97a2",
+ "pyqpanda-algorithm/pyqpanda_alg/LabScheduling/model.py": "f442c4751a7f17f66e5fae331e14f75eaa327177af5346a49ceddb87e86ef509",
+ "pyqpanda-algorithm/pyqpanda_alg/LabScheduling/problem.py": "5abd2c9f01a712fb18ac7791bb89cba435eecd35f49b05283a3ca7ad6d7f582b",
+ "pyqpanda-algorithm/pyqpanda_alg/LabScheduling/quantum.py": "3f8469be5a92afbf87eb0c82f7b80282a6443edfbe335a55635717f40501522f",
+ "pyqpanda-algorithm/pyqpanda_alg/LabScheduling/reduction.py": "fa249b234ef4fc74c88a916a6bba87bd6150f2905dd47fe860e2e7d5617d7870",
+ "pyqpanda-algorithm/pyqpanda_alg/LabScheduling/report.py": "3f98ebf581433796cb8c7dd421260bb6e5f30d17495dc24bf7f4be11dfe6644c",
+ "pyqpanda-algorithm/example/LabScheduling/support_pruning.py": "2f5b7b031137ba1689896873cdceb40bfe6ae0ced4c6692f131793e9bb8e0972",
+ "pyqpanda-algorithm/example/LabScheduling/ablation.py": "cd8c41d2d100611ee1be776cd1e1d07144bb6b1f250d707f8859e3b27d6c2661",
+ "Tutorials/LabScheduling/ARC_PROTOCOL.md": "fc2ad183f59dbef1ef8874aea8ac3f6afd1a47cfc4b779570d7bfab7665a72e7"
+ },
+ "instances": [
+ {
+ "problem": "heterogeneous-n3-s0-seed2026092600",
+ "feasible_count": 11,
+ "exact_objective": 10,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 8,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 10,
+ "removals": [],
+ "infeasible_task": null,
+ "component_qubits": [
+ 7
+ ],
+ "max_component_qubits": 7,
+ "component_to_original": [
+ [
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 7,
+ "penalty": 18,
+ "objective_bound": 17,
+ "offset": 36,
+ "linear": [
+ -18,
+ -11,
+ -11,
+ -18,
+ -9,
+ -14,
+ -8
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 36
+ ],
+ [
+ 0,
+ 2,
+ 36
+ ],
+ [
+ 1,
+ 2,
+ 36
+ ],
+ [
+ 2,
+ 3,
+ 18
+ ],
+ [
+ 3,
+ 4,
+ 36
+ ],
+ [
+ 3,
+ 5,
+ 36
+ ],
+ [
+ 3,
+ 6,
+ 36
+ ],
+ [
+ 4,
+ 5,
+ 36
+ ],
+ [
+ 4,
+ 6,
+ 36
+ ],
+ [
+ 5,
+ 6,
+ 36
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ],
+ [
+ 3,
+ 4,
+ 5,
+ 6
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r1",
+ "start": 5,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r0",
+ "start": 6,
+ "cost": 7
+ },
+ {
+ "index": 2,
+ "task": "t1",
+ "resource": "r2",
+ "start": 8,
+ "cost": 7
+ },
+ {
+ "index": 3,
+ "task": "t2",
+ "resource": "r2",
+ "start": 8,
+ "cost": 0
+ },
+ {
+ "index": 4,
+ "task": "t2",
+ "resource": "r2",
+ "start": 13,
+ "cost": 9
+ },
+ {
+ "index": 5,
+ "task": "t2",
+ "resource": "r1",
+ "start": 9,
+ "cost": 4
+ },
+ {
+ "index": 6,
+ "task": "t2",
+ "resource": "r0",
+ "start": 14,
+ "cost": 10
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 2,
+ "j": 3,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 8,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 10,
+ "removals": [],
+ "infeasible_task": null,
+ "component_qubits": [
+ 7
+ ],
+ "max_component_qubits": 7,
+ "component_to_original": [
+ [
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 7,
+ "penalty": 18,
+ "objective_bound": 17,
+ "offset": 36,
+ "linear": [
+ -18,
+ -11,
+ -11,
+ -18,
+ -9,
+ -14,
+ -8
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 36
+ ],
+ [
+ 0,
+ 2,
+ 36
+ ],
+ [
+ 1,
+ 2,
+ 36
+ ],
+ [
+ 2,
+ 3,
+ 18
+ ],
+ [
+ 3,
+ 4,
+ 36
+ ],
+ [
+ 3,
+ 5,
+ 36
+ ],
+ [
+ 3,
+ 6,
+ 36
+ ],
+ [
+ 4,
+ 5,
+ 36
+ ],
+ [
+ 4,
+ 6,
+ 36
+ ],
+ [
+ 5,
+ 6,
+ 36
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ],
+ [
+ 3,
+ 4,
+ 5,
+ 6
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r1",
+ "start": 5,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r0",
+ "start": 6,
+ "cost": 7
+ },
+ {
+ "index": 2,
+ "task": "t1",
+ "resource": "r2",
+ "start": 8,
+ "cost": 7
+ },
+ {
+ "index": 3,
+ "task": "t2",
+ "resource": "r2",
+ "start": 8,
+ "cost": 0
+ },
+ {
+ "index": 4,
+ "task": "t2",
+ "resource": "r2",
+ "start": 13,
+ "cost": 9
+ },
+ {
+ "index": 5,
+ "task": "t2",
+ "resource": "r1",
+ "start": 9,
+ "cost": 4
+ },
+ {
+ "index": 6,
+ "task": "t2",
+ "resource": "r0",
+ "start": 14,
+ "cost": 10
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 2,
+ "j": 3,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "input": "data/corpus-v2/n3-s0-r0.json",
+ "input_sha256": "480cb064b75a4ab276c0b40efe62867858b857455db58e9958a5f85325d7a250"
+ },
+ {
+ "problem": "heterogeneous-n3-s0-seed2026092601",
+ "feasible_count": 6,
+ "exact_objective": 19,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 8,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 10,
+ "removals": [
+ {
+ "variable": 4,
+ "forced_by": 0,
+ "reasons": [
+ "group"
+ ]
+ },
+ {
+ "variable": 7,
+ "forced_by": 0,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 3,
+ 2
+ ],
+ "max_component_qubits": 3,
+ "component_to_original": [
+ [
+ 1,
+ 2,
+ 3
+ ],
+ [
+ 5,
+ 6
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 3,
+ "penalty": 6,
+ "objective_bound": 5,
+ "offset": 6,
+ "linear": [
+ -6,
+ -2,
+ -1
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 12
+ ],
+ [
+ 0,
+ 2,
+ 12
+ ],
+ [
+ 1,
+ 2,
+ 12
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r1",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r0",
+ "start": 3,
+ "cost": 4
+ },
+ {
+ "index": 2,
+ "task": "t1",
+ "resource": "r0",
+ "start": 1,
+ "cost": 5
+ }
+ ],
+ "conflicts": []
+ },
+ {
+ "qubits": 2,
+ "penalty": 12,
+ "objective_bound": 11,
+ "offset": 12,
+ "linear": [
+ -1,
+ -3
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 24
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t2",
+ "resource": "r0",
+ "start": 11,
+ "cost": 11
+ },
+ {
+ "index": 1,
+ "task": "t2",
+ "resource": "r0",
+ "start": 10,
+ "cost": 9
+ }
+ ],
+ "conflicts": []
+ }
+ ]
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 8,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 10,
+ "removals": [
+ {
+ "variable": 4,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "group"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 7,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 3,
+ 2
+ ],
+ "max_component_qubits": 3,
+ "component_to_original": [
+ [
+ 1,
+ 2,
+ 3
+ ],
+ [
+ 5,
+ 6
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 3,
+ "penalty": 6,
+ "objective_bound": 5,
+ "offset": 6,
+ "linear": [
+ -6,
+ -2,
+ -1
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 12
+ ],
+ [
+ 0,
+ 2,
+ 12
+ ],
+ [
+ 1,
+ 2,
+ 12
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r1",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r0",
+ "start": 3,
+ "cost": 4
+ },
+ {
+ "index": 2,
+ "task": "t1",
+ "resource": "r0",
+ "start": 1,
+ "cost": 5
+ }
+ ],
+ "conflicts": []
+ },
+ {
+ "qubits": 2,
+ "penalty": 12,
+ "objective_bound": 11,
+ "offset": 12,
+ "linear": [
+ -1,
+ -3
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 24
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t2",
+ "resource": "r0",
+ "start": 11,
+ "cost": 11
+ },
+ {
+ "index": 1,
+ "task": "t2",
+ "resource": "r0",
+ "start": 10,
+ "cost": 9
+ }
+ ],
+ "conflicts": []
+ }
+ ]
+ }
+ },
+ "input": "data/corpus-v2/n3-s0-r1.json",
+ "input_sha256": "7bde9f6a7e91f5cf1c50260bd0205f601de5e61e9b34fa903b75cce5f58421ff"
+ },
+ {
+ "problem": "heterogeneous-n3-s0-seed2026092602",
+ "feasible_count": 9,
+ "exact_objective": 10,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 8,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 10,
+ "removals": [],
+ "infeasible_task": null,
+ "component_qubits": [
+ 7
+ ],
+ "max_component_qubits": 7,
+ "component_to_original": [
+ [
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 7,
+ "penalty": 18,
+ "objective_bound": 17,
+ "offset": 36,
+ "linear": [
+ -18,
+ -10,
+ -9,
+ -18,
+ -14,
+ -10,
+ -11
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 36
+ ],
+ [
+ 0,
+ 2,
+ 36
+ ],
+ [
+ 1,
+ 2,
+ 36
+ ],
+ [
+ 1,
+ 3,
+ 18
+ ],
+ [
+ 1,
+ 4,
+ 18
+ ],
+ [
+ 1,
+ 5,
+ 18
+ ],
+ [
+ 3,
+ 4,
+ 36
+ ],
+ [
+ 3,
+ 5,
+ 36
+ ],
+ [
+ 3,
+ 6,
+ 36
+ ],
+ [
+ 4,
+ 5,
+ 36
+ ],
+ [
+ 4,
+ 6,
+ 36
+ ],
+ [
+ 5,
+ 6,
+ 36
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ],
+ [
+ 3,
+ 4,
+ 5,
+ 6
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r1",
+ "start": 5,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r2",
+ "start": 10,
+ "cost": 8
+ },
+ {
+ "index": 2,
+ "task": "t1",
+ "resource": "r0",
+ "start": 10,
+ "cost": 9
+ },
+ {
+ "index": 3,
+ "task": "t2",
+ "resource": "r2",
+ "start": 7,
+ "cost": 0
+ },
+ {
+ "index": 4,
+ "task": "t2",
+ "resource": "r2",
+ "start": 8,
+ "cost": 4
+ },
+ {
+ "index": 5,
+ "task": "t2",
+ "resource": "r2",
+ "start": 11,
+ "cost": 8
+ },
+ {
+ "index": 6,
+ "task": "t2",
+ "resource": "r1",
+ "start": 13,
+ "cost": 7
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 1,
+ "j": 3,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 4,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 5,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 8,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 10,
+ "removals": [],
+ "infeasible_task": null,
+ "component_qubits": [
+ 7
+ ],
+ "max_component_qubits": 7,
+ "component_to_original": [
+ [
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 7,
+ "penalty": 18,
+ "objective_bound": 17,
+ "offset": 36,
+ "linear": [
+ -18,
+ -10,
+ -9,
+ -18,
+ -14,
+ -10,
+ -11
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 36
+ ],
+ [
+ 0,
+ 2,
+ 36
+ ],
+ [
+ 1,
+ 2,
+ 36
+ ],
+ [
+ 1,
+ 3,
+ 18
+ ],
+ [
+ 1,
+ 4,
+ 18
+ ],
+ [
+ 1,
+ 5,
+ 18
+ ],
+ [
+ 3,
+ 4,
+ 36
+ ],
+ [
+ 3,
+ 5,
+ 36
+ ],
+ [
+ 3,
+ 6,
+ 36
+ ],
+ [
+ 4,
+ 5,
+ 36
+ ],
+ [
+ 4,
+ 6,
+ 36
+ ],
+ [
+ 5,
+ 6,
+ 36
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ],
+ [
+ 3,
+ 4,
+ 5,
+ 6
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r1",
+ "start": 5,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r2",
+ "start": 10,
+ "cost": 8
+ },
+ {
+ "index": 2,
+ "task": "t1",
+ "resource": "r0",
+ "start": 10,
+ "cost": 9
+ },
+ {
+ "index": 3,
+ "task": "t2",
+ "resource": "r2",
+ "start": 7,
+ "cost": 0
+ },
+ {
+ "index": 4,
+ "task": "t2",
+ "resource": "r2",
+ "start": 8,
+ "cost": 4
+ },
+ {
+ "index": 5,
+ "task": "t2",
+ "resource": "r2",
+ "start": 11,
+ "cost": 8
+ },
+ {
+ "index": 6,
+ "task": "t2",
+ "resource": "r1",
+ "start": 13,
+ "cost": 7
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 1,
+ "j": 3,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 4,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 5,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "input": "data/corpus-v2/n3-s0-r2.json",
+ "input_sha256": "980e1417cd9e25dfc8d552ad19d76c18194f0c2f9e736508360519214a64bd82"
+ },
+ {
+ "problem": "heterogeneous-n3-s0-seed2026092603",
+ "feasible_count": 6,
+ "exact_objective": 14,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 8,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 8,
+ "removals": [
+ {
+ "variable": 2,
+ "forced_by": 0,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "variable": 4,
+ "forced_by": 0,
+ "reasons": [
+ "group"
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 2,
+ 3
+ ],
+ "max_component_qubits": 3,
+ "component_to_original": [
+ [
+ 1,
+ 3
+ ],
+ [
+ 5,
+ 6,
+ 7
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 2,
+ "penalty": 12,
+ "objective_bound": 11,
+ "offset": 12,
+ "linear": [
+ -12,
+ -1
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 24
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r1",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r1",
+ "start": 7,
+ "cost": 11
+ }
+ ],
+ "conflicts": []
+ },
+ {
+ "qubits": 3,
+ "penalty": 10,
+ "objective_bound": 9,
+ "offset": 10,
+ "linear": [
+ -4,
+ -1,
+ -2
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 20
+ ],
+ [
+ 0,
+ 2,
+ 20
+ ],
+ [
+ 1,
+ 2,
+ 20
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t2",
+ "resource": "r0",
+ "start": 3,
+ "cost": 6
+ },
+ {
+ "index": 1,
+ "task": "t2",
+ "resource": "r0",
+ "start": 9,
+ "cost": 9
+ },
+ {
+ "index": 2,
+ "task": "t2",
+ "resource": "r0",
+ "start": 11,
+ "cost": 8
+ }
+ ],
+ "conflicts": []
+ }
+ ]
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 8,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 8,
+ "removals": [
+ {
+ "variable": 2,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 4,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "group"
+ ]
+ }
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 2,
+ 3
+ ],
+ "max_component_qubits": 3,
+ "component_to_original": [
+ [
+ 1,
+ 3
+ ],
+ [
+ 5,
+ 6,
+ 7
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 2,
+ "penalty": 12,
+ "objective_bound": 11,
+ "offset": 12,
+ "linear": [
+ -12,
+ -1
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 24
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r1",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r1",
+ "start": 7,
+ "cost": 11
+ }
+ ],
+ "conflicts": []
+ },
+ {
+ "qubits": 3,
+ "penalty": 10,
+ "objective_bound": 9,
+ "offset": 10,
+ "linear": [
+ -4,
+ -1,
+ -2
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 20
+ ],
+ [
+ 0,
+ 2,
+ 20
+ ],
+ [
+ 1,
+ 2,
+ 20
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t2",
+ "resource": "r0",
+ "start": 3,
+ "cost": 6
+ },
+ {
+ "index": 1,
+ "task": "t2",
+ "resource": "r0",
+ "start": 9,
+ "cost": 9
+ },
+ {
+ "index": 2,
+ "task": "t2",
+ "resource": "r0",
+ "start": 11,
+ "cost": 8
+ }
+ ],
+ "conflicts": []
+ }
+ ]
+ }
+ },
+ "input": "data/corpus-v2/n3-s0-r3.json",
+ "input_sha256": "7ad2d759c8cfcdcea0574002a9893cd6a38c1192ac23e4e2c6e61c77aca3e00e"
+ },
+ {
+ "problem": "heterogeneous-n3-s1-seed2026092610",
+ "feasible_count": 1,
+ "exact_objective": 25,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 7,
+ "fixed_variables": [
+ 0,
+ 1,
+ 4
+ ],
+ "fixed_cost": 25,
+ "removals": [
+ {
+ "variable": 2,
+ "forced_by": 0,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "variable": 3,
+ "forced_by": 0,
+ "reasons": [
+ "resource",
+ "group"
+ ]
+ },
+ {
+ "variable": 6,
+ "forced_by": 0,
+ "reasons": [
+ "resource",
+ "group"
+ ]
+ },
+ {
+ "variable": 5,
+ "forced_by": 1,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [],
+ "max_component_qubits": 0,
+ "component_to_original": [],
+ "components": []
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 7,
+ "fixed_variables": [
+ 0,
+ 1,
+ 4
+ ],
+ "fixed_cost": 25,
+ "removals": [
+ {
+ "variable": 2,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 3,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "resource",
+ "group"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 6,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "resource",
+ "group"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 5,
+ "rule": "no_support",
+ "against_task": "t1",
+ "blockers": [
+ {
+ "variable": 1,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [],
+ "max_component_qubits": 0,
+ "component_to_original": [],
+ "components": []
+ }
+ },
+ "input": "data/corpus-v2/n3-s1-r0.json",
+ "input_sha256": "3102867f59fcc7a80a9774499507f0d52ad6f39327c3f7f339e0b781da147add"
+ },
+ {
+ "problem": "heterogeneous-n3-s1-seed2026092611",
+ "feasible_count": 3,
+ "exact_objective": 10,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 6,
+ "fixed_variables": [
+ 0,
+ 1
+ ],
+ "fixed_cost": 10,
+ "removals": [
+ {
+ "variable": 4,
+ "forced_by": 1,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 3
+ ],
+ "max_component_qubits": 3,
+ "component_to_original": [
+ [
+ 2,
+ 3,
+ 5
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 3,
+ "penalty": 14,
+ "objective_bound": 13,
+ "offset": 14,
+ "linear": [
+ -14,
+ -1,
+ -3
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 28
+ ],
+ [
+ 0,
+ 2,
+ 28
+ ],
+ [
+ 1,
+ 2,
+ 28
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t2",
+ "resource": "r2",
+ "start": 9,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t2",
+ "resource": "r1",
+ "start": 15,
+ "cost": 13
+ },
+ {
+ "index": 2,
+ "task": "t2",
+ "resource": "r0",
+ "start": 15,
+ "cost": 11
+ }
+ ],
+ "conflicts": []
+ }
+ ]
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 6,
+ "fixed_variables": [
+ 0,
+ 1
+ ],
+ "fixed_cost": 10,
+ "removals": [
+ {
+ "variable": 4,
+ "rule": "no_support",
+ "against_task": "t1",
+ "blockers": [
+ {
+ "variable": 1,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 3
+ ],
+ "max_component_qubits": 3,
+ "component_to_original": [
+ [
+ 2,
+ 3,
+ 5
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 3,
+ "penalty": 14,
+ "objective_bound": 13,
+ "offset": 14,
+ "linear": [
+ -14,
+ -1,
+ -3
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 28
+ ],
+ [
+ 0,
+ 2,
+ 28
+ ],
+ [
+ 1,
+ 2,
+ 28
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t2",
+ "resource": "r2",
+ "start": 9,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t2",
+ "resource": "r1",
+ "start": 15,
+ "cost": 13
+ },
+ {
+ "index": 2,
+ "task": "t2",
+ "resource": "r0",
+ "start": 15,
+ "cost": 11
+ }
+ ],
+ "conflicts": []
+ }
+ ]
+ }
+ },
+ "input": "data/corpus-v2/n3-s1-r1.json",
+ "input_sha256": "b995fea8a97f1baea0ec2c94fd6283168e039b6b1a8cbac3c8da689008576b1f"
+ },
+ {
+ "problem": "heterogeneous-n3-s1-seed2026092612",
+ "feasible_count": 0,
+ "exact_objective": null,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 5,
+ "fixed_variables": [],
+ "fixed_cost": 0,
+ "removals": [],
+ "infeasible_task": "t0",
+ "component_qubits": [],
+ "max_component_qubits": 0,
+ "component_to_original": [],
+ "components": []
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 5,
+ "fixed_variables": [],
+ "fixed_cost": 0,
+ "removals": [],
+ "infeasible_task": "t0",
+ "component_qubits": [],
+ "max_component_qubits": 0,
+ "component_to_original": [],
+ "components": []
+ }
+ },
+ "input": "data/corpus-v2/n3-s1-r2.json",
+ "input_sha256": "fcf3c44d08725a501917977b012a460df0065bddee7201e89fd75769f72f398f"
+ },
+ {
+ "problem": "heterogeneous-n3-s1-seed2026092613",
+ "feasible_count": 0,
+ "exact_objective": null,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 4,
+ "fixed_variables": [],
+ "fixed_cost": 0,
+ "removals": [],
+ "infeasible_task": "t0",
+ "component_qubits": [],
+ "max_component_qubits": 0,
+ "component_to_original": [],
+ "components": []
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 4,
+ "fixed_variables": [],
+ "fixed_cost": 0,
+ "removals": [],
+ "infeasible_task": "t0",
+ "component_qubits": [],
+ "max_component_qubits": 0,
+ "component_to_original": [],
+ "components": []
+ }
+ },
+ "input": "data/corpus-v2/n3-s1-r3.json",
+ "input_sha256": "7e0b8b9923a6f00ec09c570c68a6964b0e4193de04571463499f254eea50a03c"
+ },
+ {
+ "problem": "heterogeneous-n3-s2-seed2026092620",
+ "feasible_count": 0,
+ "exact_objective": null,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 8,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 10,
+ "removals": [
+ {
+ "variable": 1,
+ "forced_by": 0,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "variable": 2,
+ "forced_by": 0,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 3,
+ "forced_by": 0,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "variable": 4,
+ "forced_by": 0,
+ "reasons": [
+ "group"
+ ]
+ },
+ {
+ "variable": 5,
+ "forced_by": 0,
+ "reasons": [
+ "resource",
+ "group"
+ ]
+ },
+ {
+ "variable": 6,
+ "forced_by": 0,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "variable": 7,
+ "forced_by": 0,
+ "reasons": [
+ "group"
+ ]
+ }
+ ],
+ "infeasible_task": "t1",
+ "component_qubits": [],
+ "max_component_qubits": 0,
+ "component_to_original": [],
+ "components": []
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 8,
+ "fixed_variables": [],
+ "fixed_cost": 0,
+ "removals": [
+ {
+ "variable": 0,
+ "rule": "no_support",
+ "against_task": "t1",
+ "blockers": [
+ {
+ "variable": 1,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "variable": 2,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 3,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ],
+ "infeasible_task": "t0",
+ "component_qubits": [],
+ "max_component_qubits": 0,
+ "component_to_original": [],
+ "components": []
+ }
+ },
+ "input": "data/corpus-v2/n3-s2-r0.json",
+ "input_sha256": "93d4314ad16586792abae5864149abd76be8d08cfbf47d1515c68e3f7cc4b3d4"
+ },
+ {
+ "problem": "heterogeneous-n3-s2-seed2026092621",
+ "feasible_count": 4,
+ "exact_objective": 7,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 8,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 7,
+ "removals": [],
+ "infeasible_task": null,
+ "component_qubits": [
+ 7
+ ],
+ "max_component_qubits": 7,
+ "component_to_original": [
+ [
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 7,
+ "penalty": 16,
+ "objective_bound": 15,
+ "offset": 32,
+ "linear": [
+ -16,
+ -8,
+ -10,
+ -16,
+ -9,
+ -9,
+ -11
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 32
+ ],
+ [
+ 0,
+ 2,
+ 32
+ ],
+ [
+ 0,
+ 5,
+ 16
+ ],
+ [
+ 0,
+ 6,
+ 16
+ ],
+ [
+ 1,
+ 2,
+ 32
+ ],
+ [
+ 1,
+ 3,
+ 16
+ ],
+ [
+ 1,
+ 5,
+ 16
+ ],
+ [
+ 1,
+ 6,
+ 16
+ ],
+ [
+ 2,
+ 3,
+ 16
+ ],
+ [
+ 2,
+ 5,
+ 16
+ ],
+ [
+ 2,
+ 6,
+ 16
+ ],
+ [
+ 3,
+ 4,
+ 32
+ ],
+ [
+ 3,
+ 5,
+ 32
+ ],
+ [
+ 3,
+ 6,
+ 32
+ ],
+ [
+ 4,
+ 5,
+ 32
+ ],
+ [
+ 4,
+ 6,
+ 32
+ ],
+ [
+ 5,
+ 6,
+ 32
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ],
+ [
+ 3,
+ 4,
+ 5,
+ 6
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r1",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r1",
+ "start": 9,
+ "cost": 8
+ },
+ {
+ "index": 2,
+ "task": "t1",
+ "resource": "r1",
+ "start": 6,
+ "cost": 6
+ },
+ {
+ "index": 3,
+ "task": "t2",
+ "resource": "r2",
+ "start": 6,
+ "cost": 0
+ },
+ {
+ "index": 4,
+ "task": "t2",
+ "resource": "r2",
+ "start": 11,
+ "cost": 7
+ },
+ {
+ "index": 5,
+ "task": "t2",
+ "resource": "r0",
+ "start": 3,
+ "cost": 7
+ },
+ {
+ "index": 6,
+ "task": "t2",
+ "resource": "r2",
+ "start": 3,
+ "cost": 5
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 0,
+ "j": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 0,
+ "j": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 3,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 3,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 6,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 8,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 7,
+ "removals": [
+ {
+ "variable": 6,
+ "rule": "no_support",
+ "against_task": "t1",
+ "blockers": [
+ {
+ "variable": 1,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 2,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 3,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 7,
+ "rule": "no_support",
+ "against_task": "t1",
+ "blockers": [
+ {
+ "variable": 1,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 2,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 3,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 5
+ ],
+ "max_component_qubits": 5,
+ "component_to_original": [
+ [
+ 1,
+ 2,
+ 3,
+ 4,
+ 5
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 5,
+ "penalty": 16,
+ "objective_bound": 15,
+ "offset": 32,
+ "linear": [
+ -16,
+ -8,
+ -10,
+ -16,
+ -9
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 32
+ ],
+ [
+ 0,
+ 2,
+ 32
+ ],
+ [
+ 1,
+ 2,
+ 32
+ ],
+ [
+ 1,
+ 3,
+ 16
+ ],
+ [
+ 2,
+ 3,
+ 16
+ ],
+ [
+ 3,
+ 4,
+ 32
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ],
+ [
+ 3,
+ 4
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r1",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r1",
+ "start": 9,
+ "cost": 8
+ },
+ {
+ "index": 2,
+ "task": "t1",
+ "resource": "r1",
+ "start": 6,
+ "cost": 6
+ },
+ {
+ "index": 3,
+ "task": "t2",
+ "resource": "r2",
+ "start": 6,
+ "cost": 0
+ },
+ {
+ "index": 4,
+ "task": "t2",
+ "resource": "r2",
+ "start": 11,
+ "cost": 7
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 1,
+ "j": 3,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 3,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "input": "data/corpus-v2/n3-s2-r1.json",
+ "input_sha256": "5562af7b6a4430f78b74bf07db67f2ee1e2a54dd89e76076d59f476405f51b02"
+ },
+ {
+ "problem": "heterogeneous-n3-s2-seed2026092622",
+ "feasible_count": 1,
+ "exact_objective": 27,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 8,
+ "fixed_variables": [
+ 0,
+ 2,
+ 7
+ ],
+ "fixed_cost": 27,
+ "removals": [
+ {
+ "variable": 1,
+ "forced_by": 0,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 3,
+ "forced_by": 0,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "variable": 6,
+ "forced_by": 0,
+ "reasons": [
+ "group"
+ ]
+ },
+ {
+ "variable": 4,
+ "forced_by": 2,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "variable": 5,
+ "forced_by": 2,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [],
+ "max_component_qubits": 0,
+ "component_to_original": [],
+ "components": []
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 8,
+ "fixed_variables": [
+ 0,
+ 2,
+ 7
+ ],
+ "fixed_cost": 27,
+ "removals": [
+ {
+ "variable": 1,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 3,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 6,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "group"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 4,
+ "rule": "no_support",
+ "against_task": "t1",
+ "blockers": [
+ {
+ "variable": 2,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 5,
+ "rule": "no_support",
+ "against_task": "t1",
+ "blockers": [
+ {
+ "variable": 2,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [],
+ "max_component_qubits": 0,
+ "component_to_original": [],
+ "components": []
+ }
+ },
+ "input": "data/corpus-v2/n3-s2-r2.json",
+ "input_sha256": "bdbd13d37d5b027158ad3b96617fcbbe127c26450b6577397a5c79ed73f463e3"
+ },
+ {
+ "problem": "heterogeneous-n3-s2-seed2026092623",
+ "feasible_count": 0,
+ "exact_objective": null,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 8,
+ "fixed_variables": [
+ 0,
+ 3
+ ],
+ "fixed_cost": 18,
+ "removals": [
+ {
+ "variable": 1,
+ "forced_by": 0,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "variable": 2,
+ "forced_by": 0,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "variable": 4,
+ "forced_by": 3,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 5,
+ "forced_by": 3,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 6,
+ "forced_by": 3,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 7,
+ "forced_by": 3,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ }
+ ],
+ "infeasible_task": "t2",
+ "component_qubits": [],
+ "max_component_qubits": 0,
+ "component_to_original": [],
+ "components": []
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 8,
+ "fixed_variables": [],
+ "fixed_cost": 0,
+ "removals": [
+ {
+ "variable": 1,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 2,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 3,
+ "rule": "no_support",
+ "against_task": "t2",
+ "blockers": [
+ {
+ "variable": 4,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 7,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ],
+ "infeasible_task": "t1",
+ "component_qubits": [],
+ "max_component_qubits": 0,
+ "component_to_original": [],
+ "components": []
+ }
+ },
+ "input": "data/corpus-v2/n3-s2-r3.json",
+ "input_sha256": "bf2d32ec2da41a07091bdc4b92d015e6b57398275f745d630dfabb8520cbe877"
+ },
+ {
+ "problem": "heterogeneous-n4-s0-seed2026092700",
+ "feasible_count": 4,
+ "exact_objective": 22,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 10,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 11,
+ "removals": [
+ {
+ "variable": 4,
+ "forced_by": 0,
+ "reasons": [
+ "resource",
+ "group"
+ ]
+ },
+ {
+ "variable": 5,
+ "forced_by": 0,
+ "reasons": [
+ "resource",
+ "group"
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 7
+ ],
+ "max_component_qubits": 7,
+ "component_to_original": [
+ [
+ 1,
+ 2,
+ 3,
+ 6,
+ 7,
+ 8,
+ 9
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 7,
+ "penalty": 30,
+ "objective_bound": 29,
+ "offset": 90,
+ "linear": [
+ -30,
+ -20,
+ -21,
+ -19,
+ -23,
+ -30,
+ -22
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 60
+ ],
+ [
+ 0,
+ 2,
+ 60
+ ],
+ [
+ 1,
+ 2,
+ 60
+ ],
+ [
+ 1,
+ 4,
+ 30
+ ],
+ [
+ 1,
+ 5,
+ 30
+ ],
+ [
+ 3,
+ 4,
+ 60
+ ],
+ [
+ 3,
+ 6,
+ 30
+ ],
+ [
+ 4,
+ 5,
+ 30
+ ],
+ [
+ 5,
+ 6,
+ 60
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ],
+ [
+ 3,
+ 4
+ ],
+ [
+ 5,
+ 6
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r1",
+ "start": 6,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r0",
+ "start": 11,
+ "cost": 10
+ },
+ {
+ "index": 2,
+ "task": "t1",
+ "resource": "r1",
+ "start": 9,
+ "cost": 9
+ },
+ {
+ "index": 3,
+ "task": "t2",
+ "resource": "r1",
+ "start": 11,
+ "cost": 11
+ },
+ {
+ "index": 4,
+ "task": "t2",
+ "resource": "r0",
+ "start": 9,
+ "cost": 7
+ },
+ {
+ "index": 5,
+ "task": "t3",
+ "resource": "r0",
+ "start": 11,
+ "cost": 0
+ },
+ {
+ "index": 6,
+ "task": "t3",
+ "resource": "r1",
+ "start": 13,
+ "cost": 8
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 1,
+ "j": 4,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 5,
+ "reasons": [
+ "resource",
+ "group"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 6,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 5,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 10,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 11,
+ "removals": [
+ {
+ "variable": 4,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "resource",
+ "group"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 5,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "resource",
+ "group"
+ ]
+ }
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 7
+ ],
+ "max_component_qubits": 7,
+ "component_to_original": [
+ [
+ 1,
+ 2,
+ 3,
+ 6,
+ 7,
+ 8,
+ 9
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 7,
+ "penalty": 30,
+ "objective_bound": 29,
+ "offset": 90,
+ "linear": [
+ -30,
+ -20,
+ -21,
+ -19,
+ -23,
+ -30,
+ -22
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 60
+ ],
+ [
+ 0,
+ 2,
+ 60
+ ],
+ [
+ 1,
+ 2,
+ 60
+ ],
+ [
+ 1,
+ 4,
+ 30
+ ],
+ [
+ 1,
+ 5,
+ 30
+ ],
+ [
+ 3,
+ 4,
+ 60
+ ],
+ [
+ 3,
+ 6,
+ 30
+ ],
+ [
+ 4,
+ 5,
+ 30
+ ],
+ [
+ 5,
+ 6,
+ 60
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ],
+ [
+ 3,
+ 4
+ ],
+ [
+ 5,
+ 6
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r1",
+ "start": 6,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r0",
+ "start": 11,
+ "cost": 10
+ },
+ {
+ "index": 2,
+ "task": "t1",
+ "resource": "r1",
+ "start": 9,
+ "cost": 9
+ },
+ {
+ "index": 3,
+ "task": "t2",
+ "resource": "r1",
+ "start": 11,
+ "cost": 11
+ },
+ {
+ "index": 4,
+ "task": "t2",
+ "resource": "r0",
+ "start": 9,
+ "cost": 7
+ },
+ {
+ "index": 5,
+ "task": "t3",
+ "resource": "r0",
+ "start": 11,
+ "cost": 0
+ },
+ {
+ "index": 6,
+ "task": "t3",
+ "resource": "r1",
+ "start": 13,
+ "cost": 8
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 1,
+ "j": 4,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 5,
+ "reasons": [
+ "resource",
+ "group"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 6,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 5,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "input": "data/corpus-v2/n4-s0-r0.json",
+ "input_sha256": "08fc30fec69a29a96ae57e373739ff0162ba3fcff6ab53119895679a31029390"
+ },
+ {
+ "problem": "heterogeneous-n4-s0-seed2026092701",
+ "feasible_count": 4,
+ "exact_objective": 18,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 10,
+ "fixed_variables": [
+ 0,
+ 6
+ ],
+ "fixed_cost": 18,
+ "removals": [
+ {
+ "variable": 3,
+ "forced_by": 0,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "variable": 4,
+ "forced_by": 0,
+ "reasons": [
+ "resource",
+ "group"
+ ]
+ },
+ {
+ "variable": 5,
+ "forced_by": 0,
+ "reasons": [
+ "group"
+ ]
+ },
+ {
+ "variable": 7,
+ "forced_by": 0,
+ "reasons": [
+ "group"
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 2,
+ 2
+ ],
+ "max_component_qubits": 2,
+ "component_to_original": [
+ [
+ 1,
+ 2
+ ],
+ [
+ 8,
+ 9
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 2,
+ "penalty": 8,
+ "objective_bound": 7,
+ "offset": 8,
+ "linear": [
+ -8,
+ -1
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 16
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r1",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r1",
+ "start": 5,
+ "cost": 7
+ }
+ ],
+ "conflicts": []
+ },
+ {
+ "qubits": 2,
+ "penalty": 4,
+ "objective_bound": 3,
+ "offset": 4,
+ "linear": [
+ -4,
+ -1
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 8
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t3",
+ "resource": "r0",
+ "start": 11,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t3",
+ "resource": "r1",
+ "start": 11,
+ "cost": 3
+ }
+ ],
+ "conflicts": []
+ }
+ ]
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 10,
+ "fixed_variables": [
+ 0,
+ 6
+ ],
+ "fixed_cost": 18,
+ "removals": [
+ {
+ "variable": 3,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 4,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "resource",
+ "group"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 5,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "group"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 7,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "group"
+ ]
+ }
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 2,
+ 2
+ ],
+ "max_component_qubits": 2,
+ "component_to_original": [
+ [
+ 1,
+ 2
+ ],
+ [
+ 8,
+ 9
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 2,
+ "penalty": 8,
+ "objective_bound": 7,
+ "offset": 8,
+ "linear": [
+ -8,
+ -1
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 16
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r1",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r1",
+ "start": 5,
+ "cost": 7
+ }
+ ],
+ "conflicts": []
+ },
+ {
+ "qubits": 2,
+ "penalty": 4,
+ "objective_bound": 3,
+ "offset": 4,
+ "linear": [
+ -4,
+ -1
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 8
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t3",
+ "resource": "r0",
+ "start": 11,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t3",
+ "resource": "r1",
+ "start": 11,
+ "cost": 3
+ }
+ ],
+ "conflicts": []
+ }
+ ]
+ }
+ },
+ "input": "data/corpus-v2/n4-s0-r1.json",
+ "input_sha256": "c9739a81f0c0dbc6ef8e5d5061eccd04a8e046db3d7f670e0b7689d7d4cc69e8"
+ },
+ {
+ "problem": "heterogeneous-n4-s0-seed2026092702",
+ "feasible_count": 10,
+ "exact_objective": 4,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 10,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 4,
+ "removals": [
+ {
+ "variable": 3,
+ "forced_by": 0,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "variable": 5,
+ "forced_by": 0,
+ "reasons": [
+ "resource",
+ "group"
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 2,
+ 5
+ ],
+ "max_component_qubits": 5,
+ "component_to_original": [
+ [
+ 1,
+ 2
+ ],
+ [
+ 4,
+ 6,
+ 7,
+ 8,
+ 9
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 2,
+ "penalty": 5,
+ "objective_bound": 4,
+ "offset": 5,
+ "linear": [
+ -5,
+ -1
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 10
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r1",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r1",
+ "start": 5,
+ "cost": 4
+ }
+ ],
+ "conflicts": []
+ },
+ {
+ "qubits": 5,
+ "penalty": 19,
+ "objective_bound": 18,
+ "offset": 38,
+ "linear": [
+ -19,
+ -13,
+ -10,
+ -19,
+ -10
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 38
+ ],
+ [
+ 0,
+ 2,
+ 38
+ ],
+ [
+ 1,
+ 2,
+ 38
+ ],
+ [
+ 1,
+ 3,
+ 19
+ ],
+ [
+ 3,
+ 4,
+ 38
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ],
+ [
+ 3,
+ 4
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t2",
+ "resource": "r2",
+ "start": 6,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t2",
+ "resource": "r0",
+ "start": 8,
+ "cost": 6
+ },
+ {
+ "index": 2,
+ "task": "t2",
+ "resource": "r2",
+ "start": 12,
+ "cost": 9
+ },
+ {
+ "index": 3,
+ "task": "t3",
+ "resource": "r0",
+ "start": 9,
+ "cost": 0
+ },
+ {
+ "index": 4,
+ "task": "t3",
+ "resource": "r1",
+ "start": 7,
+ "cost": 9
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 1,
+ "j": 3,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 10,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 4,
+ "removals": [
+ {
+ "variable": 3,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 5,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "resource",
+ "group"
+ ]
+ }
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 2,
+ 5
+ ],
+ "max_component_qubits": 5,
+ "component_to_original": [
+ [
+ 1,
+ 2
+ ],
+ [
+ 4,
+ 6,
+ 7,
+ 8,
+ 9
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 2,
+ "penalty": 5,
+ "objective_bound": 4,
+ "offset": 5,
+ "linear": [
+ -5,
+ -1
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 10
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r1",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r1",
+ "start": 5,
+ "cost": 4
+ }
+ ],
+ "conflicts": []
+ },
+ {
+ "qubits": 5,
+ "penalty": 19,
+ "objective_bound": 18,
+ "offset": 38,
+ "linear": [
+ -19,
+ -13,
+ -10,
+ -19,
+ -10
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 38
+ ],
+ [
+ 0,
+ 2,
+ 38
+ ],
+ [
+ 1,
+ 2,
+ 38
+ ],
+ [
+ 1,
+ 3,
+ 19
+ ],
+ [
+ 3,
+ 4,
+ 38
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ],
+ [
+ 3,
+ 4
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t2",
+ "resource": "r2",
+ "start": 6,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t2",
+ "resource": "r0",
+ "start": 8,
+ "cost": 6
+ },
+ {
+ "index": 2,
+ "task": "t2",
+ "resource": "r2",
+ "start": 12,
+ "cost": 9
+ },
+ {
+ "index": 3,
+ "task": "t3",
+ "resource": "r0",
+ "start": 9,
+ "cost": 0
+ },
+ {
+ "index": 4,
+ "task": "t3",
+ "resource": "r1",
+ "start": 7,
+ "cost": 9
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 1,
+ "j": 3,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "input": "data/corpus-v2/n4-s0-r2.json",
+ "input_sha256": "88b2b434a81b9ddf68c43898785b4f6f2c891ed28befc9a6f268e6b083dbc547"
+ },
+ {
+ "problem": "heterogeneous-n4-s0-seed2026092703",
+ "feasible_count": 12,
+ "exact_objective": 10,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 10,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 6,
+ "removals": [
+ {
+ "variable": 4,
+ "forced_by": 0,
+ "reasons": [
+ "group"
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 3,
+ 5
+ ],
+ "max_component_qubits": 5,
+ "component_to_original": [
+ [
+ 1,
+ 2,
+ 3
+ ],
+ [
+ 5,
+ 6,
+ 7,
+ 8,
+ 9
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 3,
+ "penalty": 7,
+ "objective_bound": 6,
+ "offset": 7,
+ "linear": [
+ -7,
+ -2,
+ -1
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 14
+ ],
+ [
+ 0,
+ 2,
+ 14
+ ],
+ [
+ 1,
+ 2,
+ 14
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r1",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r0",
+ "start": 2,
+ "cost": 5
+ },
+ {
+ "index": 2,
+ "task": "t1",
+ "resource": "r1",
+ "start": 7,
+ "cost": 6
+ }
+ ],
+ "conflicts": []
+ },
+ {
+ "qubits": 5,
+ "penalty": 18,
+ "objective_bound": 17,
+ "offset": 36,
+ "linear": [
+ -11,
+ -14,
+ -8,
+ -18,
+ -11
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 36
+ ],
+ [
+ 0,
+ 2,
+ 36
+ ],
+ [
+ 0,
+ 3,
+ 18
+ ],
+ [
+ 1,
+ 2,
+ 36
+ ],
+ [
+ 2,
+ 4,
+ 18
+ ],
+ [
+ 3,
+ 4,
+ 36
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ],
+ [
+ 3,
+ 4
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t2",
+ "resource": "r0",
+ "start": 8,
+ "cost": 7
+ },
+ {
+ "index": 1,
+ "task": "t2",
+ "resource": "r1",
+ "start": 6,
+ "cost": 4
+ },
+ {
+ "index": 2,
+ "task": "t2",
+ "resource": "r2",
+ "start": 11,
+ "cost": 10
+ },
+ {
+ "index": 3,
+ "task": "t3",
+ "resource": "r0",
+ "start": 8,
+ "cost": 0
+ },
+ {
+ "index": 4,
+ "task": "t3",
+ "resource": "r2",
+ "start": 9,
+ "cost": 7
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 0,
+ "j": 3,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 4,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 10,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 6,
+ "removals": [
+ {
+ "variable": 4,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "group"
+ ]
+ }
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 3,
+ 5
+ ],
+ "max_component_qubits": 5,
+ "component_to_original": [
+ [
+ 1,
+ 2,
+ 3
+ ],
+ [
+ 5,
+ 6,
+ 7,
+ 8,
+ 9
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 3,
+ "penalty": 7,
+ "objective_bound": 6,
+ "offset": 7,
+ "linear": [
+ -7,
+ -2,
+ -1
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 14
+ ],
+ [
+ 0,
+ 2,
+ 14
+ ],
+ [
+ 1,
+ 2,
+ 14
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r1",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r0",
+ "start": 2,
+ "cost": 5
+ },
+ {
+ "index": 2,
+ "task": "t1",
+ "resource": "r1",
+ "start": 7,
+ "cost": 6
+ }
+ ],
+ "conflicts": []
+ },
+ {
+ "qubits": 5,
+ "penalty": 18,
+ "objective_bound": 17,
+ "offset": 36,
+ "linear": [
+ -11,
+ -14,
+ -8,
+ -18,
+ -11
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 36
+ ],
+ [
+ 0,
+ 2,
+ 36
+ ],
+ [
+ 0,
+ 3,
+ 18
+ ],
+ [
+ 1,
+ 2,
+ 36
+ ],
+ [
+ 2,
+ 4,
+ 18
+ ],
+ [
+ 3,
+ 4,
+ 36
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ],
+ [
+ 3,
+ 4
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t2",
+ "resource": "r0",
+ "start": 8,
+ "cost": 7
+ },
+ {
+ "index": 1,
+ "task": "t2",
+ "resource": "r1",
+ "start": 6,
+ "cost": 4
+ },
+ {
+ "index": 2,
+ "task": "t2",
+ "resource": "r2",
+ "start": 11,
+ "cost": 10
+ },
+ {
+ "index": 3,
+ "task": "t3",
+ "resource": "r0",
+ "start": 8,
+ "cost": 0
+ },
+ {
+ "index": 4,
+ "task": "t3",
+ "resource": "r2",
+ "start": 9,
+ "cost": 7
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 0,
+ "j": 3,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 4,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "input": "data/corpus-v2/n4-s0-r3.json",
+ "input_sha256": "125b0b1fe9d0a431b457b083014998f33cb82d918e140db12414608702847198"
+ },
+ {
+ "problem": "heterogeneous-n4-s1-seed2026092710",
+ "feasible_count": 0,
+ "exact_objective": null,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 7,
+ "fixed_variables": [],
+ "fixed_cost": 0,
+ "removals": [],
+ "infeasible_task": "t0",
+ "component_qubits": [],
+ "max_component_qubits": 0,
+ "component_to_original": [],
+ "components": []
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 7,
+ "fixed_variables": [],
+ "fixed_cost": 0,
+ "removals": [],
+ "infeasible_task": "t0",
+ "component_qubits": [],
+ "max_component_qubits": 0,
+ "component_to_original": [],
+ "components": []
+ }
+ },
+ "input": "data/corpus-v2/n4-s1-r0.json",
+ "input_sha256": "aa0ece2791aae422f427562f52a225e34573890675432668dc4ecd85a8ccd78b"
+ },
+ {
+ "problem": "heterogeneous-n4-s1-seed2026092711",
+ "feasible_count": 0,
+ "exact_objective": null,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 7,
+ "fixed_variables": [],
+ "fixed_cost": 0,
+ "removals": [],
+ "infeasible_task": "t0",
+ "component_qubits": [],
+ "max_component_qubits": 0,
+ "component_to_original": [],
+ "components": []
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 7,
+ "fixed_variables": [],
+ "fixed_cost": 0,
+ "removals": [],
+ "infeasible_task": "t0",
+ "component_qubits": [],
+ "max_component_qubits": 0,
+ "component_to_original": [],
+ "components": []
+ }
+ },
+ "input": "data/corpus-v2/n4-s1-r1.json",
+ "input_sha256": "836204438f461f317c06e52eee9095d95210ae5e5be6b81a69c216266aa22a36"
+ },
+ {
+ "problem": "heterogeneous-n4-s1-seed2026092712",
+ "feasible_count": 5,
+ "exact_objective": 18,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 9,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 8,
+ "removals": [],
+ "infeasible_task": null,
+ "component_qubits": [
+ 8
+ ],
+ "max_component_qubits": 8,
+ "component_to_original": [
+ [
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 8,
+ "penalty": 20,
+ "objective_bound": 19,
+ "offset": 60,
+ "linear": [
+ -14,
+ -15,
+ -20,
+ -14,
+ -12,
+ -14,
+ -20,
+ -15
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 40
+ ],
+ [
+ 0,
+ 2,
+ 20
+ ],
+ [
+ 0,
+ 5,
+ 20
+ ],
+ [
+ 1,
+ 3,
+ 20
+ ],
+ [
+ 1,
+ 4,
+ 20
+ ],
+ [
+ 1,
+ 6,
+ 20
+ ],
+ [
+ 2,
+ 3,
+ 40
+ ],
+ [
+ 2,
+ 4,
+ 40
+ ],
+ [
+ 2,
+ 5,
+ 40
+ ],
+ [
+ 3,
+ 4,
+ 40
+ ],
+ [
+ 3,
+ 5,
+ 40
+ ],
+ [
+ 3,
+ 6,
+ 20
+ ],
+ [
+ 4,
+ 5,
+ 40
+ ],
+ [
+ 6,
+ 7,
+ 40
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ],
+ [
+ 2,
+ 3,
+ 4,
+ 5
+ ],
+ [
+ 6,
+ 7
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r2",
+ "start": 8,
+ "cost": 6
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r0",
+ "start": 7,
+ "cost": 5
+ },
+ {
+ "index": 2,
+ "task": "t2",
+ "resource": "r2",
+ "start": 8,
+ "cost": 0
+ },
+ {
+ "index": 3,
+ "task": "t2",
+ "resource": "r0",
+ "start": 8,
+ "cost": 6
+ },
+ {
+ "index": 4,
+ "task": "t2",
+ "resource": "r0",
+ "start": 5,
+ "cost": 8
+ },
+ {
+ "index": 5,
+ "task": "t2",
+ "resource": "r2",
+ "start": 6,
+ "cost": 6
+ },
+ {
+ "index": 6,
+ "task": "t3",
+ "resource": "r0",
+ "start": 11,
+ "cost": 0
+ },
+ {
+ "index": 7,
+ "task": "t3",
+ "resource": "r1",
+ "start": 12,
+ "cost": 5
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 0,
+ "j": 2,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 0,
+ "j": 5,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 3,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 4,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 6,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 6,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 9,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 8,
+ "removals": [],
+ "infeasible_task": null,
+ "component_qubits": [
+ 8
+ ],
+ "max_component_qubits": 8,
+ "component_to_original": [
+ [
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 8,
+ "penalty": 20,
+ "objective_bound": 19,
+ "offset": 60,
+ "linear": [
+ -14,
+ -15,
+ -20,
+ -14,
+ -12,
+ -14,
+ -20,
+ -15
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 40
+ ],
+ [
+ 0,
+ 2,
+ 20
+ ],
+ [
+ 0,
+ 5,
+ 20
+ ],
+ [
+ 1,
+ 3,
+ 20
+ ],
+ [
+ 1,
+ 4,
+ 20
+ ],
+ [
+ 1,
+ 6,
+ 20
+ ],
+ [
+ 2,
+ 3,
+ 40
+ ],
+ [
+ 2,
+ 4,
+ 40
+ ],
+ [
+ 2,
+ 5,
+ 40
+ ],
+ [
+ 3,
+ 4,
+ 40
+ ],
+ [
+ 3,
+ 5,
+ 40
+ ],
+ [
+ 3,
+ 6,
+ 20
+ ],
+ [
+ 4,
+ 5,
+ 40
+ ],
+ [
+ 6,
+ 7,
+ 40
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ],
+ [
+ 2,
+ 3,
+ 4,
+ 5
+ ],
+ [
+ 6,
+ 7
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r2",
+ "start": 8,
+ "cost": 6
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r0",
+ "start": 7,
+ "cost": 5
+ },
+ {
+ "index": 2,
+ "task": "t2",
+ "resource": "r2",
+ "start": 8,
+ "cost": 0
+ },
+ {
+ "index": 3,
+ "task": "t2",
+ "resource": "r0",
+ "start": 8,
+ "cost": 6
+ },
+ {
+ "index": 4,
+ "task": "t2",
+ "resource": "r0",
+ "start": 5,
+ "cost": 8
+ },
+ {
+ "index": 5,
+ "task": "t2",
+ "resource": "r2",
+ "start": 6,
+ "cost": 6
+ },
+ {
+ "index": 6,
+ "task": "t3",
+ "resource": "r0",
+ "start": 11,
+ "cost": 0
+ },
+ {
+ "index": 7,
+ "task": "t3",
+ "resource": "r1",
+ "start": 12,
+ "cost": 5
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 0,
+ "j": 2,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 0,
+ "j": 5,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 3,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 4,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 6,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 6,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "input": "data/corpus-v2/n4-s1-r2.json",
+ "input_sha256": "103484d367bba6939e95310aa224358325eba3c739c1d94228a9d8c28aee2e3f"
+ },
+ {
+ "problem": "heterogeneous-n4-s1-seed2026092713",
+ "feasible_count": 4,
+ "exact_objective": 15,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 7,
+ "fixed_variables": [
+ 0,
+ 6
+ ],
+ "fixed_cost": 11,
+ "removals": [
+ {
+ "variable": 5,
+ "forced_by": 6,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 2,
+ 2
+ ],
+ "max_component_qubits": 2,
+ "component_to_original": [
+ [
+ 1,
+ 2
+ ],
+ [
+ 3,
+ 4
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 2,
+ "penalty": 6,
+ "objective_bound": 5,
+ "offset": 6,
+ "linear": [
+ -1,
+ -2
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 12
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r0",
+ "start": 6,
+ "cost": 5
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r2",
+ "start": 4,
+ "cost": 4
+ }
+ ],
+ "conflicts": []
+ },
+ {
+ "qubits": 2,
+ "penalty": 7,
+ "objective_bound": 6,
+ "offset": 7,
+ "linear": [
+ -7,
+ -1
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 14
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t2",
+ "resource": "r2",
+ "start": 9,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t2",
+ "resource": "r1",
+ "start": 10,
+ "cost": 6
+ }
+ ],
+ "conflicts": []
+ }
+ ]
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 7,
+ "fixed_variables": [
+ 0,
+ 6
+ ],
+ "fixed_cost": 11,
+ "removals": [
+ {
+ "variable": 5,
+ "rule": "no_support",
+ "against_task": "t3",
+ "blockers": [
+ {
+ "variable": 6,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 2,
+ 2
+ ],
+ "max_component_qubits": 2,
+ "component_to_original": [
+ [
+ 1,
+ 2
+ ],
+ [
+ 3,
+ 4
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 2,
+ "penalty": 6,
+ "objective_bound": 5,
+ "offset": 6,
+ "linear": [
+ -1,
+ -2
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 12
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r0",
+ "start": 6,
+ "cost": 5
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r2",
+ "start": 4,
+ "cost": 4
+ }
+ ],
+ "conflicts": []
+ },
+ {
+ "qubits": 2,
+ "penalty": 7,
+ "objective_bound": 6,
+ "offset": 7,
+ "linear": [
+ -7,
+ -1
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 14
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t2",
+ "resource": "r2",
+ "start": 9,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t2",
+ "resource": "r1",
+ "start": 10,
+ "cost": 6
+ }
+ ],
+ "conflicts": []
+ }
+ ]
+ }
+ },
+ "input": "data/corpus-v2/n4-s1-r3.json",
+ "input_sha256": "4984d9ea14045c7d5025867e5de16c2cb0e2873919cc72f376d781d8dcf6b318"
+ },
+ {
+ "problem": "heterogeneous-n4-s2-seed2026092720",
+ "feasible_count": 6,
+ "exact_objective": 7,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 10,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 7,
+ "removals": [
+ {
+ "variable": 3,
+ "forced_by": 0,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 8
+ ],
+ "max_component_qubits": 8,
+ "component_to_original": [
+ [
+ 1,
+ 2,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 8,
+ "penalty": 33,
+ "objective_bound": 32,
+ "offset": 99,
+ "linear": [
+ -33,
+ -23,
+ -33,
+ -24,
+ -25,
+ -29,
+ -33,
+ -20
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 66
+ ],
+ [
+ 1,
+ 2,
+ 33
+ ],
+ [
+ 1,
+ 4,
+ 33
+ ],
+ [
+ 1,
+ 5,
+ 33
+ ],
+ [
+ 2,
+ 3,
+ 66
+ ],
+ [
+ 2,
+ 4,
+ 66
+ ],
+ [
+ 2,
+ 5,
+ 66
+ ],
+ [
+ 3,
+ 4,
+ 66
+ ],
+ [
+ 3,
+ 5,
+ 66
+ ],
+ [
+ 3,
+ 6,
+ 33
+ ],
+ [
+ 4,
+ 5,
+ 66
+ ],
+ [
+ 4,
+ 6,
+ 33
+ ],
+ [
+ 5,
+ 6,
+ 33
+ ],
+ [
+ 6,
+ 7,
+ 66
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ],
+ [
+ 2,
+ 3,
+ 4,
+ 5
+ ],
+ [
+ 6,
+ 7
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r1",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r2",
+ "start": 9,
+ "cost": 10
+ },
+ {
+ "index": 2,
+ "task": "t2",
+ "resource": "r2",
+ "start": 7,
+ "cost": 0
+ },
+ {
+ "index": 3,
+ "task": "t2",
+ "resource": "r2",
+ "start": 12,
+ "cost": 9
+ },
+ {
+ "index": 4,
+ "task": "t2",
+ "resource": "r0",
+ "start": 9,
+ "cost": 8
+ },
+ {
+ "index": 5,
+ "task": "t2",
+ "resource": "r1",
+ "start": 8,
+ "cost": 4
+ },
+ {
+ "index": 6,
+ "task": "t3",
+ "resource": "r0",
+ "start": 10,
+ "cost": 0
+ },
+ {
+ "index": 7,
+ "task": "t3",
+ "resource": "r0",
+ "start": 16,
+ "cost": 13
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 1,
+ "j": 2,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 4,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 6,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 5,
+ "j": 6,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 10,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 7,
+ "removals": [
+ {
+ "variable": 3,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 8
+ ],
+ "max_component_qubits": 8,
+ "component_to_original": [
+ [
+ 1,
+ 2,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 8,
+ "penalty": 33,
+ "objective_bound": 32,
+ "offset": 99,
+ "linear": [
+ -33,
+ -23,
+ -33,
+ -24,
+ -25,
+ -29,
+ -33,
+ -20
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 66
+ ],
+ [
+ 1,
+ 2,
+ 33
+ ],
+ [
+ 1,
+ 4,
+ 33
+ ],
+ [
+ 1,
+ 5,
+ 33
+ ],
+ [
+ 2,
+ 3,
+ 66
+ ],
+ [
+ 2,
+ 4,
+ 66
+ ],
+ [
+ 2,
+ 5,
+ 66
+ ],
+ [
+ 3,
+ 4,
+ 66
+ ],
+ [
+ 3,
+ 5,
+ 66
+ ],
+ [
+ 3,
+ 6,
+ 33
+ ],
+ [
+ 4,
+ 5,
+ 66
+ ],
+ [
+ 4,
+ 6,
+ 33
+ ],
+ [
+ 5,
+ 6,
+ 33
+ ],
+ [
+ 6,
+ 7,
+ 66
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ],
+ [
+ 2,
+ 3,
+ 4,
+ 5
+ ],
+ [
+ 6,
+ 7
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r1",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r2",
+ "start": 9,
+ "cost": 10
+ },
+ {
+ "index": 2,
+ "task": "t2",
+ "resource": "r2",
+ "start": 7,
+ "cost": 0
+ },
+ {
+ "index": 3,
+ "task": "t2",
+ "resource": "r2",
+ "start": 12,
+ "cost": 9
+ },
+ {
+ "index": 4,
+ "task": "t2",
+ "resource": "r0",
+ "start": 9,
+ "cost": 8
+ },
+ {
+ "index": 5,
+ "task": "t2",
+ "resource": "r1",
+ "start": 8,
+ "cost": 4
+ },
+ {
+ "index": 6,
+ "task": "t3",
+ "resource": "r0",
+ "start": 10,
+ "cost": 0
+ },
+ {
+ "index": 7,
+ "task": "t3",
+ "resource": "r0",
+ "start": 16,
+ "cost": 13
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 1,
+ "j": 2,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 4,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 6,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 5,
+ "j": 6,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "input": "data/corpus-v2/n4-s2-r0.json",
+ "input_sha256": "9af23d9f34d060ee7e63feab87ad80511bdd416663485f76bd21cc31c298d504"
+ },
+ {
+ "problem": "heterogeneous-n4-s2-seed2026092721",
+ "feasible_count": 1,
+ "exact_objective": 3,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 10,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 3,
+ "removals": [],
+ "infeasible_task": null,
+ "component_qubits": [
+ 9
+ ],
+ "max_component_qubits": 9,
+ "component_to_original": [
+ [
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 9,
+ "penalty": 21,
+ "objective_bound": 20,
+ "offset": 63,
+ "linear": [
+ -21,
+ -15,
+ -18,
+ -21,
+ -11,
+ -15,
+ -13,
+ -21,
+ -17
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 42
+ ],
+ [
+ 0,
+ 2,
+ 42
+ ],
+ [
+ 0,
+ 6,
+ 21
+ ],
+ [
+ 1,
+ 2,
+ 42
+ ],
+ [
+ 1,
+ 3,
+ 21
+ ],
+ [
+ 1,
+ 6,
+ 21
+ ],
+ [
+ 1,
+ 8,
+ 21
+ ],
+ [
+ 2,
+ 3,
+ 21
+ ],
+ [
+ 2,
+ 6,
+ 21
+ ],
+ [
+ 2,
+ 8,
+ 21
+ ],
+ [
+ 3,
+ 4,
+ 42
+ ],
+ [
+ 3,
+ 5,
+ 42
+ ],
+ [
+ 3,
+ 6,
+ 42
+ ],
+ [
+ 3,
+ 8,
+ 21
+ ],
+ [
+ 4,
+ 5,
+ 42
+ ],
+ [
+ 4,
+ 6,
+ 42
+ ],
+ [
+ 4,
+ 7,
+ 21
+ ],
+ [
+ 4,
+ 8,
+ 21
+ ],
+ [
+ 5,
+ 6,
+ 42
+ ],
+ [
+ 5,
+ 7,
+ 21
+ ],
+ [
+ 5,
+ 8,
+ 21
+ ],
+ [
+ 7,
+ 8,
+ 42
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ],
+ [
+ 3,
+ 4,
+ 5,
+ 6
+ ],
+ [
+ 7,
+ 8
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r1",
+ "start": 5,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r0",
+ "start": 7,
+ "cost": 6
+ },
+ {
+ "index": 2,
+ "task": "t1",
+ "resource": "r2",
+ "start": 7,
+ "cost": 3
+ },
+ {
+ "index": 3,
+ "task": "t2",
+ "resource": "r2",
+ "start": 9,
+ "cost": 0
+ },
+ {
+ "index": 4,
+ "task": "t2",
+ "resource": "r2",
+ "start": 15,
+ "cost": 10
+ },
+ {
+ "index": 5,
+ "task": "t2",
+ "resource": "r2",
+ "start": 11,
+ "cost": 6
+ },
+ {
+ "index": 6,
+ "task": "t2",
+ "resource": "r1",
+ "start": 7,
+ "cost": 8
+ },
+ {
+ "index": 7,
+ "task": "t3",
+ "resource": "r0",
+ "start": 11,
+ "cost": 0
+ },
+ {
+ "index": 8,
+ "task": "t3",
+ "resource": "r2",
+ "start": 8,
+ "cost": 4
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 0,
+ "j": 6,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 3,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 8,
+ "reasons": [
+ "group"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 3,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 8,
+ "reasons": [
+ "resource",
+ "group"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 8,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 7,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 8,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 5,
+ "j": 7,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 5,
+ "j": 8,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 10,
+ "fixed_variables": [
+ 0,
+ 1,
+ 4,
+ 8
+ ],
+ "fixed_cost": 3,
+ "removals": [
+ {
+ "variable": 7,
+ "rule": "no_support",
+ "against_task": "t1",
+ "blockers": [
+ {
+ "variable": 1,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "variable": 2,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 3,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 5,
+ "rule": "no_support",
+ "against_task": "t3",
+ "blockers": [
+ {
+ "variable": 8,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 9,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 6,
+ "rule": "no_support",
+ "against_task": "t3",
+ "blockers": [
+ {
+ "variable": 8,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 9,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 9,
+ "rule": "no_support",
+ "against_task": "t2",
+ "blockers": [
+ {
+ "variable": 4,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 2,
+ "rule": "no_support",
+ "against_task": "t2",
+ "blockers": [
+ {
+ "variable": 4,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 3,
+ "rule": "no_support",
+ "against_task": "t2",
+ "blockers": [
+ {
+ "variable": 4,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [],
+ "max_component_qubits": 0,
+ "component_to_original": [],
+ "components": []
+ }
+ },
+ "input": "data/corpus-v2/n4-s2-r1.json",
+ "input_sha256": "757985044dbd854bc54a96d9bbd6811fa20c7d908ae98ae54c22029e6c189a5a"
+ },
+ {
+ "problem": "heterogeneous-n4-s2-seed2026092722",
+ "feasible_count": 2,
+ "exact_objective": 32,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 10,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 4,
+ "removals": [
+ {
+ "variable": 1,
+ "forced_by": 0,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 5,
+ "forced_by": 0,
+ "reasons": [
+ "group"
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 7
+ ],
+ "max_component_qubits": 7,
+ "component_to_original": [
+ [
+ 2,
+ 3,
+ 4,
+ 6,
+ 7,
+ 8,
+ 9
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 7,
+ "penalty": 29,
+ "objective_bound": 28,
+ "offset": 87,
+ "linear": [
+ -19,
+ -19,
+ -29,
+ -23,
+ -21,
+ -29,
+ -19
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 58
+ ],
+ [
+ 0,
+ 2,
+ 29
+ ],
+ [
+ 0,
+ 3,
+ 29
+ ],
+ [
+ 1,
+ 2,
+ 29
+ ],
+ [
+ 1,
+ 3,
+ 29
+ ],
+ [
+ 1,
+ 5,
+ 29
+ ],
+ [
+ 2,
+ 3,
+ 58
+ ],
+ [
+ 2,
+ 4,
+ 58
+ ],
+ [
+ 3,
+ 4,
+ 58
+ ],
+ [
+ 4,
+ 5,
+ 29
+ ],
+ [
+ 5,
+ 6,
+ 58
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ],
+ [
+ 2,
+ 3,
+ 4
+ ],
+ [
+ 5,
+ 6
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r0",
+ "start": 4,
+ "cost": 10
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r1",
+ "start": 5,
+ "cost": 10
+ },
+ {
+ "index": 2,
+ "task": "t2",
+ "resource": "r2",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "index": 3,
+ "task": "t2",
+ "resource": "r0",
+ "start": 4,
+ "cost": 6
+ },
+ {
+ "index": 4,
+ "task": "t2",
+ "resource": "r0",
+ "start": 7,
+ "cost": 8
+ },
+ {
+ "index": 5,
+ "task": "t3",
+ "resource": "r0",
+ "start": 6,
+ "cost": 0
+ },
+ {
+ "index": 6,
+ "task": "t3",
+ "resource": "r1",
+ "start": 12,
+ "cost": 10
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 0,
+ "j": 2,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 0,
+ "j": 3,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 2,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 3,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 5,
+ "reasons": [
+ "group"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 5,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 10,
+ "fixed_variables": [
+ 0,
+ 7,
+ 9
+ ],
+ "fixed_cost": 22,
+ "removals": [
+ {
+ "variable": 1,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 5,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "group"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 4,
+ "rule": "no_support",
+ "against_task": "t1",
+ "blockers": [
+ {
+ "variable": 2,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 3,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 6,
+ "rule": "no_support",
+ "against_task": "t1",
+ "blockers": [
+ {
+ "variable": 2,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "variable": 3,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 8,
+ "rule": "no_support",
+ "against_task": "t2",
+ "blockers": [
+ {
+ "variable": 7,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 2
+ ],
+ "max_component_qubits": 2,
+ "component_to_original": [
+ [
+ 2,
+ 3
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 2,
+ "penalty": 11,
+ "objective_bound": 10,
+ "offset": 11,
+ "linear": [
+ -1,
+ -1
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 22
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r0",
+ "start": 4,
+ "cost": 10
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r1",
+ "start": 5,
+ "cost": 10
+ }
+ ],
+ "conflicts": []
+ }
+ ]
+ }
+ },
+ "input": "data/corpus-v2/n4-s2-r2.json",
+ "input_sha256": "ddc2942dc20ad1a731547e61f8630f5d0816fde5631800724760dfe9c09d6967"
+ },
+ {
+ "problem": "heterogeneous-n4-s2-seed2026092723",
+ "feasible_count": 0,
+ "exact_objective": null,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 10,
+ "fixed_variables": [
+ 0,
+ 2,
+ 7
+ ],
+ "fixed_cost": 25,
+ "removals": [
+ {
+ "variable": 1,
+ "forced_by": 0,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 3,
+ "forced_by": 0,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "variable": 4,
+ "forced_by": 0,
+ "reasons": [
+ "group"
+ ]
+ },
+ {
+ "variable": 6,
+ "forced_by": 0,
+ "reasons": [
+ "group"
+ ]
+ },
+ {
+ "variable": 5,
+ "forced_by": 2,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 8,
+ "forced_by": 7,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "variable": 9,
+ "forced_by": 7,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ],
+ "infeasible_task": "t3",
+ "component_qubits": [],
+ "max_component_qubits": 0,
+ "component_to_original": [],
+ "components": []
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 10,
+ "fixed_variables": [],
+ "fixed_cost": 0,
+ "removals": [
+ {
+ "variable": 1,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 3,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 4,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "group"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 6,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "group"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 5,
+ "rule": "no_support",
+ "against_task": "t1",
+ "blockers": [
+ {
+ "variable": 2,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 7,
+ "rule": "no_support",
+ "against_task": "t3",
+ "blockers": [
+ {
+ "variable": 8,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "variable": 9,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ],
+ "infeasible_task": "t2",
+ "component_qubits": [],
+ "max_component_qubits": 0,
+ "component_to_original": [],
+ "components": []
+ }
+ },
+ "input": "data/corpus-v2/n4-s2-r3.json",
+ "input_sha256": "62dac5d42a79a79081d8ca08bde2e705f673d2c0ea74c9cd10d419709542ed99"
+ },
+ {
+ "problem": "heterogeneous-n5-s0-seed2026092800",
+ "feasible_count": 20,
+ "exact_objective": 17,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 13,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 8,
+ "removals": [
+ {
+ "variable": 2,
+ "forced_by": 0,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "variable": 4,
+ "forced_by": 0,
+ "reasons": [
+ "resource",
+ "group"
+ ]
+ },
+ {
+ "variable": 5,
+ "forced_by": 0,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 2,
+ 5,
+ 2
+ ],
+ "max_component_qubits": 5,
+ "component_to_original": [
+ [
+ 1,
+ 3
+ ],
+ [
+ 6,
+ 7,
+ 10,
+ 11,
+ 12
+ ],
+ [
+ 8,
+ 9
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 2,
+ "penalty": 7,
+ "objective_bound": 6,
+ "offset": 7,
+ "linear": [
+ -7,
+ -1
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 14
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r1",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r1",
+ "start": 9,
+ "cost": 6
+ }
+ ],
+ "conflicts": []
+ },
+ {
+ "qubits": 5,
+ "penalty": 17,
+ "objective_bound": 16,
+ "offset": 34,
+ "linear": [
+ -8,
+ -9,
+ -17,
+ -10,
+ -11
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 34
+ ],
+ [
+ 1,
+ 2,
+ 17
+ ],
+ [
+ 2,
+ 3,
+ 34
+ ],
+ [
+ 2,
+ 4,
+ 34
+ ],
+ [
+ 3,
+ 4,
+ 34
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ],
+ [
+ 2,
+ 3,
+ 4
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t2",
+ "resource": "r2",
+ "start": 13,
+ "cost": 9
+ },
+ {
+ "index": 1,
+ "task": "t2",
+ "resource": "r1",
+ "start": 13,
+ "cost": 8
+ },
+ {
+ "index": 2,
+ "task": "t4",
+ "resource": "r1",
+ "start": 15,
+ "cost": 0
+ },
+ {
+ "index": 3,
+ "task": "t4",
+ "resource": "r2",
+ "start": 21,
+ "cost": 7
+ },
+ {
+ "index": 4,
+ "task": "t4",
+ "resource": "r1",
+ "start": 17,
+ "cost": 6
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 1,
+ "j": 2,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ },
+ {
+ "qubits": 2,
+ "penalty": 8,
+ "objective_bound": 7,
+ "offset": 8,
+ "linear": [
+ -8,
+ -1
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 16
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t3",
+ "resource": "r0",
+ "start": 11,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t3",
+ "resource": "r0",
+ "start": 12,
+ "cost": 7
+ }
+ ],
+ "conflicts": []
+ }
+ ]
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 13,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 8,
+ "removals": [
+ {
+ "variable": 2,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 4,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "resource",
+ "group"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 5,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 2,
+ 5,
+ 2
+ ],
+ "max_component_qubits": 5,
+ "component_to_original": [
+ [
+ 1,
+ 3
+ ],
+ [
+ 6,
+ 7,
+ 10,
+ 11,
+ 12
+ ],
+ [
+ 8,
+ 9
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 2,
+ "penalty": 7,
+ "objective_bound": 6,
+ "offset": 7,
+ "linear": [
+ -7,
+ -1
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 14
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r1",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r1",
+ "start": 9,
+ "cost": 6
+ }
+ ],
+ "conflicts": []
+ },
+ {
+ "qubits": 5,
+ "penalty": 17,
+ "objective_bound": 16,
+ "offset": 34,
+ "linear": [
+ -8,
+ -9,
+ -17,
+ -10,
+ -11
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 34
+ ],
+ [
+ 1,
+ 2,
+ 17
+ ],
+ [
+ 2,
+ 3,
+ 34
+ ],
+ [
+ 2,
+ 4,
+ 34
+ ],
+ [
+ 3,
+ 4,
+ 34
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ],
+ [
+ 2,
+ 3,
+ 4
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t2",
+ "resource": "r2",
+ "start": 13,
+ "cost": 9
+ },
+ {
+ "index": 1,
+ "task": "t2",
+ "resource": "r1",
+ "start": 13,
+ "cost": 8
+ },
+ {
+ "index": 2,
+ "task": "t4",
+ "resource": "r1",
+ "start": 15,
+ "cost": 0
+ },
+ {
+ "index": 3,
+ "task": "t4",
+ "resource": "r2",
+ "start": 21,
+ "cost": 7
+ },
+ {
+ "index": 4,
+ "task": "t4",
+ "resource": "r1",
+ "start": 17,
+ "cost": 6
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 1,
+ "j": 2,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ },
+ {
+ "qubits": 2,
+ "penalty": 8,
+ "objective_bound": 7,
+ "offset": 8,
+ "linear": [
+ -8,
+ -1
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 16
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t3",
+ "resource": "r0",
+ "start": 11,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t3",
+ "resource": "r0",
+ "start": 12,
+ "cost": 7
+ }
+ ],
+ "conflicts": []
+ }
+ ]
+ }
+ },
+ "input": "data/corpus-v2/n5-s0-r0.json",
+ "input_sha256": "3b096967495414f6c7221f29bc07fd93e00f4ffd2699ae23860da80297f245fb"
+ },
+ {
+ "problem": "heterogeneous-n5-s0-seed2026092801",
+ "feasible_count": 51,
+ "exact_objective": 11,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 13,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 11,
+ "removals": [],
+ "infeasible_task": null,
+ "component_qubits": [
+ 3,
+ 9
+ ],
+ "max_component_qubits": 9,
+ "component_to_original": [
+ [
+ 1,
+ 2,
+ 3
+ ],
+ [
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 12
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 3,
+ "penalty": 12,
+ "objective_bound": 11,
+ "offset": 12,
+ "linear": [
+ -12,
+ -4,
+ -1
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 24
+ ],
+ [
+ 0,
+ 2,
+ 24
+ ],
+ [
+ 1,
+ 2,
+ 24
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r1",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r1",
+ "start": 6,
+ "cost": 8
+ },
+ {
+ "index": 2,
+ "task": "t1",
+ "resource": "r0",
+ "start": 9,
+ "cost": 11
+ }
+ ],
+ "conflicts": []
+ },
+ {
+ "qubits": 9,
+ "penalty": 33,
+ "objective_bound": 32,
+ "offset": 99,
+ "linear": [
+ -33,
+ -28,
+ -24,
+ -27,
+ -33,
+ -21,
+ -33,
+ -29,
+ -22
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 66
+ ],
+ [
+ 0,
+ 2,
+ 66
+ ],
+ [
+ 0,
+ 3,
+ 66
+ ],
+ [
+ 1,
+ 2,
+ 66
+ ],
+ [
+ 1,
+ 3,
+ 66
+ ],
+ [
+ 1,
+ 4,
+ 33
+ ],
+ [
+ 2,
+ 3,
+ 66
+ ],
+ [
+ 4,
+ 5,
+ 66
+ ],
+ [
+ 5,
+ 7,
+ 33
+ ],
+ [
+ 6,
+ 7,
+ 66
+ ],
+ [
+ 6,
+ 8,
+ 66
+ ],
+ [
+ 7,
+ 8,
+ 66
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2,
+ 3
+ ],
+ [
+ 4,
+ 5
+ ],
+ [
+ 6,
+ 7,
+ 8
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t2",
+ "resource": "r2",
+ "start": 7,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t2",
+ "resource": "r0",
+ "start": 11,
+ "cost": 5
+ },
+ {
+ "index": 2,
+ "task": "t2",
+ "resource": "r2",
+ "start": 13,
+ "cost": 9
+ },
+ {
+ "index": 3,
+ "task": "t2",
+ "resource": "r1",
+ "start": 10,
+ "cost": 6
+ },
+ {
+ "index": 4,
+ "task": "t3",
+ "resource": "r0",
+ "start": 11,
+ "cost": 0
+ },
+ {
+ "index": 5,
+ "task": "t3",
+ "resource": "r0",
+ "start": 16,
+ "cost": 12
+ },
+ {
+ "index": 6,
+ "task": "t4",
+ "resource": "r1",
+ "start": 15,
+ "cost": 0
+ },
+ {
+ "index": 7,
+ "task": "t4",
+ "resource": "r0",
+ "start": 16,
+ "cost": 4
+ },
+ {
+ "index": 8,
+ "task": "t4",
+ "resource": "r2",
+ "start": 21,
+ "cost": 11
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 1,
+ "j": 4,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 5,
+ "j": 7,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 13,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 11,
+ "removals": [],
+ "infeasible_task": null,
+ "component_qubits": [
+ 3,
+ 9
+ ],
+ "max_component_qubits": 9,
+ "component_to_original": [
+ [
+ 1,
+ 2,
+ 3
+ ],
+ [
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 12
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 3,
+ "penalty": 12,
+ "objective_bound": 11,
+ "offset": 12,
+ "linear": [
+ -12,
+ -4,
+ -1
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 24
+ ],
+ [
+ 0,
+ 2,
+ 24
+ ],
+ [
+ 1,
+ 2,
+ 24
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r1",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r1",
+ "start": 6,
+ "cost": 8
+ },
+ {
+ "index": 2,
+ "task": "t1",
+ "resource": "r0",
+ "start": 9,
+ "cost": 11
+ }
+ ],
+ "conflicts": []
+ },
+ {
+ "qubits": 9,
+ "penalty": 33,
+ "objective_bound": 32,
+ "offset": 99,
+ "linear": [
+ -33,
+ -28,
+ -24,
+ -27,
+ -33,
+ -21,
+ -33,
+ -29,
+ -22
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 66
+ ],
+ [
+ 0,
+ 2,
+ 66
+ ],
+ [
+ 0,
+ 3,
+ 66
+ ],
+ [
+ 1,
+ 2,
+ 66
+ ],
+ [
+ 1,
+ 3,
+ 66
+ ],
+ [
+ 1,
+ 4,
+ 33
+ ],
+ [
+ 2,
+ 3,
+ 66
+ ],
+ [
+ 4,
+ 5,
+ 66
+ ],
+ [
+ 5,
+ 7,
+ 33
+ ],
+ [
+ 6,
+ 7,
+ 66
+ ],
+ [
+ 6,
+ 8,
+ 66
+ ],
+ [
+ 7,
+ 8,
+ 66
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2,
+ 3
+ ],
+ [
+ 4,
+ 5
+ ],
+ [
+ 6,
+ 7,
+ 8
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t2",
+ "resource": "r2",
+ "start": 7,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t2",
+ "resource": "r0",
+ "start": 11,
+ "cost": 5
+ },
+ {
+ "index": 2,
+ "task": "t2",
+ "resource": "r2",
+ "start": 13,
+ "cost": 9
+ },
+ {
+ "index": 3,
+ "task": "t2",
+ "resource": "r1",
+ "start": 10,
+ "cost": 6
+ },
+ {
+ "index": 4,
+ "task": "t3",
+ "resource": "r0",
+ "start": 11,
+ "cost": 0
+ },
+ {
+ "index": 5,
+ "task": "t3",
+ "resource": "r0",
+ "start": 16,
+ "cost": 12
+ },
+ {
+ "index": 6,
+ "task": "t4",
+ "resource": "r1",
+ "start": 15,
+ "cost": 0
+ },
+ {
+ "index": 7,
+ "task": "t4",
+ "resource": "r0",
+ "start": 16,
+ "cost": 4
+ },
+ {
+ "index": 8,
+ "task": "t4",
+ "resource": "r2",
+ "start": 21,
+ "cost": 11
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 1,
+ "j": 4,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 5,
+ "j": 7,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "input": "data/corpus-v2/n5-s0-r1.json",
+ "input_sha256": "33be7180ae045495e20118be59832c58b92de1b3606e624fb49ee921324b2178"
+ },
+ {
+ "problem": "heterogeneous-n5-s0-seed2026092802",
+ "feasible_count": 30,
+ "exact_objective": 13,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 13,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 5,
+ "removals": [
+ {
+ "variable": 1,
+ "forced_by": 0,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 6,
+ 2,
+ 3
+ ],
+ "max_component_qubits": 6,
+ "component_to_original": [
+ [
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7
+ ],
+ [
+ 8,
+ 9
+ ],
+ [
+ 10,
+ 11,
+ 12
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 6,
+ "penalty": 20,
+ "objective_bound": 19,
+ "offset": 40,
+ "linear": [
+ -12,
+ -10,
+ -20,
+ -13,
+ -15,
+ -11
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 40
+ ],
+ [
+ 0,
+ 4,
+ 20
+ ],
+ [
+ 1,
+ 2,
+ 20
+ ],
+ [
+ 1,
+ 3,
+ 20
+ ],
+ [
+ 2,
+ 3,
+ 40
+ ],
+ [
+ 2,
+ 4,
+ 40
+ ],
+ [
+ 2,
+ 5,
+ 40
+ ],
+ [
+ 3,
+ 4,
+ 40
+ ],
+ [
+ 3,
+ 5,
+ 40
+ ],
+ [
+ 4,
+ 5,
+ 40
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ],
+ [
+ 2,
+ 3,
+ 4,
+ 5
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r0",
+ "start": 9,
+ "cost": 8
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r2",
+ "start": 8,
+ "cost": 10
+ },
+ {
+ "index": 2,
+ "task": "t2",
+ "resource": "r2",
+ "start": 7,
+ "cost": 0
+ },
+ {
+ "index": 3,
+ "task": "t2",
+ "resource": "r2",
+ "start": 10,
+ "cost": 7
+ },
+ {
+ "index": 4,
+ "task": "t2",
+ "resource": "r0",
+ "start": 9,
+ "cost": 5
+ },
+ {
+ "index": 5,
+ "task": "t2",
+ "resource": "r1",
+ "start": 13,
+ "cost": 9
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 0,
+ "j": 4,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 2,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 3,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ },
+ {
+ "qubits": 2,
+ "penalty": 12,
+ "objective_bound": 11,
+ "offset": 12,
+ "linear": [
+ -12,
+ -1
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 24
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t3",
+ "resource": "r0",
+ "start": 12,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t3",
+ "resource": "r0",
+ "start": 17,
+ "cost": 11
+ }
+ ],
+ "conflicts": []
+ },
+ {
+ "qubits": 3,
+ "penalty": 8,
+ "objective_bound": 7,
+ "offset": 8,
+ "linear": [
+ -8,
+ -1,
+ -1
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 16
+ ],
+ [
+ 0,
+ 2,
+ 16
+ ],
+ [
+ 1,
+ 2,
+ 16
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t4",
+ "resource": "r1",
+ "start": 16,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t4",
+ "resource": "r1",
+ "start": 19,
+ "cost": 7
+ },
+ {
+ "index": 2,
+ "task": "t4",
+ "resource": "r1",
+ "start": 20,
+ "cost": 7
+ }
+ ],
+ "conflicts": []
+ }
+ ]
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 13,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 5,
+ "removals": [
+ {
+ "variable": 1,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 6,
+ 2,
+ 3
+ ],
+ "max_component_qubits": 6,
+ "component_to_original": [
+ [
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7
+ ],
+ [
+ 8,
+ 9
+ ],
+ [
+ 10,
+ 11,
+ 12
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 6,
+ "penalty": 20,
+ "objective_bound": 19,
+ "offset": 40,
+ "linear": [
+ -12,
+ -10,
+ -20,
+ -13,
+ -15,
+ -11
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 40
+ ],
+ [
+ 0,
+ 4,
+ 20
+ ],
+ [
+ 1,
+ 2,
+ 20
+ ],
+ [
+ 1,
+ 3,
+ 20
+ ],
+ [
+ 2,
+ 3,
+ 40
+ ],
+ [
+ 2,
+ 4,
+ 40
+ ],
+ [
+ 2,
+ 5,
+ 40
+ ],
+ [
+ 3,
+ 4,
+ 40
+ ],
+ [
+ 3,
+ 5,
+ 40
+ ],
+ [
+ 4,
+ 5,
+ 40
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ],
+ [
+ 2,
+ 3,
+ 4,
+ 5
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r0",
+ "start": 9,
+ "cost": 8
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r2",
+ "start": 8,
+ "cost": 10
+ },
+ {
+ "index": 2,
+ "task": "t2",
+ "resource": "r2",
+ "start": 7,
+ "cost": 0
+ },
+ {
+ "index": 3,
+ "task": "t2",
+ "resource": "r2",
+ "start": 10,
+ "cost": 7
+ },
+ {
+ "index": 4,
+ "task": "t2",
+ "resource": "r0",
+ "start": 9,
+ "cost": 5
+ },
+ {
+ "index": 5,
+ "task": "t2",
+ "resource": "r1",
+ "start": 13,
+ "cost": 9
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 0,
+ "j": 4,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 2,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 3,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ },
+ {
+ "qubits": 2,
+ "penalty": 12,
+ "objective_bound": 11,
+ "offset": 12,
+ "linear": [
+ -12,
+ -1
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 24
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t3",
+ "resource": "r0",
+ "start": 12,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t3",
+ "resource": "r0",
+ "start": 17,
+ "cost": 11
+ }
+ ],
+ "conflicts": []
+ },
+ {
+ "qubits": 3,
+ "penalty": 8,
+ "objective_bound": 7,
+ "offset": 8,
+ "linear": [
+ -8,
+ -1,
+ -1
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 16
+ ],
+ [
+ 0,
+ 2,
+ 16
+ ],
+ [
+ 1,
+ 2,
+ 16
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t4",
+ "resource": "r1",
+ "start": 16,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t4",
+ "resource": "r1",
+ "start": 19,
+ "cost": 7
+ },
+ {
+ "index": 2,
+ "task": "t4",
+ "resource": "r1",
+ "start": 20,
+ "cost": 7
+ }
+ ],
+ "conflicts": []
+ }
+ ]
+ }
+ },
+ "input": "data/corpus-v2/n5-s0-r2.json",
+ "input_sha256": "76eebc2eead32041f9502f223147ce83aadee15cbd3aa7d085c0ef5733d8a662"
+ },
+ {
+ "problem": "heterogeneous-n5-s0-seed2026092803",
+ "feasible_count": 27,
+ "exact_objective": 3,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 13,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 3,
+ "removals": [],
+ "infeasible_task": null,
+ "component_qubits": [
+ 3,
+ 9
+ ],
+ "max_component_qubits": 9,
+ "component_to_original": [
+ [
+ 1,
+ 2,
+ 3
+ ],
+ [
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 12
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 3,
+ "penalty": 7,
+ "objective_bound": 6,
+ "offset": 7,
+ "linear": [
+ -7,
+ -1,
+ -5
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 14
+ ],
+ [
+ 0,
+ 2,
+ 14
+ ],
+ [
+ 1,
+ 2,
+ 14
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r1",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r1",
+ "start": 7,
+ "cost": 6
+ },
+ {
+ "index": 2,
+ "task": "t1",
+ "resource": "r1",
+ "start": 5,
+ "cost": 2
+ }
+ ],
+ "conflicts": []
+ },
+ {
+ "qubits": 9,
+ "penalty": 27,
+ "objective_bound": 26,
+ "offset": 81,
+ "linear": [
+ -27,
+ -16,
+ -19,
+ -21,
+ -27,
+ -21,
+ -27,
+ -18,
+ -21
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 54
+ ],
+ [
+ 0,
+ 2,
+ 54
+ ],
+ [
+ 0,
+ 3,
+ 54
+ ],
+ [
+ 1,
+ 2,
+ 54
+ ],
+ [
+ 1,
+ 3,
+ 54
+ ],
+ [
+ 1,
+ 6,
+ 27
+ ],
+ [
+ 1,
+ 8,
+ 27
+ ],
+ [
+ 2,
+ 3,
+ 54
+ ],
+ [
+ 2,
+ 5,
+ 27
+ ],
+ [
+ 2,
+ 6,
+ 27
+ ],
+ [
+ 3,
+ 4,
+ 27
+ ],
+ [
+ 4,
+ 5,
+ 54
+ ],
+ [
+ 5,
+ 6,
+ 27
+ ],
+ [
+ 5,
+ 8,
+ 27
+ ],
+ [
+ 6,
+ 7,
+ 54
+ ],
+ [
+ 6,
+ 8,
+ 54
+ ],
+ [
+ 7,
+ 8,
+ 54
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2,
+ 3
+ ],
+ [
+ 4,
+ 5
+ ],
+ [
+ 6,
+ 7,
+ 8
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t2",
+ "resource": "r2",
+ "start": 7,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t2",
+ "resource": "r0",
+ "start": 13,
+ "cost": 11
+ },
+ {
+ "index": 2,
+ "task": "t2",
+ "resource": "r1",
+ "start": 11,
+ "cost": 8
+ },
+ {
+ "index": 3,
+ "task": "t2",
+ "resource": "r0",
+ "start": 8,
+ "cost": 6
+ },
+ {
+ "index": 4,
+ "task": "t3",
+ "resource": "r0",
+ "start": 9,
+ "cost": 0
+ },
+ {
+ "index": 5,
+ "task": "t3",
+ "resource": "r1",
+ "start": 11,
+ "cost": 6
+ },
+ {
+ "index": 6,
+ "task": "t4",
+ "resource": "r1",
+ "start": 12,
+ "cost": 0
+ },
+ {
+ "index": 7,
+ "task": "t4",
+ "resource": "r2",
+ "start": 17,
+ "cost": 9
+ },
+ {
+ "index": 8,
+ "task": "t4",
+ "resource": "r1",
+ "start": 13,
+ "cost": 6
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 1,
+ "j": 6,
+ "reasons": [
+ "group"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 8,
+ "reasons": [
+ "group"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 5,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 6,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 4,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 5,
+ "j": 6,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 5,
+ "j": 8,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 13,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 3,
+ "removals": [],
+ "infeasible_task": null,
+ "component_qubits": [
+ 3,
+ 9
+ ],
+ "max_component_qubits": 9,
+ "component_to_original": [
+ [
+ 1,
+ 2,
+ 3
+ ],
+ [
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 12
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 3,
+ "penalty": 7,
+ "objective_bound": 6,
+ "offset": 7,
+ "linear": [
+ -7,
+ -1,
+ -5
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 14
+ ],
+ [
+ 0,
+ 2,
+ 14
+ ],
+ [
+ 1,
+ 2,
+ 14
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r1",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r1",
+ "start": 7,
+ "cost": 6
+ },
+ {
+ "index": 2,
+ "task": "t1",
+ "resource": "r1",
+ "start": 5,
+ "cost": 2
+ }
+ ],
+ "conflicts": []
+ },
+ {
+ "qubits": 9,
+ "penalty": 27,
+ "objective_bound": 26,
+ "offset": 81,
+ "linear": [
+ -27,
+ -16,
+ -19,
+ -21,
+ -27,
+ -21,
+ -27,
+ -18,
+ -21
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 54
+ ],
+ [
+ 0,
+ 2,
+ 54
+ ],
+ [
+ 0,
+ 3,
+ 54
+ ],
+ [
+ 1,
+ 2,
+ 54
+ ],
+ [
+ 1,
+ 3,
+ 54
+ ],
+ [
+ 1,
+ 6,
+ 27
+ ],
+ [
+ 1,
+ 8,
+ 27
+ ],
+ [
+ 2,
+ 3,
+ 54
+ ],
+ [
+ 2,
+ 5,
+ 27
+ ],
+ [
+ 2,
+ 6,
+ 27
+ ],
+ [
+ 3,
+ 4,
+ 27
+ ],
+ [
+ 4,
+ 5,
+ 54
+ ],
+ [
+ 5,
+ 6,
+ 27
+ ],
+ [
+ 5,
+ 8,
+ 27
+ ],
+ [
+ 6,
+ 7,
+ 54
+ ],
+ [
+ 6,
+ 8,
+ 54
+ ],
+ [
+ 7,
+ 8,
+ 54
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2,
+ 3
+ ],
+ [
+ 4,
+ 5
+ ],
+ [
+ 6,
+ 7,
+ 8
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t2",
+ "resource": "r2",
+ "start": 7,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t2",
+ "resource": "r0",
+ "start": 13,
+ "cost": 11
+ },
+ {
+ "index": 2,
+ "task": "t2",
+ "resource": "r1",
+ "start": 11,
+ "cost": 8
+ },
+ {
+ "index": 3,
+ "task": "t2",
+ "resource": "r0",
+ "start": 8,
+ "cost": 6
+ },
+ {
+ "index": 4,
+ "task": "t3",
+ "resource": "r0",
+ "start": 9,
+ "cost": 0
+ },
+ {
+ "index": 5,
+ "task": "t3",
+ "resource": "r1",
+ "start": 11,
+ "cost": 6
+ },
+ {
+ "index": 6,
+ "task": "t4",
+ "resource": "r1",
+ "start": 12,
+ "cost": 0
+ },
+ {
+ "index": 7,
+ "task": "t4",
+ "resource": "r2",
+ "start": 17,
+ "cost": 9
+ },
+ {
+ "index": 8,
+ "task": "t4",
+ "resource": "r1",
+ "start": 13,
+ "cost": 6
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 1,
+ "j": 6,
+ "reasons": [
+ "group"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 8,
+ "reasons": [
+ "group"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 5,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 6,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 4,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 5,
+ "j": 6,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 5,
+ "j": 8,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "input": "data/corpus-v2/n5-s0-r3.json",
+ "input_sha256": "1add7f70a8e1245cbfeab43a68ecff0c4363a8466db647bfbc74addacf540223"
+ },
+ {
+ "problem": "heterogeneous-n5-s1-seed2026092810",
+ "feasible_count": 0,
+ "exact_objective": null,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 12,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 11,
+ "removals": [
+ {
+ "variable": 1,
+ "forced_by": 0,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "variable": 2,
+ "forced_by": 0,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ],
+ "infeasible_task": "t1",
+ "component_qubits": [],
+ "max_component_qubits": 0,
+ "component_to_original": [],
+ "components": []
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 12,
+ "fixed_variables": [],
+ "fixed_cost": 0,
+ "removals": [
+ {
+ "variable": 0,
+ "rule": "no_support",
+ "against_task": "t1",
+ "blockers": [
+ {
+ "variable": 1,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "variable": 2,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ }
+ ],
+ "infeasible_task": "t0",
+ "component_qubits": [],
+ "max_component_qubits": 0,
+ "component_to_original": [],
+ "components": []
+ }
+ },
+ "input": "data/corpus-v2/n5-s1-r0.json",
+ "input_sha256": "b81bb3521d067c55d1c324a08e3c60a2ac45fe3939757f55be879a4b92088626"
+ },
+ {
+ "problem": "heterogeneous-n5-s1-seed2026092811",
+ "feasible_count": 0,
+ "exact_objective": null,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 10,
+ "fixed_variables": [],
+ "fixed_cost": 0,
+ "removals": [],
+ "infeasible_task": "t0",
+ "component_qubits": [],
+ "max_component_qubits": 0,
+ "component_to_original": [],
+ "components": []
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 10,
+ "fixed_variables": [],
+ "fixed_cost": 0,
+ "removals": [],
+ "infeasible_task": "t0",
+ "component_qubits": [],
+ "max_component_qubits": 0,
+ "component_to_original": [],
+ "components": []
+ }
+ },
+ "input": "data/corpus-v2/n5-s1-r1.json",
+ "input_sha256": "b4220f8427bb64e26d03a7153c73a5b25aa2ddb0d03c2ca0ff8d4f47f2148faf"
+ },
+ {
+ "problem": "heterogeneous-n5-s1-seed2026092812",
+ "feasible_count": 9,
+ "exact_objective": 20,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 12,
+ "fixed_variables": [
+ 0,
+ 2
+ ],
+ "fixed_cost": 14,
+ "removals": [
+ {
+ "variable": 1,
+ "forced_by": 0,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "variable": 3,
+ "forced_by": 2,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 8
+ ],
+ "max_component_qubits": 8,
+ "component_to_original": [
+ [
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 8,
+ "penalty": 29,
+ "objective_bound": 28,
+ "offset": 87,
+ "linear": [
+ -18,
+ -20,
+ -23,
+ -29,
+ -23,
+ -29,
+ -23,
+ -18
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 58
+ ],
+ [
+ 0,
+ 2,
+ 58
+ ],
+ [
+ 0,
+ 3,
+ 29
+ ],
+ [
+ 0,
+ 6,
+ 29
+ ],
+ [
+ 1,
+ 2,
+ 58
+ ],
+ [
+ 2,
+ 4,
+ 29
+ ],
+ [
+ 3,
+ 4,
+ 58
+ ],
+ [
+ 3,
+ 6,
+ 29
+ ],
+ [
+ 5,
+ 6,
+ 58
+ ],
+ [
+ 5,
+ 7,
+ 58
+ ],
+ [
+ 6,
+ 7,
+ 58
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ],
+ [
+ 3,
+ 4
+ ],
+ [
+ 5,
+ 6,
+ 7
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t2",
+ "resource": "r0",
+ "start": 15,
+ "cost": 11
+ },
+ {
+ "index": 1,
+ "task": "t2",
+ "resource": "r2",
+ "start": 15,
+ "cost": 9
+ },
+ {
+ "index": 2,
+ "task": "t2",
+ "resource": "r1",
+ "start": 12,
+ "cost": 6
+ },
+ {
+ "index": 3,
+ "task": "t3",
+ "resource": "r0",
+ "start": 15,
+ "cost": 0
+ },
+ {
+ "index": 4,
+ "task": "t3",
+ "resource": "r1",
+ "start": 13,
+ "cost": 6
+ },
+ {
+ "index": 5,
+ "task": "t4",
+ "resource": "r1",
+ "start": 20,
+ "cost": 0
+ },
+ {
+ "index": 6,
+ "task": "t4",
+ "resource": "r0",
+ "start": 17,
+ "cost": 6
+ },
+ {
+ "index": 7,
+ "task": "t4",
+ "resource": "r2",
+ "start": 25,
+ "cost": 11
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 0,
+ "j": 3,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 0,
+ "j": 6,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 4,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 6,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 12,
+ "fixed_variables": [
+ 0,
+ 2
+ ],
+ "fixed_cost": 14,
+ "removals": [
+ {
+ "variable": 1,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 3,
+ "rule": "no_support",
+ "against_task": "t1",
+ "blockers": [
+ {
+ "variable": 2,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 8
+ ],
+ "max_component_qubits": 8,
+ "component_to_original": [
+ [
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 8,
+ "penalty": 29,
+ "objective_bound": 28,
+ "offset": 87,
+ "linear": [
+ -18,
+ -20,
+ -23,
+ -29,
+ -23,
+ -29,
+ -23,
+ -18
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 58
+ ],
+ [
+ 0,
+ 2,
+ 58
+ ],
+ [
+ 0,
+ 3,
+ 29
+ ],
+ [
+ 0,
+ 6,
+ 29
+ ],
+ [
+ 1,
+ 2,
+ 58
+ ],
+ [
+ 2,
+ 4,
+ 29
+ ],
+ [
+ 3,
+ 4,
+ 58
+ ],
+ [
+ 3,
+ 6,
+ 29
+ ],
+ [
+ 5,
+ 6,
+ 58
+ ],
+ [
+ 5,
+ 7,
+ 58
+ ],
+ [
+ 6,
+ 7,
+ 58
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ],
+ [
+ 3,
+ 4
+ ],
+ [
+ 5,
+ 6,
+ 7
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t2",
+ "resource": "r0",
+ "start": 15,
+ "cost": 11
+ },
+ {
+ "index": 1,
+ "task": "t2",
+ "resource": "r2",
+ "start": 15,
+ "cost": 9
+ },
+ {
+ "index": 2,
+ "task": "t2",
+ "resource": "r1",
+ "start": 12,
+ "cost": 6
+ },
+ {
+ "index": 3,
+ "task": "t3",
+ "resource": "r0",
+ "start": 15,
+ "cost": 0
+ },
+ {
+ "index": 4,
+ "task": "t3",
+ "resource": "r1",
+ "start": 13,
+ "cost": 6
+ },
+ {
+ "index": 5,
+ "task": "t4",
+ "resource": "r1",
+ "start": 20,
+ "cost": 0
+ },
+ {
+ "index": 6,
+ "task": "t4",
+ "resource": "r0",
+ "start": 17,
+ "cost": 6
+ },
+ {
+ "index": 7,
+ "task": "t4",
+ "resource": "r2",
+ "start": 25,
+ "cost": 11
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 0,
+ "j": 3,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 0,
+ "j": 6,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 4,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 6,
+ "reasons": [
+ "resource"
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "input": "data/corpus-v2/n5-s1-r2.json",
+ "input_sha256": "c5aef421815278af00fc874bf90bc25f908db0c626e7175edda15119410278a8"
+ },
+ {
+ "problem": "heterogeneous-n5-s1-seed2026092813",
+ "feasible_count": 0,
+ "exact_objective": null,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 10,
+ "fixed_variables": [],
+ "fixed_cost": 0,
+ "removals": [],
+ "infeasible_task": "t0",
+ "component_qubits": [],
+ "max_component_qubits": 0,
+ "component_to_original": [],
+ "components": []
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 10,
+ "fixed_variables": [],
+ "fixed_cost": 0,
+ "removals": [],
+ "infeasible_task": "t0",
+ "component_qubits": [],
+ "max_component_qubits": 0,
+ "component_to_original": [],
+ "components": []
+ }
+ },
+ "input": "data/corpus-v2/n5-s1-r3.json",
+ "input_sha256": "0c66b0c1a454629cd740c4653d9b44eb389629df1ca1f078e941e243b39dca70"
+ },
+ {
+ "problem": "heterogeneous-n5-s2-seed2026092820",
+ "feasible_count": 15,
+ "exact_objective": 4,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 13,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 4,
+ "removals": [],
+ "infeasible_task": null,
+ "component_qubits": [
+ 12
+ ],
+ "max_component_qubits": 12,
+ "component_to_original": [
+ [
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 12
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 12,
+ "penalty": 45,
+ "objective_bound": 44,
+ "offset": 180,
+ "linear": [
+ -45,
+ -33,
+ -40,
+ -45,
+ -37,
+ -39,
+ -37,
+ -45,
+ -33,
+ -45,
+ -33,
+ -37
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 90
+ ],
+ [
+ 0,
+ 2,
+ 90
+ ],
+ [
+ 1,
+ 2,
+ 90
+ ],
+ [
+ 1,
+ 3,
+ 45
+ ],
+ [
+ 1,
+ 5,
+ 45
+ ],
+ [
+ 2,
+ 5,
+ 45
+ ],
+ [
+ 3,
+ 4,
+ 90
+ ],
+ [
+ 3,
+ 5,
+ 90
+ ],
+ [
+ 3,
+ 6,
+ 90
+ ],
+ [
+ 4,
+ 5,
+ 90
+ ],
+ [
+ 4,
+ 6,
+ 90
+ ],
+ [
+ 4,
+ 7,
+ 45
+ ],
+ [
+ 4,
+ 11,
+ 45
+ ],
+ [
+ 5,
+ 6,
+ 90
+ ],
+ [
+ 6,
+ 7,
+ 45
+ ],
+ [
+ 6,
+ 9,
+ 45
+ ],
+ [
+ 6,
+ 11,
+ 45
+ ],
+ [
+ 7,
+ 8,
+ 90
+ ],
+ [
+ 7,
+ 11,
+ 45
+ ],
+ [
+ 8,
+ 9,
+ 45
+ ],
+ [
+ 8,
+ 11,
+ 45
+ ],
+ [
+ 9,
+ 10,
+ 90
+ ],
+ [
+ 9,
+ 11,
+ 90
+ ],
+ [
+ 10,
+ 11,
+ 90
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ],
+ [
+ 3,
+ 4,
+ 5,
+ 6
+ ],
+ [
+ 7,
+ 8
+ ],
+ [
+ 9,
+ 10,
+ 11
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r1",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r1",
+ "start": 9,
+ "cost": 12
+ },
+ {
+ "index": 2,
+ "task": "t1",
+ "resource": "r0",
+ "start": 4,
+ "cost": 5
+ },
+ {
+ "index": 3,
+ "task": "t2",
+ "resource": "r2",
+ "start": 8,
+ "cost": 0
+ },
+ {
+ "index": 4,
+ "task": "t2",
+ "resource": "r0",
+ "start": 12,
+ "cost": 8
+ },
+ {
+ "index": 5,
+ "task": "t2",
+ "resource": "r0",
+ "start": 6,
+ "cost": 6
+ },
+ {
+ "index": 6,
+ "task": "t2",
+ "resource": "r2",
+ "start": 14,
+ "cost": 8
+ },
+ {
+ "index": 7,
+ "task": "t3",
+ "resource": "r0",
+ "start": 13,
+ "cost": 0
+ },
+ {
+ "index": 8,
+ "task": "t3",
+ "resource": "r2",
+ "start": 19,
+ "cost": 12
+ },
+ {
+ "index": 9,
+ "task": "t4",
+ "resource": "r1",
+ "start": 16,
+ "cost": 0
+ },
+ {
+ "index": 10,
+ "task": "t4",
+ "resource": "r0",
+ "start": 22,
+ "cost": 12
+ },
+ {
+ "index": 11,
+ "task": "t4",
+ "resource": "r0",
+ "start": 14,
+ "cost": 8
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 1,
+ "j": 3,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 5,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 7,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 11,
+ "reasons": [
+ "resource",
+ "group"
+ ]
+ },
+ {
+ "i": 6,
+ "j": 7,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 6,
+ "j": 9,
+ "reasons": [
+ "group"
+ ]
+ },
+ {
+ "i": 6,
+ "j": 11,
+ "reasons": [
+ "group"
+ ]
+ },
+ {
+ "i": 7,
+ "j": 11,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 8,
+ "j": 9,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 8,
+ "j": 11,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 13,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 4,
+ "removals": [
+ {
+ "variable": 12,
+ "rule": "no_support",
+ "against_task": "t3",
+ "blockers": [
+ {
+ "variable": 8,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "variable": 9,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 11
+ ],
+ "max_component_qubits": 11,
+ "component_to_original": [
+ [
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 11,
+ "penalty": 45,
+ "objective_bound": 44,
+ "offset": 180,
+ "linear": [
+ -45,
+ -33,
+ -40,
+ -45,
+ -37,
+ -39,
+ -37,
+ -45,
+ -33,
+ -45,
+ -33
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 90
+ ],
+ [
+ 0,
+ 2,
+ 90
+ ],
+ [
+ 1,
+ 2,
+ 90
+ ],
+ [
+ 1,
+ 3,
+ 45
+ ],
+ [
+ 1,
+ 5,
+ 45
+ ],
+ [
+ 2,
+ 5,
+ 45
+ ],
+ [
+ 3,
+ 4,
+ 90
+ ],
+ [
+ 3,
+ 5,
+ 90
+ ],
+ [
+ 3,
+ 6,
+ 90
+ ],
+ [
+ 4,
+ 5,
+ 90
+ ],
+ [
+ 4,
+ 6,
+ 90
+ ],
+ [
+ 4,
+ 7,
+ 45
+ ],
+ [
+ 5,
+ 6,
+ 90
+ ],
+ [
+ 6,
+ 7,
+ 45
+ ],
+ [
+ 6,
+ 9,
+ 45
+ ],
+ [
+ 7,
+ 8,
+ 90
+ ],
+ [
+ 8,
+ 9,
+ 45
+ ],
+ [
+ 9,
+ 10,
+ 90
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ],
+ [
+ 3,
+ 4,
+ 5,
+ 6
+ ],
+ [
+ 7,
+ 8
+ ],
+ [
+ 9,
+ 10
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t1",
+ "resource": "r1",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "index": 1,
+ "task": "t1",
+ "resource": "r1",
+ "start": 9,
+ "cost": 12
+ },
+ {
+ "index": 2,
+ "task": "t1",
+ "resource": "r0",
+ "start": 4,
+ "cost": 5
+ },
+ {
+ "index": 3,
+ "task": "t2",
+ "resource": "r2",
+ "start": 8,
+ "cost": 0
+ },
+ {
+ "index": 4,
+ "task": "t2",
+ "resource": "r0",
+ "start": 12,
+ "cost": 8
+ },
+ {
+ "index": 5,
+ "task": "t2",
+ "resource": "r0",
+ "start": 6,
+ "cost": 6
+ },
+ {
+ "index": 6,
+ "task": "t2",
+ "resource": "r2",
+ "start": 14,
+ "cost": 8
+ },
+ {
+ "index": 7,
+ "task": "t3",
+ "resource": "r0",
+ "start": 13,
+ "cost": 0
+ },
+ {
+ "index": 8,
+ "task": "t3",
+ "resource": "r2",
+ "start": 19,
+ "cost": 12
+ },
+ {
+ "index": 9,
+ "task": "t4",
+ "resource": "r1",
+ "start": 16,
+ "cost": 0
+ },
+ {
+ "index": 10,
+ "task": "t4",
+ "resource": "r0",
+ "start": 22,
+ "cost": 12
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 1,
+ "j": 3,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 5,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 7,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 6,
+ "j": 7,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 6,
+ "j": 9,
+ "reasons": [
+ "group"
+ ]
+ },
+ {
+ "i": 8,
+ "j": 9,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "input": "data/corpus-v2/n5-s2-r0.json",
+ "input_sha256": "152b5cba1d3286c2bd54e7a1b8cc0452fd3718a4c5122fb49843942d50587d9c"
+ },
+ {
+ "problem": "heterogeneous-n5-s2-seed2026092821",
+ "feasible_count": 0,
+ "exact_objective": null,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 13,
+ "fixed_variables": [
+ 0,
+ 2
+ ],
+ "fixed_cost": 16,
+ "removals": [
+ {
+ "variable": 1,
+ "forced_by": 0,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 3,
+ "forced_by": 0,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "variable": 4,
+ "forced_by": 2,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 5,
+ "forced_by": 2,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 6,
+ "forced_by": 2,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "variable": 7,
+ "forced_by": 2,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ],
+ "infeasible_task": "t2",
+ "component_qubits": [],
+ "max_component_qubits": 0,
+ "component_to_original": [],
+ "components": []
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 13,
+ "fixed_variables": [],
+ "fixed_cost": 0,
+ "removals": [
+ {
+ "variable": 1,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 3,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 2,
+ "rule": "no_support",
+ "against_task": "t2",
+ "blockers": [
+ {
+ "variable": 4,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 6,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "variable": 7,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ],
+ "infeasible_task": "t1",
+ "component_qubits": [],
+ "max_component_qubits": 0,
+ "component_to_original": [],
+ "components": []
+ }
+ },
+ "input": "data/corpus-v2/n5-s2-r1.json",
+ "input_sha256": "e60d5db27b35fd0b91a5e09b8cd2d6b2a4325844d8588f602fd997e1a1310b48"
+ },
+ {
+ "problem": "heterogeneous-n5-s2-seed2026092822",
+ "feasible_count": 0,
+ "exact_objective": null,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 13,
+ "fixed_variables": [
+ 0
+ ],
+ "fixed_cost": 8,
+ "removals": [
+ {
+ "variable": 1,
+ "forced_by": 0,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 2,
+ "forced_by": 0,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 3,
+ "forced_by": 0,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 5,
+ "forced_by": 0,
+ "reasons": [
+ "resource",
+ "group"
+ ]
+ },
+ {
+ "variable": 6,
+ "forced_by": 0,
+ "reasons": [
+ "group"
+ ]
+ },
+ {
+ "variable": 7,
+ "forced_by": 0,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "variable": 12,
+ "forced_by": 0,
+ "reasons": [
+ "resource",
+ "group"
+ ]
+ }
+ ],
+ "infeasible_task": "t1",
+ "component_qubits": [],
+ "max_component_qubits": 0,
+ "component_to_original": [],
+ "components": []
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 13,
+ "fixed_variables": [],
+ "fixed_cost": 0,
+ "removals": [
+ {
+ "variable": 0,
+ "rule": "no_support",
+ "against_task": "t1",
+ "blockers": [
+ {
+ "variable": 1,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 2,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 3,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ],
+ "infeasible_task": "t0",
+ "component_qubits": [],
+ "max_component_qubits": 0,
+ "component_to_original": [],
+ "components": []
+ }
+ },
+ "input": "data/corpus-v2/n5-s2-r2.json",
+ "input_sha256": "b57d495cbb305f84ddf041862a157fe19d8040ea2224b0d872defce8c9fd9e42"
+ },
+ {
+ "problem": "heterogeneous-n5-s2-seed2026092823",
+ "feasible_count": 2,
+ "exact_objective": 44,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 13,
+ "fixed_variables": [
+ 0,
+ 3
+ ],
+ "fixed_cost": 19,
+ "removals": [
+ {
+ "variable": 1,
+ "forced_by": 0,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 2,
+ "forced_by": 0,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 5,
+ "forced_by": 0,
+ "reasons": [
+ "resource",
+ "group"
+ ]
+ },
+ {
+ "variable": 4,
+ "forced_by": 3,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 7
+ ],
+ "max_component_qubits": 7,
+ "component_to_original": [
+ [
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 12
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 7,
+ "penalty": 28,
+ "objective_bound": 27,
+ "offset": 84,
+ "linear": [
+ -23,
+ -21,
+ -28,
+ -18,
+ -28,
+ -25,
+ -18
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 56
+ ],
+ [
+ 0,
+ 2,
+ 28
+ ],
+ [
+ 1,
+ 2,
+ 28
+ ],
+ [
+ 1,
+ 4,
+ 28
+ ],
+ [
+ 1,
+ 5,
+ 28
+ ],
+ [
+ 2,
+ 3,
+ 56
+ ],
+ [
+ 3,
+ 4,
+ 28
+ ],
+ [
+ 3,
+ 5,
+ 28
+ ],
+ [
+ 4,
+ 5,
+ 56
+ ],
+ [
+ 4,
+ 6,
+ 56
+ ],
+ [
+ 5,
+ 6,
+ 56
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ],
+ [
+ 2,
+ 3
+ ],
+ [
+ 4,
+ 5,
+ 6
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t2",
+ "resource": "r2",
+ "start": 12,
+ "cost": 5
+ },
+ {
+ "index": 1,
+ "task": "t2",
+ "resource": "r2",
+ "start": 14,
+ "cost": 7
+ },
+ {
+ "index": 2,
+ "task": "t3",
+ "resource": "r0",
+ "start": 13,
+ "cost": 0
+ },
+ {
+ "index": 3,
+ "task": "t3",
+ "resource": "r0",
+ "start": 18,
+ "cost": 10
+ },
+ {
+ "index": 4,
+ "task": "t4",
+ "resource": "r1",
+ "start": 16,
+ "cost": 0
+ },
+ {
+ "index": 5,
+ "task": "t4",
+ "resource": "r2",
+ "start": 16,
+ "cost": 3
+ },
+ {
+ "index": 6,
+ "task": "t4",
+ "resource": "r2",
+ "start": 20,
+ "cost": 10
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 0,
+ "j": 2,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 2,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 4,
+ "reasons": [
+ "group"
+ ]
+ },
+ {
+ "i": 1,
+ "j": 5,
+ "reasons": [
+ "resource",
+ "group"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 4,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 5,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 13,
+ "fixed_variables": [
+ 0,
+ 3,
+ 9,
+ 12
+ ],
+ "fixed_cost": 39,
+ "removals": [
+ {
+ "variable": 1,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 2,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 5,
+ "rule": "no_support",
+ "against_task": "t0",
+ "blockers": [
+ {
+ "variable": 0,
+ "reasons": [
+ "resource",
+ "group"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 4,
+ "rule": "no_support",
+ "against_task": "t1",
+ "blockers": [
+ {
+ "variable": 3,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 8,
+ "rule": "no_support",
+ "against_task": "t2",
+ "blockers": [
+ {
+ "variable": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 7,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 10,
+ "rule": "no_support",
+ "against_task": "t3",
+ "blockers": [
+ {
+ "variable": 9,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 11,
+ "rule": "no_support",
+ "against_task": "t3",
+ "blockers": [
+ {
+ "variable": 9,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 2
+ ],
+ "max_component_qubits": 2,
+ "component_to_original": [
+ [
+ 6,
+ 7
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 2,
+ "penalty": 8,
+ "objective_bound": 7,
+ "offset": 8,
+ "linear": [
+ -3,
+ -1
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 16
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t2",
+ "resource": "r2",
+ "start": 12,
+ "cost": 5
+ },
+ {
+ "index": 1,
+ "task": "t2",
+ "resource": "r2",
+ "start": 14,
+ "cost": 7
+ }
+ ],
+ "conflicts": []
+ }
+ ]
+ }
+ },
+ "input": "data/corpus-v2/n5-s2-r3.json",
+ "input_sha256": "8bbbac614632276aae9cc270fa7477a191f2e1d0742c961db5457df28975a83b"
+ },
+ {
+ "problem": "Synthetic outage: unsupported late processing windows",
+ "feasible_count": 15,
+ "exact_objective": 3,
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": {
+ "singleton": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 18,
+ "fixed_variables": [],
+ "fixed_cost": 0,
+ "removals": [],
+ "infeasible_task": null,
+ "component_qubits": [
+ 18
+ ],
+ "max_component_qubits": 18,
+ "component_to_original": [
+ [
+ 0,
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 12,
+ 13,
+ 14,
+ 15,
+ 16,
+ 17
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 18,
+ "penalty": 35,
+ "objective_bound": 34,
+ "offset": 140,
+ "linear": [
+ -32,
+ -31,
+ -30,
+ -25,
+ -24,
+ -35,
+ -32,
+ -31,
+ -26,
+ -25,
+ -32,
+ -35,
+ -32,
+ -27,
+ -26,
+ -31,
+ -32,
+ -35
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 70
+ ],
+ [
+ 0,
+ 2,
+ 70
+ ],
+ [
+ 0,
+ 3,
+ 70
+ ],
+ [
+ 0,
+ 4,
+ 70
+ ],
+ [
+ 1,
+ 2,
+ 70
+ ],
+ [
+ 1,
+ 3,
+ 70
+ ],
+ [
+ 1,
+ 4,
+ 70
+ ],
+ [
+ 1,
+ 5,
+ 35
+ ],
+ [
+ 2,
+ 3,
+ 70
+ ],
+ [
+ 2,
+ 4,
+ 70
+ ],
+ [
+ 2,
+ 5,
+ 35
+ ],
+ [
+ 2,
+ 6,
+ 35
+ ],
+ [
+ 2,
+ 10,
+ 35
+ ],
+ [
+ 3,
+ 4,
+ 70
+ ],
+ [
+ 3,
+ 5,
+ 35
+ ],
+ [
+ 3,
+ 6,
+ 35
+ ],
+ [
+ 3,
+ 7,
+ 35
+ ],
+ [
+ 4,
+ 5,
+ 35
+ ],
+ [
+ 4,
+ 6,
+ 35
+ ],
+ [
+ 4,
+ 7,
+ 35
+ ],
+ [
+ 4,
+ 8,
+ 35
+ ],
+ [
+ 5,
+ 6,
+ 70
+ ],
+ [
+ 5,
+ 7,
+ 70
+ ],
+ [
+ 5,
+ 8,
+ 70
+ ],
+ [
+ 5,
+ 9,
+ 70
+ ],
+ [
+ 6,
+ 7,
+ 70
+ ],
+ [
+ 6,
+ 8,
+ 70
+ ],
+ [
+ 6,
+ 9,
+ 70
+ ],
+ [
+ 6,
+ 10,
+ 35
+ ],
+ [
+ 7,
+ 8,
+ 70
+ ],
+ [
+ 7,
+ 9,
+ 70
+ ],
+ [
+ 7,
+ 10,
+ 35
+ ],
+ [
+ 7,
+ 11,
+ 35
+ ],
+ [
+ 7,
+ 15,
+ 35
+ ],
+ [
+ 8,
+ 9,
+ 70
+ ],
+ [
+ 8,
+ 10,
+ 35
+ ],
+ [
+ 8,
+ 11,
+ 35
+ ],
+ [
+ 8,
+ 12,
+ 35
+ ],
+ [
+ 9,
+ 10,
+ 35
+ ],
+ [
+ 9,
+ 11,
+ 35
+ ],
+ [
+ 9,
+ 12,
+ 35
+ ],
+ [
+ 9,
+ 13,
+ 35
+ ],
+ [
+ 10,
+ 11,
+ 70
+ ],
+ [
+ 10,
+ 12,
+ 70
+ ],
+ [
+ 10,
+ 13,
+ 70
+ ],
+ [
+ 10,
+ 14,
+ 70
+ ],
+ [
+ 11,
+ 12,
+ 70
+ ],
+ [
+ 11,
+ 13,
+ 70
+ ],
+ [
+ 11,
+ 14,
+ 70
+ ],
+ [
+ 11,
+ 15,
+ 35
+ ],
+ [
+ 12,
+ 13,
+ 70
+ ],
+ [
+ 12,
+ 14,
+ 70
+ ],
+ [
+ 12,
+ 15,
+ 35
+ ],
+ [
+ 12,
+ 16,
+ 35
+ ],
+ [
+ 13,
+ 14,
+ 70
+ ],
+ [
+ 13,
+ 15,
+ 35
+ ],
+ [
+ 13,
+ 16,
+ 35
+ ],
+ [
+ 13,
+ 17,
+ 35
+ ],
+ [
+ 14,
+ 15,
+ 35
+ ],
+ [
+ 14,
+ 16,
+ 35
+ ],
+ [
+ 14,
+ 17,
+ 35
+ ],
+ [
+ 15,
+ 16,
+ 70
+ ],
+ [
+ 15,
+ 17,
+ 70
+ ],
+ [
+ 16,
+ 17,
+ 70
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2,
+ 3,
+ 4
+ ],
+ [
+ 5,
+ 6,
+ 7,
+ 8,
+ 9
+ ],
+ [
+ 10,
+ 11,
+ 12,
+ 13,
+ 14
+ ],
+ [
+ 15,
+ 16,
+ 17
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t0",
+ "resource": "oven",
+ "start": 1,
+ "cost": 3
+ },
+ {
+ "index": 1,
+ "task": "t0",
+ "resource": "oven",
+ "start": 2,
+ "cost": 4
+ },
+ {
+ "index": 2,
+ "task": "t0",
+ "resource": "oven",
+ "start": 3,
+ "cost": 5
+ },
+ {
+ "index": 3,
+ "task": "t0",
+ "resource": "oven",
+ "start": 8,
+ "cost": 10
+ },
+ {
+ "index": 4,
+ "task": "t0",
+ "resource": "oven",
+ "start": 9,
+ "cost": 11
+ },
+ {
+ "index": 5,
+ "task": "t1",
+ "resource": "oven",
+ "start": 2,
+ "cost": 0
+ },
+ {
+ "index": 6,
+ "task": "t1",
+ "resource": "oven",
+ "start": 3,
+ "cost": 3
+ },
+ {
+ "index": 7,
+ "task": "t1",
+ "resource": "oven",
+ "start": 4,
+ "cost": 4
+ },
+ {
+ "index": 8,
+ "task": "t1",
+ "resource": "oven",
+ "start": 9,
+ "cost": 9
+ },
+ {
+ "index": 9,
+ "task": "t1",
+ "resource": "oven",
+ "start": 10,
+ "cost": 10
+ },
+ {
+ "index": 10,
+ "task": "t2",
+ "resource": "oven",
+ "start": 3,
+ "cost": 3
+ },
+ {
+ "index": 11,
+ "task": "t2",
+ "resource": "oven",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "index": 12,
+ "task": "t2",
+ "resource": "oven",
+ "start": 5,
+ "cost": 3
+ },
+ {
+ "index": 13,
+ "task": "t2",
+ "resource": "oven",
+ "start": 10,
+ "cost": 8
+ },
+ {
+ "index": 14,
+ "task": "t2",
+ "resource": "oven",
+ "start": 11,
+ "cost": 9
+ },
+ {
+ "index": 15,
+ "task": "t3",
+ "resource": "oven",
+ "start": 4,
+ "cost": 4
+ },
+ {
+ "index": 16,
+ "task": "t3",
+ "resource": "oven",
+ "start": 5,
+ "cost": 3
+ },
+ {
+ "index": 17,
+ "task": "t3",
+ "resource": "oven",
+ "start": 6,
+ "cost": 0
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 1,
+ "j": 5,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 6,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 10,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 7,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 7,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 8,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 6,
+ "j": 10,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 7,
+ "j": 10,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 7,
+ "j": 11,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 7,
+ "j": 15,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 8,
+ "j": 10,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 8,
+ "j": 11,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 8,
+ "j": 12,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 9,
+ "j": 10,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 9,
+ "j": 11,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 9,
+ "j": 12,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 9,
+ "j": 13,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 11,
+ "j": 15,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 12,
+ "j": 15,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 12,
+ "j": 16,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 13,
+ "j": 15,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 13,
+ "j": 16,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 13,
+ "j": 17,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 14,
+ "j": 15,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 14,
+ "j": 16,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 14,
+ "j": 17,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ "arc": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 18,
+ "fixed_variables": [],
+ "fixed_cost": 0,
+ "removals": [
+ {
+ "variable": 13,
+ "rule": "no_support",
+ "against_task": "t3",
+ "blockers": [
+ {
+ "variable": 15,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 16,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 17,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 14,
+ "rule": "no_support",
+ "against_task": "t3",
+ "blockers": [
+ {
+ "variable": 15,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 16,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 17,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 8,
+ "rule": "no_support",
+ "against_task": "t2",
+ "blockers": [
+ {
+ "variable": 10,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 11,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 12,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 9,
+ "rule": "no_support",
+ "against_task": "t2",
+ "blockers": [
+ {
+ "variable": 10,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 11,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 12,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 3,
+ "rule": "no_support",
+ "against_task": "t1",
+ "blockers": [
+ {
+ "variable": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 7,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 4,
+ "rule": "no_support",
+ "against_task": "t1",
+ "blockers": [
+ {
+ "variable": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 7,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 12
+ ],
+ "max_component_qubits": 12,
+ "component_to_original": [
+ [
+ 0,
+ 1,
+ 2,
+ 5,
+ 6,
+ 7,
+ 10,
+ 11,
+ 12,
+ 15,
+ 16,
+ 17
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 12,
+ "penalty": 17,
+ "objective_bound": 16,
+ "offset": 68,
+ "linear": [
+ -14,
+ -13,
+ -12,
+ -17,
+ -14,
+ -13,
+ -14,
+ -17,
+ -14,
+ -13,
+ -14,
+ -17
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 34
+ ],
+ [
+ 0,
+ 2,
+ 34
+ ],
+ [
+ 1,
+ 2,
+ 34
+ ],
+ [
+ 1,
+ 3,
+ 17
+ ],
+ [
+ 2,
+ 3,
+ 17
+ ],
+ [
+ 2,
+ 4,
+ 17
+ ],
+ [
+ 2,
+ 6,
+ 17
+ ],
+ [
+ 3,
+ 4,
+ 34
+ ],
+ [
+ 3,
+ 5,
+ 34
+ ],
+ [
+ 4,
+ 5,
+ 34
+ ],
+ [
+ 4,
+ 6,
+ 17
+ ],
+ [
+ 5,
+ 6,
+ 17
+ ],
+ [
+ 5,
+ 7,
+ 17
+ ],
+ [
+ 5,
+ 9,
+ 17
+ ],
+ [
+ 6,
+ 7,
+ 34
+ ],
+ [
+ 6,
+ 8,
+ 34
+ ],
+ [
+ 7,
+ 8,
+ 34
+ ],
+ [
+ 7,
+ 9,
+ 17
+ ],
+ [
+ 8,
+ 9,
+ 17
+ ],
+ [
+ 8,
+ 10,
+ 17
+ ],
+ [
+ 9,
+ 10,
+ 34
+ ],
+ [
+ 9,
+ 11,
+ 34
+ ],
+ [
+ 10,
+ 11,
+ 34
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ],
+ [
+ 3,
+ 4,
+ 5
+ ],
+ [
+ 6,
+ 7,
+ 8
+ ],
+ [
+ 9,
+ 10,
+ 11
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t0",
+ "resource": "oven",
+ "start": 1,
+ "cost": 3
+ },
+ {
+ "index": 1,
+ "task": "t0",
+ "resource": "oven",
+ "start": 2,
+ "cost": 4
+ },
+ {
+ "index": 2,
+ "task": "t0",
+ "resource": "oven",
+ "start": 3,
+ "cost": 5
+ },
+ {
+ "index": 3,
+ "task": "t1",
+ "resource": "oven",
+ "start": 2,
+ "cost": 0
+ },
+ {
+ "index": 4,
+ "task": "t1",
+ "resource": "oven",
+ "start": 3,
+ "cost": 3
+ },
+ {
+ "index": 5,
+ "task": "t1",
+ "resource": "oven",
+ "start": 4,
+ "cost": 4
+ },
+ {
+ "index": 6,
+ "task": "t2",
+ "resource": "oven",
+ "start": 3,
+ "cost": 3
+ },
+ {
+ "index": 7,
+ "task": "t2",
+ "resource": "oven",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "index": 8,
+ "task": "t2",
+ "resource": "oven",
+ "start": 5,
+ "cost": 3
+ },
+ {
+ "index": 9,
+ "task": "t3",
+ "resource": "oven",
+ "start": 4,
+ "cost": 4
+ },
+ {
+ "index": 10,
+ "task": "t3",
+ "resource": "oven",
+ "start": 5,
+ "cost": 3
+ },
+ {
+ "index": 11,
+ "task": "t3",
+ "resource": "oven",
+ "start": 6,
+ "cost": 0
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 1,
+ "j": 3,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 3,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 4,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 6,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 6,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 5,
+ "j": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 5,
+ "j": 7,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 5,
+ "j": 9,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 7,
+ "j": 9,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 8,
+ "j": 9,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 8,
+ "j": 10,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "input": "data/support-chain.json",
+ "input_sha256": "52fb286e7db5ced9d558cda8655f9ea992b7f46e71afe2ce3362fb605c7277db"
+ }
+ ],
+ "boundary_original": {
+ "before_outage": {
+ "feasible": true,
+ "violations": [],
+ "violation_count": 0,
+ "objective": 0,
+ "preference_cost": 0,
+ "change_cost": 0,
+ "changed_tasks": 0,
+ "max_start_shift": 0,
+ "choices": [
+ 0,
+ 0,
+ 1,
+ 2
+ ],
+ "schedule": [
+ {
+ "task": "t0",
+ "resource": "oven",
+ "start": 0,
+ "end": 1
+ },
+ {
+ "task": "t1",
+ "resource": "oven",
+ "start": 2,
+ "end": 3
+ },
+ {
+ "task": "t2",
+ "resource": "oven",
+ "start": 4,
+ "end": 5
+ },
+ {
+ "task": "t3",
+ "resource": "oven",
+ "start": 6,
+ "end": 7
+ }
+ ]
+ },
+ "after_outage": {
+ "feasible": false,
+ "violations": [
+ {
+ "kind": "calendar",
+ "task": "t0"
+ }
+ ],
+ "violation_count": 1,
+ "objective": null,
+ "preference_cost": 0,
+ "change_cost": 0,
+ "changed_tasks": 0,
+ "max_start_shift": 0,
+ "choices": [
+ 0,
+ 0,
+ 1,
+ 2
+ ],
+ "schedule": [
+ {
+ "task": "t0",
+ "resource": "oven",
+ "start": 0,
+ "end": 1
+ },
+ {
+ "task": "t1",
+ "resource": "oven",
+ "start": 2,
+ "end": 3
+ },
+ {
+ "task": "t2",
+ "resource": "oven",
+ "start": 4,
+ "end": 5
+ },
+ {
+ "task": "t3",
+ "resource": "oven",
+ "start": 6,
+ "end": 7
+ }
+ ]
+ }
+ },
+ "boundary_default": {
+ "schema_version": 2,
+ "problem": "Synthetic outage: unsupported late processing windows",
+ "input_sha256": "52fb286e7db5ced9d558cda8655f9ea992b7f46e71afe2ce3362fb605c7277db",
+ "environment": {
+ "python": "3.12.3",
+ "platform": "Linux",
+ "pyqpanda3": "0.4.1",
+ "pyqpanda_alg": "2.0.0",
+ "numpy": "2.5.3",
+ "scipy": "1.18.1"
+ },
+ "model": {
+ "qubits": 18,
+ "penalty": 35,
+ "objective_bound": 34,
+ "offset": 140,
+ "linear": [
+ -32,
+ -31,
+ -30,
+ -25,
+ -24,
+ -35,
+ -32,
+ -31,
+ -26,
+ -25,
+ -32,
+ -35,
+ -32,
+ -27,
+ -26,
+ -31,
+ -32,
+ -35
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 70
+ ],
+ [
+ 0,
+ 2,
+ 70
+ ],
+ [
+ 0,
+ 3,
+ 70
+ ],
+ [
+ 0,
+ 4,
+ 70
+ ],
+ [
+ 1,
+ 2,
+ 70
+ ],
+ [
+ 1,
+ 3,
+ 70
+ ],
+ [
+ 1,
+ 4,
+ 70
+ ],
+ [
+ 1,
+ 5,
+ 35
+ ],
+ [
+ 2,
+ 3,
+ 70
+ ],
+ [
+ 2,
+ 4,
+ 70
+ ],
+ [
+ 2,
+ 5,
+ 35
+ ],
+ [
+ 2,
+ 6,
+ 35
+ ],
+ [
+ 2,
+ 10,
+ 35
+ ],
+ [
+ 3,
+ 4,
+ 70
+ ],
+ [
+ 3,
+ 5,
+ 35
+ ],
+ [
+ 3,
+ 6,
+ 35
+ ],
+ [
+ 3,
+ 7,
+ 35
+ ],
+ [
+ 4,
+ 5,
+ 35
+ ],
+ [
+ 4,
+ 6,
+ 35
+ ],
+ [
+ 4,
+ 7,
+ 35
+ ],
+ [
+ 4,
+ 8,
+ 35
+ ],
+ [
+ 5,
+ 6,
+ 70
+ ],
+ [
+ 5,
+ 7,
+ 70
+ ],
+ [
+ 5,
+ 8,
+ 70
+ ],
+ [
+ 5,
+ 9,
+ 70
+ ],
+ [
+ 6,
+ 7,
+ 70
+ ],
+ [
+ 6,
+ 8,
+ 70
+ ],
+ [
+ 6,
+ 9,
+ 70
+ ],
+ [
+ 6,
+ 10,
+ 35
+ ],
+ [
+ 7,
+ 8,
+ 70
+ ],
+ [
+ 7,
+ 9,
+ 70
+ ],
+ [
+ 7,
+ 10,
+ 35
+ ],
+ [
+ 7,
+ 11,
+ 35
+ ],
+ [
+ 7,
+ 15,
+ 35
+ ],
+ [
+ 8,
+ 9,
+ 70
+ ],
+ [
+ 8,
+ 10,
+ 35
+ ],
+ [
+ 8,
+ 11,
+ 35
+ ],
+ [
+ 8,
+ 12,
+ 35
+ ],
+ [
+ 9,
+ 10,
+ 35
+ ],
+ [
+ 9,
+ 11,
+ 35
+ ],
+ [
+ 9,
+ 12,
+ 35
+ ],
+ [
+ 9,
+ 13,
+ 35
+ ],
+ [
+ 10,
+ 11,
+ 70
+ ],
+ [
+ 10,
+ 12,
+ 70
+ ],
+ [
+ 10,
+ 13,
+ 70
+ ],
+ [
+ 10,
+ 14,
+ 70
+ ],
+ [
+ 11,
+ 12,
+ 70
+ ],
+ [
+ 11,
+ 13,
+ 70
+ ],
+ [
+ 11,
+ 14,
+ 70
+ ],
+ [
+ 11,
+ 15,
+ 35
+ ],
+ [
+ 12,
+ 13,
+ 70
+ ],
+ [
+ 12,
+ 14,
+ 70
+ ],
+ [
+ 12,
+ 15,
+ 35
+ ],
+ [
+ 12,
+ 16,
+ 35
+ ],
+ [
+ 13,
+ 14,
+ 70
+ ],
+ [
+ 13,
+ 15,
+ 35
+ ],
+ [
+ 13,
+ 16,
+ 35
+ ],
+ [
+ 13,
+ 17,
+ 35
+ ],
+ [
+ 14,
+ 15,
+ 35
+ ],
+ [
+ 14,
+ 16,
+ 35
+ ],
+ [
+ 14,
+ 17,
+ 35
+ ],
+ [
+ 15,
+ 16,
+ 70
+ ],
+ [
+ 15,
+ 17,
+ 70
+ ],
+ [
+ 16,
+ 17,
+ 70
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2,
+ 3,
+ 4
+ ],
+ [
+ 5,
+ 6,
+ 7,
+ 8,
+ 9
+ ],
+ [
+ 10,
+ 11,
+ 12,
+ 13,
+ 14
+ ],
+ [
+ 15,
+ 16,
+ 17
+ ]
+ ],
+ "pruned": [
+ {
+ "task": "t0",
+ "resource": "oven",
+ "start": 0,
+ "reasons": [
+ "downtime"
+ ]
+ }
+ ],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t0",
+ "resource": "oven",
+ "start": 1,
+ "cost": 3
+ },
+ {
+ "index": 1,
+ "task": "t0",
+ "resource": "oven",
+ "start": 2,
+ "cost": 4
+ },
+ {
+ "index": 2,
+ "task": "t0",
+ "resource": "oven",
+ "start": 3,
+ "cost": 5
+ },
+ {
+ "index": 3,
+ "task": "t0",
+ "resource": "oven",
+ "start": 8,
+ "cost": 10
+ },
+ {
+ "index": 4,
+ "task": "t0",
+ "resource": "oven",
+ "start": 9,
+ "cost": 11
+ },
+ {
+ "index": 5,
+ "task": "t1",
+ "resource": "oven",
+ "start": 2,
+ "cost": 0
+ },
+ {
+ "index": 6,
+ "task": "t1",
+ "resource": "oven",
+ "start": 3,
+ "cost": 3
+ },
+ {
+ "index": 7,
+ "task": "t1",
+ "resource": "oven",
+ "start": 4,
+ "cost": 4
+ },
+ {
+ "index": 8,
+ "task": "t1",
+ "resource": "oven",
+ "start": 9,
+ "cost": 9
+ },
+ {
+ "index": 9,
+ "task": "t1",
+ "resource": "oven",
+ "start": 10,
+ "cost": 10
+ },
+ {
+ "index": 10,
+ "task": "t2",
+ "resource": "oven",
+ "start": 3,
+ "cost": 3
+ },
+ {
+ "index": 11,
+ "task": "t2",
+ "resource": "oven",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "index": 12,
+ "task": "t2",
+ "resource": "oven",
+ "start": 5,
+ "cost": 3
+ },
+ {
+ "index": 13,
+ "task": "t2",
+ "resource": "oven",
+ "start": 10,
+ "cost": 8
+ },
+ {
+ "index": 14,
+ "task": "t2",
+ "resource": "oven",
+ "start": 11,
+ "cost": 9
+ },
+ {
+ "index": 15,
+ "task": "t3",
+ "resource": "oven",
+ "start": 4,
+ "cost": 4
+ },
+ {
+ "index": 16,
+ "task": "t3",
+ "resource": "oven",
+ "start": 5,
+ "cost": 3
+ },
+ {
+ "index": 17,
+ "task": "t3",
+ "resource": "oven",
+ "start": 6,
+ "cost": 0
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 1,
+ "j": 5,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 6,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 10,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 7,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 7,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 8,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 6,
+ "j": 10,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 7,
+ "j": 10,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 7,
+ "j": 11,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 7,
+ "j": 15,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 8,
+ "j": 10,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 8,
+ "j": 11,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 8,
+ "j": 12,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 9,
+ "j": 10,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 9,
+ "j": 11,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 9,
+ "j": 12,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 9,
+ "j": 13,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 11,
+ "j": 15,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 12,
+ "j": 15,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 12,
+ "j": 16,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 13,
+ "j": 15,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 13,
+ "j": 16,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 13,
+ "j": 17,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 14,
+ "j": 15,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 14,
+ "j": 16,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 14,
+ "j": 17,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ "quantum": {
+ "seed": 7,
+ "mixer": "xy",
+ "reduction": {
+ "method": "singleton propagation + disconnected conflict components",
+ "original_qubits": 18,
+ "fixed_variables": [],
+ "fixed_cost": 0,
+ "removals": [],
+ "infeasible_task": null,
+ "component_qubits": [
+ 18
+ ],
+ "max_component_qubits": 18,
+ "component_to_original": [
+ [
+ 0,
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 12,
+ 13,
+ 14,
+ 15,
+ 16,
+ 17
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 18,
+ "penalty": 35,
+ "objective_bound": 34,
+ "offset": 140,
+ "linear": [
+ -32,
+ -31,
+ -30,
+ -25,
+ -24,
+ -35,
+ -32,
+ -31,
+ -26,
+ -25,
+ -32,
+ -35,
+ -32,
+ -27,
+ -26,
+ -31,
+ -32,
+ -35
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 70
+ ],
+ [
+ 0,
+ 2,
+ 70
+ ],
+ [
+ 0,
+ 3,
+ 70
+ ],
+ [
+ 0,
+ 4,
+ 70
+ ],
+ [
+ 1,
+ 2,
+ 70
+ ],
+ [
+ 1,
+ 3,
+ 70
+ ],
+ [
+ 1,
+ 4,
+ 70
+ ],
+ [
+ 1,
+ 5,
+ 35
+ ],
+ [
+ 2,
+ 3,
+ 70
+ ],
+ [
+ 2,
+ 4,
+ 70
+ ],
+ [
+ 2,
+ 5,
+ 35
+ ],
+ [
+ 2,
+ 6,
+ 35
+ ],
+ [
+ 2,
+ 10,
+ 35
+ ],
+ [
+ 3,
+ 4,
+ 70
+ ],
+ [
+ 3,
+ 5,
+ 35
+ ],
+ [
+ 3,
+ 6,
+ 35
+ ],
+ [
+ 3,
+ 7,
+ 35
+ ],
+ [
+ 4,
+ 5,
+ 35
+ ],
+ [
+ 4,
+ 6,
+ 35
+ ],
+ [
+ 4,
+ 7,
+ 35
+ ],
+ [
+ 4,
+ 8,
+ 35
+ ],
+ [
+ 5,
+ 6,
+ 70
+ ],
+ [
+ 5,
+ 7,
+ 70
+ ],
+ [
+ 5,
+ 8,
+ 70
+ ],
+ [
+ 5,
+ 9,
+ 70
+ ],
+ [
+ 6,
+ 7,
+ 70
+ ],
+ [
+ 6,
+ 8,
+ 70
+ ],
+ [
+ 6,
+ 9,
+ 70
+ ],
+ [
+ 6,
+ 10,
+ 35
+ ],
+ [
+ 7,
+ 8,
+ 70
+ ],
+ [
+ 7,
+ 9,
+ 70
+ ],
+ [
+ 7,
+ 10,
+ 35
+ ],
+ [
+ 7,
+ 11,
+ 35
+ ],
+ [
+ 7,
+ 15,
+ 35
+ ],
+ [
+ 8,
+ 9,
+ 70
+ ],
+ [
+ 8,
+ 10,
+ 35
+ ],
+ [
+ 8,
+ 11,
+ 35
+ ],
+ [
+ 8,
+ 12,
+ 35
+ ],
+ [
+ 9,
+ 10,
+ 35
+ ],
+ [
+ 9,
+ 11,
+ 35
+ ],
+ [
+ 9,
+ 12,
+ 35
+ ],
+ [
+ 9,
+ 13,
+ 35
+ ],
+ [
+ 10,
+ 11,
+ 70
+ ],
+ [
+ 10,
+ 12,
+ 70
+ ],
+ [
+ 10,
+ 13,
+ 70
+ ],
+ [
+ 10,
+ 14,
+ 70
+ ],
+ [
+ 11,
+ 12,
+ 70
+ ],
+ [
+ 11,
+ 13,
+ 70
+ ],
+ [
+ 11,
+ 14,
+ 70
+ ],
+ [
+ 11,
+ 15,
+ 35
+ ],
+ [
+ 12,
+ 13,
+ 70
+ ],
+ [
+ 12,
+ 14,
+ 70
+ ],
+ [
+ 12,
+ 15,
+ 35
+ ],
+ [
+ 12,
+ 16,
+ 35
+ ],
+ [
+ 13,
+ 14,
+ 70
+ ],
+ [
+ 13,
+ 15,
+ 35
+ ],
+ [
+ 13,
+ 16,
+ 35
+ ],
+ [
+ 13,
+ 17,
+ 35
+ ],
+ [
+ 14,
+ 15,
+ 35
+ ],
+ [
+ 14,
+ 16,
+ 35
+ ],
+ [
+ 14,
+ 17,
+ 35
+ ],
+ [
+ 15,
+ 16,
+ 70
+ ],
+ [
+ 15,
+ 17,
+ 70
+ ],
+ [
+ 16,
+ 17,
+ 70
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2,
+ 3,
+ 4
+ ],
+ [
+ 5,
+ 6,
+ 7,
+ 8,
+ 9
+ ],
+ [
+ 10,
+ 11,
+ 12,
+ 13,
+ 14
+ ],
+ [
+ 15,
+ 16,
+ 17
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t0",
+ "resource": "oven",
+ "start": 1,
+ "cost": 3
+ },
+ {
+ "index": 1,
+ "task": "t0",
+ "resource": "oven",
+ "start": 2,
+ "cost": 4
+ },
+ {
+ "index": 2,
+ "task": "t0",
+ "resource": "oven",
+ "start": 3,
+ "cost": 5
+ },
+ {
+ "index": 3,
+ "task": "t0",
+ "resource": "oven",
+ "start": 8,
+ "cost": 10
+ },
+ {
+ "index": 4,
+ "task": "t0",
+ "resource": "oven",
+ "start": 9,
+ "cost": 11
+ },
+ {
+ "index": 5,
+ "task": "t1",
+ "resource": "oven",
+ "start": 2,
+ "cost": 0
+ },
+ {
+ "index": 6,
+ "task": "t1",
+ "resource": "oven",
+ "start": 3,
+ "cost": 3
+ },
+ {
+ "index": 7,
+ "task": "t1",
+ "resource": "oven",
+ "start": 4,
+ "cost": 4
+ },
+ {
+ "index": 8,
+ "task": "t1",
+ "resource": "oven",
+ "start": 9,
+ "cost": 9
+ },
+ {
+ "index": 9,
+ "task": "t1",
+ "resource": "oven",
+ "start": 10,
+ "cost": 10
+ },
+ {
+ "index": 10,
+ "task": "t2",
+ "resource": "oven",
+ "start": 3,
+ "cost": 3
+ },
+ {
+ "index": 11,
+ "task": "t2",
+ "resource": "oven",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "index": 12,
+ "task": "t2",
+ "resource": "oven",
+ "start": 5,
+ "cost": 3
+ },
+ {
+ "index": 13,
+ "task": "t2",
+ "resource": "oven",
+ "start": 10,
+ "cost": 8
+ },
+ {
+ "index": 14,
+ "task": "t2",
+ "resource": "oven",
+ "start": 11,
+ "cost": 9
+ },
+ {
+ "index": 15,
+ "task": "t3",
+ "resource": "oven",
+ "start": 4,
+ "cost": 4
+ },
+ {
+ "index": 16,
+ "task": "t3",
+ "resource": "oven",
+ "start": 5,
+ "cost": 3
+ },
+ {
+ "index": 17,
+ "task": "t3",
+ "resource": "oven",
+ "start": 6,
+ "cost": 0
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 1,
+ "j": 5,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 6,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 10,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 7,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 7,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 8,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 6,
+ "j": 10,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 7,
+ "j": 10,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 7,
+ "j": 11,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 7,
+ "j": 15,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 8,
+ "j": 10,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 8,
+ "j": 11,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 8,
+ "j": 12,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 9,
+ "j": 10,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 9,
+ "j": 11,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 9,
+ "j": 12,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 9,
+ "j": 13,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 11,
+ "j": 15,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 12,
+ "j": 15,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 12,
+ "j": 16,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 13,
+ "j": 15,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 13,
+ "j": 16,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 13,
+ "j": 17,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 14,
+ "j": 15,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 14,
+ "j": 16,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 14,
+ "j": 17,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ "best": null,
+ "components": [],
+ "circuit_evaluations": 0,
+ "status": "resource_limit",
+ "runtime_seconds": 0.00012515400885604322
+ },
+ "exact": {
+ "status": "optimal",
+ "best": {
+ "feasible": true,
+ "objective": 3,
+ "raw_cost": 3,
+ "violation_count": 0,
+ "violations": [],
+ "schedule": [
+ {
+ "variable": 0,
+ "task": "t0",
+ "group": "g0",
+ "resource": "oven",
+ "start": 1,
+ "end": 2,
+ "reserved_end": 2,
+ "changed": true
+ },
+ {
+ "variable": 5,
+ "task": "t1",
+ "group": "g1",
+ "resource": "oven",
+ "start": 2,
+ "end": 3,
+ "reserved_end": 3,
+ "changed": false
+ },
+ {
+ "variable": 11,
+ "task": "t2",
+ "group": "g2",
+ "resource": "oven",
+ "start": 4,
+ "end": 5,
+ "reserved_end": 5,
+ "changed": false
+ },
+ {
+ "variable": 17,
+ "task": "t3",
+ "group": "g3",
+ "resource": "oven",
+ "start": 6,
+ "end": 7,
+ "reserved_end": 7,
+ "changed": false
+ }
+ ],
+ "bits": [
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1
+ ],
+ "qubo_energy": 3
+ },
+ "combinations": 375,
+ "feasible_count": 15,
+ "runtime_seconds": 0.0035162140120519325
+ },
+ "milp": {
+ "variables": 19,
+ "best": {
+ "feasible": true,
+ "violations": [],
+ "violation_count": 0,
+ "objective": 3,
+ "preference_cost": 1,
+ "change_cost": 2,
+ "changed_tasks": 1,
+ "max_start_shift": 1,
+ "choices": [
+ 1,
+ 0,
+ 1,
+ 2
+ ],
+ "schedule": [
+ {
+ "task": "t0",
+ "resource": "oven",
+ "start": 1,
+ "end": 2
+ },
+ {
+ "task": "t1",
+ "resource": "oven",
+ "start": 2,
+ "end": 3
+ },
+ {
+ "task": "t2",
+ "resource": "oven",
+ "start": 4,
+ "end": 5
+ },
+ {
+ "task": "t3",
+ "resource": "oven",
+ "start": 6,
+ "end": 7
+ }
+ ]
+ },
+ "dual_bound": 3.0,
+ "gap": 0.0,
+ "status": "optimal",
+ "solver_status": 0,
+ "message": "Optimization terminated successfully. (HiGHS Status 7: Optimal)",
+ "constraints": 35,
+ "runtime_seconds": 0.0065573930041864514
+ },
+ "uniform_one_hot": {
+ "best": {
+ "feasible": true,
+ "objective": 3,
+ "raw_cost": 3,
+ "violation_count": 0,
+ "violations": [],
+ "schedule": [
+ {
+ "variable": 0,
+ "task": "t0",
+ "group": "g0",
+ "resource": "oven",
+ "start": 1,
+ "end": 2,
+ "reserved_end": 2,
+ "changed": true
+ },
+ {
+ "variable": 5,
+ "task": "t1",
+ "group": "g1",
+ "resource": "oven",
+ "start": 2,
+ "end": 3,
+ "reserved_end": 3,
+ "changed": false
+ },
+ {
+ "variable": 11,
+ "task": "t2",
+ "group": "g2",
+ "resource": "oven",
+ "start": 4,
+ "end": 5,
+ "reserved_end": 5,
+ "changed": false
+ },
+ {
+ "variable": 17,
+ "task": "t3",
+ "group": "g3",
+ "resource": "oven",
+ "start": 6,
+ "end": 7,
+ "reserved_end": 7,
+ "changed": false
+ }
+ ],
+ "bits": [
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1
+ ],
+ "qubo_energy": 3
+ },
+ "shots": 512,
+ "seed": 7,
+ "feasible_probability": 0.04,
+ "sampled_feasible_fraction": 0.046875,
+ "runtime_seconds": 0.012984729997697286
+ },
+ "absolute_gap": null,
+ "status": "resource_limit",
+ "runtime_seconds": 0.02708417599205859
+ },
+ "boundary_arc": [
+ {
+ "schema_version": 2,
+ "problem": "Synthetic outage: unsupported late processing windows",
+ "input_sha256": "52fb286e7db5ced9d558cda8655f9ea992b7f46e71afe2ce3362fb605c7277db",
+ "environment": {
+ "python": "3.12.3",
+ "platform": "Linux",
+ "pyqpanda3": "0.4.1",
+ "pyqpanda_alg": "2.0.0",
+ "numpy": "2.5.3",
+ "scipy": "1.18.1"
+ },
+ "model": {
+ "qubits": 18,
+ "penalty": 35,
+ "objective_bound": 34,
+ "offset": 140,
+ "linear": [
+ -32,
+ -31,
+ -30,
+ -25,
+ -24,
+ -35,
+ -32,
+ -31,
+ -26,
+ -25,
+ -32,
+ -35,
+ -32,
+ -27,
+ -26,
+ -31,
+ -32,
+ -35
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 70
+ ],
+ [
+ 0,
+ 2,
+ 70
+ ],
+ [
+ 0,
+ 3,
+ 70
+ ],
+ [
+ 0,
+ 4,
+ 70
+ ],
+ [
+ 1,
+ 2,
+ 70
+ ],
+ [
+ 1,
+ 3,
+ 70
+ ],
+ [
+ 1,
+ 4,
+ 70
+ ],
+ [
+ 1,
+ 5,
+ 35
+ ],
+ [
+ 2,
+ 3,
+ 70
+ ],
+ [
+ 2,
+ 4,
+ 70
+ ],
+ [
+ 2,
+ 5,
+ 35
+ ],
+ [
+ 2,
+ 6,
+ 35
+ ],
+ [
+ 2,
+ 10,
+ 35
+ ],
+ [
+ 3,
+ 4,
+ 70
+ ],
+ [
+ 3,
+ 5,
+ 35
+ ],
+ [
+ 3,
+ 6,
+ 35
+ ],
+ [
+ 3,
+ 7,
+ 35
+ ],
+ [
+ 4,
+ 5,
+ 35
+ ],
+ [
+ 4,
+ 6,
+ 35
+ ],
+ [
+ 4,
+ 7,
+ 35
+ ],
+ [
+ 4,
+ 8,
+ 35
+ ],
+ [
+ 5,
+ 6,
+ 70
+ ],
+ [
+ 5,
+ 7,
+ 70
+ ],
+ [
+ 5,
+ 8,
+ 70
+ ],
+ [
+ 5,
+ 9,
+ 70
+ ],
+ [
+ 6,
+ 7,
+ 70
+ ],
+ [
+ 6,
+ 8,
+ 70
+ ],
+ [
+ 6,
+ 9,
+ 70
+ ],
+ [
+ 6,
+ 10,
+ 35
+ ],
+ [
+ 7,
+ 8,
+ 70
+ ],
+ [
+ 7,
+ 9,
+ 70
+ ],
+ [
+ 7,
+ 10,
+ 35
+ ],
+ [
+ 7,
+ 11,
+ 35
+ ],
+ [
+ 7,
+ 15,
+ 35
+ ],
+ [
+ 8,
+ 9,
+ 70
+ ],
+ [
+ 8,
+ 10,
+ 35
+ ],
+ [
+ 8,
+ 11,
+ 35
+ ],
+ [
+ 8,
+ 12,
+ 35
+ ],
+ [
+ 9,
+ 10,
+ 35
+ ],
+ [
+ 9,
+ 11,
+ 35
+ ],
+ [
+ 9,
+ 12,
+ 35
+ ],
+ [
+ 9,
+ 13,
+ 35
+ ],
+ [
+ 10,
+ 11,
+ 70
+ ],
+ [
+ 10,
+ 12,
+ 70
+ ],
+ [
+ 10,
+ 13,
+ 70
+ ],
+ [
+ 10,
+ 14,
+ 70
+ ],
+ [
+ 11,
+ 12,
+ 70
+ ],
+ [
+ 11,
+ 13,
+ 70
+ ],
+ [
+ 11,
+ 14,
+ 70
+ ],
+ [
+ 11,
+ 15,
+ 35
+ ],
+ [
+ 12,
+ 13,
+ 70
+ ],
+ [
+ 12,
+ 14,
+ 70
+ ],
+ [
+ 12,
+ 15,
+ 35
+ ],
+ [
+ 12,
+ 16,
+ 35
+ ],
+ [
+ 13,
+ 14,
+ 70
+ ],
+ [
+ 13,
+ 15,
+ 35
+ ],
+ [
+ 13,
+ 16,
+ 35
+ ],
+ [
+ 13,
+ 17,
+ 35
+ ],
+ [
+ 14,
+ 15,
+ 35
+ ],
+ [
+ 14,
+ 16,
+ 35
+ ],
+ [
+ 14,
+ 17,
+ 35
+ ],
+ [
+ 15,
+ 16,
+ 70
+ ],
+ [
+ 15,
+ 17,
+ 70
+ ],
+ [
+ 16,
+ 17,
+ 70
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2,
+ 3,
+ 4
+ ],
+ [
+ 5,
+ 6,
+ 7,
+ 8,
+ 9
+ ],
+ [
+ 10,
+ 11,
+ 12,
+ 13,
+ 14
+ ],
+ [
+ 15,
+ 16,
+ 17
+ ]
+ ],
+ "pruned": [
+ {
+ "task": "t0",
+ "resource": "oven",
+ "start": 0,
+ "reasons": [
+ "downtime"
+ ]
+ }
+ ],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t0",
+ "resource": "oven",
+ "start": 1,
+ "cost": 3
+ },
+ {
+ "index": 1,
+ "task": "t0",
+ "resource": "oven",
+ "start": 2,
+ "cost": 4
+ },
+ {
+ "index": 2,
+ "task": "t0",
+ "resource": "oven",
+ "start": 3,
+ "cost": 5
+ },
+ {
+ "index": 3,
+ "task": "t0",
+ "resource": "oven",
+ "start": 8,
+ "cost": 10
+ },
+ {
+ "index": 4,
+ "task": "t0",
+ "resource": "oven",
+ "start": 9,
+ "cost": 11
+ },
+ {
+ "index": 5,
+ "task": "t1",
+ "resource": "oven",
+ "start": 2,
+ "cost": 0
+ },
+ {
+ "index": 6,
+ "task": "t1",
+ "resource": "oven",
+ "start": 3,
+ "cost": 3
+ },
+ {
+ "index": 7,
+ "task": "t1",
+ "resource": "oven",
+ "start": 4,
+ "cost": 4
+ },
+ {
+ "index": 8,
+ "task": "t1",
+ "resource": "oven",
+ "start": 9,
+ "cost": 9
+ },
+ {
+ "index": 9,
+ "task": "t1",
+ "resource": "oven",
+ "start": 10,
+ "cost": 10
+ },
+ {
+ "index": 10,
+ "task": "t2",
+ "resource": "oven",
+ "start": 3,
+ "cost": 3
+ },
+ {
+ "index": 11,
+ "task": "t2",
+ "resource": "oven",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "index": 12,
+ "task": "t2",
+ "resource": "oven",
+ "start": 5,
+ "cost": 3
+ },
+ {
+ "index": 13,
+ "task": "t2",
+ "resource": "oven",
+ "start": 10,
+ "cost": 8
+ },
+ {
+ "index": 14,
+ "task": "t2",
+ "resource": "oven",
+ "start": 11,
+ "cost": 9
+ },
+ {
+ "index": 15,
+ "task": "t3",
+ "resource": "oven",
+ "start": 4,
+ "cost": 4
+ },
+ {
+ "index": 16,
+ "task": "t3",
+ "resource": "oven",
+ "start": 5,
+ "cost": 3
+ },
+ {
+ "index": 17,
+ "task": "t3",
+ "resource": "oven",
+ "start": 6,
+ "cost": 0
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 1,
+ "j": 5,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 6,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 10,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 7,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 7,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 8,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 6,
+ "j": 10,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 7,
+ "j": 10,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 7,
+ "j": 11,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 7,
+ "j": 15,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 8,
+ "j": 10,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 8,
+ "j": 11,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 8,
+ "j": 12,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 9,
+ "j": 10,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 9,
+ "j": 11,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 9,
+ "j": 12,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 9,
+ "j": 13,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 11,
+ "j": 15,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 12,
+ "j": 15,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 12,
+ "j": 16,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 13,
+ "j": 15,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 13,
+ "j": 16,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 13,
+ "j": 17,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 14,
+ "j": 15,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 14,
+ "j": 16,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 14,
+ "j": 17,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ "quantum": {
+ "seed": 7,
+ "mixer": "xy",
+ "reduction": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 18,
+ "fixed_variables": [],
+ "fixed_cost": 0,
+ "removals": [
+ {
+ "variable": 13,
+ "rule": "no_support",
+ "against_task": "t3",
+ "blockers": [
+ {
+ "variable": 15,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 16,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 17,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 14,
+ "rule": "no_support",
+ "against_task": "t3",
+ "blockers": [
+ {
+ "variable": 15,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 16,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 17,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 8,
+ "rule": "no_support",
+ "against_task": "t2",
+ "blockers": [
+ {
+ "variable": 10,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 11,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 12,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 9,
+ "rule": "no_support",
+ "against_task": "t2",
+ "blockers": [
+ {
+ "variable": 10,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 11,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 12,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 3,
+ "rule": "no_support",
+ "against_task": "t1",
+ "blockers": [
+ {
+ "variable": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 7,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 4,
+ "rule": "no_support",
+ "against_task": "t1",
+ "blockers": [
+ {
+ "variable": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 7,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 12
+ ],
+ "max_component_qubits": 12,
+ "component_to_original": [
+ [
+ 0,
+ 1,
+ 2,
+ 5,
+ 6,
+ 7,
+ 10,
+ 11,
+ 12,
+ 15,
+ 16,
+ 17
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 12,
+ "penalty": 17,
+ "objective_bound": 16,
+ "offset": 68,
+ "linear": [
+ -14,
+ -13,
+ -12,
+ -17,
+ -14,
+ -13,
+ -14,
+ -17,
+ -14,
+ -13,
+ -14,
+ -17
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 34
+ ],
+ [
+ 0,
+ 2,
+ 34
+ ],
+ [
+ 1,
+ 2,
+ 34
+ ],
+ [
+ 1,
+ 3,
+ 17
+ ],
+ [
+ 2,
+ 3,
+ 17
+ ],
+ [
+ 2,
+ 4,
+ 17
+ ],
+ [
+ 2,
+ 6,
+ 17
+ ],
+ [
+ 3,
+ 4,
+ 34
+ ],
+ [
+ 3,
+ 5,
+ 34
+ ],
+ [
+ 4,
+ 5,
+ 34
+ ],
+ [
+ 4,
+ 6,
+ 17
+ ],
+ [
+ 5,
+ 6,
+ 17
+ ],
+ [
+ 5,
+ 7,
+ 17
+ ],
+ [
+ 5,
+ 9,
+ 17
+ ],
+ [
+ 6,
+ 7,
+ 34
+ ],
+ [
+ 6,
+ 8,
+ 34
+ ],
+ [
+ 7,
+ 8,
+ 34
+ ],
+ [
+ 7,
+ 9,
+ 17
+ ],
+ [
+ 8,
+ 9,
+ 17
+ ],
+ [
+ 8,
+ 10,
+ 17
+ ],
+ [
+ 9,
+ 10,
+ 34
+ ],
+ [
+ 9,
+ 11,
+ 34
+ ],
+ [
+ 10,
+ 11,
+ 34
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ],
+ [
+ 3,
+ 4,
+ 5
+ ],
+ [
+ 6,
+ 7,
+ 8
+ ],
+ [
+ 9,
+ 10,
+ 11
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t0",
+ "resource": "oven",
+ "start": 1,
+ "cost": 3
+ },
+ {
+ "index": 1,
+ "task": "t0",
+ "resource": "oven",
+ "start": 2,
+ "cost": 4
+ },
+ {
+ "index": 2,
+ "task": "t0",
+ "resource": "oven",
+ "start": 3,
+ "cost": 5
+ },
+ {
+ "index": 3,
+ "task": "t1",
+ "resource": "oven",
+ "start": 2,
+ "cost": 0
+ },
+ {
+ "index": 4,
+ "task": "t1",
+ "resource": "oven",
+ "start": 3,
+ "cost": 3
+ },
+ {
+ "index": 5,
+ "task": "t1",
+ "resource": "oven",
+ "start": 4,
+ "cost": 4
+ },
+ {
+ "index": 6,
+ "task": "t2",
+ "resource": "oven",
+ "start": 3,
+ "cost": 3
+ },
+ {
+ "index": 7,
+ "task": "t2",
+ "resource": "oven",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "index": 8,
+ "task": "t2",
+ "resource": "oven",
+ "start": 5,
+ "cost": 3
+ },
+ {
+ "index": 9,
+ "task": "t3",
+ "resource": "oven",
+ "start": 4,
+ "cost": 4
+ },
+ {
+ "index": 10,
+ "task": "t3",
+ "resource": "oven",
+ "start": 5,
+ "cost": 3
+ },
+ {
+ "index": 11,
+ "task": "t3",
+ "resource": "oven",
+ "start": 6,
+ "cost": 0
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 1,
+ "j": 3,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 3,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 4,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 6,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 6,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 5,
+ "j": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 5,
+ "j": 7,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 5,
+ "j": 9,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 7,
+ "j": 9,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 8,
+ "j": 9,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 8,
+ "j": 10,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ "best": {
+ "feasible": true,
+ "objective": 3,
+ "raw_cost": 3,
+ "violation_count": 0,
+ "violations": [],
+ "schedule": [
+ {
+ "variable": 0,
+ "task": "t0",
+ "group": "g0",
+ "resource": "oven",
+ "start": 1,
+ "end": 2,
+ "reserved_end": 2,
+ "changed": true
+ },
+ {
+ "variable": 5,
+ "task": "t1",
+ "group": "g1",
+ "resource": "oven",
+ "start": 2,
+ "end": 3,
+ "reserved_end": 3,
+ "changed": false
+ },
+ {
+ "variable": 11,
+ "task": "t2",
+ "group": "g2",
+ "resource": "oven",
+ "start": 4,
+ "end": 5,
+ "reserved_end": 5,
+ "changed": false
+ },
+ {
+ "variable": 17,
+ "task": "t3",
+ "group": "g3",
+ "resource": "oven",
+ "start": 6,
+ "end": 7,
+ "reserved_end": 7,
+ "changed": false
+ }
+ ],
+ "bits": [
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1
+ ],
+ "qubo_energy": 3
+ },
+ "components": [
+ {
+ "status": "feasible",
+ "best": {
+ "feasible": true,
+ "objective": 3,
+ "raw_cost": 3,
+ "violation_count": 0,
+ "violations": [],
+ "schedule": [
+ {
+ "variable": 0,
+ "task": "t0",
+ "group": "g0",
+ "resource": "oven",
+ "start": 1,
+ "end": 2,
+ "reserved_end": 2,
+ "changed": true
+ },
+ {
+ "variable": 3,
+ "task": "t1",
+ "group": "g1",
+ "resource": "oven",
+ "start": 2,
+ "end": 3,
+ "reserved_end": 3,
+ "changed": false
+ },
+ {
+ "variable": 7,
+ "task": "t2",
+ "group": "g2",
+ "resource": "oven",
+ "start": 4,
+ "end": 5,
+ "reserved_end": 5,
+ "changed": false
+ },
+ {
+ "variable": 11,
+ "task": "t3",
+ "group": "g3",
+ "resource": "oven",
+ "start": 6,
+ "end": 7,
+ "reserved_end": 7,
+ "changed": false
+ }
+ ],
+ "bits": [
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1
+ ],
+ "qubo_energy": 3
+ },
+ "seed": 1201125462,
+ "mixer": "xy",
+ "phase_mode": "auto",
+ "layers": 1,
+ "shots": 512,
+ "maxiter": 60,
+ "restarts": 2,
+ "parameters": [
+ 0.9457304732105951,
+ 1.1657770540860528
+ ],
+ "expected_energy": 28.665930651954792,
+ "initial_expected_energy": 31.199195520618353,
+ "history": [
+ 31.199195520618353,
+ 31.92687859759296,
+ 33.18193403400495,
+ 31.70318753847865,
+ 31.42120255898128,
+ 31.426509560584016,
+ 30.143008225769186,
+ 29.082189568588333,
+ 32.05965288665402,
+ 28.749309245366547,
+ 28.692628256588513,
+ 28.768171437122692,
+ 28.910117418607516,
+ 28.717642814902717,
+ 28.703799599387413,
+ 28.69428033752151,
+ 28.692829134756277,
+ 28.69038041495347,
+ 28.68885062333235,
+ 28.691106345697705,
+ 28.685817609996775,
+ 28.68472199702041,
+ 28.682010016456623,
+ 28.68033019479252,
+ 28.67808216061798,
+ 28.67528317139293,
+ 28.673878852877145,
+ 28.670112887697115,
+ 28.669055056344654,
+ 28.67871330922032,
+ 28.685583671172285,
+ 28.6694636399551,
+ 28.66660076148219,
+ 28.668412483991112,
+ 28.666388827729662,
+ 28.66659883116235,
+ 28.666365815278233,
+ 28.666337719528123,
+ 28.666305870939222,
+ 28.666296967667964,
+ 28.666252038783327,
+ 28.66622607770413,
+ 28.66619359370032,
+ 28.66613634964626,
+ 28.666161086071476,
+ 28.666159686006267,
+ 28.666127836729334,
+ 28.666149187463738,
+ 28.66614642914103,
+ 28.666111771849643,
+ 28.666152389153083,
+ 28.666097962067443,
+ 28.66608602333326,
+ 28.666071888287707,
+ 28.666047495092684,
+ 28.66603971887328,
+ 28.665999392582847,
+ 28.666056458576968,
+ 28.665990847185846,
+ 28.66602333813356,
+ 31.059449906576546,
+ 31.90796398901594,
+ 32.939467661538885,
+ 31.75608679074486,
+ 31.4241363050673,
+ 31.33495706023875,
+ 29.922311621480826,
+ 29.135647179367254,
+ 32.01371327954719,
+ 28.711359593679862,
+ 28.668503829588598,
+ 28.89790587009508,
+ 28.672355267792177,
+ 28.843516252381423,
+ 28.737769008233702,
+ 28.672048475992902,
+ 28.668518588306465,
+ 28.674313045795408,
+ 28.666791622466437,
+ 28.669267888366956,
+ 28.667062456668496,
+ 28.666758668114277,
+ 28.666651188419166,
+ 28.66665899053081,
+ 28.666610466831077,
+ 28.666557962531968,
+ 28.66645539359792,
+ 28.66628595405941,
+ 28.66611186653638,
+ 28.6666204467814,
+ 28.666709937176098,
+ 28.666083443838954,
+ 28.66603829470511,
+ 28.666067775260796,
+ 28.66607359749007,
+ 28.666029805662696,
+ 28.666036213502807,
+ 28.666027573030348,
+ 28.66602312828436,
+ 28.66601387046678,
+ 28.665997414732217,
+ 28.666011390382256,
+ 28.666011056318453,
+ 28.66599296604234,
+ 28.66600449320686,
+ 28.665991404593374,
+ 28.66598745661543,
+ 28.665983954335157,
+ 28.665983881122784,
+ 28.665978675425272,
+ 28.665971082833742,
+ 28.665962809095262,
+ 28.665952352422813,
+ 28.665948709343,
+ 28.665994603760442,
+ 28.665940447391545,
+ 28.665940275584028,
+ 28.66593721750408,
+ 28.665933278676974,
+ 28.665930651954792
+ ],
+ "feasible_probability": 0.21411717484913403,
+ "one_hot_probability": 1.0000000000000002,
+ "sampled_feasible_fraction": 0.23046875,
+ "counts": {
+ "001001001001": 5,
+ "001001001010": 1,
+ "001001001100": 3,
+ "001001010001": 2,
+ "001001100001": 1,
+ "001001100100": 1,
+ "001010010001": 2,
+ "001010010100": 1,
+ "001010100001": 2,
+ "001010100100": 1,
+ "001100001001": 14,
+ "001100001010": 6,
+ "001100001100": 19,
+ "001100010001": 7,
+ "001100010100": 2,
+ "001100100001": 9,
+ "001100100100": 7,
+ "010001001001": 5,
+ "010001001100": 1,
+ "010001010001": 2,
+ "010001010010": 1,
+ "010001010100": 4,
+ "010001100001": 12,
+ "010001100010": 2,
+ "010001100100": 9,
+ "010010001001": 1,
+ "010010001010": 2,
+ "010010001100": 3,
+ "010010010010": 3,
+ "010010010100": 10,
+ "010010100001": 7,
+ "010010100010": 1,
+ "010010100100": 24,
+ "010100001001": 20,
+ "010100001010": 9,
+ "010100001100": 27,
+ "010100010001": 2,
+ "010100010100": 4,
+ "010100100001": 38,
+ "010100100100": 38,
+ "100001001001": 15,
+ "100001001010": 1,
+ "100001001100": 1,
+ "100001010001": 2,
+ "100001010100": 1,
+ "100001100001": 13,
+ "100001100010": 2,
+ "100001100100": 11,
+ "100010001001": 2,
+ "100010001010": 7,
+ "100010001100": 7,
+ "100010010010": 1,
+ "100010100001": 7,
+ "100010100100": 8,
+ "100100001001": 22,
+ "100100001010": 3,
+ "100100001100": 35,
+ "100100010001": 1,
+ "100100010100": 2,
+ "100100100001": 38,
+ "100100100100": 25
+ },
+ "circuit_evaluations": 120,
+ "optimizer_runs": [
+ {
+ "success": false,
+ "message": "Return from COBYLA because the objective function has been evaluated MAXFUN times.",
+ "evaluations": 60
+ },
+ {
+ "success": false,
+ "message": "Return from COBYLA because the objective function has been evaluated MAXFUN times.",
+ "evaluations": 60
+ }
+ ],
+ "sampling": "seeded NumPy multinomial from CPUQVM Born probabilities",
+ "runtime_seconds": 0.30246770501253195
+ }
+ ],
+ "circuit_evaluations": 120,
+ "status": "feasible",
+ "feasible_probability": 0.21411717484913403,
+ "total_shots": 512,
+ "runtime_seconds": 0.3027898400032427,
+ "business_metrics": {
+ "feasible": true,
+ "violations": [],
+ "violation_count": 0,
+ "objective": 3,
+ "preference_cost": 1,
+ "change_cost": 2,
+ "changed_tasks": 1,
+ "max_start_shift": 1,
+ "choices": [
+ 1,
+ 0,
+ 1,
+ 2
+ ],
+ "schedule": [
+ {
+ "task": "t0",
+ "resource": "oven",
+ "start": 1,
+ "end": 2
+ },
+ {
+ "task": "t1",
+ "resource": "oven",
+ "start": 2,
+ "end": 3
+ },
+ {
+ "task": "t2",
+ "resource": "oven",
+ "start": 4,
+ "end": 5
+ },
+ {
+ "task": "t3",
+ "resource": "oven",
+ "start": 6,
+ "end": 7
+ }
+ ]
+ }
+ },
+ "exact": {
+ "status": "optimal",
+ "best": {
+ "feasible": true,
+ "objective": 3,
+ "raw_cost": 3,
+ "violation_count": 0,
+ "violations": [],
+ "schedule": [
+ {
+ "variable": 0,
+ "task": "t0",
+ "group": "g0",
+ "resource": "oven",
+ "start": 1,
+ "end": 2,
+ "reserved_end": 2,
+ "changed": true
+ },
+ {
+ "variable": 5,
+ "task": "t1",
+ "group": "g1",
+ "resource": "oven",
+ "start": 2,
+ "end": 3,
+ "reserved_end": 3,
+ "changed": false
+ },
+ {
+ "variable": 11,
+ "task": "t2",
+ "group": "g2",
+ "resource": "oven",
+ "start": 4,
+ "end": 5,
+ "reserved_end": 5,
+ "changed": false
+ },
+ {
+ "variable": 17,
+ "task": "t3",
+ "group": "g3",
+ "resource": "oven",
+ "start": 6,
+ "end": 7,
+ "reserved_end": 7,
+ "changed": false
+ }
+ ],
+ "bits": [
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1
+ ],
+ "qubo_energy": 3
+ },
+ "combinations": 375,
+ "feasible_count": 15,
+ "runtime_seconds": 0.0038646369939669967
+ },
+ "milp": {
+ "variables": 19,
+ "best": {
+ "feasible": true,
+ "violations": [],
+ "violation_count": 0,
+ "objective": 3,
+ "preference_cost": 1,
+ "change_cost": 2,
+ "changed_tasks": 1,
+ "max_start_shift": 1,
+ "choices": [
+ 1,
+ 0,
+ 1,
+ 2
+ ],
+ "schedule": [
+ {
+ "task": "t0",
+ "resource": "oven",
+ "start": 1,
+ "end": 2
+ },
+ {
+ "task": "t1",
+ "resource": "oven",
+ "start": 2,
+ "end": 3
+ },
+ {
+ "task": "t2",
+ "resource": "oven",
+ "start": 4,
+ "end": 5
+ },
+ {
+ "task": "t3",
+ "resource": "oven",
+ "start": 6,
+ "end": 7
+ }
+ ]
+ },
+ "dual_bound": 3.0,
+ "gap": 0.0,
+ "status": "optimal",
+ "solver_status": 0,
+ "message": "Optimization terminated successfully. (HiGHS Status 7: Optimal)",
+ "constraints": 35,
+ "runtime_seconds": 0.001796723998268135
+ },
+ "uniform_one_hot": {
+ "best": {
+ "feasible": true,
+ "objective": 3,
+ "raw_cost": 3,
+ "violation_count": 0,
+ "violations": [],
+ "schedule": [
+ {
+ "variable": 0,
+ "task": "t0",
+ "group": "g0",
+ "resource": "oven",
+ "start": 1,
+ "end": 2,
+ "reserved_end": 2,
+ "changed": true
+ },
+ {
+ "variable": 5,
+ "task": "t1",
+ "group": "g1",
+ "resource": "oven",
+ "start": 2,
+ "end": 3,
+ "reserved_end": 3,
+ "changed": false
+ },
+ {
+ "variable": 11,
+ "task": "t2",
+ "group": "g2",
+ "resource": "oven",
+ "start": 4,
+ "end": 5,
+ "reserved_end": 5,
+ "changed": false
+ },
+ {
+ "variable": 17,
+ "task": "t3",
+ "group": "g3",
+ "resource": "oven",
+ "start": 6,
+ "end": 7,
+ "reserved_end": 7,
+ "changed": false
+ }
+ ],
+ "bits": [
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1
+ ],
+ "qubo_energy": 3
+ },
+ "shots": 512,
+ "seed": 7,
+ "feasible_probability": 0.04,
+ "sampled_feasible_fraction": 0.046875,
+ "runtime_seconds": 0.011800191990914755
+ },
+ "absolute_gap": 0,
+ "status": "feasible",
+ "runtime_seconds": 0.3226172129943734
+ },
+ {
+ "schema_version": 2,
+ "problem": "Synthetic outage: unsupported late processing windows",
+ "input_sha256": "52fb286e7db5ced9d558cda8655f9ea992b7f46e71afe2ce3362fb605c7277db",
+ "environment": {
+ "python": "3.12.3",
+ "platform": "Linux",
+ "pyqpanda3": "0.4.1",
+ "pyqpanda_alg": "2.0.0",
+ "numpy": "2.5.3",
+ "scipy": "1.18.1"
+ },
+ "model": {
+ "qubits": 18,
+ "penalty": 35,
+ "objective_bound": 34,
+ "offset": 140,
+ "linear": [
+ -32,
+ -31,
+ -30,
+ -25,
+ -24,
+ -35,
+ -32,
+ -31,
+ -26,
+ -25,
+ -32,
+ -35,
+ -32,
+ -27,
+ -26,
+ -31,
+ -32,
+ -35
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 70
+ ],
+ [
+ 0,
+ 2,
+ 70
+ ],
+ [
+ 0,
+ 3,
+ 70
+ ],
+ [
+ 0,
+ 4,
+ 70
+ ],
+ [
+ 1,
+ 2,
+ 70
+ ],
+ [
+ 1,
+ 3,
+ 70
+ ],
+ [
+ 1,
+ 4,
+ 70
+ ],
+ [
+ 1,
+ 5,
+ 35
+ ],
+ [
+ 2,
+ 3,
+ 70
+ ],
+ [
+ 2,
+ 4,
+ 70
+ ],
+ [
+ 2,
+ 5,
+ 35
+ ],
+ [
+ 2,
+ 6,
+ 35
+ ],
+ [
+ 2,
+ 10,
+ 35
+ ],
+ [
+ 3,
+ 4,
+ 70
+ ],
+ [
+ 3,
+ 5,
+ 35
+ ],
+ [
+ 3,
+ 6,
+ 35
+ ],
+ [
+ 3,
+ 7,
+ 35
+ ],
+ [
+ 4,
+ 5,
+ 35
+ ],
+ [
+ 4,
+ 6,
+ 35
+ ],
+ [
+ 4,
+ 7,
+ 35
+ ],
+ [
+ 4,
+ 8,
+ 35
+ ],
+ [
+ 5,
+ 6,
+ 70
+ ],
+ [
+ 5,
+ 7,
+ 70
+ ],
+ [
+ 5,
+ 8,
+ 70
+ ],
+ [
+ 5,
+ 9,
+ 70
+ ],
+ [
+ 6,
+ 7,
+ 70
+ ],
+ [
+ 6,
+ 8,
+ 70
+ ],
+ [
+ 6,
+ 9,
+ 70
+ ],
+ [
+ 6,
+ 10,
+ 35
+ ],
+ [
+ 7,
+ 8,
+ 70
+ ],
+ [
+ 7,
+ 9,
+ 70
+ ],
+ [
+ 7,
+ 10,
+ 35
+ ],
+ [
+ 7,
+ 11,
+ 35
+ ],
+ [
+ 7,
+ 15,
+ 35
+ ],
+ [
+ 8,
+ 9,
+ 70
+ ],
+ [
+ 8,
+ 10,
+ 35
+ ],
+ [
+ 8,
+ 11,
+ 35
+ ],
+ [
+ 8,
+ 12,
+ 35
+ ],
+ [
+ 9,
+ 10,
+ 35
+ ],
+ [
+ 9,
+ 11,
+ 35
+ ],
+ [
+ 9,
+ 12,
+ 35
+ ],
+ [
+ 9,
+ 13,
+ 35
+ ],
+ [
+ 10,
+ 11,
+ 70
+ ],
+ [
+ 10,
+ 12,
+ 70
+ ],
+ [
+ 10,
+ 13,
+ 70
+ ],
+ [
+ 10,
+ 14,
+ 70
+ ],
+ [
+ 11,
+ 12,
+ 70
+ ],
+ [
+ 11,
+ 13,
+ 70
+ ],
+ [
+ 11,
+ 14,
+ 70
+ ],
+ [
+ 11,
+ 15,
+ 35
+ ],
+ [
+ 12,
+ 13,
+ 70
+ ],
+ [
+ 12,
+ 14,
+ 70
+ ],
+ [
+ 12,
+ 15,
+ 35
+ ],
+ [
+ 12,
+ 16,
+ 35
+ ],
+ [
+ 13,
+ 14,
+ 70
+ ],
+ [
+ 13,
+ 15,
+ 35
+ ],
+ [
+ 13,
+ 16,
+ 35
+ ],
+ [
+ 13,
+ 17,
+ 35
+ ],
+ [
+ 14,
+ 15,
+ 35
+ ],
+ [
+ 14,
+ 16,
+ 35
+ ],
+ [
+ 14,
+ 17,
+ 35
+ ],
+ [
+ 15,
+ 16,
+ 70
+ ],
+ [
+ 15,
+ 17,
+ 70
+ ],
+ [
+ 16,
+ 17,
+ 70
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2,
+ 3,
+ 4
+ ],
+ [
+ 5,
+ 6,
+ 7,
+ 8,
+ 9
+ ],
+ [
+ 10,
+ 11,
+ 12,
+ 13,
+ 14
+ ],
+ [
+ 15,
+ 16,
+ 17
+ ]
+ ],
+ "pruned": [
+ {
+ "task": "t0",
+ "resource": "oven",
+ "start": 0,
+ "reasons": [
+ "downtime"
+ ]
+ }
+ ],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t0",
+ "resource": "oven",
+ "start": 1,
+ "cost": 3
+ },
+ {
+ "index": 1,
+ "task": "t0",
+ "resource": "oven",
+ "start": 2,
+ "cost": 4
+ },
+ {
+ "index": 2,
+ "task": "t0",
+ "resource": "oven",
+ "start": 3,
+ "cost": 5
+ },
+ {
+ "index": 3,
+ "task": "t0",
+ "resource": "oven",
+ "start": 8,
+ "cost": 10
+ },
+ {
+ "index": 4,
+ "task": "t0",
+ "resource": "oven",
+ "start": 9,
+ "cost": 11
+ },
+ {
+ "index": 5,
+ "task": "t1",
+ "resource": "oven",
+ "start": 2,
+ "cost": 0
+ },
+ {
+ "index": 6,
+ "task": "t1",
+ "resource": "oven",
+ "start": 3,
+ "cost": 3
+ },
+ {
+ "index": 7,
+ "task": "t1",
+ "resource": "oven",
+ "start": 4,
+ "cost": 4
+ },
+ {
+ "index": 8,
+ "task": "t1",
+ "resource": "oven",
+ "start": 9,
+ "cost": 9
+ },
+ {
+ "index": 9,
+ "task": "t1",
+ "resource": "oven",
+ "start": 10,
+ "cost": 10
+ },
+ {
+ "index": 10,
+ "task": "t2",
+ "resource": "oven",
+ "start": 3,
+ "cost": 3
+ },
+ {
+ "index": 11,
+ "task": "t2",
+ "resource": "oven",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "index": 12,
+ "task": "t2",
+ "resource": "oven",
+ "start": 5,
+ "cost": 3
+ },
+ {
+ "index": 13,
+ "task": "t2",
+ "resource": "oven",
+ "start": 10,
+ "cost": 8
+ },
+ {
+ "index": 14,
+ "task": "t2",
+ "resource": "oven",
+ "start": 11,
+ "cost": 9
+ },
+ {
+ "index": 15,
+ "task": "t3",
+ "resource": "oven",
+ "start": 4,
+ "cost": 4
+ },
+ {
+ "index": 16,
+ "task": "t3",
+ "resource": "oven",
+ "start": 5,
+ "cost": 3
+ },
+ {
+ "index": 17,
+ "task": "t3",
+ "resource": "oven",
+ "start": 6,
+ "cost": 0
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 1,
+ "j": 5,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 6,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 10,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 7,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 7,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 8,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 6,
+ "j": 10,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 7,
+ "j": 10,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 7,
+ "j": 11,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 7,
+ "j": 15,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 8,
+ "j": 10,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 8,
+ "j": 11,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 8,
+ "j": 12,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 9,
+ "j": 10,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 9,
+ "j": 11,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 9,
+ "j": 12,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 9,
+ "j": 13,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 11,
+ "j": 15,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 12,
+ "j": 15,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 12,
+ "j": 16,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 13,
+ "j": 15,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 13,
+ "j": 16,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 13,
+ "j": 17,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 14,
+ "j": 15,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 14,
+ "j": 16,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 14,
+ "j": 17,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ "quantum": {
+ "seed": 19,
+ "mixer": "xy",
+ "reduction": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 18,
+ "fixed_variables": [],
+ "fixed_cost": 0,
+ "removals": [
+ {
+ "variable": 13,
+ "rule": "no_support",
+ "against_task": "t3",
+ "blockers": [
+ {
+ "variable": 15,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 16,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 17,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 14,
+ "rule": "no_support",
+ "against_task": "t3",
+ "blockers": [
+ {
+ "variable": 15,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 16,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 17,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 8,
+ "rule": "no_support",
+ "against_task": "t2",
+ "blockers": [
+ {
+ "variable": 10,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 11,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 12,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 9,
+ "rule": "no_support",
+ "against_task": "t2",
+ "blockers": [
+ {
+ "variable": 10,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 11,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 12,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 3,
+ "rule": "no_support",
+ "against_task": "t1",
+ "blockers": [
+ {
+ "variable": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 7,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 4,
+ "rule": "no_support",
+ "against_task": "t1",
+ "blockers": [
+ {
+ "variable": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 7,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 12
+ ],
+ "max_component_qubits": 12,
+ "component_to_original": [
+ [
+ 0,
+ 1,
+ 2,
+ 5,
+ 6,
+ 7,
+ 10,
+ 11,
+ 12,
+ 15,
+ 16,
+ 17
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 12,
+ "penalty": 17,
+ "objective_bound": 16,
+ "offset": 68,
+ "linear": [
+ -14,
+ -13,
+ -12,
+ -17,
+ -14,
+ -13,
+ -14,
+ -17,
+ -14,
+ -13,
+ -14,
+ -17
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 34
+ ],
+ [
+ 0,
+ 2,
+ 34
+ ],
+ [
+ 1,
+ 2,
+ 34
+ ],
+ [
+ 1,
+ 3,
+ 17
+ ],
+ [
+ 2,
+ 3,
+ 17
+ ],
+ [
+ 2,
+ 4,
+ 17
+ ],
+ [
+ 2,
+ 6,
+ 17
+ ],
+ [
+ 3,
+ 4,
+ 34
+ ],
+ [
+ 3,
+ 5,
+ 34
+ ],
+ [
+ 4,
+ 5,
+ 34
+ ],
+ [
+ 4,
+ 6,
+ 17
+ ],
+ [
+ 5,
+ 6,
+ 17
+ ],
+ [
+ 5,
+ 7,
+ 17
+ ],
+ [
+ 5,
+ 9,
+ 17
+ ],
+ [
+ 6,
+ 7,
+ 34
+ ],
+ [
+ 6,
+ 8,
+ 34
+ ],
+ [
+ 7,
+ 8,
+ 34
+ ],
+ [
+ 7,
+ 9,
+ 17
+ ],
+ [
+ 8,
+ 9,
+ 17
+ ],
+ [
+ 8,
+ 10,
+ 17
+ ],
+ [
+ 9,
+ 10,
+ 34
+ ],
+ [
+ 9,
+ 11,
+ 34
+ ],
+ [
+ 10,
+ 11,
+ 34
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ],
+ [
+ 3,
+ 4,
+ 5
+ ],
+ [
+ 6,
+ 7,
+ 8
+ ],
+ [
+ 9,
+ 10,
+ 11
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t0",
+ "resource": "oven",
+ "start": 1,
+ "cost": 3
+ },
+ {
+ "index": 1,
+ "task": "t0",
+ "resource": "oven",
+ "start": 2,
+ "cost": 4
+ },
+ {
+ "index": 2,
+ "task": "t0",
+ "resource": "oven",
+ "start": 3,
+ "cost": 5
+ },
+ {
+ "index": 3,
+ "task": "t1",
+ "resource": "oven",
+ "start": 2,
+ "cost": 0
+ },
+ {
+ "index": 4,
+ "task": "t1",
+ "resource": "oven",
+ "start": 3,
+ "cost": 3
+ },
+ {
+ "index": 5,
+ "task": "t1",
+ "resource": "oven",
+ "start": 4,
+ "cost": 4
+ },
+ {
+ "index": 6,
+ "task": "t2",
+ "resource": "oven",
+ "start": 3,
+ "cost": 3
+ },
+ {
+ "index": 7,
+ "task": "t2",
+ "resource": "oven",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "index": 8,
+ "task": "t2",
+ "resource": "oven",
+ "start": 5,
+ "cost": 3
+ },
+ {
+ "index": 9,
+ "task": "t3",
+ "resource": "oven",
+ "start": 4,
+ "cost": 4
+ },
+ {
+ "index": 10,
+ "task": "t3",
+ "resource": "oven",
+ "start": 5,
+ "cost": 3
+ },
+ {
+ "index": 11,
+ "task": "t3",
+ "resource": "oven",
+ "start": 6,
+ "cost": 0
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 1,
+ "j": 3,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 3,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 4,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 6,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 6,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 5,
+ "j": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 5,
+ "j": 7,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 5,
+ "j": 9,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 7,
+ "j": 9,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 8,
+ "j": 9,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 8,
+ "j": 10,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ "best": {
+ "feasible": true,
+ "objective": 3,
+ "raw_cost": 3,
+ "violation_count": 0,
+ "violations": [],
+ "schedule": [
+ {
+ "variable": 0,
+ "task": "t0",
+ "group": "g0",
+ "resource": "oven",
+ "start": 1,
+ "end": 2,
+ "reserved_end": 2,
+ "changed": true
+ },
+ {
+ "variable": 5,
+ "task": "t1",
+ "group": "g1",
+ "resource": "oven",
+ "start": 2,
+ "end": 3,
+ "reserved_end": 3,
+ "changed": false
+ },
+ {
+ "variable": 11,
+ "task": "t2",
+ "group": "g2",
+ "resource": "oven",
+ "start": 4,
+ "end": 5,
+ "reserved_end": 5,
+ "changed": false
+ },
+ {
+ "variable": 17,
+ "task": "t3",
+ "group": "g3",
+ "resource": "oven",
+ "start": 6,
+ "end": 7,
+ "reserved_end": 7,
+ "changed": false
+ }
+ ],
+ "bits": [
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1
+ ],
+ "qubo_energy": 3
+ },
+ "components": [
+ {
+ "status": "feasible",
+ "best": {
+ "feasible": true,
+ "objective": 3,
+ "raw_cost": 3,
+ "violation_count": 0,
+ "violations": [],
+ "schedule": [
+ {
+ "variable": 0,
+ "task": "t0",
+ "group": "g0",
+ "resource": "oven",
+ "start": 1,
+ "end": 2,
+ "reserved_end": 2,
+ "changed": true
+ },
+ {
+ "variable": 3,
+ "task": "t1",
+ "group": "g1",
+ "resource": "oven",
+ "start": 2,
+ "end": 3,
+ "reserved_end": 3,
+ "changed": false
+ },
+ {
+ "variable": 7,
+ "task": "t2",
+ "group": "g2",
+ "resource": "oven",
+ "start": 4,
+ "end": 5,
+ "reserved_end": 5,
+ "changed": false
+ },
+ {
+ "variable": 11,
+ "task": "t3",
+ "group": "g3",
+ "resource": "oven",
+ "start": 6,
+ "end": 7,
+ "reserved_end": 7,
+ "changed": false
+ }
+ ],
+ "bits": [
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1
+ ],
+ "qubo_energy": 3
+ },
+ "seed": 797913628,
+ "mixer": "xy",
+ "phase_mode": "auto",
+ "layers": 1,
+ "shots": 512,
+ "maxiter": 60,
+ "restarts": 2,
+ "parameters": [
+ -1.198910162768601,
+ 0.27074749270979265
+ ],
+ "expected_energy": 18.088131460290363,
+ "initial_expected_energy": 23.13069184142395,
+ "history": [
+ 23.13069184142395,
+ 21.756002483897504,
+ 35.32555398008631,
+ 33.54724916932065,
+ 20.024722521734127,
+ 33.95978997231533,
+ 19.255555434940714,
+ 19.547433929447777,
+ 19.63692575379047,
+ 18.83648762359214,
+ 18.706527417604143,
+ 19.24881203465416,
+ 18.587301309156206,
+ 18.52452681477309,
+ 18.435073117397113,
+ 18.321611984678885,
+ 18.30876665838116,
+ 18.199448705690948,
+ 18.20960135512061,
+ 18.293923801389603,
+ 18.21922858356782,
+ 18.189050509740294,
+ 18.17216285100425,
+ 18.172508070360482,
+ 18.164069784128795,
+ 18.161518663308215,
+ 18.17078843593632,
+ 18.15396321934996,
+ 18.147256261362415,
+ 18.13528775450864,
+ 18.125821069567177,
+ 18.111711425379852,
+ 18.1276526355589,
+ 18.14147211049645,
+ 18.104910859704393,
+ 18.100801833729037,
+ 18.099922321006186,
+ 18.096147411965276,
+ 18.097664224959427,
+ 18.09567615046892,
+ 18.09790023052399,
+ 18.094967899705907,
+ 18.09439593075354,
+ 18.093402600326275,
+ 18.09187488739348,
+ 18.090521805627482,
+ 18.089311047267046,
+ 18.09088198003203,
+ 18.09177571169635,
+ 18.089144148376946,
+ 18.090651037876455,
+ 18.088963402069744,
+ 18.08890392884237,
+ 18.089492282582942,
+ 18.088775691046717,
+ 18.08869277384072,
+ 18.08863209402962,
+ 18.088676410913678,
+ 18.088600709104384,
+ 18.0885845199425,
+ 26.062017819163955,
+ 30.622744082365042,
+ 31.151101565930098,
+ 29.149911307355794,
+ 30.136323813582177,
+ 27.800425824994306,
+ 26.12765335936224,
+ 25.8607706550584,
+ 26.30562328768994,
+ 25.68409244426744,
+ 25.530035145469903,
+ 25.230929374080873,
+ 24.635498293851676,
+ 23.461151764857682,
+ 20.70413827943414,
+ 40.89896300806835,
+ 28.606521762199975,
+ 20.11180147106731,
+ 26.851987257774237,
+ 20.010816942996208,
+ 19.57278032339607,
+ 18.91191038387711,
+ 18.786722859421285,
+ 18.35479780730621,
+ 19.90138281332272,
+ 18.234209240220483,
+ 18.25781477439797,
+ 18.193904441139647,
+ 18.194167597037275,
+ 18.237427177779086,
+ 18.136463521023142,
+ 18.121091620992587,
+ 18.146831623171828,
+ 18.121183314802582,
+ 18.11723878660204,
+ 18.117284047649598,
+ 18.119928070416414,
+ 18.117501021962372,
+ 18.116071838469693,
+ 18.113920356499474,
+ 18.1098378299063,
+ 18.104621018474646,
+ 18.100716405484448,
+ 18.09578770009415,
+ 18.093013264354187,
+ 18.179455120512017,
+ 18.09126637950162,
+ 18.097467064899938,
+ 18.092632548867904,
+ 18.088970194757657,
+ 18.0883129211039,
+ 18.089067447392726,
+ 18.08820936100254,
+ 18.08851582139171,
+ 18.088193746937392,
+ 18.088166825727477,
+ 18.088212230523382,
+ 18.08814789835458,
+ 18.088131460290363,
+ 18.088133940262335
+ ],
+ "feasible_probability": 0.5607649866188249,
+ "one_hot_probability": 0.9999999999999999,
+ "sampled_feasible_fraction": 0.548828125,
+ "counts": {
+ "001001001001": 16,
+ "001001001010": 4,
+ "001001001100": 3,
+ "001001010001": 1,
+ "001001010010": 6,
+ "001001100001": 1,
+ "001001100010": 1,
+ "001001100100": 1,
+ "001010001001": 6,
+ "001010001010": 5,
+ "001010001100": 10,
+ "001010010001": 1,
+ "001010010010": 6,
+ "001010100001": 2,
+ "001010100010": 3,
+ "001100001001": 2,
+ "001100001100": 2,
+ "001100010001": 7,
+ "001100010010": 8,
+ "001100010100": 5,
+ "010001001001": 15,
+ "010001001010": 4,
+ "010001001100": 1,
+ "010001010001": 6,
+ "010001010010": 6,
+ "010001010100": 1,
+ "010001100001": 8,
+ "010001100010": 6,
+ "010001100100": 1,
+ "010010001001": 15,
+ "010010001010": 8,
+ "010010001100": 9,
+ "010010010001": 30,
+ "010010010010": 35,
+ "010010100010": 6,
+ "010010100100": 3,
+ "010100001100": 5,
+ "010100010001": 6,
+ "010100010010": 2,
+ "010100010100": 1,
+ "010100100100": 1,
+ "100001001001": 3,
+ "100001001010": 1,
+ "100001001100": 3,
+ "100001010001": 8,
+ "100001010010": 2,
+ "100001010100": 1,
+ "100001100001": 7,
+ "100001100010": 6,
+ "100001100100": 1,
+ "100010001001": 32,
+ "100010001010": 11,
+ "100010001100": 16,
+ "100010010001": 21,
+ "100010010010": 46,
+ "100010010100": 2,
+ "100010100010": 12,
+ "100100001001": 1,
+ "100100001010": 5,
+ "100100001100": 6,
+ "100100010001": 16,
+ "100100010010": 16,
+ "100100010100": 2,
+ "100100100001": 2,
+ "100100100010": 24,
+ "100100100100": 9
+ },
+ "circuit_evaluations": 120,
+ "optimizer_runs": [
+ {
+ "success": false,
+ "message": "Return from COBYLA because the objective function has been evaluated MAXFUN times.",
+ "evaluations": 60
+ },
+ {
+ "success": false,
+ "message": "Return from COBYLA because the objective function has been evaluated MAXFUN times.",
+ "evaluations": 60
+ }
+ ],
+ "sampling": "seeded NumPy multinomial from CPUQVM Born probabilities",
+ "runtime_seconds": 0.31123428999853786
+ }
+ ],
+ "circuit_evaluations": 120,
+ "status": "feasible",
+ "feasible_probability": 0.5607649866188249,
+ "total_shots": 512,
+ "runtime_seconds": 0.31149696100328583,
+ "business_metrics": {
+ "feasible": true,
+ "violations": [],
+ "violation_count": 0,
+ "objective": 3,
+ "preference_cost": 1,
+ "change_cost": 2,
+ "changed_tasks": 1,
+ "max_start_shift": 1,
+ "choices": [
+ 1,
+ 0,
+ 1,
+ 2
+ ],
+ "schedule": [
+ {
+ "task": "t0",
+ "resource": "oven",
+ "start": 1,
+ "end": 2
+ },
+ {
+ "task": "t1",
+ "resource": "oven",
+ "start": 2,
+ "end": 3
+ },
+ {
+ "task": "t2",
+ "resource": "oven",
+ "start": 4,
+ "end": 5
+ },
+ {
+ "task": "t3",
+ "resource": "oven",
+ "start": 6,
+ "end": 7
+ }
+ ]
+ }
+ },
+ "exact": {
+ "status": "optimal",
+ "best": {
+ "feasible": true,
+ "objective": 3,
+ "raw_cost": 3,
+ "violation_count": 0,
+ "violations": [],
+ "schedule": [
+ {
+ "variable": 0,
+ "task": "t0",
+ "group": "g0",
+ "resource": "oven",
+ "start": 1,
+ "end": 2,
+ "reserved_end": 2,
+ "changed": true
+ },
+ {
+ "variable": 5,
+ "task": "t1",
+ "group": "g1",
+ "resource": "oven",
+ "start": 2,
+ "end": 3,
+ "reserved_end": 3,
+ "changed": false
+ },
+ {
+ "variable": 11,
+ "task": "t2",
+ "group": "g2",
+ "resource": "oven",
+ "start": 4,
+ "end": 5,
+ "reserved_end": 5,
+ "changed": false
+ },
+ {
+ "variable": 17,
+ "task": "t3",
+ "group": "g3",
+ "resource": "oven",
+ "start": 6,
+ "end": 7,
+ "reserved_end": 7,
+ "changed": false
+ }
+ ],
+ "bits": [
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1
+ ],
+ "qubo_energy": 3
+ },
+ "combinations": 375,
+ "feasible_count": 15,
+ "runtime_seconds": 0.003987684001913294
+ },
+ "milp": {
+ "variables": 19,
+ "best": {
+ "feasible": true,
+ "violations": [],
+ "violation_count": 0,
+ "objective": 3,
+ "preference_cost": 1,
+ "change_cost": 2,
+ "changed_tasks": 1,
+ "max_start_shift": 1,
+ "choices": [
+ 1,
+ 0,
+ 1,
+ 2
+ ],
+ "schedule": [
+ {
+ "task": "t0",
+ "resource": "oven",
+ "start": 1,
+ "end": 2
+ },
+ {
+ "task": "t1",
+ "resource": "oven",
+ "start": 2,
+ "end": 3
+ },
+ {
+ "task": "t2",
+ "resource": "oven",
+ "start": 4,
+ "end": 5
+ },
+ {
+ "task": "t3",
+ "resource": "oven",
+ "start": 6,
+ "end": 7
+ }
+ ]
+ },
+ "dual_bound": 3.0,
+ "gap": 0.0,
+ "status": "optimal",
+ "solver_status": 0,
+ "message": "Optimization terminated successfully. (HiGHS Status 7: Optimal)",
+ "constraints": 35,
+ "runtime_seconds": 0.0017253909900318831
+ },
+ "uniform_one_hot": {
+ "best": {
+ "feasible": true,
+ "objective": 6,
+ "raw_cost": 6,
+ "violation_count": 0,
+ "violations": [],
+ "schedule": [
+ {
+ "variable": 0,
+ "task": "t0",
+ "group": "g0",
+ "resource": "oven",
+ "start": 1,
+ "end": 2,
+ "reserved_end": 2,
+ "changed": true
+ },
+ {
+ "variable": 5,
+ "task": "t1",
+ "group": "g1",
+ "resource": "oven",
+ "start": 2,
+ "end": 3,
+ "reserved_end": 3,
+ "changed": false
+ },
+ {
+ "variable": 11,
+ "task": "t2",
+ "group": "g2",
+ "resource": "oven",
+ "start": 4,
+ "end": 5,
+ "reserved_end": 5,
+ "changed": false
+ },
+ {
+ "variable": 16,
+ "task": "t3",
+ "group": "g3",
+ "resource": "oven",
+ "start": 5,
+ "end": 6,
+ "reserved_end": 6,
+ "changed": true
+ }
+ ],
+ "bits": [
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0
+ ],
+ "qubo_energy": 6
+ },
+ "shots": 512,
+ "seed": 19,
+ "feasible_probability": 0.04,
+ "sampled_feasible_fraction": 0.037109375,
+ "runtime_seconds": 0.013181836999137886
+ },
+ "absolute_gap": 0,
+ "status": "feasible",
+ "runtime_seconds": 0.33418373299355153
+ },
+ {
+ "schema_version": 2,
+ "problem": "Synthetic outage: unsupported late processing windows",
+ "input_sha256": "52fb286e7db5ced9d558cda8655f9ea992b7f46e71afe2ce3362fb605c7277db",
+ "environment": {
+ "python": "3.12.3",
+ "platform": "Linux",
+ "pyqpanda3": "0.4.1",
+ "pyqpanda_alg": "2.0.0",
+ "numpy": "2.5.3",
+ "scipy": "1.18.1"
+ },
+ "model": {
+ "qubits": 18,
+ "penalty": 35,
+ "objective_bound": 34,
+ "offset": 140,
+ "linear": [
+ -32,
+ -31,
+ -30,
+ -25,
+ -24,
+ -35,
+ -32,
+ -31,
+ -26,
+ -25,
+ -32,
+ -35,
+ -32,
+ -27,
+ -26,
+ -31,
+ -32,
+ -35
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 70
+ ],
+ [
+ 0,
+ 2,
+ 70
+ ],
+ [
+ 0,
+ 3,
+ 70
+ ],
+ [
+ 0,
+ 4,
+ 70
+ ],
+ [
+ 1,
+ 2,
+ 70
+ ],
+ [
+ 1,
+ 3,
+ 70
+ ],
+ [
+ 1,
+ 4,
+ 70
+ ],
+ [
+ 1,
+ 5,
+ 35
+ ],
+ [
+ 2,
+ 3,
+ 70
+ ],
+ [
+ 2,
+ 4,
+ 70
+ ],
+ [
+ 2,
+ 5,
+ 35
+ ],
+ [
+ 2,
+ 6,
+ 35
+ ],
+ [
+ 2,
+ 10,
+ 35
+ ],
+ [
+ 3,
+ 4,
+ 70
+ ],
+ [
+ 3,
+ 5,
+ 35
+ ],
+ [
+ 3,
+ 6,
+ 35
+ ],
+ [
+ 3,
+ 7,
+ 35
+ ],
+ [
+ 4,
+ 5,
+ 35
+ ],
+ [
+ 4,
+ 6,
+ 35
+ ],
+ [
+ 4,
+ 7,
+ 35
+ ],
+ [
+ 4,
+ 8,
+ 35
+ ],
+ [
+ 5,
+ 6,
+ 70
+ ],
+ [
+ 5,
+ 7,
+ 70
+ ],
+ [
+ 5,
+ 8,
+ 70
+ ],
+ [
+ 5,
+ 9,
+ 70
+ ],
+ [
+ 6,
+ 7,
+ 70
+ ],
+ [
+ 6,
+ 8,
+ 70
+ ],
+ [
+ 6,
+ 9,
+ 70
+ ],
+ [
+ 6,
+ 10,
+ 35
+ ],
+ [
+ 7,
+ 8,
+ 70
+ ],
+ [
+ 7,
+ 9,
+ 70
+ ],
+ [
+ 7,
+ 10,
+ 35
+ ],
+ [
+ 7,
+ 11,
+ 35
+ ],
+ [
+ 7,
+ 15,
+ 35
+ ],
+ [
+ 8,
+ 9,
+ 70
+ ],
+ [
+ 8,
+ 10,
+ 35
+ ],
+ [
+ 8,
+ 11,
+ 35
+ ],
+ [
+ 8,
+ 12,
+ 35
+ ],
+ [
+ 9,
+ 10,
+ 35
+ ],
+ [
+ 9,
+ 11,
+ 35
+ ],
+ [
+ 9,
+ 12,
+ 35
+ ],
+ [
+ 9,
+ 13,
+ 35
+ ],
+ [
+ 10,
+ 11,
+ 70
+ ],
+ [
+ 10,
+ 12,
+ 70
+ ],
+ [
+ 10,
+ 13,
+ 70
+ ],
+ [
+ 10,
+ 14,
+ 70
+ ],
+ [
+ 11,
+ 12,
+ 70
+ ],
+ [
+ 11,
+ 13,
+ 70
+ ],
+ [
+ 11,
+ 14,
+ 70
+ ],
+ [
+ 11,
+ 15,
+ 35
+ ],
+ [
+ 12,
+ 13,
+ 70
+ ],
+ [
+ 12,
+ 14,
+ 70
+ ],
+ [
+ 12,
+ 15,
+ 35
+ ],
+ [
+ 12,
+ 16,
+ 35
+ ],
+ [
+ 13,
+ 14,
+ 70
+ ],
+ [
+ 13,
+ 15,
+ 35
+ ],
+ [
+ 13,
+ 16,
+ 35
+ ],
+ [
+ 13,
+ 17,
+ 35
+ ],
+ [
+ 14,
+ 15,
+ 35
+ ],
+ [
+ 14,
+ 16,
+ 35
+ ],
+ [
+ 14,
+ 17,
+ 35
+ ],
+ [
+ 15,
+ 16,
+ 70
+ ],
+ [
+ 15,
+ 17,
+ 70
+ ],
+ [
+ 16,
+ 17,
+ 70
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2,
+ 3,
+ 4
+ ],
+ [
+ 5,
+ 6,
+ 7,
+ 8,
+ 9
+ ],
+ [
+ 10,
+ 11,
+ 12,
+ 13,
+ 14
+ ],
+ [
+ 15,
+ 16,
+ 17
+ ]
+ ],
+ "pruned": [
+ {
+ "task": "t0",
+ "resource": "oven",
+ "start": 0,
+ "reasons": [
+ "downtime"
+ ]
+ }
+ ],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t0",
+ "resource": "oven",
+ "start": 1,
+ "cost": 3
+ },
+ {
+ "index": 1,
+ "task": "t0",
+ "resource": "oven",
+ "start": 2,
+ "cost": 4
+ },
+ {
+ "index": 2,
+ "task": "t0",
+ "resource": "oven",
+ "start": 3,
+ "cost": 5
+ },
+ {
+ "index": 3,
+ "task": "t0",
+ "resource": "oven",
+ "start": 8,
+ "cost": 10
+ },
+ {
+ "index": 4,
+ "task": "t0",
+ "resource": "oven",
+ "start": 9,
+ "cost": 11
+ },
+ {
+ "index": 5,
+ "task": "t1",
+ "resource": "oven",
+ "start": 2,
+ "cost": 0
+ },
+ {
+ "index": 6,
+ "task": "t1",
+ "resource": "oven",
+ "start": 3,
+ "cost": 3
+ },
+ {
+ "index": 7,
+ "task": "t1",
+ "resource": "oven",
+ "start": 4,
+ "cost": 4
+ },
+ {
+ "index": 8,
+ "task": "t1",
+ "resource": "oven",
+ "start": 9,
+ "cost": 9
+ },
+ {
+ "index": 9,
+ "task": "t1",
+ "resource": "oven",
+ "start": 10,
+ "cost": 10
+ },
+ {
+ "index": 10,
+ "task": "t2",
+ "resource": "oven",
+ "start": 3,
+ "cost": 3
+ },
+ {
+ "index": 11,
+ "task": "t2",
+ "resource": "oven",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "index": 12,
+ "task": "t2",
+ "resource": "oven",
+ "start": 5,
+ "cost": 3
+ },
+ {
+ "index": 13,
+ "task": "t2",
+ "resource": "oven",
+ "start": 10,
+ "cost": 8
+ },
+ {
+ "index": 14,
+ "task": "t2",
+ "resource": "oven",
+ "start": 11,
+ "cost": 9
+ },
+ {
+ "index": 15,
+ "task": "t3",
+ "resource": "oven",
+ "start": 4,
+ "cost": 4
+ },
+ {
+ "index": 16,
+ "task": "t3",
+ "resource": "oven",
+ "start": 5,
+ "cost": 3
+ },
+ {
+ "index": 17,
+ "task": "t3",
+ "resource": "oven",
+ "start": 6,
+ "cost": 0
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 1,
+ "j": 5,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 6,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 10,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 3,
+ "j": 7,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 7,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 8,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 6,
+ "j": 10,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 7,
+ "j": 10,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 7,
+ "j": 11,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 7,
+ "j": 15,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 8,
+ "j": 10,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 8,
+ "j": 11,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 8,
+ "j": 12,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 9,
+ "j": 10,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 9,
+ "j": 11,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 9,
+ "j": 12,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 9,
+ "j": 13,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 11,
+ "j": 15,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 12,
+ "j": 15,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 12,
+ "j": 16,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 13,
+ "j": 15,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 13,
+ "j": 16,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 13,
+ "j": 17,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 14,
+ "j": 15,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 14,
+ "j": 16,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 14,
+ "j": 17,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ "quantum": {
+ "seed": 42,
+ "mixer": "xy",
+ "reduction": {
+ "method": "arc consistency + singleton propagation + disconnected conflict components",
+ "original_qubits": 18,
+ "fixed_variables": [],
+ "fixed_cost": 0,
+ "removals": [
+ {
+ "variable": 13,
+ "rule": "no_support",
+ "against_task": "t3",
+ "blockers": [
+ {
+ "variable": 15,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 16,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 17,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 14,
+ "rule": "no_support",
+ "against_task": "t3",
+ "blockers": [
+ {
+ "variable": 15,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 16,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 17,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 8,
+ "rule": "no_support",
+ "against_task": "t2",
+ "blockers": [
+ {
+ "variable": 10,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 11,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 12,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 9,
+ "rule": "no_support",
+ "against_task": "t2",
+ "blockers": [
+ {
+ "variable": 10,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 11,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 12,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 3,
+ "rule": "no_support",
+ "against_task": "t1",
+ "blockers": [
+ {
+ "variable": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 7,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ },
+ {
+ "variable": 4,
+ "rule": "no_support",
+ "against_task": "t1",
+ "blockers": [
+ {
+ "variable": 5,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "variable": 7,
+ "reasons": [
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ],
+ "infeasible_task": null,
+ "component_qubits": [
+ 12
+ ],
+ "max_component_qubits": 12,
+ "component_to_original": [
+ [
+ 0,
+ 1,
+ 2,
+ 5,
+ 6,
+ 7,
+ 10,
+ 11,
+ 12,
+ 15,
+ 16,
+ 17
+ ]
+ ],
+ "components": [
+ {
+ "qubits": 12,
+ "penalty": 17,
+ "objective_bound": 16,
+ "offset": 68,
+ "linear": [
+ -14,
+ -13,
+ -12,
+ -17,
+ -14,
+ -13,
+ -14,
+ -17,
+ -14,
+ -13,
+ -14,
+ -17
+ ],
+ "quadratic": [
+ [
+ 0,
+ 1,
+ 34
+ ],
+ [
+ 0,
+ 2,
+ 34
+ ],
+ [
+ 1,
+ 2,
+ 34
+ ],
+ [
+ 1,
+ 3,
+ 17
+ ],
+ [
+ 2,
+ 3,
+ 17
+ ],
+ [
+ 2,
+ 4,
+ 17
+ ],
+ [
+ 2,
+ 6,
+ 17
+ ],
+ [
+ 3,
+ 4,
+ 34
+ ],
+ [
+ 3,
+ 5,
+ 34
+ ],
+ [
+ 4,
+ 5,
+ 34
+ ],
+ [
+ 4,
+ 6,
+ 17
+ ],
+ [
+ 5,
+ 6,
+ 17
+ ],
+ [
+ 5,
+ 7,
+ 17
+ ],
+ [
+ 5,
+ 9,
+ 17
+ ],
+ [
+ 6,
+ 7,
+ 34
+ ],
+ [
+ 6,
+ 8,
+ 34
+ ],
+ [
+ 7,
+ 8,
+ 34
+ ],
+ [
+ 7,
+ 9,
+ 17
+ ],
+ [
+ 8,
+ 9,
+ 17
+ ],
+ [
+ 8,
+ 10,
+ 17
+ ],
+ [
+ 9,
+ 10,
+ 34
+ ],
+ [
+ 9,
+ 11,
+ 34
+ ],
+ [
+ 10,
+ 11,
+ 34
+ ]
+ ],
+ "domains": [
+ [
+ 0,
+ 1,
+ 2
+ ],
+ [
+ 3,
+ 4,
+ 5
+ ],
+ [
+ 6,
+ 7,
+ 8
+ ],
+ [
+ 9,
+ 10,
+ 11
+ ]
+ ],
+ "pruned": [],
+ "variables": [
+ {
+ "index": 0,
+ "task": "t0",
+ "resource": "oven",
+ "start": 1,
+ "cost": 3
+ },
+ {
+ "index": 1,
+ "task": "t0",
+ "resource": "oven",
+ "start": 2,
+ "cost": 4
+ },
+ {
+ "index": 2,
+ "task": "t0",
+ "resource": "oven",
+ "start": 3,
+ "cost": 5
+ },
+ {
+ "index": 3,
+ "task": "t1",
+ "resource": "oven",
+ "start": 2,
+ "cost": 0
+ },
+ {
+ "index": 4,
+ "task": "t1",
+ "resource": "oven",
+ "start": 3,
+ "cost": 3
+ },
+ {
+ "index": 5,
+ "task": "t1",
+ "resource": "oven",
+ "start": 4,
+ "cost": 4
+ },
+ {
+ "index": 6,
+ "task": "t2",
+ "resource": "oven",
+ "start": 3,
+ "cost": 3
+ },
+ {
+ "index": 7,
+ "task": "t2",
+ "resource": "oven",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "index": 8,
+ "task": "t2",
+ "resource": "oven",
+ "start": 5,
+ "cost": 3
+ },
+ {
+ "index": 9,
+ "task": "t3",
+ "resource": "oven",
+ "start": 4,
+ "cost": 4
+ },
+ {
+ "index": 10,
+ "task": "t3",
+ "resource": "oven",
+ "start": 5,
+ "cost": 3
+ },
+ {
+ "index": 11,
+ "task": "t3",
+ "resource": "oven",
+ "start": 6,
+ "cost": 0
+ }
+ ],
+ "conflicts": [
+ {
+ "i": 1,
+ "j": 3,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 3,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 4,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 2,
+ "j": 6,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 4,
+ "j": 6,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 5,
+ "j": 6,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 5,
+ "j": 7,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 5,
+ "j": 9,
+ "reasons": [
+ "resource"
+ ]
+ },
+ {
+ "i": 7,
+ "j": 9,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ },
+ {
+ "i": 8,
+ "j": 9,
+ "reasons": [
+ "precedence"
+ ]
+ },
+ {
+ "i": 8,
+ "j": 10,
+ "reasons": [
+ "resource",
+ "precedence"
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ "best": {
+ "feasible": true,
+ "objective": 3,
+ "raw_cost": 3,
+ "violation_count": 0,
+ "violations": [],
+ "schedule": [
+ {
+ "variable": 0,
+ "task": "t0",
+ "group": "g0",
+ "resource": "oven",
+ "start": 1,
+ "end": 2,
+ "reserved_end": 2,
+ "changed": true
+ },
+ {
+ "variable": 5,
+ "task": "t1",
+ "group": "g1",
+ "resource": "oven",
+ "start": 2,
+ "end": 3,
+ "reserved_end": 3,
+ "changed": false
+ },
+ {
+ "variable": 11,
+ "task": "t2",
+ "group": "g2",
+ "resource": "oven",
+ "start": 4,
+ "end": 5,
+ "reserved_end": 5,
+ "changed": false
+ },
+ {
+ "variable": 17,
+ "task": "t3",
+ "group": "g3",
+ "resource": "oven",
+ "start": 6,
+ "end": 7,
+ "reserved_end": 7,
+ "changed": false
+ }
+ ],
+ "bits": [
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1
+ ],
+ "qubo_energy": 3
+ },
+ "components": [
+ {
+ "status": "feasible",
+ "best": {
+ "feasible": true,
+ "objective": 3,
+ "raw_cost": 3,
+ "violation_count": 0,
+ "violations": [],
+ "schedule": [
+ {
+ "variable": 0,
+ "task": "t0",
+ "group": "g0",
+ "resource": "oven",
+ "start": 1,
+ "end": 2,
+ "reserved_end": 2,
+ "changed": true
+ },
+ {
+ "variable": 3,
+ "task": "t1",
+ "group": "g1",
+ "resource": "oven",
+ "start": 2,
+ "end": 3,
+ "reserved_end": 3,
+ "changed": false
+ },
+ {
+ "variable": 7,
+ "task": "t2",
+ "group": "g2",
+ "resource": "oven",
+ "start": 4,
+ "end": 5,
+ "reserved_end": 5,
+ "changed": false
+ },
+ {
+ "variable": 11,
+ "task": "t3",
+ "group": "g3",
+ "resource": "oven",
+ "start": 6,
+ "end": 7,
+ "reserved_end": 7,
+ "changed": false
+ }
+ ],
+ "bits": [
+ 1,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 1
+ ],
+ "qubo_energy": 3
+ },
+ "seed": 2684470948,
+ "mixer": "xy",
+ "phase_mode": "auto",
+ "layers": 1,
+ "shots": 512,
+ "maxiter": 60,
+ "restarts": 2,
+ "parameters": [
+ 0.9367815599376159,
+ 1.165542042625894
+ ],
+ "expected_energy": 28.666319916639672,
+ "initial_expected_energy": 32.235052672720215,
+ "history": [
+ 32.235052672720215,
+ 32.03169511499712,
+ 31.30137653812309,
+ 33.27038047163027,
+ 29.334206317881517,
+ 31.41752595809026,
+ 31.441444927849133,
+ 29.484579432707466,
+ 28.831583425057246,
+ 30.265786810603288,
+ 28.980149518485966,
+ 29.015421010361806,
+ 28.750296653959133,
+ 28.811440284458964,
+ 28.832482530667765,
+ 28.743179678192504,
+ 28.72614320679154,
+ 28.73752068398339,
+ 28.7219343508405,
+ 28.722255749608664,
+ 28.718145226770808,
+ 28.716170913651112,
+ 28.721477798179023,
+ 28.71155007261443,
+ 28.708031942902164,
+ 28.700489681386127,
+ 28.687868756990994,
+ 28.7372681671117,
+ 28.72082481060651,
+ 28.691481165585525,
+ 28.68776348612745,
+ 28.693651039229515,
+ 28.684094466955766,
+ 28.68241703551145,
+ 28.679901215246744,
+ 28.675699448664346,
+ 28.673393674990137,
+ 28.67882443190545,
+ 28.692904607327485,
+ 28.67268176950852,
+ 28.66935763266048,
+ 28.66979012876571,
+ 28.66976332951292,
+ 28.669562646187924,
+ 28.66903871375919,
+ 28.668809433216424,
+ 28.668322073382623,
+ 28.667567124929125,
+ 28.67022411311944,
+ 28.670229057528843,
+ 28.667517710166827,
+ 28.667282094592327,
+ 28.666896268462345,
+ 28.666415103946683,
+ 28.66692009948879,
+ 28.66703512813721,
+ 28.66635553910478,
+ 28.66641804215683,
+ 28.666366765221866,
+ 28.666319916639672,
+ 31.4790245282721,
+ 31.451725016891565,
+ 32.15055898292852,
+ 31.31835383351135,
+ 32.782623003112086,
+ 33.54983293726316,
+ 31.694509909562726,
+ 30.874666689277298,
+ 31.1780152561657,
+ 30.9003779379958,
+ 30.86128499521174,
+ 30.968292839205915,
+ 30.852748231511896,
+ 30.848909820843105,
+ 30.844390167058044,
+ 30.835354663136783,
+ 30.816788816028076,
+ 30.775886230995077,
+ 30.92926074437905,
+ 31.0823325715807,
+ 30.873586076892146,
+ 30.777302851568805,
+ 30.77483282706578,
+ 30.7784630493425,
+ 30.772924302290072,
+ 30.769893272666803,
+ 30.76642479942121,
+ 30.762007890416353,
+ 30.757601965106176,
+ 30.74913817675955,
+ 30.731458827271297,
+ 30.702924158242773,
+ 31.055354120689284,
+ 31.089942425776613,
+ 30.69349106775234,
+ 30.70679771972687,
+ 30.70980579052934,
+ 30.683258831150777,
+ 30.686909020340664,
+ 30.69087481087046,
+ 30.683483466942384,
+ 30.680539098573412,
+ 30.676713607105913,
+ 30.66694438530627,
+ 30.648880309411634,
+ 30.60995200366525,
+ 30.558184410975137,
+ 30.589803231978898,
+ 31.063441740345347,
+ 30.59575969835759,
+ 30.504005013305168,
+ 30.53075870078893,
+ 30.528681007749043,
+ 30.50431514979376,
+ 30.495092166827497,
+ 30.483192931339268,
+ 30.463846797717483,
+ 30.442029846481795,
+ 30.3954559385314,
+ 30.478265089024738
+ ],
+ "feasible_probability": 0.21511691509386346,
+ "one_hot_probability": 1.0000000000000002,
+ "sampled_feasible_fraction": 0.236328125,
+ "counts": {
+ "001001001001": 5,
+ "001001001100": 2,
+ "001001010010": 1,
+ "001001100001": 2,
+ "001010001001": 3,
+ "001010001010": 1,
+ "001010100001": 2,
+ "001100001001": 16,
+ "001100001010": 7,
+ "001100001100": 21,
+ "001100010001": 2,
+ "001100010100": 4,
+ "001100100001": 18,
+ "001100100100": 4,
+ "010001001001": 5,
+ "010001001100": 2,
+ "010001010010": 1,
+ "010001010100": 4,
+ "010001100001": 11,
+ "010001100010": 1,
+ "010001100100": 10,
+ "010010001001": 1,
+ "010010001010": 2,
+ "010010001100": 4,
+ "010010010001": 2,
+ "010010010010": 2,
+ "010010010100": 7,
+ "010010100001": 17,
+ "010010100100": 14,
+ "010100001001": 18,
+ "010100001010": 2,
+ "010100001100": 21,
+ "010100010010": 1,
+ "010100010100": 6,
+ "010100100001": 39,
+ "010100100010": 1,
+ "010100100100": 31,
+ "100001001001": 17,
+ "100001001010": 2,
+ "100001001100": 3,
+ "100001010100": 1,
+ "100001100001": 19,
+ "100001100010": 1,
+ "100001100100": 17,
+ "100010001001": 3,
+ "100010001010": 2,
+ "100010001100": 13,
+ "100010010010": 1,
+ "100010010100": 2,
+ "100010100001": 3,
+ "100010100010": 1,
+ "100010100100": 11,
+ "100100001001": 25,
+ "100100001010": 8,
+ "100100001100": 31,
+ "100100010100": 2,
+ "100100100001": 26,
+ "100100100100": 34
+ },
+ "circuit_evaluations": 120,
+ "optimizer_runs": [
+ {
+ "success": false,
+ "message": "Return from COBYLA because the objective function has been evaluated MAXFUN times.",
+ "evaluations": 60
+ },
+ {
+ "success": false,
+ "message": "Return from COBYLA because the objective function has been evaluated MAXFUN times.",
+ "evaluations": 60
+ }
+ ],
+ "sampling": "seeded NumPy multinomial from CPUQVM Born probabilities",
+ "runtime_seconds": 0.3320892379997531
+ }
+ ],
+ "circuit_evaluations": 120,
+ "status": "feasible",
+ "feasible_probability": 0.21511691509386346,
+ "total_shots": 512,
+ "runtime_seconds": 0.3323814289906295,
+ "business_metrics": {
+ "feasible": true,
+ "violations": [],
+ "violation_count": 0,
+ "objective": 3,
+ "preference_cost": 1,
+ "change_cost": 2,
+ "changed_tasks": 1,
+ "max_start_shift": 1,
+ "choices": [
+ 1,
+ 0,
+ 1,
+ 2
+ ],
+ "schedule": [
+ {
+ "task": "t0",
+ "resource": "oven",
+ "start": 1,
+ "end": 2
+ },
+ {
+ "task": "t1",
+ "resource": "oven",
+ "start": 2,
+ "end": 3
+ },
+ {
+ "task": "t2",
+ "resource": "oven",
+ "start": 4,
+ "end": 5
+ },
+ {
+ "task": "t3",
+ "resource": "oven",
+ "start": 6,
+ "end": 7
+ }
+ ]
+ }
+ },
+ "exact": {
+ "status": "optimal",
+ "best": {
+ "feasible": true,
+ "objective": 3,
+ "raw_cost": 3,
+ "violation_count": 0,
+ "violations": [],
+ "schedule": [
+ {
+ "variable": 0,
+ "task": "t0",
+ "group": "g0",
+ "resource": "oven",
+ "start": 1,
+ "end": 2,
+ "reserved_end": 2,
+ "changed": true
+ },
+ {
+ "variable": 5,
+ "task": "t1",
+ "group": "g1",
+ "resource": "oven",
+ "start": 2,
+ "end": 3,
+ "reserved_end": 3,
+ "changed": false
+ },
+ {
+ "variable": 11,
+ "task": "t2",
+ "group": "g2",
+ "resource": "oven",
+ "start": 4,
+ "end": 5,
+ "reserved_end": 5,
+ "changed": false
+ },
+ {
+ "variable": 17,
+ "task": "t3",
+ "group": "g3",
+ "resource": "oven",
+ "start": 6,
+ "end": 7,
+ "reserved_end": 7,
+ "changed": false
+ }
+ ],
+ "bits": [
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1
+ ],
+ "qubo_energy": 3
+ },
+ "combinations": 375,
+ "feasible_count": 15,
+ "runtime_seconds": 0.004026622002129443
+ },
+ "milp": {
+ "variables": 19,
+ "best": {
+ "feasible": true,
+ "violations": [],
+ "violation_count": 0,
+ "objective": 3,
+ "preference_cost": 1,
+ "change_cost": 2,
+ "changed_tasks": 1,
+ "max_start_shift": 1,
+ "choices": [
+ 1,
+ 0,
+ 1,
+ 2
+ ],
+ "schedule": [
+ {
+ "task": "t0",
+ "resource": "oven",
+ "start": 1,
+ "end": 2
+ },
+ {
+ "task": "t1",
+ "resource": "oven",
+ "start": 2,
+ "end": 3
+ },
+ {
+ "task": "t2",
+ "resource": "oven",
+ "start": 4,
+ "end": 5
+ },
+ {
+ "task": "t3",
+ "resource": "oven",
+ "start": 6,
+ "end": 7
+ }
+ ]
+ },
+ "dual_bound": 3.0,
+ "gap": 0.0,
+ "status": "optimal",
+ "solver_status": 0,
+ "message": "Optimization terminated successfully. (HiGHS Status 7: Optimal)",
+ "constraints": 35,
+ "runtime_seconds": 0.0016573409957345575
+ },
+ "uniform_one_hot": {
+ "best": {
+ "feasible": true,
+ "objective": 3,
+ "raw_cost": 3,
+ "violation_count": 0,
+ "violations": [],
+ "schedule": [
+ {
+ "variable": 0,
+ "task": "t0",
+ "group": "g0",
+ "resource": "oven",
+ "start": 1,
+ "end": 2,
+ "reserved_end": 2,
+ "changed": true
+ },
+ {
+ "variable": 5,
+ "task": "t1",
+ "group": "g1",
+ "resource": "oven",
+ "start": 2,
+ "end": 3,
+ "reserved_end": 3,
+ "changed": false
+ },
+ {
+ "variable": 11,
+ "task": "t2",
+ "group": "g2",
+ "resource": "oven",
+ "start": 4,
+ "end": 5,
+ "reserved_end": 5,
+ "changed": false
+ },
+ {
+ "variable": 17,
+ "task": "t3",
+ "group": "g3",
+ "resource": "oven",
+ "start": 6,
+ "end": 7,
+ "reserved_end": 7,
+ "changed": false
+ }
+ ],
+ "bits": [
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1
+ ],
+ "qubo_energy": 3
+ },
+ "shots": 512,
+ "seed": 42,
+ "feasible_probability": 0.04,
+ "sampled_feasible_fraction": 0.0390625,
+ "runtime_seconds": 0.013554268007283099
+ },
+ "absolute_gap": 0,
+ "status": "feasible",
+ "runtime_seconds": 0.35457481400226243
+ }
+ ]
+}
diff --git a/Tutorials/LabScheduling/results/v2/SUMMARY.md b/Tutorials/LabScheduling/results/v2/SUMMARY.md
new file mode 100644
index 00000000..9fe56270
--- /dev/null
+++ b/Tutorials/LabScheduling/results/v2/SUMMARY.md
@@ -0,0 +1,44 @@
+# 第二批逐实例结果
+
+36 个实例 × 10 个种子,两条执行路径;不可行和纯经典传播均保留。
+
+原始模型只有候选计数,不虚构含无效候选的线路。分解前后预算不同,不能用命中数宣称公平胜率优势。
+
+| 实例 | 最优值 | 原始→日历→传播→最大组件候选 | CNOT 日历完整→组件完整→精简 | 直接/化简最优命中(各10) |
+|---|---|---|---|---|
+| n3-s0-r0.json | 10 | 9→8→7→7 | 35→35→17 | 10/10 |
+| n3-s0-r1.json | 19 | 9→8→5→3 | 39→17→9 | 10/10 |
+| n3-s0-r2.json | 10 | 9→8→7→7 | 39→39→21 | 10/10 |
+| n3-s0-r3.json | 14 | 9→8→5→3 | 37→17→9 | 10/10 |
+| n3-s1-r0.json | 25 | 9→7→0→0 | 36→0→0 | 10/10 |
+| n3-s1-r1.json | 10 | 9→6→3→3 | 23→12→6 | 10/10 |
+| n3-s1-r2.json | None | 9→5→None→None | None→None→None | 0/0 |
+| n3-s1-r3.json | None | 9→4→None→None | None→None→None | 0/0 |
+| n3-s2-r0.json | None | 9→8→None→None | 53→None→None | 0/0 |
+| n3-s2-r1.json | 7 | 9→8→7→7 | 49→49→31 | 10/10 |
+| n3-s2-r2.json | 27 | 9→8→0→0 | 49→0→0 | 10/10 |
+| n3-s2-r3.json | None | 9→8→None→None | 45→None→None | 0/0 |
+| n4-s0-r0.json | 22 | 11→10→7→7 | 50→30→20 | 10/10 |
+| n4-s0-r1.json | 18 | 11→10→4→2 | 52→10→6 | 10/10 |
+| n4-s0-r2.json | 4 | 11→10→7→5 | 46→24→14 | 9/10 |
+| n4-s0-r3.json | 10 | 11→10→8→5 | 44→33→19 | 9/10 |
+| n4-s1-r0.json | None | 11→7→None→None | None→None→None | 0/0 |
+| n4-s1-r1.json | None | 11→7→None→None | None→None→None | 0/0 |
+| n4-s1-r2.json | 18 | 11→9→8→8 | 43→43→27 | 10/10 |
+| n4-s1-r3.json | 15 | 11→7→4→2 | 19→10→6 | 10/10 |
+| n4-s2-r0.json | 7 | 11→10→8→8 | 52→43→27 | 10/10 |
+| n4-s2-r1.json | 3 | 11→10→9→9 | 62→62→42 | 10/10 |
+| n4-s2-r2.json | 32 | 11→10→7→7 | 60→34→24 | 10/10 |
+| n4-s2-r3.json | None | 11→10→None→None | 64→None→None | 0/0 |
+| n5-s0-r0.json | 17 | 14→13→9→5 | 62→29→17 | 9/10 |
+| n5-s0-r1.json | 11 | 14→13→12→9 | 54→54→28 | 10/10 |
+| n5-s0-r2.json | 13 | 14→13→11→6 | 58→49→27 | 10/10 |
+| n5-s0-r3.json | 3 | 14→13→12→9 | 64→64→38 | 10/10 |
+| n5-s1-r0.json | None | 14→12→None→None | 53→None→None | 0/0 |
+| n5-s1-r1.json | None | 14→10→None→None | None→None→None | 0/0 |
+| n5-s1-r2.json | 20 | 14→12→8→8 | 55→37→23 | 10/10 |
+| n5-s1-r3.json | None | 14→10→None→None | None→None→None | 0/0 |
+| n5-s2-r0.json | 4 | 14→13→12→12 | 72→72→46 | 10/10 |
+| n5-s2-r1.json | None | 14→13→None→None | 72→None→None | 0/0 |
+| n5-s2-r2.json | None | 14→13→None→None | 82→None→None | 0/0 |
+| n5-s2-r3.json | 44 | 14→13→7→7 | 74→34→24 | 10/10 |
diff --git a/Tutorials/LabScheduling/results/v2/aggregate.json b/Tutorials/LabScheduling/results/v2/aggregate.json
new file mode 100644
index 00000000..675a912a
--- /dev/null
+++ b/Tutorials/LabScheduling/results/v2/aggregate.json
@@ -0,0 +1,133 @@
+{
+ "instances": 36,
+ "feasible_instances": 24,
+ "paired_seed_records": 360,
+ "direct_statuses": {
+ "feasible": 240,
+ "infeasible_domain": 60,
+ "no_feasible_sample": 60
+ },
+ "reduced_statuses": {
+ "feasible": 220,
+ "classical_propagation": 20,
+ "infeasible_propagation": 120
+ },
+ "direct_quantum_executions": 300,
+ "reduced_quantum_executions": 220,
+ "reduced_component_trainings": 340,
+ "feasible_training_seeds": 240,
+ "seeds_better_than_uniform": 206,
+ "seeds_worse_than_uniform": 34,
+ "phase_max_error": 4.996003610813204e-16,
+ "cells": [
+ {
+ "tasks": 3,
+ "scenario": 0,
+ "instances": 4,
+ "feasible": 4,
+ "instance_mean_p_opt": 0.18786986403449024,
+ "instance_mean_uniform_p_opt": 0.08333333333333333,
+ "instance_mean_delta_range": [
+ 0.06413173407907789,
+ 0.18323327262836497
+ ]
+ },
+ {
+ "tasks": 3,
+ "scenario": 1,
+ "instances": 4,
+ "feasible": 2,
+ "instance_mean_p_opt": 0.3448381601987412,
+ "instance_mean_uniform_p_opt": 0.1875,
+ "instance_mean_delta_range": [
+ 0.09887757618912868,
+ 0.2157987442083537
+ ]
+ },
+ {
+ "tasks": 3,
+ "scenario": 2,
+ "instances": 4,
+ "feasible": 2,
+ "instance_mean_p_opt": 0.17274474138797985,
+ "instance_mean_uniform_p_opt": 0.08333333333333333,
+ "instance_mean_delta_range": [
+ 0.05719447681395938,
+ 0.12162833929533369
+ ]
+ },
+ {
+ "tasks": 4,
+ "scenario": 0,
+ "instances": 4,
+ "feasible": 4,
+ "instance_mean_p_opt": 0.06493803014908012,
+ "instance_mean_uniform_p_opt": 0.041666666666666664,
+ "instance_mean_delta_range": [
+ -0.007502533321192738,
+ 0.06361773930346004
+ ]
+ },
+ {
+ "tasks": 4,
+ "scenario": 1,
+ "instances": 4,
+ "feasible": 2,
+ "instance_mean_p_opt": 0.20110470241254325,
+ "instance_mean_uniform_p_opt": 0.11458333333333333,
+ "instance_mean_delta_range": [
+ 0.05347529302208902,
+ 0.1195674451363308
+ ]
+ },
+ {
+ "tasks": 4,
+ "scenario": 2,
+ "instances": 4,
+ "feasible": 3,
+ "instance_mean_p_opt": 0.15728182023404488,
+ "instance_mean_uniform_p_opt": 0.05555555555555555,
+ "instance_mean_delta_range": [
+ 0.06131367761263367,
+ 0.12301993361808973
+ ]
+ },
+ {
+ "tasks": 5,
+ "scenario": 0,
+ "instances": 4,
+ "feasible": 4,
+ "instance_mean_p_opt": 0.03643322626910944,
+ "instance_mean_uniform_p_opt": 0.013888888888888888,
+ "instance_mean_delta_range": [
+ 0.0015993116588795837,
+ 0.04438090186202739
+ ]
+ },
+ {
+ "tasks": 5,
+ "scenario": 1,
+ "instances": 4,
+ "feasible": 1,
+ "instance_mean_p_opt": 0.08914420177005611,
+ "instance_mean_uniform_p_opt": 0.020833333333333332,
+ "instance_mean_delta_range": [
+ 0.06831086843672278,
+ 0.06831086843672278
+ ]
+ },
+ {
+ "tasks": 5,
+ "scenario": 2,
+ "instances": 4,
+ "feasible": 2,
+ "instance_mean_p_opt": 0.09263376497535755,
+ "instance_mean_uniform_p_opt": 0.013888888888888888,
+ "instance_mean_delta_range": [
+ 0.03388222584343676,
+ 0.12360752632950056
+ ]
+ }
+ ],
+ "scope": "synthetic instances; seed means within instance; unequal component budgets; no speedup claim"
+}
diff --git a/Tutorials/LabScheduling/results/v2/execution.json b/Tutorials/LabScheduling/results/v2/execution.json
new file mode 100644
index 00000000..96a11598
--- /dev/null
+++ b/Tutorials/LabScheduling/results/v2/execution.json
@@ -0,0 +1,5 @@
+{
+ "instances": 36,
+ "paired_seed_records": 360,
+ "runtime_seconds": 97.70505226500973
+}
diff --git a/Tutorials/LabScheduling/results/v2/instances.jsonl b/Tutorials/LabScheduling/results/v2/instances.jsonl
new file mode 100644
index 00000000..271fb351
--- /dev/null
+++ b/Tutorials/LabScheduling/results/v2/instances.jsonl
@@ -0,0 +1,36 @@
+{"input":{"file":"n3-s0-r0.json","tasks":3,"scenario":0,"replicate":0,"data_seed":2026092600,"sha256":"480cb064b75a4ab276c0b40efe62867858b857455db58e9958a5f85325d7a250"},"model":{"qubits":8,"penalty":28,"objective_bound":27,"offset":84,"linear":[-18,-28,-21,-21,-28,-19,-24,-18],"quadratic":[[1,2,56],[1,3,56],[2,3,56],[3,4,28],[4,5,56],[4,6,56],[4,7,56],[5,6,56],[5,7,56],[6,7,56]],"domains":[[0],[1,2,3],[4,5,6,7]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r2","start":4,"cost":10},{"index":1,"task":"t1","resource":"r1","start":5,"cost":0},{"index":2,"task":"t1","resource":"r0","start":6,"cost":7},{"index":3,"task":"t1","resource":"r2","start":8,"cost":7},{"index":4,"task":"t2","resource":"r2","start":8,"cost":0},{"index":5,"task":"t2","resource":"r2","start":13,"cost":9},{"index":6,"task":"t2","resource":"r1","start":9,"cost":4},{"index":7,"task":"t2","resource":"r0","start":14,"cost":10}],"conflicts":[{"i":3,"j":4,"reasons":["resource"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":9,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[8],"total_qubits":8,"max_component_qubits":8,"cnot":35,"cry":5,"serial_depth_sum":42,"max_component_depth":42,"circuit_status":"constructed"},"propagation_full_phase":{"component_qubits":[7],"total_qubits":7,"max_component_qubits":7,"cnot":35,"cry":5,"serial_depth_sum":42,"max_component_depth":42,"circuit_status":"constructed"},"components_full_phase":{"component_qubits":[7],"total_qubits":7,"max_component_qubits":7,"cnot":35,"cry":5,"serial_depth_sum":42,"max_component_depth":42,"circuit_status":"constructed"},"components_auto_phase":{"component_qubits":[7],"total_qubits":7,"max_component_qubits":7,"cnot":17,"cry":5,"serial_depth_sum":25,"max_component_depth":25,"circuit_status":"constructed"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":18,"objective_bound":17,"offset":36,"linear":[-18,-11,-11,-18,-9,-14,-8],"quadratic":[[0,1,36],[0,2,36],[1,2,36],[2,3,18],[3,4,36],[3,5,36],[3,6,36],[4,5,36],[4,6,36],[5,6,36]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r0","start":6,"cost":7},{"index":2,"task":"t1","resource":"r2","start":8,"cost":7},{"index":3,"task":"t2","resource":"r2","start":8,"cost":0},{"index":4,"task":"t2","resource":"r2","start":13,"cost":9},{"index":5,"task":"t2","resource":"r1","start":9,"cost":4},{"index":6,"task":"t2","resource":"r0","start":14,"cost":10}],"conflicts":[{"i":2,"j":3,"reasons":["resource"]}]}]},"feasible_count":11,"exact_objective":10,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":2.4394001229666173e-05,"reduction_seconds":4.1642997530288994e-05,"proof_seconds":0.0005008779990021139,"resource_audit_seconds":0.0031521780038019642},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":10,"preference_cost":7,"change_cost":3,"changed_tasks":1,"max_start_shift":4,"choices":[1,0,0],"schedule":[{"task":"t0","resource":"r2","start":4,"end":7},{"task":"t1","resource":"r1","start":5,"end":8},{"task":"t2","resource":"r2","start":8,"end":11}]},"dual_bound":10.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":4,"runtime_seconds":0.0033687499962979928},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":3},{"task":"t1","resource":"r1","start":5,"end":8},{"task":"t2","resource":"r2","start":8,"end":11}]}}
+{"input":{"file":"n3-s0-r1.json","tasks":3,"scenario":0,"replicate":1,"data_seed":2026092601,"sha256":"7bde9f6a7e91f5cf1c50260bd0205f601de5e61e9b34fa903b75cce5f58421ff"},"model":{"qubits":8,"penalty":27,"objective_bound":26,"offset":81,"linear":[-17,-27,-23,-22,-27,-16,-18,-21],"quadratic":[[0,4,27],[0,7,27],[1,2,54],[1,3,54],[1,7,27],[2,3,54],[4,5,54],[4,6,54],[4,7,54],[5,6,54],[5,7,54],[6,7,54]],"domains":[[0],[1,2,3],[4,5,6,7]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":6,"cost":10},{"index":1,"task":"t1","resource":"r1","start":3,"cost":0},{"index":2,"task":"t1","resource":"r0","start":3,"cost":4},{"index":3,"task":"t1","resource":"r0","start":1,"cost":5},{"index":4,"task":"t2","resource":"r2","start":6,"cost":0},{"index":5,"task":"t2","resource":"r0","start":11,"cost":11},{"index":6,"task":"t2","resource":"r0","start":10,"cost":9},{"index":7,"task":"t2","resource":"r1","start":4,"cost":6}],"conflicts":[{"i":0,"j":4,"reasons":["group"]},{"i":0,"j":7,"reasons":["resource"]},{"i":1,"j":7,"reasons":["resource"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":9,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[8],"total_qubits":8,"max_component_qubits":8,"cnot":39,"cry":5,"serial_depth_sum":42,"max_component_depth":42,"circuit_status":"constructed"},"propagation_full_phase":{"component_qubits":[5],"total_qubits":5,"max_component_qubits":5,"cnot":17,"cry":3,"serial_depth_sum":26,"max_component_depth":26,"circuit_status":"constructed"},"components_full_phase":{"component_qubits":[3,2],"total_qubits":5,"max_component_qubits":3,"cnot":17,"cry":3,"serial_depth_sum":39,"max_component_depth":26,"circuit_status":"constructed"},"components_auto_phase":{"component_qubits":[3,2],"total_qubits":5,"max_component_qubits":3,"cnot":9,"cry":3,"serial_depth_sum":27,"max_component_depth":17,"circuit_status":"constructed"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[3,2],"max_component_qubits":3,"component_to_original":[[1,2,3],[5,6]],"components":[{"qubits":3,"penalty":6,"objective_bound":5,"offset":6,"linear":[-6,-2,-1],"quadratic":[[0,1,12],[0,2,12],[1,2,12]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r0","start":3,"cost":4},{"index":2,"task":"t1","resource":"r0","start":1,"cost":5}],"conflicts":[]},{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-1,-3],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":11,"cost":11},{"index":1,"task":"t2","resource":"r0","start":10,"cost":9}],"conflicts":[]}]},"feasible_count":6,"exact_objective":19,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":2.9497998184524477e-05,"reduction_seconds":3.996599116362631e-05,"proof_seconds":0.00035889100399799645,"resource_audit_seconds":0.0019500600028550252},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":19,"preference_cost":12,"change_cost":7,"changed_tasks":2,"max_start_shift":6,"choices":[1,0,2],"schedule":[{"task":"t0","resource":"r1","start":6,"end":8},{"task":"t1","resource":"r1","start":3,"end":4},{"task":"t2","resource":"r0","start":10,"end":12}]},"dual_bound":19.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.0013095100002828985},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":2},{"task":"t1","resource":"r1","start":3,"end":4},{"task":"t2","resource":"r2","start":6,"end":8}]}}
+{"input":{"file":"n3-s0-r2.json","tasks":3,"scenario":0,"replicate":2,"data_seed":2026092602,"sha256":"980e1417cd9e25dfc8d552ad19d76c18194f0c2f9e736508360519214a64bd82"},"model":{"qubits":8,"penalty":28,"objective_bound":27,"offset":84,"linear":[-18,-28,-20,-19,-28,-24,-20,-21],"quadratic":[[1,2,56],[1,3,56],[2,3,56],[2,4,28],[2,5,28],[2,6,28],[4,5,56],[4,6,56],[4,7,56],[5,6,56],[5,7,56],[6,7,56]],"domains":[[0],[1,2,3],[4,5,6,7]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":4,"cost":10},{"index":1,"task":"t1","resource":"r1","start":5,"cost":0},{"index":2,"task":"t1","resource":"r2","start":10,"cost":8},{"index":3,"task":"t1","resource":"r0","start":10,"cost":9},{"index":4,"task":"t2","resource":"r2","start":7,"cost":0},{"index":5,"task":"t2","resource":"r2","start":8,"cost":4},{"index":6,"task":"t2","resource":"r2","start":11,"cost":8},{"index":7,"task":"t2","resource":"r1","start":13,"cost":7}],"conflicts":[{"i":2,"j":4,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":9,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[8],"total_qubits":8,"max_component_qubits":8,"cnot":39,"cry":5,"serial_depth_sum":57,"max_component_depth":57,"circuit_status":"constructed"},"propagation_full_phase":{"component_qubits":[7],"total_qubits":7,"max_component_qubits":7,"cnot":39,"cry":5,"serial_depth_sum":44,"max_component_depth":44,"circuit_status":"constructed"},"components_full_phase":{"component_qubits":[7],"total_qubits":7,"max_component_qubits":7,"cnot":39,"cry":5,"serial_depth_sum":44,"max_component_depth":44,"circuit_status":"constructed"},"components_auto_phase":{"component_qubits":[7],"total_qubits":7,"max_component_qubits":7,"cnot":21,"cry":5,"serial_depth_sum":27,"max_component_depth":27,"circuit_status":"constructed"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":18,"objective_bound":17,"offset":36,"linear":[-18,-10,-9,-18,-14,-10,-11],"quadratic":[[0,1,36],[0,2,36],[1,2,36],[1,3,18],[1,4,18],[1,5,18],[3,4,36],[3,5,36],[3,6,36],[4,5,36],[4,6,36],[5,6,36]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r2","start":10,"cost":8},{"index":2,"task":"t1","resource":"r0","start":10,"cost":9},{"index":3,"task":"t2","resource":"r2","start":7,"cost":0},{"index":4,"task":"t2","resource":"r2","start":8,"cost":4},{"index":5,"task":"t2","resource":"r2","start":11,"cost":8},{"index":6,"task":"t2","resource":"r1","start":13,"cost":7}],"conflicts":[{"i":1,"j":3,"reasons":["resource"]},{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]}]}]},"feasible_count":9,"exact_objective":10,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":2.320700150448829e-05,"reduction_seconds":4.214599903207272e-05,"proof_seconds":0.0004694009985541925,"resource_audit_seconds":0.003282189994934015},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":10,"preference_cost":7,"change_cost":3,"changed_tasks":1,"max_start_shift":4,"choices":[1,0,0],"schedule":[{"task":"t0","resource":"r0","start":4,"end":7},{"task":"t1","resource":"r1","start":5,"end":6},{"task":"t2","resource":"r2","start":7,"end":10}]},"dual_bound":10.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":6,"runtime_seconds":0.001514597999630496},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":3},{"task":"t1","resource":"r1","start":5,"end":6},{"task":"t2","resource":"r2","start":7,"end":10}]}}
+{"input":{"file":"n3-s0-r3.json","tasks":3,"scenario":0,"replicate":3,"data_seed":2026092603,"sha256":"7ad2d759c8cfcdcea0574002a9893cd6a38c1192ac23e4e2c6e61c77aca3e00e"},"model":{"qubits":8,"penalty":29,"objective_bound":28,"offset":87,"linear":[-21,-29,-20,-18,-29,-23,-20,-21],"quadratic":[[0,2,29],[0,4,29],[1,2,58],[1,3,58],[2,3,58],[4,5,58],[4,6,58],[4,7,58],[5,6,58],[5,7,58],[6,7,58]],"domains":[[0],[1,2,3],[4,5,6,7]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":5,"cost":8},{"index":1,"task":"t1","resource":"r1","start":3,"cost":0},{"index":2,"task":"t1","resource":"r0","start":6,"cost":9},{"index":3,"task":"t1","resource":"r1","start":7,"cost":11},{"index":4,"task":"t2","resource":"r2","start":5,"cost":0},{"index":5,"task":"t2","resource":"r0","start":3,"cost":6},{"index":6,"task":"t2","resource":"r0","start":9,"cost":9},{"index":7,"task":"t2","resource":"r0","start":11,"cost":8}],"conflicts":[{"i":0,"j":2,"reasons":["resource"]},{"i":0,"j":4,"reasons":["group"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":9,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[8],"total_qubits":8,"max_component_qubits":8,"cnot":37,"cry":5,"serial_depth_sum":42,"max_component_depth":42,"circuit_status":"constructed"},"propagation_full_phase":{"component_qubits":[5],"total_qubits":5,"max_component_qubits":5,"cnot":17,"cry":3,"serial_depth_sum":26,"max_component_depth":26,"circuit_status":"constructed"},"components_full_phase":{"component_qubits":[2,3],"total_qubits":5,"max_component_qubits":3,"cnot":17,"cry":3,"serial_depth_sum":39,"max_component_depth":26,"circuit_status":"constructed"},"components_auto_phase":{"component_qubits":[2,3],"total_qubits":5,"max_component_qubits":3,"cnot":9,"cry":3,"serial_depth_sum":27,"max_component_depth":17,"circuit_status":"constructed"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[2,3],"max_component_qubits":3,"component_to_original":[[1,3],[5,6,7]],"components":[{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-1],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":7,"cost":11}],"conflicts":[]},{"qubits":3,"penalty":10,"objective_bound":9,"offset":10,"linear":[-4,-1,-2],"quadratic":[[0,1,20],[0,2,20],[1,2,20]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":3,"cost":6},{"index":1,"task":"t2","resource":"r0","start":9,"cost":9},{"index":2,"task":"t2","resource":"r0","start":11,"cost":8}],"conflicts":[]}]},"feasible_count":6,"exact_objective":14,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":2.277600287925452e-05,"reduction_seconds":3.838699194602668e-05,"proof_seconds":0.0004155690112384036,"resource_audit_seconds":0.0024259099882328883},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":14,"preference_cost":10,"change_cost":4,"changed_tasks":2,"max_start_shift":5,"choices":[1,0,1],"schedule":[{"task":"t0","resource":"r0","start":5,"end":7},{"task":"t1","resource":"r1","start":3,"end":5},{"task":"t2","resource":"r0","start":3,"end":4}]},"dual_bound":14.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":5,"runtime_seconds":0.0014459550002356991},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":2},{"task":"t1","resource":"r1","start":3,"end":5},{"task":"t2","resource":"r2","start":5,"end":6}]}}
+{"input":{"file":"n3-s1-r0.json","tasks":3,"scenario":1,"replicate":0,"data_seed":2026092610,"sha256":"3102867f59fcc7a80a9774499507f0d52ad6f39327c3f7f339e0b781da147add"},"model":{"qubits":7,"penalty":26,"objective_bound":25,"offset":78,"linear":[-18,-17,-21,-26,-18,-19,-23],"quadratic":[[0,2,26],[0,3,26],[0,6,26],[1,2,52],[1,5,26],[2,6,26],[3,4,52],[3,5,52],[3,6,52],[4,5,52],[4,6,52],[5,6,52]],"domains":[[0],[1,2],[3,4,5,6]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]},{"task":"t1","resource":"r1","start":6,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r2","start":5,"cost":8},{"index":1,"task":"t1","resource":"r2","start":12,"cost":9},{"index":2,"task":"t1","resource":"r2","start":4,"cost":5},{"index":3,"task":"t2","resource":"r2","start":7,"cost":0},{"index":4,"task":"t2","resource":"r0","start":10,"cost":8},{"index":5,"task":"t2","resource":"r2","start":12,"cost":7},{"index":6,"task":"t2","resource":"r2","start":6,"cost":3}],"conflicts":[{"i":0,"j":2,"reasons":["resource"]},{"i":0,"j":3,"reasons":["resource","group"]},{"i":0,"j":6,"reasons":["resource","group"]},{"i":1,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":9,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[7],"total_qubits":7,"max_component_qubits":7,"cnot":36,"cry":4,"serial_depth_sum":44,"max_component_depth":44,"circuit_status":"constructed"},"propagation_full_phase":{"component_qubits":[],"total_qubits":0,"max_component_qubits":0,"cnot":0,"cry":0,"serial_depth_sum":0,"max_component_depth":0,"circuit_status":"no_circuit"},"components_full_phase":{"component_qubits":[],"total_qubits":0,"max_component_qubits":0,"cnot":0,"cry":0,"serial_depth_sum":0,"max_component_depth":0,"circuit_status":"no_circuit"},"components_auto_phase":{"component_qubits":[],"total_qubits":0,"max_component_qubits":0,"cnot":0,"cry":0,"serial_depth_sum":0,"max_component_depth":0,"circuit_status":"no_circuit"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[0,1,4],"fixed_cost":25,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":3,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":1,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"feasible_count":1,"exact_objective":25,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":3.222899977117777e-05,"reduction_seconds":3.258298966102302e-05,"proof_seconds":0.0002494970103725791,"resource_audit_seconds":0.0008148589986376464},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":25,"preference_cost":20,"change_cost":5,"changed_tasks":3,"max_start_shift":6,"choices":[1,1,1],"schedule":[{"task":"t0","resource":"r2","start":5,"end":8},{"task":"t1","resource":"r2","start":12,"end":13},{"task":"t2","resource":"r0","start":10,"end":11}]},"dual_bound":25.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":8,"runtime_seconds":0.0013312529918039218},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":3},{"task":"t1","resource":"r1","start":6,"end":7},{"task":"t2","resource":"r2","start":7,"end":8}]}}
+{"input":{"file":"n3-s1-r1.json","tasks":3,"scenario":1,"replicate":1,"data_seed":2026092611,"sha256":"b995fea8a97f1baea0ec2c94fd6283168e039b6b1a8cbac3c8da689008576b1f"},"model":{"qubits":6,"penalty":24,"objective_bound":23,"offset":72,"linear":[-20,-18,-24,-11,-19,-13],"quadratic":[[1,4,24],[2,3,48],[2,4,48],[2,5,48],[3,4,48],[3,5,48],[4,5,48]],"domains":[[0],[1],[2,3,4,5]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]},{"task":"t1","resource":"r1","start":6,"reasons":["downtime"]},{"task":"t1","resource":"r1","start":9,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":1,"cost":4},{"index":1,"task":"t1","resource":"r2","start":6,"cost":6},{"index":2,"task":"t2","resource":"r2","start":9,"cost":0},{"index":3,"task":"t2","resource":"r1","start":15,"cost":13},{"index":4,"task":"t2","resource":"r2","start":8,"cost":5},{"index":5,"task":"t2","resource":"r0","start":15,"cost":11}],"conflicts":[{"i":1,"j":4,"reasons":["resource"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":9,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[6],"total_qubits":6,"max_component_qubits":6,"cnot":23,"cry":3,"serial_depth_sum":42,"max_component_depth":42,"circuit_status":"constructed"},"propagation_full_phase":{"component_qubits":[3],"total_qubits":3,"max_component_qubits":3,"cnot":12,"cry":2,"serial_depth_sum":26,"max_component_depth":26,"circuit_status":"constructed"},"components_full_phase":{"component_qubits":[3],"total_qubits":3,"max_component_qubits":3,"cnot":12,"cry":2,"serial_depth_sum":26,"max_component_depth":26,"circuit_status":"constructed"},"components_auto_phase":{"component_qubits":[3],"total_qubits":3,"max_component_qubits":3,"cnot":6,"cry":2,"serial_depth_sum":17,"max_component_depth":17,"circuit_status":"constructed"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[0,1],"fixed_cost":10,"removals":[{"variable":4,"forced_by":1,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[3],"max_component_qubits":3,"component_to_original":[[2,3,5]],"components":[{"qubits":3,"penalty":14,"objective_bound":13,"offset":14,"linear":[-14,-1,-3],"quadratic":[[0,1,28],[0,2,28],[1,2,28]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":9,"cost":0},{"index":1,"task":"t2","resource":"r1","start":15,"cost":13},{"index":2,"task":"t2","resource":"r0","start":15,"cost":11}],"conflicts":[]}]},"feasible_count":3,"exact_objective":10,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":2.021099498961121e-05,"reduction_seconds":2.849199518095702e-05,"proof_seconds":0.00025807700876612216,"resource_audit_seconds":0.0014789220003876835},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":10,"preference_cost":4,"change_cost":6,"changed_tasks":2,"max_start_shift":1,"choices":[1,2,0],"schedule":[{"task":"t0","resource":"r1","start":1,"end":4},{"task":"t1","resource":"r2","start":6,"end":8},{"task":"t2","resource":"r2","start":9,"end":11}]},"dual_bound":10.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":4,"runtime_seconds":0.0022428840020438656},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":3},{"task":"t1","resource":"r1","start":6,"end":8},{"task":"t2","resource":"r2","start":9,"end":11}]}}
+{"input":{"file":"n3-s1-r2.json","tasks":3,"scenario":1,"replicate":2,"data_seed":2026092612,"sha256":"fcf3c44d08725a501917977b012a460df0065bddee7201e89fd75769f72f398f"},"model":{"qubits":5,"penalty":16,"objective_bound":15,"offset":48,"linear":[-8,-8,-16,-9,-9],"quadratic":[[0,1,32],[0,2,16],[0,3,16],[0,4,16],[1,2,16],[2,3,32],[2,4,32],[3,4,32]],"domains":[[],[0,1],[2,3,4]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]},{"task":"t0","resource":"r1","start":3,"reasons":["downtime"]},{"task":"t1","resource":"r1","start":3,"reasons":["downtime"]},{"task":"t2","resource":"r1","start":6,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t1","resource":"r2","start":7,"cost":8},{"index":1,"task":"t1","resource":"r2","start":9,"cost":8},{"index":2,"task":"t2","resource":"r2","start":7,"cost":0},{"index":3,"task":"t2","resource":"r2","start":5,"cost":7},{"index":4,"task":"t2","resource":"r2","start":6,"cost":7}],"conflicts":[{"i":0,"j":2,"reasons":["resource"]},{"i":0,"j":3,"reasons":["resource"]},{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":9,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[5],"total_qubits":5,"max_component_qubits":5,"cnot":null,"cry":null,"serial_depth_sum":null,"max_component_depth":null,"circuit_status":"no_circuit"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":5,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"feasible_count":0,"exact_objective":null,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":1.7497994122095406e-05,"reduction_seconds":3.84000304620713e-06,"proof_seconds":0.00013765599578619003,"resource_audit_seconds":8.432994945906103e-06},"milp":{"variables":9,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":10,"runtime_seconds":0.0014472780021606013},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":2},{"task":"t1","resource":"r1","start":3,"end":5},{"task":"t2","resource":"r2","start":7,"end":10}]}}
+{"input":{"file":"n3-s1-r3.json","tasks":3,"scenario":1,"replicate":3,"data_seed":2026092613,"sha256":"7e0b8b9923a6f00ec09c570c68a6964b0e4193de04571463499f254eea50a03c"},"model":{"qubits":4,"penalty":15,"objective_bound":14,"offset":45,"linear":[-8,-15,-8,-8],"quadratic":[[1,2,30],[1,3,30],[2,3,30]],"domains":[[],[0],[1,2,3]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]},{"task":"t0","resource":"r1","start":4,"reasons":["downtime"]},{"task":"t1","resource":"r1","start":1,"reasons":["downtime"]},{"task":"t1","resource":"r1","start":3,"reasons":["downtime"]},{"task":"t2","resource":"r1","start":4,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t1","resource":"r0","start":6,"cost":7},{"index":1,"task":"t2","resource":"r2","start":6,"cost":0},{"index":2,"task":"t2","resource":"r2","start":7,"cost":7},{"index":3,"task":"t2","resource":"r1","start":10,"cost":7}],"conflicts":[]},"ablation":{"stages":{"raw_input":{"candidate_count":9,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[4],"total_qubits":4,"max_component_qubits":4,"cnot":null,"cry":null,"serial_depth_sum":null,"max_component_depth":null,"circuit_status":"no_circuit"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":4,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"feasible_count":0,"exact_objective":null,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":1.4051998732611537e-05,"reduction_seconds":2.4330074666067958e-06,"proof_seconds":0.00012827599130105227,"resource_audit_seconds":1.2985998182557523e-05},"milp":{"variables":9,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":8,"runtime_seconds":0.0009325279970653355},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":1},{"task":"t1","resource":"r1","start":1,"end":3},{"task":"t2","resource":"r2","start":6,"end":7}]}}
+{"input":{"file":"n3-s2-r0.json","tasks":3,"scenario":2,"replicate":0,"data_seed":2026092620,"sha256":"93d4314ad16586792abae5864149abd76be8d08cfbf47d1515c68e3f7cc4b3d4"},"model":{"qubits":8,"penalty":27,"objective_bound":26,"offset":81,"linear":[-17,-27,-19,-22,-27,-20,-23,-19],"quadratic":[[0,1,27],[0,2,27],[0,3,27],[0,4,27],[0,5,27],[0,6,27],[0,7,27],[1,2,54],[1,3,54],[1,5,27],[2,3,54],[3,5,27],[3,7,27],[4,5,54],[4,6,54],[4,7,54],[5,6,54],[5,7,54],[6,7,54]],"domains":[[0],[1,2,3],[4,5,6,7]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":5,"cost":10},{"index":1,"task":"t1","resource":"r1","start":4,"cost":0},{"index":2,"task":"t1","resource":"r0","start":1,"cost":8},{"index":3,"task":"t1","resource":"r1","start":5,"cost":5},{"index":4,"task":"t2","resource":"r2","start":7,"cost":0},{"index":5,"task":"t2","resource":"r1","start":4,"cost":7},{"index":6,"task":"t2","resource":"r1","start":8,"cost":4},{"index":7,"task":"t2","resource":"r2","start":5,"cost":8}],"conflicts":[{"i":0,"j":1,"reasons":["resource","precedence"]},{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":3,"reasons":["resource","precedence"]},{"i":0,"j":4,"reasons":["group"]},{"i":0,"j":5,"reasons":["resource","group"]},{"i":0,"j":6,"reasons":["resource"]},{"i":0,"j":7,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":3,"j":7,"reasons":["precedence"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":9,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[8],"total_qubits":8,"max_component_qubits":8,"cnot":53,"cry":5,"serial_depth_sum":49,"max_component_depth":49,"circuit_status":"constructed"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[{"variable":1,"forced_by":0,"reasons":["resource","precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["resource"]},{"variable":7,"forced_by":0,"reasons":["group"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"feasible_count":0,"exact_objective":null,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":2.658000448718667e-05,"reduction_seconds":7.131995516829193e-06,"proof_seconds":0.00022506399545818567,"resource_audit_seconds":0.00094084300508257},"milp":{"variables":9,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":14,"runtime_seconds":0.0007442550122505054},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":3},{"task":"t1","resource":"r1","start":4,"end":5},{"task":"t2","resource":"r2","start":7,"end":9}]}}
+{"input":{"file":"n3-s2-r1.json","tasks":3,"scenario":2,"replicate":1,"data_seed":2026092621,"sha256":"5562af7b6a4430f78b74bf07db67f2ee1e2a54dd89e76076d59f476405f51b02"},"model":{"qubits":8,"penalty":23,"objective_bound":22,"offset":69,"linear":[-16,-23,-15,-17,-23,-16,-16,-18],"quadratic":[[1,2,46],[1,3,46],[1,6,23],[1,7,23],[2,3,46],[2,4,23],[2,6,23],[2,7,23],[3,4,23],[3,6,23],[3,7,23],[4,5,46],[4,6,46],[4,7,46],[5,6,46],[5,7,46],[6,7,46]],"domains":[[0],[1,2,3],[4,5,6,7]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r2","start":2,"cost":7},{"index":1,"task":"t1","resource":"r1","start":3,"cost":0},{"index":2,"task":"t1","resource":"r1","start":9,"cost":8},{"index":3,"task":"t1","resource":"r1","start":6,"cost":6},{"index":4,"task":"t2","resource":"r2","start":6,"cost":0},{"index":5,"task":"t2","resource":"r2","start":11,"cost":7},{"index":6,"task":"t2","resource":"r0","start":3,"cost":7},{"index":7,"task":"t2","resource":"r2","start":3,"cost":5}],"conflicts":[{"i":1,"j":6,"reasons":["precedence"]},{"i":1,"j":7,"reasons":["precedence"]},{"i":2,"j":4,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["precedence"]},{"i":2,"j":7,"reasons":["precedence"]},{"i":3,"j":4,"reasons":["precedence"]},{"i":3,"j":6,"reasons":["precedence"]},{"i":3,"j":7,"reasons":["precedence"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":9,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[8],"total_qubits":8,"max_component_qubits":8,"cnot":49,"cry":5,"serial_depth_sum":54,"max_component_depth":54,"circuit_status":"constructed"},"propagation_full_phase":{"component_qubits":[7],"total_qubits":7,"max_component_qubits":7,"cnot":49,"cry":5,"serial_depth_sum":61,"max_component_depth":61,"circuit_status":"constructed"},"components_full_phase":{"component_qubits":[7],"total_qubits":7,"max_component_qubits":7,"cnot":49,"cry":5,"serial_depth_sum":61,"max_component_depth":61,"circuit_status":"constructed"},"components_auto_phase":{"component_qubits":[7],"total_qubits":7,"max_component_qubits":7,"cnot":31,"cry":5,"serial_depth_sum":39,"max_component_depth":39,"circuit_status":"constructed"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":7,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":16,"objective_bound":15,"offset":32,"linear":[-16,-8,-10,-16,-9,-9,-11],"quadratic":[[0,1,32],[0,2,32],[0,5,16],[0,6,16],[1,2,32],[1,3,16],[1,5,16],[1,6,16],[2,3,16],[2,5,16],[2,6,16],[3,4,32],[3,5,32],[3,6,32],[4,5,32],[4,6,32],[5,6,32]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":8},{"index":2,"task":"t1","resource":"r1","start":6,"cost":6},{"index":3,"task":"t2","resource":"r2","start":6,"cost":0},{"index":4,"task":"t2","resource":"r2","start":11,"cost":7},{"index":5,"task":"t2","resource":"r0","start":3,"cost":7},{"index":6,"task":"t2","resource":"r2","start":3,"cost":5}],"conflicts":[{"i":0,"j":5,"reasons":["precedence"]},{"i":0,"j":6,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":1,"j":6,"reasons":["precedence"]},{"i":2,"j":3,"reasons":["precedence"]},{"i":2,"j":5,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["precedence"]}]}]},"feasible_count":4,"exact_objective":7,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":2.2909007384441793e-05,"reduction_seconds":4.1683000745251775e-05,"proof_seconds":0.0003717619983945042,"resource_audit_seconds":0.0029738099983660504},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":7,"preference_cost":3,"change_cost":4,"changed_tasks":1,"max_start_shift":2,"choices":[1,0,0],"schedule":[{"task":"t0","resource":"r2","start":2,"end":3},{"task":"t1","resource":"r1","start":3,"end":5},{"task":"t2","resource":"r2","start":6,"end":9}]},"dual_bound":7.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":11,"runtime_seconds":0.0012447180051822215},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":1},{"task":"t1","resource":"r1","start":3,"end":5},{"task":"t2","resource":"r2","start":6,"end":9}]}}
+{"input":{"file":"n3-s2-r2.json","tasks":3,"scenario":2,"replicate":2,"data_seed":2026092622,"sha256":"bdbd13d37d5b027158ad3b96617fcbbe127c26450b6577397a5c79ed73f463e3"},"model":{"qubits":8,"penalty":28,"objective_bound":27,"offset":84,"linear":[-19,-28,-18,-24,-28,-22,-20,-20],"quadratic":[[0,1,28],[0,3,28],[0,6,28],[1,2,56],[1,3,56],[1,6,28],[2,3,56],[2,4,28],[2,5,28],[2,6,28],[3,6,28],[4,5,56],[4,6,56],[4,7,56],[5,6,56],[5,7,56],[6,7,56]],"domains":[[0],[1,2,3],[4,5,6,7]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":3,"cost":9},{"index":1,"task":"t1","resource":"r1","start":5,"cost":0},{"index":2,"task":"t1","resource":"r2","start":9,"cost":10},{"index":3,"task":"t1","resource":"r0","start":5,"cost":4},{"index":4,"task":"t2","resource":"r2","start":8,"cost":0},{"index":5,"task":"t2","resource":"r1","start":8,"cost":6},{"index":6,"task":"t2","resource":"r2","start":5,"cost":8},{"index":7,"task":"t2","resource":"r2","start":12,"cost":8}],"conflicts":[{"i":0,"j":1,"reasons":["precedence"]},{"i":0,"j":3,"reasons":["resource","precedence"]},{"i":0,"j":6,"reasons":["group"]},{"i":1,"j":6,"reasons":["precedence"]},{"i":2,"j":4,"reasons":["resource","precedence"]},{"i":2,"j":5,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["precedence"]},{"i":3,"j":6,"reasons":["precedence"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":9,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[8],"total_qubits":8,"max_component_qubits":8,"cnot":49,"cry":5,"serial_depth_sum":61,"max_component_depth":61,"circuit_status":"constructed"},"propagation_full_phase":{"component_qubits":[],"total_qubits":0,"max_component_qubits":0,"cnot":0,"cry":0,"serial_depth_sum":0,"max_component_depth":0,"circuit_status":"no_circuit"},"components_full_phase":{"component_qubits":[],"total_qubits":0,"max_component_qubits":0,"cnot":0,"cry":0,"serial_depth_sum":0,"max_component_depth":0,"circuit_status":"no_circuit"},"components_auto_phase":{"component_qubits":[],"total_qubits":0,"max_component_qubits":0,"cnot":0,"cry":0,"serial_depth_sum":0,"max_component_depth":0,"circuit_status":"no_circuit"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0,2,7],"fixed_cost":27,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":4,"forced_by":2,"reasons":["resource","precedence"]},{"variable":5,"forced_by":2,"reasons":["precedence"]}],"infeasible_task":null,"component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"feasible_count":1,"exact_objective":27,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":3.337199450470507e-05,"reduction_seconds":1.1820011422969401e-05,"proof_seconds":0.00025603699032217264,"resource_audit_seconds":0.0010059670021291822},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":27,"preference_cost":16,"change_cost":11,"changed_tasks":3,"max_start_shift":4,"choices":[1,1,3],"schedule":[{"task":"t0","resource":"r0","start":3,"end":6},{"task":"t1","resource":"r2","start":9,"end":10},{"task":"t2","resource":"r2","start":12,"end":14}]},"dual_bound":27.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":11,"runtime_seconds":0.0011814540048362687},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":3},{"task":"t1","resource":"r1","start":5,"end":6},{"task":"t2","resource":"r2","start":8,"end":10}]}}
+{"input":{"file":"n3-s2-r3.json","tasks":3,"scenario":2,"replicate":3,"data_seed":2026092623,"sha256":"bf2d32ec2da41a07091bdc4b92d015e6b57398275f745d630dfabb8520cbe877"},"model":{"qubits":8,"penalty":27,"objective_bound":26,"offset":81,"linear":[-18,-27,-22,-18,-27,-20,-19,-22],"quadratic":[[0,1,27],[0,2,27],[1,2,54],[1,3,54],[2,3,54],[3,4,27],[3,5,27],[3,6,27],[3,7,27],[4,5,54],[4,6,54],[4,7,54],[5,6,54],[5,7,54],[6,7,54]],"domains":[[0],[1,2,3],[4,5,6,7]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":4,"cost":9},{"index":1,"task":"t1","resource":"r1","start":3,"cost":0},{"index":2,"task":"t1","resource":"r1","start":4,"cost":5},{"index":3,"task":"t1","resource":"r1","start":8,"cost":9},{"index":4,"task":"t2","resource":"r2","start":8,"cost":0},{"index":5,"task":"t2","resource":"r0","start":9,"cost":7},{"index":6,"task":"t2","resource":"r2","start":10,"cost":8},{"index":7,"task":"t2","resource":"r1","start":9,"cost":5}],"conflicts":[{"i":0,"j":1,"reasons":["resource","precedence"]},{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":4,"reasons":["precedence"]},{"i":3,"j":5,"reasons":["precedence"]},{"i":3,"j":6,"reasons":["precedence"]},{"i":3,"j":7,"reasons":["resource","precedence"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":9,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[8],"total_qubits":8,"max_component_qubits":8,"cnot":45,"cry":5,"serial_depth_sum":51,"max_component_depth":51,"circuit_status":"constructed"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0,3],"fixed_cost":18,"removals":[{"variable":1,"forced_by":0,"reasons":["resource","precedence"]},{"variable":2,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":3,"reasons":["precedence"]},{"variable":5,"forced_by":3,"reasons":["precedence"]},{"variable":6,"forced_by":3,"reasons":["precedence"]},{"variable":7,"forced_by":3,"reasons":["resource","precedence"]}],"infeasible_task":"t2","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"feasible_count":0,"exact_objective":null,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":2.7536996640264988e-05,"reduction_seconds":8.654998964630067e-06,"proof_seconds":0.0002729419938987121,"resource_audit_seconds":0.0008437710057478398},"milp":{"variables":9,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":9,"runtime_seconds":0.0014003039977978915},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":1},{"task":"t1","resource":"r1","start":3,"end":6},{"task":"t2","resource":"r2","start":8,"end":10}]}}
+{"input":{"file":"n4-s0-r0.json","tasks":4,"scenario":0,"replicate":0,"data_seed":2026092700,"sha256":"08fc30fec69a29a96ae57e373739ff0162ba3fcff6ab53119895679a31029390"},"model":{"qubits":10,"penalty":41,"objective_bound":40,"offset":164,"linear":[-30,-41,-31,-32,-41,-33,-30,-34,-41,-33],"quadratic":[[0,4,41],[0,5,41],[1,2,82],[1,3,82],[2,3,82],[2,7,41],[2,8,41],[4,5,82],[4,6,82],[4,7,82],[5,6,82],[5,7,82],[6,7,82],[6,9,41],[7,8,41],[8,9,82]],"domains":[[0],[1,2,3],[4,5,6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r2","start":6,"cost":11},{"index":1,"task":"t1","resource":"r1","start":6,"cost":0},{"index":2,"task":"t1","resource":"r0","start":11,"cost":10},{"index":3,"task":"t1","resource":"r1","start":9,"cost":9},{"index":4,"task":"t2","resource":"r2","start":7,"cost":0},{"index":5,"task":"t2","resource":"r2","start":6,"cost":8},{"index":6,"task":"t2","resource":"r1","start":11,"cost":11},{"index":7,"task":"t2","resource":"r0","start":9,"cost":7},{"index":8,"task":"t3","resource":"r0","start":11,"cost":0},{"index":9,"task":"t3","resource":"r1","start":13,"cost":8}],"conflicts":[{"i":0,"j":4,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource","group"]},{"i":2,"j":7,"reasons":["resource"]},{"i":2,"j":8,"reasons":["resource","group"]},{"i":6,"j":9,"reasons":["resource"]},{"i":7,"j":8,"reasons":["resource"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":11,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[10],"total_qubits":10,"max_component_qubits":10,"cnot":50,"cry":6,"serial_depth_sum":46,"max_component_depth":46,"circuit_status":"constructed"},"propagation_full_phase":{"component_qubits":[7],"total_qubits":7,"max_component_qubits":7,"cnot":30,"cry":4,"serial_depth_sum":33,"max_component_depth":33,"circuit_status":"constructed"},"components_full_phase":{"component_qubits":[7],"total_qubits":7,"max_component_qubits":7,"cnot":30,"cry":4,"serial_depth_sum":33,"max_component_depth":33,"circuit_status":"constructed"},"components_auto_phase":{"component_qubits":[7],"total_qubits":7,"max_component_qubits":7,"cnot":20,"cry":4,"serial_depth_sum":27,"max_component_depth":27,"circuit_status":"constructed"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":11,"removals":[{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,6,7,8,9]],"components":[{"qubits":7,"penalty":30,"objective_bound":29,"offset":90,"linear":[-30,-20,-21,-19,-23,-30,-22],"quadratic":[[0,1,60],[0,2,60],[1,2,60],[1,4,30],[1,5,30],[3,4,60],[3,6,30],[4,5,30],[5,6,60]],"domains":[[0,1,2],[3,4],[5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":6,"cost":0},{"index":1,"task":"t1","resource":"r0","start":11,"cost":10},{"index":2,"task":"t1","resource":"r1","start":9,"cost":9},{"index":3,"task":"t2","resource":"r1","start":11,"cost":11},{"index":4,"task":"t2","resource":"r0","start":9,"cost":7},{"index":5,"task":"t3","resource":"r0","start":11,"cost":0},{"index":6,"task":"t3","resource":"r1","start":13,"cost":8}],"conflicts":[{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource","group"]},{"i":3,"j":6,"reasons":["resource"]},{"i":4,"j":5,"reasons":["resource"]}]}]},"feasible_count":4,"exact_objective":22,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":2.656700962688774e-05,"reduction_seconds":3.886700142174959e-05,"proof_seconds":0.000640740996459499,"resource_audit_seconds":0.002669174995389767},"milp":{"variables":11,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":22,"preference_cost":14,"change_cost":8,"changed_tasks":2,"max_start_shift":6,"choices":[1,0,2,0],"schedule":[{"task":"t0","resource":"r2","start":6,"end":9},{"task":"t1","resource":"r1","start":6,"end":7},{"task":"t2","resource":"r1","start":11,"end":14},{"task":"t3","resource":"r0","start":11,"end":12}]},"dual_bound":22.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":10,"runtime_seconds":0.0016433980053989217},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":3},{"task":"t1","resource":"r1","start":6,"end":7},{"task":"t2","resource":"r2","start":7,"end":10},{"task":"t3","resource":"r0","start":11,"end":12}]}}
+{"input":{"file":"n4-s0-r1.json","tasks":4,"scenario":0,"replicate":1,"data_seed":2026092701,"sha256":"c9739a81f0c0dbc6ef8e5d5061eccd04a8e046db3d7f670e0b7689d7d4cc69e8"},"model":{"qubits":10,"penalty":30,"objective_bound":29,"offset":120,"linear":[-22,-30,-23,-22,-30,-24,-20,-23,-30,-27],"quadratic":[[0,3,30],[0,4,30],[0,5,30],[0,7,30],[1,2,60],[1,3,60],[1,7,30],[2,3,60],[2,7,30],[3,4,30],[4,5,60],[4,6,60],[4,7,60],[5,6,60],[5,7,60],[6,7,60],[8,9,60]],"domains":[[0],[1,2,3],[4,5,6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r2","start":5,"cost":8},{"index":1,"task":"t1","resource":"r1","start":3,"cost":0},{"index":2,"task":"t1","resource":"r1","start":5,"cost":7},{"index":3,"task":"t1","resource":"r2","start":6,"cost":8},{"index":4,"task":"t2","resource":"r2","start":6,"cost":0},{"index":5,"task":"t2","resource":"r0","start":3,"cost":6},{"index":6,"task":"t2","resource":"r2","start":11,"cost":10},{"index":7,"task":"t2","resource":"r1","start":4,"cost":7},{"index":8,"task":"t3","resource":"r0","start":11,"cost":0},{"index":9,"task":"t3","resource":"r1","start":11,"cost":3}],"conflicts":[{"i":0,"j":3,"reasons":["resource"]},{"i":0,"j":4,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["group"]},{"i":0,"j":7,"reasons":["group"]},{"i":1,"j":7,"reasons":["resource"]},{"i":2,"j":7,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":11,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[10],"total_qubits":10,"max_component_qubits":10,"cnot":52,"cry":6,"serial_depth_sum":46,"max_component_depth":46,"circuit_status":"constructed"},"propagation_full_phase":{"component_qubits":[4],"total_qubits":4,"max_component_qubits":4,"cnot":10,"cry":2,"serial_depth_sum":13,"max_component_depth":13,"circuit_status":"constructed"},"components_full_phase":{"component_qubits":[2,2],"total_qubits":4,"max_component_qubits":2,"cnot":10,"cry":2,"serial_depth_sum":26,"max_component_depth":13,"circuit_status":"constructed"},"components_auto_phase":{"component_qubits":[2,2],"total_qubits":4,"max_component_qubits":2,"cnot":6,"cry":2,"serial_depth_sum":20,"max_component_depth":10,"circuit_status":"constructed"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0,6],"fixed_cost":18,"removals":[{"variable":3,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[2,2],"max_component_qubits":2,"component_to_original":[[1,2],[8,9]],"components":[{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":5,"cost":7}],"conflicts":[]},{"qubits":2,"penalty":4,"objective_bound":3,"offset":4,"linear":[-4,-1],"quadratic":[[0,1,8]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":11,"cost":0},{"index":1,"task":"t3","resource":"r1","start":11,"cost":3}],"conflicts":[]}]},"feasible_count":4,"exact_objective":18,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":2.918299287557602e-05,"reduction_seconds":3.7053003325127065e-05,"proof_seconds":0.0006642359949182719,"resource_audit_seconds":0.0018536840070737526},"milp":{"variables":11,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":18,"preference_cost":14,"change_cost":4,"changed_tasks":2,"max_start_shift":5,"choices":[1,0,2,0],"schedule":[{"task":"t0","resource":"r2","start":5,"end":8},{"task":"t1","resource":"r1","start":3,"end":6},{"task":"t2","resource":"r2","start":11,"end":14},{"task":"t3","resource":"r0","start":11,"end":14}]},"dual_bound":18.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":11,"runtime_seconds":0.0011643040052149445},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":3},{"task":"t1","resource":"r1","start":3,"end":6},{"task":"t2","resource":"r2","start":6,"end":9},{"task":"t3","resource":"r0","start":11,"end":14}]}}
+{"input":{"file":"n4-s0-r2.json","tasks":4,"scenario":0,"replicate":2,"data_seed":2026092702,"sha256":"88b2b434a81b9ddf68c43898785b4f6f2c891ed28befc9a6f268e6b083dbc547"},"model":{"qubits":10,"penalty":29,"objective_bound":28,"offset":116,"linear":[-25,-29,-25,-23,-29,-24,-23,-20,-29,-20],"quadratic":[[0,3,29],[0,5,29],[1,2,58],[1,3,58],[2,3,58],[3,5,29],[4,5,58],[4,6,58],[4,7,58],[5,6,58],[5,7,58],[6,7,58],[6,8,29],[8,9,58]],"domains":[[0],[1,2,3],[4,5,6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":4},{"index":1,"task":"t1","resource":"r1","start":4,"cost":0},{"index":2,"task":"t1","resource":"r1","start":5,"cost":4},{"index":3,"task":"t1","resource":"r0","start":3,"cost":6},{"index":4,"task":"t2","resource":"r2","start":6,"cost":0},{"index":5,"task":"t2","resource":"r0","start":3,"cost":5},{"index":6,"task":"t2","resource":"r0","start":8,"cost":6},{"index":7,"task":"t2","resource":"r2","start":12,"cost":9},{"index":8,"task":"t3","resource":"r0","start":9,"cost":0},{"index":9,"task":"t3","resource":"r1","start":7,"cost":9}],"conflicts":[{"i":0,"j":3,"reasons":["resource"]},{"i":0,"j":5,"reasons":["resource","group"]},{"i":3,"j":5,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":11,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[10],"total_qubits":10,"max_component_qubits":10,"cnot":46,"cry":6,"serial_depth_sum":49,"max_component_depth":49,"circuit_status":"constructed"},"propagation_full_phase":{"component_qubits":[7],"total_qubits":7,"max_component_qubits":7,"cnot":24,"cry":4,"serial_depth_sum":29,"max_component_depth":29,"circuit_status":"constructed"},"components_full_phase":{"component_qubits":[2,5],"total_qubits":7,"max_component_qubits":5,"cnot":24,"cry":4,"serial_depth_sum":42,"max_component_depth":29,"circuit_status":"constructed"},"components_auto_phase":{"component_qubits":[2,5],"total_qubits":7,"max_component_qubits":5,"cnot":14,"cry":4,"serial_depth_sum":30,"max_component_depth":20,"circuit_status":"constructed"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":4,"removals":[{"variable":3,"forced_by":0,"reasons":["resource"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":null,"component_qubits":[2,5],"max_component_qubits":5,"component_to_original":[[1,2],[4,6,7,8,9]],"components":[{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-5,-1],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":5,"cost":4}],"conflicts":[]},{"qubits":5,"penalty":19,"objective_bound":18,"offset":38,"linear":[-19,-13,-10,-19,-10],"quadratic":[[0,1,38],[0,2,38],[1,2,38],[1,3,19],[3,4,38]],"domains":[[0,1,2],[3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":6,"cost":0},{"index":1,"task":"t2","resource":"r0","start":8,"cost":6},{"index":2,"task":"t2","resource":"r2","start":12,"cost":9},{"index":3,"task":"t3","resource":"r0","start":9,"cost":0},{"index":4,"task":"t3","resource":"r1","start":7,"cost":9}],"conflicts":[{"i":1,"j":3,"reasons":["resource"]}]}]},"feasible_count":10,"exact_objective":4,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":2.8770999051630497e-05,"reduction_seconds":4.814400745090097e-05,"proof_seconds":0.0013593049952760339,"resource_audit_seconds":0.0026748749951366335},"milp":{"variables":11,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":4,"preference_cost":1,"change_cost":3,"changed_tasks":1,"max_start_shift":1,"choices":[1,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":1,"end":4},{"task":"t1","resource":"r1","start":4,"end":5},{"task":"t2","resource":"r2","start":6,"end":9},{"task":"t3","resource":"r0","start":9,"end":12}]},"dual_bound":4.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":8,"runtime_seconds":0.0013204370043240488},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":3},{"task":"t1","resource":"r1","start":4,"end":5},{"task":"t2","resource":"r2","start":6,"end":9},{"task":"t3","resource":"r0","start":9,"end":12}]}}
+{"input":{"file":"n4-s0-r3.json","tasks":4,"scenario":0,"replicate":3,"data_seed":2026092703,"sha256":"125b0b1fe9d0a431b457b083014998f33cb82d918e140db12414608702847198"},"model":{"qubits":10,"penalty":30,"objective_bound":29,"offset":120,"linear":[-24,-30,-25,-24,-30,-23,-26,-20,-30,-23],"quadratic":[[0,4,30],[1,2,60],[1,3,60],[2,3,60],[4,5,60],[4,6,60],[4,7,60],[5,6,60],[5,7,60],[5,8,30],[6,7,60],[7,9,30],[8,9,60]],"domains":[[0],[1,2,3],[4,5,6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":4,"cost":6},{"index":1,"task":"t1","resource":"r1","start":3,"cost":0},{"index":2,"task":"t1","resource":"r0","start":2,"cost":5},{"index":3,"task":"t1","resource":"r1","start":7,"cost":6},{"index":4,"task":"t2","resource":"r2","start":5,"cost":0},{"index":5,"task":"t2","resource":"r0","start":8,"cost":7},{"index":6,"task":"t2","resource":"r1","start":6,"cost":4},{"index":7,"task":"t2","resource":"r2","start":11,"cost":10},{"index":8,"task":"t3","resource":"r0","start":8,"cost":0},{"index":9,"task":"t3","resource":"r2","start":9,"cost":7}],"conflicts":[{"i":0,"j":4,"reasons":["group"]},{"i":5,"j":8,"reasons":["resource"]},{"i":7,"j":9,"reasons":["resource"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":11,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[10],"total_qubits":10,"max_component_qubits":10,"cnot":44,"cry":6,"serial_depth_sum":43,"max_component_depth":43,"circuit_status":"constructed"},"propagation_full_phase":{"component_qubits":[8],"total_qubits":8,"max_component_qubits":8,"cnot":33,"cry":5,"serial_depth_sum":30,"max_component_depth":30,"circuit_status":"constructed"},"components_full_phase":{"component_qubits":[3,5],"total_qubits":8,"max_component_qubits":5,"cnot":33,"cry":5,"serial_depth_sum":52,"max_component_depth":26,"circuit_status":"constructed"},"components_auto_phase":{"component_qubits":[3,5],"total_qubits":8,"max_component_qubits":5,"cnot":19,"cry":5,"serial_depth_sum":36,"max_component_depth":19,"circuit_status":"constructed"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":6,"removals":[{"variable":4,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[3,5],"max_component_qubits":5,"component_to_original":[[1,2,3],[5,6,7,8,9]],"components":[{"qubits":3,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-2,-1],"quadratic":[[0,1,14],[0,2,14],[1,2,14]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r0","start":2,"cost":5},{"index":2,"task":"t1","resource":"r1","start":7,"cost":6}],"conflicts":[]},{"qubits":5,"penalty":18,"objective_bound":17,"offset":36,"linear":[-11,-14,-8,-18,-11],"quadratic":[[0,1,36],[0,2,36],[0,3,18],[1,2,36],[2,4,18],[3,4,36]],"domains":[[0,1,2],[3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":8,"cost":7},{"index":1,"task":"t2","resource":"r1","start":6,"cost":4},{"index":2,"task":"t2","resource":"r2","start":11,"cost":10},{"index":3,"task":"t3","resource":"r0","start":8,"cost":0},{"index":4,"task":"t3","resource":"r2","start":9,"cost":7}],"conflicts":[{"i":0,"j":3,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]}]}]},"feasible_count":12,"exact_objective":10,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":2.6398003683425486e-05,"reduction_seconds":4.3096995796076953e-05,"proof_seconds":0.000779669004259631,"resource_audit_seconds":0.003658702000393532},"milp":{"variables":11,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":10,"preference_cost":7,"change_cost":3,"changed_tasks":2,"max_start_shift":4,"choices":[1,0,2,0],"schedule":[{"task":"t0","resource":"r1","start":4,"end":6},{"task":"t1","resource":"r1","start":3,"end":4},{"task":"t2","resource":"r1","start":6,"end":7},{"task":"t3","resource":"r0","start":8,"end":11}]},"dual_bound":10.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":8,"runtime_seconds":0.0025123119994532317},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":2},{"task":"t1","resource":"r1","start":3,"end":4},{"task":"t2","resource":"r2","start":5,"end":6},{"task":"t3","resource":"r0","start":8,"end":11}]}}
+{"input":{"file":"n4-s1-r0.json","tasks":4,"scenario":1,"replicate":0,"data_seed":2026092710,"sha256":"aa0ece2791aae422f427562f52a225e34573890675432668dc4ecd85a8ccd78b"},"model":{"qubits":7,"penalty":21,"objective_bound":20,"offset":84,"linear":[-15,-12,-21,-16,-16,-21,-15],"quadratic":[[0,1,42],[1,2,21],[2,3,42],[2,4,42],[3,4,42],[5,6,42]],"domains":[[],[0,1],[2,3,4],[5,6]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]},{"task":"t0","resource":"r0","start":2,"reasons":["downtime"]},{"task":"t1","resource":"r1","start":4,"reasons":["downtime"]},{"task":"t2","resource":"r0","start":5,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t1","resource":"r1","start":2,"cost":6},{"index":1,"task":"t1","resource":"r2","start":8,"cost":9},{"index":2,"task":"t2","resource":"r2","start":7,"cost":0},{"index":3,"task":"t2","resource":"r1","start":8,"cost":5},{"index":4,"task":"t2","resource":"r0","start":9,"cost":5},{"index":5,"task":"t3","resource":"r0","start":13,"cost":0},{"index":6,"task":"t3","resource":"r2","start":17,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["resource"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":11,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[7],"total_qubits":7,"max_component_qubits":7,"cnot":null,"cry":null,"serial_depth_sum":null,"max_component_depth":null,"circuit_status":"no_circuit"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"feasible_count":0,"exact_objective":null,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":1.968599099200219e-05,"reduction_seconds":3.187000402249396e-06,"proof_seconds":0.00033824100682977587,"resource_audit_seconds":7.85999873187393e-06},"milp":{"variables":11,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":6,"runtime_seconds":0.0011201460001757368},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":3},{"task":"t1","resource":"r1","start":4,"end":5},{"task":"t2","resource":"r2","start":7,"end":10},{"task":"t3","resource":"r0","start":13,"end":14}]}}
+{"input":{"file":"n4-s1-r1.json","tasks":4,"scenario":1,"replicate":1,"data_seed":2026092711,"sha256":"836204438f461f317c06e52eee9095d95210ae5e5be6b81a69c216266aa22a36"},"model":{"qubits":7,"penalty":20,"objective_bound":19,"offset":80,"linear":[-17,-20,-13,-14,-10,-20,-14],"quadratic":[[1,2,40],[1,3,40],[1,4,40],[1,6,20],[2,3,40],[2,4,40],[2,5,20],[3,4,40],[5,6,40]],"domains":[[],[0],[1,2,3,4],[5,6]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]},{"task":"t0","resource":"r0","start":2,"reasons":["downtime"]},{"task":"t1","resource":"r1","start":1,"reasons":["downtime"]},{"task":"t1","resource":"r1","start":2,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t1","resource":"r2","start":1,"cost":3},{"index":1,"task":"t2","resource":"r2","start":3,"cost":0},{"index":2,"task":"t2","resource":"r0","start":5,"cost":7},{"index":3,"task":"t2","resource":"r2","start":5,"cost":6},{"index":4,"task":"t2","resource":"r2","start":8,"cost":10},{"index":5,"task":"t3","resource":"r0","start":5,"cost":0},{"index":6,"task":"t3","resource":"r2","start":3,"cost":6}],"conflicts":[{"i":1,"j":6,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":11,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[7],"total_qubits":7,"max_component_qubits":7,"cnot":null,"cry":null,"serial_depth_sum":null,"max_component_depth":null,"circuit_status":"no_circuit"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"feasible_count":0,"exact_objective":null,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":1.9498998881317675e-05,"reduction_seconds":3.1520030461251736e-06,"proof_seconds":0.00031757898977957666,"resource_audit_seconds":5.317007889971137e-06},"milp":{"variables":11,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":7,"runtime_seconds":0.0009516749996691942},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":1},{"task":"t1","resource":"r1","start":1,"end":3},{"task":"t2","resource":"r2","start":3,"end":5},{"task":"t3","resource":"r0","start":5,"end":7}]}}
+{"input":{"file":"n4-s1-r2.json","tasks":4,"scenario":1,"replicate":2,"data_seed":2026092712,"sha256":"103484d367bba6939e95310aa224358325eba3c739c1d94228a9d8c28aee2e3f"},"model":{"qubits":9,"penalty":28,"objective_bound":27,"offset":112,"linear":[-20,-22,-23,-28,-22,-20,-22,-28,-23],"quadratic":[[1,2,56],[1,3,28],[1,6,28],[2,4,28],[2,5,28],[2,7,28],[3,4,56],[3,5,56],[3,6,56],[4,5,56],[4,6,56],[4,7,28],[5,6,56],[7,8,56]],"domains":[[0],[1,2],[3,4,5,6],[7,8]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]},{"task":"t1","resource":"r1","start":3,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r2","start":3,"cost":8},{"index":1,"task":"t1","resource":"r2","start":8,"cost":6},{"index":2,"task":"t1","resource":"r0","start":7,"cost":5},{"index":3,"task":"t2","resource":"r2","start":8,"cost":0},{"index":4,"task":"t2","resource":"r0","start":8,"cost":6},{"index":5,"task":"t2","resource":"r0","start":5,"cost":8},{"index":6,"task":"t2","resource":"r2","start":6,"cost":6},{"index":7,"task":"t3","resource":"r0","start":11,"cost":0},{"index":8,"task":"t3","resource":"r1","start":12,"cost":5}],"conflicts":[{"i":1,"j":3,"reasons":["resource"]},{"i":1,"j":6,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":7,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":11,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[9],"total_qubits":9,"max_component_qubits":9,"cnot":43,"cry":5,"serial_depth_sum":49,"max_component_depth":49,"circuit_status":"constructed"},"propagation_full_phase":{"component_qubits":[8],"total_qubits":8,"max_component_qubits":8,"cnot":43,"cry":5,"serial_depth_sum":53,"max_component_depth":53,"circuit_status":"constructed"},"components_full_phase":{"component_qubits":[8],"total_qubits":8,"max_component_qubits":8,"cnot":43,"cry":5,"serial_depth_sum":53,"max_component_depth":53,"circuit_status":"constructed"},"components_auto_phase":{"component_qubits":[8],"total_qubits":8,"max_component_qubits":8,"cnot":27,"cry":5,"serial_depth_sum":28,"max_component_depth":28,"circuit_status":"constructed"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":9,"fixed_variables":[0],"fixed_cost":8,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[1,2,3,4,5,6,7,8]],"components":[{"qubits":8,"penalty":20,"objective_bound":19,"offset":60,"linear":[-14,-15,-20,-14,-12,-14,-20,-15],"quadratic":[[0,1,40],[0,2,20],[0,5,20],[1,3,20],[1,4,20],[1,6,20],[2,3,40],[2,4,40],[2,5,40],[3,4,40],[3,5,40],[3,6,20],[4,5,40],[6,7,40]],"domains":[[0,1],[2,3,4,5],[6,7]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r2","start":8,"cost":6},{"index":1,"task":"t1","resource":"r0","start":7,"cost":5},{"index":2,"task":"t2","resource":"r2","start":8,"cost":0},{"index":3,"task":"t2","resource":"r0","start":8,"cost":6},{"index":4,"task":"t2","resource":"r0","start":5,"cost":8},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6},{"index":6,"task":"t3","resource":"r0","start":11,"cost":0},{"index":7,"task":"t3","resource":"r1","start":12,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource"]},{"i":0,"j":5,"reasons":["resource"]},{"i":1,"j":3,"reasons":["resource"]},{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":6,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]}]}]},"feasible_count":5,"exact_objective":18,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":2.5116998585872352e-05,"reduction_seconds":4.0907005313783884e-05,"proof_seconds":0.0007913239969639108,"resource_audit_seconds":0.0028543069929583},"milp":{"variables":11,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":18,"preference_cost":9,"change_cost":9,"changed_tasks":3,"max_start_shift":4,"choices":[1,2,0,1],"schedule":[{"task":"t0","resource":"r2","start":3,"end":4},{"task":"t1","resource":"r0","start":7,"end":10},{"task":"t2","resource":"r2","start":8,"end":11},{"task":"t3","resource":"r1","start":12,"end":13}]},"dual_bound":18.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":10,"runtime_seconds":0.006262604001676664},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":1},{"task":"t1","resource":"r1","start":3,"end":6},{"task":"t2","resource":"r2","start":8,"end":11},{"task":"t3","resource":"r0","start":11,"end":12}]}}
+{"input":{"file":"n4-s1-r3.json","tasks":4,"scenario":1,"replicate":3,"data_seed":2026092713,"sha256":"4984d9ea14045c7d5025867e5de16c2cb0e2873919cc72f376d781d8dcf6b318"},"model":{"qubits":7,"penalty":24,"objective_bound":23,"offset":96,"linear":[-13,-19,-20,-24,-18,-17,-24],"quadratic":[[1,2,48],[3,4,48],[3,5,48],[4,5,48],[5,6,24]],"domains":[[0],[1,2],[3,4,5],[6]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]},{"task":"t1","resource":"r1","start":4,"reasons":["downtime"]},{"task":"t2","resource":"r1","start":8,"reasons":["downtime"]},{"task":"t3","resource":"r1","start":9,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r2","start":6,"cost":11},{"index":1,"task":"t1","resource":"r0","start":6,"cost":5},{"index":2,"task":"t1","resource":"r2","start":4,"cost":4},{"index":3,"task":"t2","resource":"r2","start":9,"cost":0},{"index":4,"task":"t2","resource":"r1","start":10,"cost":6},{"index":5,"task":"t2","resource":"r0","start":10,"cost":7},{"index":6,"task":"t3","resource":"r0","start":12,"cost":0}],"conflicts":[{"i":5,"j":6,"reasons":["resource"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":11,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[7],"total_qubits":7,"max_component_qubits":7,"cnot":19,"cry":3,"serial_depth_sum":29,"max_component_depth":29,"circuit_status":"constructed"},"propagation_full_phase":{"component_qubits":[4],"total_qubits":4,"max_component_qubits":4,"cnot":10,"cry":2,"serial_depth_sum":13,"max_component_depth":13,"circuit_status":"constructed"},"components_full_phase":{"component_qubits":[2,2],"total_qubits":4,"max_component_qubits":2,"cnot":10,"cry":2,"serial_depth_sum":26,"max_component_depth":13,"circuit_status":"constructed"},"components_auto_phase":{"component_qubits":[2,2],"total_qubits":4,"max_component_qubits":2,"cnot":6,"cry":2,"serial_depth_sum":20,"max_component_depth":10,"circuit_status":"constructed"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[0,6],"fixed_cost":11,"removals":[{"variable":5,"forced_by":6,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[2,2],"max_component_qubits":2,"component_to_original":[[1,2],[3,4]],"components":[{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-1,-2],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":6,"cost":5},{"index":1,"task":"t1","resource":"r2","start":4,"cost":4}],"conflicts":[]},{"qubits":2,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1],"quadratic":[[0,1,14]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":9,"cost":0},{"index":1,"task":"t2","resource":"r1","start":10,"cost":6}],"conflicts":[]}]},"feasible_count":4,"exact_objective":15,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":1.9899001927115023e-05,"reduction_seconds":3.175300662405789e-05,"proof_seconds":0.0005199259903747588,"resource_audit_seconds":0.0014136870013317093},"milp":{"variables":11,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":15,"preference_cost":10,"change_cost":5,"changed_tasks":2,"max_start_shift":6,"choices":[1,2,0,0],"schedule":[{"task":"t0","resource":"r2","start":6,"end":8},{"task":"t1","resource":"r2","start":4,"end":6},{"task":"t2","resource":"r2","start":9,"end":12},{"task":"t3","resource":"r0","start":12,"end":14}]},"dual_bound":15.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.0011463349947007373},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":2},{"task":"t1","resource":"r1","start":4,"end":6},{"task":"t2","resource":"r2","start":9,"end":12},{"task":"t3","resource":"r0","start":12,"end":14}]}}
+{"input":{"file":"n4-s2-r0.json","tasks":4,"scenario":2,"replicate":0,"data_seed":2026092720,"sha256":"9af23d9f34d060ee7e63feab87ad80511bdd416663485f76bd21cc31c298d504"},"model":{"qubits":10,"penalty":40,"objective_bound":39,"offset":160,"linear":[-33,-40,-30,-32,-40,-31,-32,-36,-40,-27],"quadratic":[[0,3,40],[1,2,80],[1,3,80],[2,3,80],[2,4,40],[2,6,40],[2,7,40],[4,5,80],[4,6,80],[4,7,80],[5,6,80],[5,7,80],[5,8,40],[6,7,80],[6,8,40],[7,8,40],[8,9,80]],"domains":[[0],[1,2,3],[4,5,6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r2","start":1,"cost":7},{"index":1,"task":"t1","resource":"r1","start":4,"cost":0},{"index":2,"task":"t1","resource":"r2","start":9,"cost":10},{"index":3,"task":"t1","resource":"r0","start":1,"cost":8},{"index":4,"task":"t2","resource":"r2","start":7,"cost":0},{"index":5,"task":"t2","resource":"r2","start":12,"cost":9},{"index":6,"task":"t2","resource":"r0","start":9,"cost":8},{"index":7,"task":"t2","resource":"r1","start":8,"cost":4},{"index":8,"task":"t3","resource":"r0","start":10,"cost":0},{"index":9,"task":"t3","resource":"r0","start":16,"cost":13}],"conflicts":[{"i":0,"j":3,"reasons":["precedence"]},{"i":2,"j":4,"reasons":["resource","precedence"]},{"i":2,"j":6,"reasons":["precedence"]},{"i":2,"j":7,"reasons":["precedence"]},{"i":5,"j":8,"reasons":["precedence"]},{"i":6,"j":8,"reasons":["resource","precedence"]},{"i":7,"j":8,"reasons":["precedence"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":11,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[10],"total_qubits":10,"max_component_qubits":10,"cnot":52,"cry":6,"serial_depth_sum":54,"max_component_depth":54,"circuit_status":"constructed"},"propagation_full_phase":{"component_qubits":[8],"total_qubits":8,"max_component_qubits":8,"cnot":43,"cry":5,"serial_depth_sum":55,"max_component_depth":55,"circuit_status":"constructed"},"components_full_phase":{"component_qubits":[8],"total_qubits":8,"max_component_qubits":8,"cnot":43,"cry":5,"serial_depth_sum":55,"max_component_depth":55,"circuit_status":"constructed"},"components_auto_phase":{"component_qubits":[8],"total_qubits":8,"max_component_qubits":8,"cnot":27,"cry":5,"serial_depth_sum":39,"max_component_depth":39,"circuit_status":"constructed"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":7,"removals":[{"variable":3,"forced_by":0,"reasons":["precedence"]}],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[1,2,4,5,6,7,8,9]],"components":[{"qubits":8,"penalty":33,"objective_bound":32,"offset":99,"linear":[-33,-23,-33,-24,-25,-29,-33,-20],"quadratic":[[0,1,66],[1,2,33],[1,4,33],[1,5,33],[2,3,66],[2,4,66],[2,5,66],[3,4,66],[3,5,66],[3,6,33],[4,5,66],[4,6,33],[5,6,33],[6,7,66]],"domains":[[0,1],[2,3,4,5],[6,7]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r2","start":9,"cost":10},{"index":2,"task":"t2","resource":"r2","start":7,"cost":0},{"index":3,"task":"t2","resource":"r2","start":12,"cost":9},{"index":4,"task":"t2","resource":"r0","start":9,"cost":8},{"index":5,"task":"t2","resource":"r1","start":8,"cost":4},{"index":6,"task":"t3","resource":"r0","start":10,"cost":0},{"index":7,"task":"t3","resource":"r0","start":16,"cost":13}],"conflicts":[{"i":1,"j":2,"reasons":["resource","precedence"]},{"i":1,"j":4,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":3,"j":6,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]},{"i":5,"j":6,"reasons":["precedence"]}]}]},"feasible_count":6,"exact_objective":7,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":2.823199611157179e-05,"reduction_seconds":4.17849951190874e-05,"proof_seconds":0.0008402520033996552,"resource_audit_seconds":0.0034613449970493093},"milp":{"variables":11,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":7,"preference_cost":4,"change_cost":3,"changed_tasks":1,"max_start_shift":1,"choices":[1,0,0,0],"schedule":[{"task":"t0","resource":"r2","start":1,"end":4},{"task":"t1","resource":"r1","start":4,"end":5},{"task":"t2","resource":"r2","start":7,"end":10},{"task":"t3","resource":"r0","start":10,"end":11}]},"dual_bound":7.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":12,"runtime_seconds":0.0015027579938760027},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":3},{"task":"t1","resource":"r1","start":4,"end":5},{"task":"t2","resource":"r2","start":7,"end":10},{"task":"t3","resource":"r0","start":10,"end":11}]}}
+{"input":{"file":"n4-s2-r1.json","tasks":4,"scenario":2,"replicate":1,"data_seed":2026092721,"sha256":"757985044dbd854bc54a96d9bbd6811fa20c7d908ae98ae54c22029e6c189a5a"},"model":{"qubits":10,"penalty":24,"objective_bound":23,"offset":96,"linear":[-21,-24,-18,-21,-24,-14,-18,-16,-24,-20],"quadratic":[[1,2,48],[1,3,48],[1,7,24],[2,3,48],[2,4,24],[2,7,24],[2,9,24],[3,4,24],[3,7,24],[3,9,24],[4,5,48],[4,6,48],[4,7,48],[4,9,24],[5,6,48],[5,7,48],[5,8,24],[5,9,24],[6,7,48],[6,8,24],[6,9,24],[8,9,48]],"domains":[[0],[1,2,3],[4,5,6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r2","start":2,"cost":3},{"index":1,"task":"t1","resource":"r1","start":5,"cost":0},{"index":2,"task":"t1","resource":"r0","start":7,"cost":6},{"index":3,"task":"t1","resource":"r2","start":7,"cost":3},{"index":4,"task":"t2","resource":"r2","start":9,"cost":0},{"index":5,"task":"t2","resource":"r2","start":15,"cost":10},{"index":6,"task":"t2","resource":"r2","start":11,"cost":6},{"index":7,"task":"t2","resource":"r1","start":7,"cost":8},{"index":8,"task":"t3","resource":"r0","start":11,"cost":0},{"index":9,"task":"t3","resource":"r2","start":8,"cost":4}],"conflicts":[{"i":1,"j":7,"reasons":["resource","precedence"]},{"i":2,"j":4,"reasons":["precedence"]},{"i":2,"j":7,"reasons":["precedence"]},{"i":2,"j":9,"reasons":["group"]},{"i":3,"j":4,"reasons":["resource","precedence"]},{"i":3,"j":7,"reasons":["precedence"]},{"i":3,"j":9,"reasons":["resource","group"]},{"i":4,"j":9,"reasons":["resource","precedence"]},{"i":5,"j":8,"reasons":["precedence"]},{"i":5,"j":9,"reasons":["precedence"]},{"i":6,"j":8,"reasons":["precedence"]},{"i":6,"j":9,"reasons":["precedence"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":11,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[10],"total_qubits":10,"max_component_qubits":10,"cnot":62,"cry":6,"serial_depth_sum":69,"max_component_depth":69,"circuit_status":"constructed"},"propagation_full_phase":{"component_qubits":[9],"total_qubits":9,"max_component_qubits":9,"cnot":62,"cry":6,"serial_depth_sum":59,"max_component_depth":59,"circuit_status":"constructed"},"components_full_phase":{"component_qubits":[9],"total_qubits":9,"max_component_qubits":9,"cnot":62,"cry":6,"serial_depth_sum":59,"max_component_depth":59,"circuit_status":"constructed"},"components_auto_phase":{"component_qubits":[9],"total_qubits":9,"max_component_qubits":9,"cnot":42,"cry":6,"serial_depth_sum":33,"max_component_depth":33,"circuit_status":"constructed"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":3,"removals":[],"infeasible_task":null,"component_qubits":[9],"max_component_qubits":9,"component_to_original":[[1,2,3,4,5,6,7,8,9]],"components":[{"qubits":9,"penalty":21,"objective_bound":20,"offset":63,"linear":[-21,-15,-18,-21,-11,-15,-13,-21,-17],"quadratic":[[0,1,42],[0,2,42],[0,6,21],[1,2,42],[1,3,21],[1,6,21],[1,8,21],[2,3,21],[2,6,21],[2,8,21],[3,4,42],[3,5,42],[3,6,42],[3,8,21],[4,5,42],[4,6,42],[4,7,21],[4,8,21],[5,6,42],[5,7,21],[5,8,21],[7,8,42]],"domains":[[0,1,2],[3,4,5,6],[7,8]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r0","start":7,"cost":6},{"index":2,"task":"t1","resource":"r2","start":7,"cost":3},{"index":3,"task":"t2","resource":"r2","start":9,"cost":0},{"index":4,"task":"t2","resource":"r2","start":15,"cost":10},{"index":5,"task":"t2","resource":"r2","start":11,"cost":6},{"index":6,"task":"t2","resource":"r1","start":7,"cost":8},{"index":7,"task":"t3","resource":"r0","start":11,"cost":0},{"index":8,"task":"t3","resource":"r2","start":8,"cost":4}],"conflicts":[{"i":0,"j":6,"reasons":["resource","precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":6,"reasons":["precedence"]},{"i":1,"j":8,"reasons":["group"]},{"i":2,"j":3,"reasons":["resource","precedence"]},{"i":2,"j":6,"reasons":["precedence"]},{"i":2,"j":8,"reasons":["resource","group"]},{"i":3,"j":8,"reasons":["resource","precedence"]},{"i":4,"j":7,"reasons":["precedence"]},{"i":4,"j":8,"reasons":["precedence"]},{"i":5,"j":7,"reasons":["precedence"]},{"i":5,"j":8,"reasons":["precedence"]}]}]},"feasible_count":1,"exact_objective":3,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":2.9535003704950213e-05,"reduction_seconds":4.9833994125947356e-05,"proof_seconds":0.0007375350105576217,"resource_audit_seconds":0.003683040995383635},"milp":{"variables":11,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":3,"preference_cost":2,"change_cost":1,"changed_tasks":1,"max_start_shift":2,"choices":[1,0,0,0],"schedule":[{"task":"t0","resource":"r2","start":2,"end":5},{"task":"t1","resource":"r1","start":5,"end":8},{"task":"t2","resource":"r2","start":9,"end":10},{"task":"t3","resource":"r0","start":11,"end":13}]},"dual_bound":3.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":16,"runtime_seconds":0.0012826049933210015},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":3},{"task":"t1","resource":"r1","start":5,"end":8},{"task":"t2","resource":"r2","start":9,"end":10},{"task":"t3","resource":"r0","start":11,"end":13}]}}
+{"input":{"file":"n4-s2-r2.json","tasks":4,"scenario":2,"replicate":2,"data_seed":2026092722,"sha256":"ddc2942dc20ad1a731547e61f8630f5d0816fde5631800724760dfe9c09d6967"},"model":{"qubits":10,"penalty":33,"objective_bound":32,"offset":132,"linear":[-29,-33,-23,-23,-33,-26,-27,-25,-33,-23],"quadratic":[[0,1,33],[0,5,33],[1,2,66],[1,3,66],[1,5,33],[2,3,66],[2,4,33],[2,5,33],[2,6,33],[3,4,33],[3,5,33],[3,6,33],[3,8,33],[4,5,66],[4,6,66],[4,7,66],[5,6,66],[5,7,66],[6,7,66],[7,8,33],[8,9,66]],"domains":[[0],[1,2,3],[4,5,6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":1,"cost":4},{"index":1,"task":"t1","resource":"r1","start":1,"cost":0},{"index":2,"task":"t1","resource":"r0","start":4,"cost":10},{"index":3,"task":"t1","resource":"r1","start":5,"cost":10},{"index":4,"task":"t2","resource":"r2","start":3,"cost":0},{"index":5,"task":"t2","resource":"r1","start":1,"cost":7},{"index":6,"task":"t2","resource":"r0","start":4,"cost":6},{"index":7,"task":"t2","resource":"r0","start":7,"cost":8},{"index":8,"task":"t3","resource":"r0","start":6,"cost":0},{"index":9,"task":"t3","resource":"r1","start":12,"cost":10}],"conflicts":[{"i":0,"j":1,"reasons":["precedence"]},{"i":0,"j":5,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource","precedence"]},{"i":2,"j":4,"reasons":["precedence"]},{"i":2,"j":5,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["resource","precedence"]},{"i":3,"j":4,"reasons":["precedence"]},{"i":3,"j":5,"reasons":["precedence"]},{"i":3,"j":6,"reasons":["precedence"]},{"i":3,"j":8,"reasons":["group"]},{"i":7,"j":8,"reasons":["resource","precedence"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":11,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[10],"total_qubits":10,"max_component_qubits":10,"cnot":60,"cry":6,"serial_depth_sum":57,"max_component_depth":57,"circuit_status":"constructed"},"propagation_full_phase":{"component_qubits":[7],"total_qubits":7,"max_component_qubits":7,"cnot":34,"cry":4,"serial_depth_sum":31,"max_component_depth":31,"circuit_status":"constructed"},"components_full_phase":{"component_qubits":[7],"total_qubits":7,"max_component_qubits":7,"cnot":34,"cry":4,"serial_depth_sum":31,"max_component_depth":31,"circuit_status":"constructed"},"components_auto_phase":{"component_qubits":[7],"total_qubits":7,"max_component_qubits":7,"cnot":24,"cry":4,"serial_depth_sum":32,"max_component_depth":32,"circuit_status":"constructed"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":4,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[2,3,4,6,7,8,9]],"components":[{"qubits":7,"penalty":29,"objective_bound":28,"offset":87,"linear":[-19,-19,-29,-23,-21,-29,-19],"quadratic":[[0,1,58],[0,2,29],[0,3,29],[1,2,29],[1,3,29],[1,5,29],[2,3,58],[2,4,58],[3,4,58],[4,5,29],[5,6,58]],"domains":[[0,1],[2,3,4],[5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":4,"cost":10},{"index":1,"task":"t1","resource":"r1","start":5,"cost":10},{"index":2,"task":"t2","resource":"r2","start":3,"cost":0},{"index":3,"task":"t2","resource":"r0","start":4,"cost":6},{"index":4,"task":"t2","resource":"r0","start":7,"cost":8},{"index":5,"task":"t3","resource":"r0","start":6,"cost":0},{"index":6,"task":"t3","resource":"r1","start":12,"cost":10}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":3,"reasons":["resource","precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["group"]},{"i":4,"j":5,"reasons":["resource","precedence"]}]}]},"feasible_count":2,"exact_objective":32,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":2.9688002541661263e-05,"reduction_seconds":4.225999873597175e-05,"proof_seconds":0.0007049050036584958,"resource_audit_seconds":0.00276334400405176},"milp":{"variables":11,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":32,"preference_cost":18,"change_cost":14,"changed_tasks":4,"max_start_shift":6,"choices":[1,1,3,1],"schedule":[{"task":"t0","resource":"r0","start":1,"end":2},{"task":"t1","resource":"r0","start":4,"end":6},{"task":"t2","resource":"r0","start":7,"end":9},{"task":"t3","resource":"r1","start":12,"end":15}]},"dual_bound":32.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":15,"runtime_seconds":0.001251245994353667},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":1},{"task":"t1","resource":"r1","start":1,"end":3},{"task":"t2","resource":"r2","start":3,"end":5},{"task":"t3","resource":"r0","start":6,"end":9}]}}
+{"input":{"file":"n4-s2-r3.json","tasks":4,"scenario":2,"replicate":3,"data_seed":2026092723,"sha256":"62dac5d42a79a79081d8ca08bde2e705f673d2c0ea74c9cd10d419709542ed99"},"model":{"qubits":10,"penalty":31,"objective_bound":30,"offset":124,"linear":[-22,-31,-24,-25,-31,-23,-25,-22,-31,-26],"quadratic":[[0,1,31],[0,3,31],[0,4,31],[0,6,31],[1,2,62],[1,3,62],[1,6,31],[2,3,62],[2,4,31],[2,5,31],[2,6,31],[3,4,31],[3,6,31],[4,5,62],[4,6,62],[4,7,62],[5,6,62],[5,7,62],[5,8,31],[6,7,62],[7,8,31],[7,9,31],[8,9,62]],"domains":[[0],[1,2,3],[4,5,6,7],[8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":4,"cost":9},{"index":1,"task":"t1","resource":"r1","start":2,"cost":0},{"index":2,"task":"t1","resource":"r1","start":6,"cost":7},{"index":3,"task":"t1","resource":"r1","start":5,"cost":6},{"index":4,"task":"t2","resource":"r2","start":4,"cost":0},{"index":5,"task":"t2","resource":"r0","start":7,"cost":8},{"index":6,"task":"t2","resource":"r2","start":2,"cost":6},{"index":7,"task":"t2","resource":"r0","start":9,"cost":9},{"index":8,"task":"t3","resource":"r0","start":9,"cost":0},{"index":9,"task":"t3","resource":"r2","start":10,"cost":5}],"conflicts":[{"i":0,"j":1,"reasons":["precedence"]},{"i":0,"j":3,"reasons":["resource","precedence"]},{"i":0,"j":4,"reasons":["group"]},{"i":0,"j":6,"reasons":["group"]},{"i":1,"j":6,"reasons":["precedence"]},{"i":2,"j":4,"reasons":["precedence"]},{"i":2,"j":5,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["precedence"]},{"i":3,"j":4,"reasons":["precedence"]},{"i":3,"j":6,"reasons":["precedence"]},{"i":5,"j":8,"reasons":["resource","precedence"]},{"i":7,"j":8,"reasons":["resource","precedence"]},{"i":7,"j":9,"reasons":["precedence"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":11,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[10],"total_qubits":10,"max_component_qubits":10,"cnot":64,"cry":6,"serial_depth_sum":54,"max_component_depth":54,"circuit_status":"constructed"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0,2,7],"fixed_cost":25,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":5,"forced_by":2,"reasons":["precedence"]},{"variable":8,"forced_by":7,"reasons":["resource","precedence"]},{"variable":9,"forced_by":7,"reasons":["precedence"]}],"infeasible_task":"t3","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"feasible_count":0,"exact_objective":null,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":3.070301318075508e-05,"reduction_seconds":9.104987839236856e-06,"proof_seconds":0.0005581580044236034,"resource_audit_seconds":0.001024284996674396},"milp":{"variables":11,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":17,"runtime_seconds":0.0010051499994006008},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":2},{"task":"t1","resource":"r1","start":2,"end":4},{"task":"t2","resource":"r2","start":4,"end":7},{"task":"t3","resource":"r0","start":9,"end":11}]}}
+{"input":{"file":"n5-s0-r0.json","tasks":5,"scenario":0,"replicate":0,"data_seed":2026092800,"sha256":"3b096967495414f6c7221f29bc07fd93e00f4ffd2699ae23860da80297f245fb"},"model":{"qubits":13,"penalty":40,"objective_bound":39,"offset":200,"linear":[-32,-40,-32,-34,-40,-36,-31,-32,-40,-33,-40,-33,-34],"quadratic":[[0,2,40],[0,4,40],[0,5,40],[1,2,80],[1,3,80],[2,3,80],[2,4,40],[2,5,40],[4,5,80],[4,6,80],[4,7,80],[5,6,80],[5,7,80],[6,7,80],[7,10,40],[8,9,80],[10,11,80],[10,12,80],[11,12,80]],"domains":[[0],[1,2,3],[4,5,6,7],[8,9],[10,11,12]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r2","start":6,"cost":8},{"index":1,"task":"t1","resource":"r1","start":4,"cost":0},{"index":2,"task":"t1","resource":"r2","start":9,"cost":8},{"index":3,"task":"t1","resource":"r1","start":9,"cost":6},{"index":4,"task":"t2","resource":"r2","start":8,"cost":0},{"index":5,"task":"t2","resource":"r2","start":9,"cost":4},{"index":6,"task":"t2","resource":"r2","start":13,"cost":9},{"index":7,"task":"t2","resource":"r1","start":13,"cost":8},{"index":8,"task":"t3","resource":"r0","start":11,"cost":0},{"index":9,"task":"t3","resource":"r0","start":12,"cost":7},{"index":10,"task":"t4","resource":"r1","start":15,"cost":0},{"index":11,"task":"t4","resource":"r2","start":21,"cost":7},{"index":12,"task":"t4","resource":"r1","start":17,"cost":6}],"conflicts":[{"i":0,"j":2,"reasons":["resource"]},{"i":0,"j":4,"reasons":["resource","group"]},{"i":0,"j":5,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":2,"j":5,"reasons":["resource"]},{"i":7,"j":10,"reasons":["resource"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":14,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[13],"total_qubits":13,"max_component_qubits":13,"cnot":62,"cry":8,"serial_depth_sum":55,"max_component_depth":55,"circuit_status":"constructed"},"propagation_full_phase":{"component_qubits":[9],"total_qubits":9,"max_component_qubits":9,"cnot":29,"cry":5,"serial_depth_sum":26,"max_component_depth":26,"circuit_status":"constructed"},"components_full_phase":{"component_qubits":[2,5,2],"total_qubits":9,"max_component_qubits":5,"cnot":29,"cry":5,"serial_depth_sum":52,"max_component_depth":26,"circuit_status":"constructed"},"components_auto_phase":{"component_qubits":[2,5,2],"total_qubits":9,"max_component_qubits":5,"cnot":17,"cry":5,"serial_depth_sum":38,"max_component_depth":18,"circuit_status":"constructed"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[2,5,2],"max_component_qubits":5,"component_to_original":[[1,3],[6,7,10,11,12],[8,9]],"components":[{"qubits":2,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1],"quadratic":[[0,1,14]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":6}],"conflicts":[]},{"qubits":5,"penalty":17,"objective_bound":16,"offset":34,"linear":[-8,-9,-17,-10,-11],"quadratic":[[0,1,34],[1,2,17],[2,3,34],[2,4,34],[3,4,34]],"domains":[[0,1],[2,3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":13,"cost":9},{"index":1,"task":"t2","resource":"r1","start":13,"cost":8},{"index":2,"task":"t4","resource":"r1","start":15,"cost":0},{"index":3,"task":"t4","resource":"r2","start":21,"cost":7},{"index":4,"task":"t4","resource":"r1","start":17,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["resource"]}]},{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":11,"cost":0},{"index":1,"task":"t3","resource":"r0","start":12,"cost":7}],"conflicts":[]}]},"feasible_count":20,"exact_objective":17,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":3.494600241538137e-05,"reduction_seconds":7.450200791936368e-05,"proof_seconds":0.0022421670000767335,"resource_audit_seconds":0.003043075994355604},"milp":{"variables":14,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":17,"preference_cost":14,"change_cost":3,"changed_tasks":2,"max_start_shift":6,"choices":[1,0,2,0,0],"schedule":[{"task":"t0","resource":"r2","start":6,"end":9},{"task":"t1","resource":"r1","start":4,"end":5},{"task":"t2","resource":"r2","start":13,"end":14},{"task":"t3","resource":"r0","start":11,"end":13},{"task":"t4","resource":"r1","start":15,"end":16}]},"dual_bound":17.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":11,"runtime_seconds":0.0011530460033100098},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":3},{"task":"t1","resource":"r1","start":4,"end":5},{"task":"t2","resource":"r2","start":8,"end":9},{"task":"t3","resource":"r0","start":11,"end":13},{"task":"t4","resource":"r1","start":15,"end":16}]}}
+{"input":{"file":"n5-s0-r1.json","tasks":5,"scenario":0,"replicate":1,"data_seed":2026092801,"sha256":"33be7180ae045495e20118be59832c58b92de1b3606e624fb49ee921324b2178"},"model":{"qubits":13,"penalty":55,"objective_bound":54,"offset":275,"linear":[-44,-55,-47,-44,-55,-50,-46,-49,-55,-43,-55,-51,-44],"quadratic":[[1,2,110],[1,3,110],[2,3,110],[4,5,110],[4,6,110],[4,7,110],[5,6,110],[5,7,110],[5,8,55],[6,7,110],[8,9,110],[9,11,55],[10,11,110],[10,12,110],[11,12,110]],"domains":[[0],[1,2,3],[4,5,6,7],[8,9],[10,11,12]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r2","start":5,"cost":11},{"index":1,"task":"t1","resource":"r1","start":3,"cost":0},{"index":2,"task":"t1","resource":"r1","start":6,"cost":8},{"index":3,"task":"t1","resource":"r0","start":9,"cost":11},{"index":4,"task":"t2","resource":"r2","start":7,"cost":0},{"index":5,"task":"t2","resource":"r0","start":11,"cost":5},{"index":6,"task":"t2","resource":"r2","start":13,"cost":9},{"index":7,"task":"t2","resource":"r1","start":10,"cost":6},{"index":8,"task":"t3","resource":"r0","start":11,"cost":0},{"index":9,"task":"t3","resource":"r0","start":16,"cost":12},{"index":10,"task":"t4","resource":"r1","start":15,"cost":0},{"index":11,"task":"t4","resource":"r0","start":16,"cost":4},{"index":12,"task":"t4","resource":"r2","start":21,"cost":11}],"conflicts":[{"i":5,"j":8,"reasons":["resource"]},{"i":9,"j":11,"reasons":["resource"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":14,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[13],"total_qubits":13,"max_component_qubits":13,"cnot":54,"cry":8,"serial_depth_sum":40,"max_component_depth":40,"circuit_status":"constructed"},"propagation_full_phase":{"component_qubits":[12],"total_qubits":12,"max_component_qubits":12,"cnot":54,"cry":8,"serial_depth_sum":43,"max_component_depth":43,"circuit_status":"constructed"},"components_full_phase":{"component_qubits":[3,9],"total_qubits":12,"max_component_qubits":9,"cnot":54,"cry":8,"serial_depth_sum":68,"max_component_depth":42,"circuit_status":"constructed"},"components_auto_phase":{"component_qubits":[3,9],"total_qubits":12,"max_component_qubits":9,"cnot":28,"cry":8,"serial_depth_sum":42,"max_component_depth":25,"circuit_status":"constructed"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":11,"removals":[],"infeasible_task":null,"component_qubits":[3,9],"max_component_qubits":9,"component_to_original":[[1,2,3],[4,5,6,7,8,9,10,11,12]],"components":[{"qubits":3,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-4,-1],"quadratic":[[0,1,24],[0,2,24],[1,2,24]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":6,"cost":8},{"index":2,"task":"t1","resource":"r0","start":9,"cost":11}],"conflicts":[]},{"qubits":9,"penalty":33,"objective_bound":32,"offset":99,"linear":[-33,-28,-24,-27,-33,-21,-33,-29,-22],"quadratic":[[0,1,66],[0,2,66],[0,3,66],[1,2,66],[1,3,66],[1,4,33],[2,3,66],[4,5,66],[5,7,33],[6,7,66],[6,8,66],[7,8,66]],"domains":[[0,1,2,3],[4,5],[6,7,8]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":7,"cost":0},{"index":1,"task":"t2","resource":"r0","start":11,"cost":5},{"index":2,"task":"t2","resource":"r2","start":13,"cost":9},{"index":3,"task":"t2","resource":"r1","start":10,"cost":6},{"index":4,"task":"t3","resource":"r0","start":11,"cost":0},{"index":5,"task":"t3","resource":"r0","start":16,"cost":12},{"index":6,"task":"t4","resource":"r1","start":15,"cost":0},{"index":7,"task":"t4","resource":"r0","start":16,"cost":4},{"index":8,"task":"t4","resource":"r2","start":21,"cost":11}],"conflicts":[{"i":1,"j":4,"reasons":["resource"]},{"i":5,"j":7,"reasons":["resource"]}]}]},"feasible_count":51,"exact_objective":11,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":3.523701161611825e-05,"reduction_seconds":5.3413998102769256e-05,"proof_seconds":0.002967838998301886,"resource_audit_seconds":0.004717217001598328},"milp":{"variables":14,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":11,"preference_cost":8,"change_cost":3,"changed_tasks":1,"max_start_shift":5,"choices":[1,0,0,0,0],"schedule":[{"task":"t0","resource":"r2","start":5,"end":6},{"task":"t1","resource":"r1","start":3,"end":4},{"task":"t2","resource":"r2","start":7,"end":9},{"task":"t3","resource":"r0","start":11,"end":14},{"task":"t4","resource":"r1","start":15,"end":16}]},"dual_bound":11.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.0014016689965501428},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":1},{"task":"t1","resource":"r1","start":3,"end":4},{"task":"t2","resource":"r2","start":7,"end":9},{"task":"t3","resource":"r0","start":11,"end":14},{"task":"t4","resource":"r1","start":15,"end":16}]}}
+{"input":{"file":"n5-s0-r2.json","tasks":5,"scenario":0,"replicate":2,"data_seed":2026092802,"sha256":"76eebc2eead32041f9502f223147ce83aadee15cbd3aa7d085c0ef5733d8a662"},"model":{"qubits":13,"penalty":43,"objective_bound":42,"offset":215,"linear":[-38,-43,-35,-33,-43,-36,-38,-34,-43,-32,-43,-36,-36],"quadratic":[[0,1,43],[1,2,86],[1,3,86],[2,3,86],[2,6,43],[3,4,43],[3,5,43],[4,5,86],[4,6,86],[4,7,86],[5,6,86],[5,7,86],[6,7,86],[8,9,86],[10,11,86],[10,12,86],[11,12,86]],"domains":[[0],[1,2,3],[4,5,6,7],[8,9],[10,11,12]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":2,"cost":5},{"index":1,"task":"t1","resource":"r1","start":4,"cost":0},{"index":2,"task":"t1","resource":"r0","start":9,"cost":8},{"index":3,"task":"t1","resource":"r2","start":8,"cost":10},{"index":4,"task":"t2","resource":"r2","start":7,"cost":0},{"index":5,"task":"t2","resource":"r2","start":10,"cost":7},{"index":6,"task":"t2","resource":"r0","start":9,"cost":5},{"index":7,"task":"t2","resource":"r1","start":13,"cost":9},{"index":8,"task":"t3","resource":"r0","start":12,"cost":0},{"index":9,"task":"t3","resource":"r0","start":17,"cost":11},{"index":10,"task":"t4","resource":"r1","start":16,"cost":0},{"index":11,"task":"t4","resource":"r1","start":19,"cost":7},{"index":12,"task":"t4","resource":"r1","start":20,"cost":7}],"conflicts":[{"i":0,"j":1,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":3,"j":5,"reasons":["resource"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":14,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[13],"total_qubits":13,"max_component_qubits":13,"cnot":58,"cry":8,"serial_depth_sum":45,"max_component_depth":45,"circuit_status":"constructed"},"propagation_full_phase":{"component_qubits":[11],"total_qubits":11,"max_component_qubits":11,"cnot":49,"cry":7,"serial_depth_sum":42,"max_component_depth":42,"circuit_status":"constructed"},"components_full_phase":{"component_qubits":[6,2,3],"total_qubits":11,"max_component_qubits":6,"cnot":49,"cry":7,"serial_depth_sum":84,"max_component_depth":45,"circuit_status":"constructed"},"components_auto_phase":{"component_qubits":[6,2,3],"total_qubits":11,"max_component_qubits":6,"cnot":27,"cry":7,"serial_depth_sum":55,"max_component_depth":28,"circuit_status":"constructed"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":5,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[6,2,3],"max_component_qubits":6,"component_to_original":[[2,3,4,5,6,7],[8,9],[10,11,12]],"components":[{"qubits":6,"penalty":20,"objective_bound":19,"offset":40,"linear":[-12,-10,-20,-13,-15,-11],"quadratic":[[0,1,40],[0,4,20],[1,2,20],[1,3,20],[2,3,40],[2,4,40],[2,5,40],[3,4,40],[3,5,40],[4,5,40]],"domains":[[0,1],[2,3,4,5]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":9,"cost":8},{"index":1,"task":"t1","resource":"r2","start":8,"cost":10},{"index":2,"task":"t2","resource":"r2","start":7,"cost":0},{"index":3,"task":"t2","resource":"r2","start":10,"cost":7},{"index":4,"task":"t2","resource":"r0","start":9,"cost":5},{"index":5,"task":"t2","resource":"r1","start":13,"cost":9}],"conflicts":[{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource"]},{"i":1,"j":3,"reasons":["resource"]}]},{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-1],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":12,"cost":0},{"index":1,"task":"t3","resource":"r0","start":17,"cost":11}],"conflicts":[]},{"qubits":3,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1,-1],"quadratic":[[0,1,16],[0,2,16],[1,2,16]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r1","start":16,"cost":0},{"index":1,"task":"t4","resource":"r1","start":19,"cost":7},{"index":2,"task":"t4","resource":"r1","start":20,"cost":7}],"conflicts":[]}]},"feasible_count":30,"exact_objective":13,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":3.922700125258416e-05,"reduction_seconds":6.282399408519268e-05,"proof_seconds":0.0033789680019253865,"resource_audit_seconds":0.0042592919926391914},"milp":{"variables":14,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":13,"preference_cost":9,"change_cost":4,"changed_tasks":2,"max_start_shift":5,"choices":[1,1,0,0,0],"schedule":[{"task":"t0","resource":"r1","start":2,"end":4},{"task":"t1","resource":"r0","start":9,"end":10},{"task":"t2","resource":"r2","start":7,"end":9},{"task":"t3","resource":"r0","start":12,"end":15},{"task":"t4","resource":"r1","start":16,"end":18}]},"dual_bound":13.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":9,"runtime_seconds":0.001464929009671323},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":2},{"task":"t1","resource":"r1","start":4,"end":5},{"task":"t2","resource":"r2","start":7,"end":9},{"task":"t3","resource":"r0","start":12,"end":15},{"task":"t4","resource":"r1","start":16,"end":18}]}}
+{"input":{"file":"n5-s0-r3.json","tasks":5,"scenario":0,"replicate":3,"data_seed":2026092803,"sha256":"1add7f70a8e1245cbfeab43a68ecff0c4363a8466db647bfbc74addacf540223"},"model":{"qubits":13,"penalty":36,"objective_bound":35,"offset":180,"linear":[-33,-36,-30,-34,-36,-25,-28,-30,-36,-30,-36,-27,-30],"quadratic":[[1,2,72],[1,3,72],[2,3,72],[4,5,72],[4,6,72],[4,7,72],[5,6,72],[5,7,72],[5,10,36],[5,12,36],[6,7,72],[6,9,36],[6,10,36],[7,8,36],[8,9,72],[9,10,36],[9,12,36],[10,11,72],[10,12,72],[11,12,72]],"domains":[[0],[1,2,3],[4,5,6,7],[8,9],[10,11,12]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":1,"cost":3},{"index":1,"task":"t1","resource":"r1","start":4,"cost":0},{"index":2,"task":"t1","resource":"r1","start":7,"cost":6},{"index":3,"task":"t1","resource":"r1","start":5,"cost":2},{"index":4,"task":"t2","resource":"r2","start":7,"cost":0},{"index":5,"task":"t2","resource":"r0","start":13,"cost":11},{"index":6,"task":"t2","resource":"r1","start":11,"cost":8},{"index":7,"task":"t2","resource":"r0","start":8,"cost":6},{"index":8,"task":"t3","resource":"r0","start":9,"cost":0},{"index":9,"task":"t3","resource":"r1","start":11,"cost":6},{"index":10,"task":"t4","resource":"r1","start":12,"cost":0},{"index":11,"task":"t4","resource":"r2","start":17,"cost":9},{"index":12,"task":"t4","resource":"r1","start":13,"cost":6}],"conflicts":[{"i":5,"j":10,"reasons":["group"]},{"i":5,"j":12,"reasons":["group"]},{"i":6,"j":9,"reasons":["resource"]},{"i":6,"j":10,"reasons":["resource"]},{"i":7,"j":8,"reasons":["resource"]},{"i":9,"j":10,"reasons":["resource"]},{"i":9,"j":12,"reasons":["resource"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":14,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[13],"total_qubits":13,"max_component_qubits":13,"cnot":64,"cry":8,"serial_depth_sum":52,"max_component_depth":52,"circuit_status":"constructed"},"propagation_full_phase":{"component_qubits":[12],"total_qubits":12,"max_component_qubits":12,"cnot":64,"cry":8,"serial_depth_sum":49,"max_component_depth":49,"circuit_status":"constructed"},"components_full_phase":{"component_qubits":[3,9],"total_qubits":12,"max_component_qubits":9,"cnot":64,"cry":8,"serial_depth_sum":81,"max_component_depth":55,"circuit_status":"constructed"},"components_auto_phase":{"component_qubits":[3,9],"total_qubits":12,"max_component_qubits":9,"cnot":38,"cry":8,"serial_depth_sum":47,"max_component_depth":30,"circuit_status":"constructed"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":3,"removals":[],"infeasible_task":null,"component_qubits":[3,9],"max_component_qubits":9,"component_to_original":[[1,2,3],[4,5,6,7,8,9,10,11,12]],"components":[{"qubits":3,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1,-5],"quadratic":[[0,1,14],[0,2,14],[1,2,14]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":2}],"conflicts":[]},{"qubits":9,"penalty":27,"objective_bound":26,"offset":81,"linear":[-27,-16,-19,-21,-27,-21,-27,-18,-21],"quadratic":[[0,1,54],[0,2,54],[0,3,54],[1,2,54],[1,3,54],[1,6,27],[1,8,27],[2,3,54],[2,5,27],[2,6,27],[3,4,27],[4,5,54],[5,6,27],[5,8,27],[6,7,54],[6,8,54],[7,8,54]],"domains":[[0,1,2,3],[4,5],[6,7,8]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":7,"cost":0},{"index":1,"task":"t2","resource":"r0","start":13,"cost":11},{"index":2,"task":"t2","resource":"r1","start":11,"cost":8},{"index":3,"task":"t2","resource":"r0","start":8,"cost":6},{"index":4,"task":"t3","resource":"r0","start":9,"cost":0},{"index":5,"task":"t3","resource":"r1","start":11,"cost":6},{"index":6,"task":"t4","resource":"r1","start":12,"cost":0},{"index":7,"task":"t4","resource":"r2","start":17,"cost":9},{"index":8,"task":"t4","resource":"r1","start":13,"cost":6}],"conflicts":[{"i":1,"j":6,"reasons":["group"]},{"i":1,"j":8,"reasons":["group"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource"]},{"i":5,"j":8,"reasons":["resource"]}]}]},"feasible_count":27,"exact_objective":3,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":3.617699258029461e-05,"reduction_seconds":5.736500315833837e-05,"proof_seconds":0.0026813189906533808,"resource_audit_seconds":0.005033171008108184},"milp":{"variables":14,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":3,"preference_cost":2,"change_cost":1,"changed_tasks":1,"max_start_shift":1,"choices":[1,0,0,0,0],"schedule":[{"task":"t0","resource":"r1","start":1,"end":3},{"task":"t1","resource":"r1","start":4,"end":5},{"task":"t2","resource":"r2","start":7,"end":8},{"task":"t3","resource":"r0","start":9,"end":11},{"task":"t4","resource":"r1","start":12,"end":15}]},"dual_bound":3.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":12,"runtime_seconds":0.0018701529916143045},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":2},{"task":"t1","resource":"r1","start":4,"end":5},{"task":"t2","resource":"r2","start":7,"end":8},{"task":"t3","resource":"r0","start":9,"end":11},{"task":"t4","resource":"r1","start":12,"end":15}]}}
+{"input":{"file":"n5-s1-r0.json","tasks":5,"scenario":1,"replicate":0,"data_seed":2026092810,"sha256":"b81bb3521d067c55d1c324a08e3c60a2ac45fe3939757f55be879a4b92088626"},"model":{"qubits":12,"penalty":42,"objective_bound":41,"offset":210,"linear":[-31,-36,-40,-42,-31,-34,-36,-42,-39,-42,-39,-32],"quadratic":[[0,1,42],[0,2,42],[1,2,84],[3,4,84],[3,5,84],[3,6,84],[4,5,84],[4,6,84],[4,7,42],[5,6,84],[6,8,42],[7,8,84],[8,9,42],[9,10,84],[9,11,84],[10,11,84]],"domains":[[0],[1,2],[3,4,5,6],[7,8],[9,10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]},{"task":"t1","resource":"r1","start":5,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r2","start":5,"cost":11},{"index":1,"task":"t1","resource":"r2","start":2,"cost":6},{"index":2,"task":"t1","resource":"r2","start":5,"cost":2},{"index":3,"task":"t2","resource":"r2","start":10,"cost":0},{"index":4,"task":"t2","resource":"r0","start":15,"cost":11},{"index":5,"task":"t2","resource":"r2","start":12,"cost":8},{"index":6,"task":"t2","resource":"r1","start":11,"cost":6},{"index":7,"task":"t3","resource":"r0","start":14,"cost":0},{"index":8,"task":"t3","resource":"r1","start":14,"cost":3},{"index":9,"task":"t4","resource":"r1","start":17,"cost":0},{"index":10,"task":"t4","resource":"r2","start":17,"cost":3},{"index":11,"task":"t4","resource":"r1","start":23,"cost":10}],"conflicts":[{"i":0,"j":1,"reasons":["resource"]},{"i":0,"j":2,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":8,"j":9,"reasons":["resource"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":14,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[12],"total_qubits":12,"max_component_qubits":12,"cnot":53,"cry":7,"serial_depth_sum":48,"max_component_depth":48,"circuit_status":"constructed"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[0],"fixed_cost":11,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]},{"variable":2,"forced_by":0,"reasons":["resource"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"feasible_count":0,"exact_objective":null,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":3.84599989047274e-05,"reduction_seconds":6.182992365211248e-06,"proof_seconds":0.0019662490085465834,"resource_audit_seconds":0.0013261519925436005},"milp":{"variables":14,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":10,"runtime_seconds":0.0010818860027939081},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":3},{"task":"t1","resource":"r1","start":5,"end":7},{"task":"t2","resource":"r2","start":10,"end":12},{"task":"t3","resource":"r0","start":14,"end":16},{"task":"t4","resource":"r1","start":17,"end":20}]}}
+{"input":{"file":"n5-s1-r1.json","tasks":5,"scenario":1,"replicate":1,"data_seed":2026092811,"sha256":"b4220f8427bb64e26d03a7153c73a5b25aa2ddb0d03c2ca0ff8d4f47f2148faf"},"model":{"qubits":10,"penalty":38,"objective_bound":37,"offset":190,"linear":[-28,-38,-30,-31,-31,-38,-30,-38,-33,-27],"quadratic":[[1,2,76],[1,3,76],[1,4,76],[1,6,38],[2,3,76],[2,4,76],[2,7,38],[2,8,38],[3,4,76],[5,6,76],[5,8,38],[7,8,76],[7,9,76],[8,9,76]],"domains":[[],[0],[1,2,3,4],[5,6],[7,8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]},{"task":"t0","resource":"r1","start":5,"reasons":["downtime"]},{"task":"t1","resource":"r1","start":4,"reasons":["downtime"]},{"task":"t1","resource":"r0","start":3,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t1","resource":"r1","start":9,"cost":10},{"index":1,"task":"t2","resource":"r2","start":8,"cost":0},{"index":2,"task":"t2","resource":"r1","start":13,"cost":8},{"index":3,"task":"t2","resource":"r0","start":10,"cost":7},{"index":4,"task":"t2","resource":"r0","start":11,"cost":7},{"index":5,"task":"t3","resource":"r0","start":14,"cost":0},{"index":6,"task":"t3","resource":"r2","start":12,"cost":8},{"index":7,"task":"t4","resource":"r1","start":16,"cost":0},{"index":8,"task":"t4","resource":"r0","start":14,"cost":5},{"index":9,"task":"t4","resource":"r1","start":21,"cost":11}],"conflicts":[{"i":1,"j":6,"reasons":["resource"]},{"i":2,"j":7,"reasons":["resource"]},{"i":2,"j":8,"reasons":["group"]},{"i":5,"j":8,"reasons":["resource"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":14,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[10],"total_qubits":10,"max_component_qubits":10,"cnot":null,"cry":null,"serial_depth_sum":null,"max_component_depth":null,"circuit_status":"no_circuit"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"feasible_count":0,"exact_objective":null,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":3.2575990189798176e-05,"reduction_seconds":4.2100000428035855e-06,"proof_seconds":0.0013956920010969043,"resource_audit_seconds":8.358008926734328e-06},"milp":{"variables":14,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":11,"runtime_seconds":0.0010534580069361255},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":3},{"task":"t1","resource":"r1","start":4,"end":5},{"task":"t2","resource":"r2","start":8,"end":11},{"task":"t3","resource":"r0","start":14,"end":16},{"task":"t4","resource":"r1","start":16,"end":19}]}}
+{"input":{"file":"n5-s1-r2.json","tasks":5,"scenario":1,"replicate":2,"data_seed":2026092812,"sha256":"c5aef421815278af00fc874bf90bc25f908db0c626e7175edda15119410278a8"},"model":{"qubits":12,"penalty":43,"objective_bound":42,"offset":215,"linear":[-36,-40,-36,-43,-32,-34,-37,-43,-37,-43,-37,-32],"quadratic":[[0,1,43],[1,2,86],[2,3,43],[3,4,86],[3,5,86],[3,6,86],[4,5,86],[4,6,86],[4,7,43],[4,10,43],[5,6,86],[6,8,43],[7,8,86],[7,10,43],[9,10,86],[9,11,86],[10,11,86]],"domains":[[0],[1,2],[3,4,5,6],[7,8],[9,10,11]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]},{"task":"t1","resource":"r1","start":5,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r2","start":3,"cost":7},{"index":1,"task":"t1","resource":"r2","start":4,"cost":3},{"index":2,"task":"t1","resource":"r2","start":8,"cost":7},{"index":3,"task":"t2","resource":"r2","start":10,"cost":0},{"index":4,"task":"t2","resource":"r0","start":15,"cost":11},{"index":5,"task":"t2","resource":"r2","start":15,"cost":9},{"index":6,"task":"t2","resource":"r1","start":12,"cost":6},{"index":7,"task":"t3","resource":"r0","start":15,"cost":0},{"index":8,"task":"t3","resource":"r1","start":13,"cost":6},{"index":9,"task":"t4","resource":"r1","start":20,"cost":0},{"index":10,"task":"t4","resource":"r0","start":17,"cost":6},{"index":11,"task":"t4","resource":"r2","start":25,"cost":11}],"conflicts":[{"i":0,"j":1,"reasons":["resource"]},{"i":2,"j":3,"reasons":["resource"]},{"i":4,"j":7,"reasons":["resource"]},{"i":4,"j":10,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource"]},{"i":7,"j":10,"reasons":["resource"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":14,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[12],"total_qubits":12,"max_component_qubits":12,"cnot":55,"cry":7,"serial_depth_sum":42,"max_component_depth":42,"circuit_status":"constructed"},"propagation_full_phase":{"component_qubits":[8],"total_qubits":8,"max_component_qubits":8,"cnot":37,"cry":5,"serial_depth_sum":35,"max_component_depth":35,"circuit_status":"constructed"},"components_full_phase":{"component_qubits":[8],"total_qubits":8,"max_component_qubits":8,"cnot":37,"cry":5,"serial_depth_sum":35,"max_component_depth":35,"circuit_status":"constructed"},"components_auto_phase":{"component_qubits":[8],"total_qubits":8,"max_component_qubits":8,"cnot":23,"cry":5,"serial_depth_sum":24,"max_component_depth":24,"circuit_status":"constructed"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[0,2],"fixed_cost":14,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]},{"variable":3,"forced_by":2,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[4,5,6,7,8,9,10,11]],"components":[{"qubits":8,"penalty":29,"objective_bound":28,"offset":87,"linear":[-18,-20,-23,-29,-23,-29,-23,-18],"quadratic":[[0,1,58],[0,2,58],[0,3,29],[0,6,29],[1,2,58],[2,4,29],[3,4,58],[3,6,29],[5,6,58],[5,7,58],[6,7,58]],"domains":[[0,1,2],[3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":15,"cost":11},{"index":1,"task":"t2","resource":"r2","start":15,"cost":9},{"index":2,"task":"t2","resource":"r1","start":12,"cost":6},{"index":3,"task":"t3","resource":"r0","start":15,"cost":0},{"index":4,"task":"t3","resource":"r1","start":13,"cost":6},{"index":5,"task":"t4","resource":"r1","start":20,"cost":0},{"index":6,"task":"t4","resource":"r0","start":17,"cost":6},{"index":7,"task":"t4","resource":"r2","start":25,"cost":11}],"conflicts":[{"i":0,"j":3,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]}]}]},"feasible_count":9,"exact_objective":20,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":3.67519969586283e-05,"reduction_seconds":4.584400448948145e-05,"proof_seconds":0.0025294859951827675,"resource_audit_seconds":0.003658514004200697},"milp":{"variables":14,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":20,"preference_cost":13,"change_cost":7,"changed_tasks":3,"max_start_shift":3,"choices":[1,2,3,0,0],"schedule":[{"task":"t0","resource":"r2","start":3,"end":5},{"task":"t1","resource":"r2","start":8,"end":11},{"task":"t2","resource":"r1","start":12,"end":14},{"task":"t3","resource":"r0","start":15,"end":17},{"task":"t4","resource":"r1","start":20,"end":23}]},"dual_bound":20.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":11,"runtime_seconds":0.0012739029916701838},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":2},{"task":"t1","resource":"r1","start":5,"end":8},{"task":"t2","resource":"r2","start":10,"end":12},{"task":"t3","resource":"r0","start":15,"end":17},{"task":"t4","resource":"r1","start":20,"end":23}]}}
+{"input":{"file":"n5-s1-r3.json","tasks":5,"scenario":1,"replicate":3,"data_seed":2026092813,"sha256":"0c66b0c1a454629cd740c4653d9b44eb389629df1ca1f078e941e243b39dca70"},"model":{"qubits":10,"penalty":24,"objective_bound":23,"offset":120,"linear":[-21,-24,-19,-20,-15,-24,-17,-24,-22,-20],"quadratic":[[1,2,48],[1,3,48],[1,4,48],[2,3,48],[2,4,48],[2,7,24],[2,8,24],[2,9,24],[3,4,48],[4,9,24],[5,6,48],[6,7,24],[7,8,48],[7,9,48],[8,9,48]],"domains":[[],[0],[1,2,3,4],[5,6],[7,8,9]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]},{"task":"t0","resource":"r0","start":1,"reasons":["downtime"]},{"task":"t1","resource":"r1","start":2,"reasons":["downtime"]},{"task":"t1","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t1","resource":"r2","start":0,"cost":3},{"index":1,"task":"t2","resource":"r2","start":5,"cost":0},{"index":2,"task":"t2","resource":"r2","start":9,"cost":5},{"index":3,"task":"t2","resource":"r1","start":6,"cost":4},{"index":4,"task":"t2","resource":"r2","start":11,"cost":9},{"index":5,"task":"t3","resource":"r0","start":7,"cost":0},{"index":6,"task":"t3","resource":"r1","start":9,"cost":7},{"index":7,"task":"t4","resource":"r1","start":8,"cost":0},{"index":8,"task":"t4","resource":"r0","start":8,"cost":2},{"index":9,"task":"t4","resource":"r2","start":10,"cost":4}],"conflicts":[{"i":2,"j":7,"reasons":["group"]},{"i":2,"j":8,"reasons":["group"]},{"i":2,"j":9,"reasons":["resource","group"]},{"i":4,"j":9,"reasons":["resource","group"]},{"i":6,"j":7,"reasons":["resource"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":14,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[10],"total_qubits":10,"max_component_qubits":10,"cnot":null,"cry":null,"serial_depth_sum":null,"max_component_depth":null,"circuit_status":"no_circuit"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"feasible_count":0,"exact_objective":null,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":3.1871997634880245e-05,"reduction_seconds":3.945009666495025e-06,"proof_seconds":0.0012641799985431135,"resource_audit_seconds":8.078990504145622e-06},"milp":{"variables":14,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":12,"runtime_seconds":0.0010298220004187897},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":2},{"task":"t1","resource":"r1","start":2,"end":4},{"task":"t2","resource":"r2","start":5,"end":7},{"task":"t3","resource":"r0","start":7,"end":8},{"task":"t4","resource":"r1","start":8,"end":11}]}}
+{"input":{"file":"n5-s2-r0.json","tasks":5,"scenario":2,"replicate":0,"data_seed":2026092820,"sha256":"152b5cba1d3286c2bd54e7a1b8cc0452fd3718a4c5122fb49843942d50587d9c"},"model":{"qubits":13,"penalty":49,"objective_bound":48,"offset":245,"linear":[-45,-49,-37,-44,-49,-41,-43,-41,-49,-37,-49,-37,-41],"quadratic":[[1,2,98],[1,3,98],[2,3,98],[2,4,49],[2,6,49],[3,6,49],[4,5,98],[4,6,98],[4,7,98],[5,6,98],[5,7,98],[5,8,49],[5,12,49],[6,7,98],[7,8,49],[7,10,49],[7,12,49],[8,9,98],[8,12,49],[9,10,49],[9,12,49],[10,11,98],[10,12,98],[11,12,98]],"domains":[[0],[1,2,3],[4,5,6,7],[8,9],[10,11,12]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r2","start":1,"cost":4},{"index":1,"task":"t1","resource":"r1","start":3,"cost":0},{"index":2,"task":"t1","resource":"r1","start":9,"cost":12},{"index":3,"task":"t1","resource":"r0","start":4,"cost":5},{"index":4,"task":"t2","resource":"r2","start":8,"cost":0},{"index":5,"task":"t2","resource":"r0","start":12,"cost":8},{"index":6,"task":"t2","resource":"r0","start":6,"cost":6},{"index":7,"task":"t2","resource":"r2","start":14,"cost":8},{"index":8,"task":"t3","resource":"r0","start":13,"cost":0},{"index":9,"task":"t3","resource":"r2","start":19,"cost":12},{"index":10,"task":"t4","resource":"r1","start":16,"cost":0},{"index":11,"task":"t4","resource":"r0","start":22,"cost":12},{"index":12,"task":"t4","resource":"r0","start":14,"cost":8}],"conflicts":[{"i":2,"j":4,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["precedence"]},{"i":3,"j":6,"reasons":["resource","precedence"]},{"i":5,"j":8,"reasons":["resource","precedence"]},{"i":5,"j":12,"reasons":["resource","group"]},{"i":7,"j":8,"reasons":["precedence"]},{"i":7,"j":10,"reasons":["group"]},{"i":7,"j":12,"reasons":["group"]},{"i":8,"j":12,"reasons":["resource","precedence"]},{"i":9,"j":10,"reasons":["precedence"]},{"i":9,"j":12,"reasons":["precedence"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":14,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[13],"total_qubits":13,"max_component_qubits":13,"cnot":72,"cry":8,"serial_depth_sum":64,"max_component_depth":64,"circuit_status":"constructed"},"propagation_full_phase":{"component_qubits":[12],"total_qubits":12,"max_component_qubits":12,"cnot":72,"cry":8,"serial_depth_sum":53,"max_component_depth":53,"circuit_status":"constructed"},"components_full_phase":{"component_qubits":[12],"total_qubits":12,"max_component_qubits":12,"cnot":72,"cry":8,"serial_depth_sum":53,"max_component_depth":53,"circuit_status":"constructed"},"components_auto_phase":{"component_qubits":[12],"total_qubits":12,"max_component_qubits":12,"cnot":46,"cry":8,"serial_depth_sum":34,"max_component_depth":34,"circuit_status":"constructed"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":4,"removals":[],"infeasible_task":null,"component_qubits":[12],"max_component_qubits":12,"component_to_original":[[1,2,3,4,5,6,7,8,9,10,11,12]],"components":[{"qubits":12,"penalty":45,"objective_bound":44,"offset":180,"linear":[-45,-33,-40,-45,-37,-39,-37,-45,-33,-45,-33,-37],"quadratic":[[0,1,90],[0,2,90],[1,2,90],[1,3,45],[1,5,45],[2,5,45],[3,4,90],[3,5,90],[3,6,90],[4,5,90],[4,6,90],[4,7,45],[4,11,45],[5,6,90],[6,7,45],[6,9,45],[6,11,45],[7,8,90],[7,11,45],[8,9,45],[8,11,45],[9,10,90],[9,11,90],[10,11,90]],"domains":[[0,1,2],[3,4,5,6],[7,8],[9,10,11]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":12},{"index":2,"task":"t1","resource":"r0","start":4,"cost":5},{"index":3,"task":"t2","resource":"r2","start":8,"cost":0},{"index":4,"task":"t2","resource":"r0","start":12,"cost":8},{"index":5,"task":"t2","resource":"r0","start":6,"cost":6},{"index":6,"task":"t2","resource":"r2","start":14,"cost":8},{"index":7,"task":"t3","resource":"r0","start":13,"cost":0},{"index":8,"task":"t3","resource":"r2","start":19,"cost":12},{"index":9,"task":"t4","resource":"r1","start":16,"cost":0},{"index":10,"task":"t4","resource":"r0","start":22,"cost":12},{"index":11,"task":"t4","resource":"r0","start":14,"cost":8}],"conflicts":[{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":2,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":7,"reasons":["resource","precedence"]},{"i":4,"j":11,"reasons":["resource","group"]},{"i":6,"j":7,"reasons":["precedence"]},{"i":6,"j":9,"reasons":["group"]},{"i":6,"j":11,"reasons":["group"]},{"i":7,"j":11,"reasons":["resource","precedence"]},{"i":8,"j":9,"reasons":["precedence"]},{"i":8,"j":11,"reasons":["precedence"]}]}]},"feasible_count":15,"exact_objective":4,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":4.1108010918833315e-05,"reduction_seconds":6.370199844241142e-05,"proof_seconds":0.0036918709956808016,"resource_audit_seconds":0.005614063004031777},"milp":{"variables":14,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":4,"preference_cost":3,"change_cost":1,"changed_tasks":1,"max_start_shift":1,"choices":[1,0,0,0,0],"schedule":[{"task":"t0","resource":"r2","start":1,"end":3},{"task":"t1","resource":"r1","start":3,"end":6},{"task":"t2","resource":"r2","start":8,"end":11},{"task":"t3","resource":"r0","start":13,"end":15},{"task":"t4","resource":"r1","start":16,"end":19}]},"dual_bound":4.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":16,"runtime_seconds":0.0014081639965297654},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":2},{"task":"t1","resource":"r1","start":3,"end":6},{"task":"t2","resource":"r2","start":8,"end":11},{"task":"t3","resource":"r0","start":13,"end":15},{"task":"t4","resource":"r1","start":16,"end":19}]}}
+{"input":{"file":"n5-s2-r1.json","tasks":5,"scenario":2,"replicate":1,"data_seed":2026092821,"sha256":"e60d5db27b35fd0b91a5e09b8cd2d6b2a4325844d8588f602fd997e1a1310b48"},"model":{"qubits":13,"penalty":37,"objective_bound":36,"offset":185,"linear":[-31,-37,-27,-32,-37,-29,-30,-30,-37,-32,-37,-30,-31],"quadratic":[[0,1,37],[0,3,37],[1,2,74],[1,3,74],[2,3,74],[2,4,37],[2,5,37],[2,6,37],[2,7,37],[4,5,74],[4,6,74],[4,7,74],[5,6,74],[5,7,74],[5,9,37],[6,7,74],[6,8,37],[6,9,37],[6,12,37],[8,9,74],[8,12,37],[10,11,74],[10,12,74],[11,12,74]],"domains":[[0],[1,2,3],[4,5,6,7],[8,9],[10,11,12]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r2","start":4,"cost":6},{"index":1,"task":"t1","resource":"r1","start":4,"cost":0},{"index":2,"task":"t1","resource":"r0","start":9,"cost":10},{"index":3,"task":"t1","resource":"r2","start":4,"cost":5},{"index":4,"task":"t2","resource":"r2","start":8,"cost":0},{"index":5,"task":"t2","resource":"r1","start":7,"cost":8},{"index":6,"task":"t2","resource":"r0","start":11,"cost":7},{"index":7,"task":"t2","resource":"r2","start":6,"cost":7},{"index":8,"task":"t3","resource":"r0","start":13,"cost":0},{"index":9,"task":"t3","resource":"r1","start":11,"cost":5},{"index":10,"task":"t4","resource":"r1","start":17,"cost":0},{"index":11,"task":"t4","resource":"r0","start":19,"cost":7},{"index":12,"task":"t4","resource":"r0","start":14,"cost":6}],"conflicts":[{"i":0,"j":1,"reasons":["precedence"]},{"i":0,"j":3,"reasons":["resource","precedence"]},{"i":2,"j":4,"reasons":["precedence"]},{"i":2,"j":5,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["resource"]},{"i":2,"j":7,"reasons":["precedence"]},{"i":5,"j":9,"reasons":["resource"]},{"i":6,"j":8,"reasons":["resource","precedence"]},{"i":6,"j":9,"reasons":["precedence"]},{"i":6,"j":12,"reasons":["resource"]},{"i":8,"j":12,"reasons":["resource","precedence"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":14,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[13],"total_qubits":13,"max_component_qubits":13,"cnot":72,"cry":8,"serial_depth_sum":61,"max_component_depth":61,"circuit_status":"constructed"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0,2],"fixed_cost":16,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":2,"reasons":["precedence"]},{"variable":5,"forced_by":2,"reasons":["precedence"]},{"variable":6,"forced_by":2,"reasons":["resource"]},{"variable":7,"forced_by":2,"reasons":["precedence"]}],"infeasible_task":"t2","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"feasible_count":0,"exact_objective":null,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":4.7411987907253206e-05,"reduction_seconds":9.834009688347578e-06,"proof_seconds":0.0027473189984448254,"resource_audit_seconds":0.0013809189986204728},"milp":{"variables":14,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":16,"runtime_seconds":0.0014835100009804592},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":1},{"task":"t1","resource":"r1","start":4,"end":5},{"task":"t2","resource":"r2","start":8,"end":11},{"task":"t3","resource":"r0","start":13,"end":15},{"task":"t4","resource":"r1","start":17,"end":18}]}}
+{"input":{"file":"n5-s2-r2.json","tasks":5,"scenario":2,"replicate":2,"data_seed":2026092822,"sha256":"b57d495cbb305f84ddf041862a157fe19d8040ea2224b0d872defce8c9fd9e42"},"model":{"qubits":13,"penalty":39,"objective_bound":38,"offset":195,"linear":[-31,-39,-34,-35,-39,-32,-36,-33,-39,-26,-39,-35,-34],"quadratic":[[0,1,39],[0,2,39],[0,3,39],[0,5,39],[0,6,39],[0,7,39],[0,12,39],[1,2,78],[1,3,78],[2,3,78],[4,5,78],[4,6,78],[4,7,78],[5,6,78],[5,7,78],[5,8,39],[5,12,39],[6,7,78],[6,8,39],[7,8,39],[7,12,39],[8,9,78],[8,12,39],[9,10,39],[9,11,39],[9,12,39],[10,11,78],[10,12,78],[11,12,78]],"domains":[[0],[1,2,3],[4,5,6,7],[8,9],[10,11,12]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r1","start":6,"cost":8},{"index":1,"task":"t1","resource":"r1","start":2,"cost":0},{"index":2,"task":"t1","resource":"r2","start":0,"cost":5},{"index":3,"task":"t1","resource":"r2","start":3,"cost":4},{"index":4,"task":"t2","resource":"r2","start":5,"cost":0},{"index":5,"task":"t2","resource":"r1","start":7,"cost":7},{"index":6,"task":"t2","resource":"r2","start":6,"cost":3},{"index":7,"task":"t2","resource":"r1","start":8,"cost":6},{"index":8,"task":"t3","resource":"r0","start":6,"cost":0},{"index":9,"task":"t3","resource":"r0","start":12,"cost":13},{"index":10,"task":"t4","resource":"r1","start":10,"cost":0},{"index":11,"task":"t4","resource":"r2","start":11,"cost":4},{"index":12,"task":"t4","resource":"r1","start":7,"cost":5}],"conflicts":[{"i":0,"j":1,"reasons":["precedence"]},{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":3,"reasons":["precedence"]},{"i":0,"j":5,"reasons":["resource","group"]},{"i":0,"j":6,"reasons":["group"]},{"i":0,"j":7,"reasons":["resource"]},{"i":0,"j":12,"reasons":["resource","group"]},{"i":5,"j":8,"reasons":["precedence"]},{"i":5,"j":12,"reasons":["resource","group"]},{"i":6,"j":8,"reasons":["precedence"]},{"i":7,"j":8,"reasons":["precedence"]},{"i":7,"j":12,"reasons":["resource"]},{"i":8,"j":12,"reasons":["precedence"]},{"i":9,"j":10,"reasons":["precedence"]},{"i":9,"j":11,"reasons":["precedence"]},{"i":9,"j":12,"reasons":["precedence"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":14,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[13],"total_qubits":13,"max_component_qubits":13,"cnot":82,"cry":8,"serial_depth_sum":64,"max_component_depth":64,"circuit_status":"constructed"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["resource"]},{"variable":12,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"feasible_count":0,"exact_objective":null,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":4.749000072479248e-05,"reduction_seconds":8.34898673929274e-06,"proof_seconds":0.0028008640074403957,"resource_audit_seconds":0.0015959939919412136},"milp":{"variables":14,"best":null,"dual_bound":null,"gap":null,"status":"infeasible","solver_status":2,"message":"The problem is infeasible. (HiGHS Status 8: model_status is Infeasible; primal_status is None)","constraints":22,"runtime_seconds":0.0011502230045152828},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":2},{"task":"t1","resource":"r1","start":2,"end":3},{"task":"t2","resource":"r2","start":5,"end":6},{"task":"t3","resource":"r0","start":6,"end":9},{"task":"t4","resource":"r1","start":10,"end":11}]}}
+{"input":{"file":"n5-s2-r3.json","tasks":5,"scenario":2,"replicate":3,"data_seed":2026092823,"sha256":"8bbbac614632276aae9cc270fa7477a191f2e1d0742c961db5457df28975a83b"},"model":{"qubits":13,"penalty":47,"objective_bound":46,"offset":235,"linear":[-39,-47,-40,-36,-47,-43,-42,-40,-47,-37,-47,-44,-37],"quadratic":[[0,1,47],[0,2,47],[0,5,47],[1,2,94],[1,3,94],[2,3,94],[2,5,47],[3,4,47],[3,5,47],[4,5,94],[4,6,94],[4,7,94],[5,6,94],[5,7,94],[6,7,94],[6,8,47],[7,8,47],[7,10,47],[7,11,47],[8,9,94],[9,10,47],[9,11,47],[10,11,94],[10,12,94],[11,12,94]],"domains":[[0],[1,2,3],[4,5,6,7],[8,9],[10,11,12]],"pruned":[{"task":"t0","resource":"r0","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"t0","resource":"r0","start":6,"cost":8},{"index":1,"task":"t1","resource":"r1","start":5,"cost":0},{"index":2,"task":"t1","resource":"r2","start":8,"cost":7},{"index":3,"task":"t1","resource":"r2","start":11,"cost":11},{"index":4,"task":"t2","resource":"r2","start":9,"cost":0},{"index":5,"task":"t2","resource":"r0","start":8,"cost":4},{"index":6,"task":"t2","resource":"r2","start":12,"cost":5},{"index":7,"task":"t2","resource":"r2","start":14,"cost":7},{"index":8,"task":"t3","resource":"r0","start":13,"cost":0},{"index":9,"task":"t3","resource":"r0","start":18,"cost":10},{"index":10,"task":"t4","resource":"r1","start":16,"cost":0},{"index":11,"task":"t4","resource":"r2","start":16,"cost":3},{"index":12,"task":"t4","resource":"r2","start":20,"cost":10}],"conflicts":[{"i":0,"j":1,"reasons":["precedence"]},{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":5,"reasons":["resource","group"]},{"i":2,"j":5,"reasons":["precedence"]},{"i":3,"j":4,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["precedence"]},{"i":6,"j":8,"reasons":["precedence"]},{"i":7,"j":8,"reasons":["precedence"]},{"i":7,"j":10,"reasons":["group"]},{"i":7,"j":11,"reasons":["resource","group"]},{"i":9,"j":10,"reasons":["precedence"]},{"i":9,"j":11,"reasons":["precedence"]}]},"ablation":{"stages":{"raw_input":{"candidate_count":14,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[13],"total_qubits":13,"max_component_qubits":13,"cnot":74,"cry":8,"serial_depth_sum":61,"max_component_depth":61,"circuit_status":"constructed"},"propagation_full_phase":{"component_qubits":[7],"total_qubits":7,"max_component_qubits":7,"cnot":34,"cry":4,"serial_depth_sum":38,"max_component_depth":38,"circuit_status":"constructed"},"components_full_phase":{"component_qubits":[7],"total_qubits":7,"max_component_qubits":7,"cnot":34,"cry":4,"serial_depth_sum":38,"max_component_depth":38,"circuit_status":"constructed"},"components_auto_phase":{"component_qubits":[7],"total_qubits":7,"max_component_qubits":7,"cnot":24,"cry":4,"serial_depth_sum":29,"max_component_depth":29,"circuit_status":"constructed"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0,3],"fixed_cost":19,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":4,"forced_by":3,"reasons":["resource","precedence"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[6,7,8,9,10,11,12]],"components":[{"qubits":7,"penalty":28,"objective_bound":27,"offset":84,"linear":[-23,-21,-28,-18,-28,-25,-18],"quadratic":[[0,1,56],[0,2,28],[1,2,28],[1,4,28],[1,5,28],[2,3,56],[3,4,28],[3,5,28],[4,5,56],[4,6,56],[5,6,56]],"domains":[[0,1],[2,3],[4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":12,"cost":5},{"index":1,"task":"t2","resource":"r2","start":14,"cost":7},{"index":2,"task":"t3","resource":"r0","start":13,"cost":0},{"index":3,"task":"t3","resource":"r0","start":18,"cost":10},{"index":4,"task":"t4","resource":"r1","start":16,"cost":0},{"index":5,"task":"t4","resource":"r2","start":16,"cost":3},{"index":6,"task":"t4","resource":"r2","start":20,"cost":10}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":4,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource","group"]},{"i":3,"j":4,"reasons":["precedence"]},{"i":3,"j":5,"reasons":["precedence"]}]}]},"feasible_count":2,"exact_objective":44,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":4.5352004235610366e-05,"reduction_seconds":4.962499951943755e-05,"proof_seconds":0.0030572529940400273,"resource_audit_seconds":0.0035734330012928694},"milp":{"variables":14,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":44,"preference_cost":33,"change_cost":11,"changed_tasks":5,"max_start_shift":6,"choices":[1,2,2,1,2],"schedule":[{"task":"t0","resource":"r0","start":6,"end":9},{"task":"t1","resource":"r2","start":11,"end":12},{"task":"t2","resource":"r2","start":12,"end":15},{"task":"t3","resource":"r0","start":18,"end":19},{"task":"t4","resource":"r2","start":20,"end":21}]},"dual_bound":44.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":17,"runtime_seconds":0.0013881789927836508},"control":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0,0,0],"schedule":[{"task":"t0","resource":"r0","start":0,"end":3},{"task":"t1","resource":"r1","start":5,"end":6},{"task":"t2","resource":"r2","start":9,"end":12},{"task":"t3","resource":"r0","start":13,"end":14},{"task":"t4","resource":"r1","start":16,"end":17}]}}
diff --git a/Tutorials/LabScheduling/results/v2/overview.svg b/Tutorials/LabScheduling/results/v2/overview.svg
new file mode 100644
index 00000000..f8211d17
--- /dev/null
+++ b/Tutorials/LabScheduling/results/v2/overview.svg
@@ -0,0 +1,745 @@
+
+
+
diff --git a/Tutorials/LabScheduling/results/v2/provenance.json b/Tutorials/LabScheduling/results/v2/provenance.json
new file mode 100644
index 00000000..00a0460a
--- /dev/null
+++ b/Tutorials/LabScheduling/results/v2/provenance.json
@@ -0,0 +1,348 @@
+{
+ "manifest": {
+ "version": 2,
+ "generator_sha256": "c5b48eb8d0c60cd88977419370b3e7d26b12cdc6f4c54d96324637d62750c3a1",
+ "instances": [
+ {
+ "file": "n3-s0-r0.json",
+ "tasks": 3,
+ "scenario": 0,
+ "replicate": 0,
+ "data_seed": 2026092600,
+ "sha256": "480cb064b75a4ab276c0b40efe62867858b857455db58e9958a5f85325d7a250"
+ },
+ {
+ "file": "n3-s0-r1.json",
+ "tasks": 3,
+ "scenario": 0,
+ "replicate": 1,
+ "data_seed": 2026092601,
+ "sha256": "7bde9f6a7e91f5cf1c50260bd0205f601de5e61e9b34fa903b75cce5f58421ff"
+ },
+ {
+ "file": "n3-s0-r2.json",
+ "tasks": 3,
+ "scenario": 0,
+ "replicate": 2,
+ "data_seed": 2026092602,
+ "sha256": "980e1417cd9e25dfc8d552ad19d76c18194f0c2f9e736508360519214a64bd82"
+ },
+ {
+ "file": "n3-s0-r3.json",
+ "tasks": 3,
+ "scenario": 0,
+ "replicate": 3,
+ "data_seed": 2026092603,
+ "sha256": "7ad2d759c8cfcdcea0574002a9893cd6a38c1192ac23e4e2c6e61c77aca3e00e"
+ },
+ {
+ "file": "n3-s1-r0.json",
+ "tasks": 3,
+ "scenario": 1,
+ "replicate": 0,
+ "data_seed": 2026092610,
+ "sha256": "3102867f59fcc7a80a9774499507f0d52ad6f39327c3f7f339e0b781da147add"
+ },
+ {
+ "file": "n3-s1-r1.json",
+ "tasks": 3,
+ "scenario": 1,
+ "replicate": 1,
+ "data_seed": 2026092611,
+ "sha256": "b995fea8a97f1baea0ec2c94fd6283168e039b6b1a8cbac3c8da689008576b1f"
+ },
+ {
+ "file": "n3-s1-r2.json",
+ "tasks": 3,
+ "scenario": 1,
+ "replicate": 2,
+ "data_seed": 2026092612,
+ "sha256": "fcf3c44d08725a501917977b012a460df0065bddee7201e89fd75769f72f398f"
+ },
+ {
+ "file": "n3-s1-r3.json",
+ "tasks": 3,
+ "scenario": 1,
+ "replicate": 3,
+ "data_seed": 2026092613,
+ "sha256": "7e0b8b9923a6f00ec09c570c68a6964b0e4193de04571463499f254eea50a03c"
+ },
+ {
+ "file": "n3-s2-r0.json",
+ "tasks": 3,
+ "scenario": 2,
+ "replicate": 0,
+ "data_seed": 2026092620,
+ "sha256": "93d4314ad16586792abae5864149abd76be8d08cfbf47d1515c68e3f7cc4b3d4"
+ },
+ {
+ "file": "n3-s2-r1.json",
+ "tasks": 3,
+ "scenario": 2,
+ "replicate": 1,
+ "data_seed": 2026092621,
+ "sha256": "5562af7b6a4430f78b74bf07db67f2ee1e2a54dd89e76076d59f476405f51b02"
+ },
+ {
+ "file": "n3-s2-r2.json",
+ "tasks": 3,
+ "scenario": 2,
+ "replicate": 2,
+ "data_seed": 2026092622,
+ "sha256": "bdbd13d37d5b027158ad3b96617fcbbe127c26450b6577397a5c79ed73f463e3"
+ },
+ {
+ "file": "n3-s2-r3.json",
+ "tasks": 3,
+ "scenario": 2,
+ "replicate": 3,
+ "data_seed": 2026092623,
+ "sha256": "bf2d32ec2da41a07091bdc4b92d015e6b57398275f745d630dfabb8520cbe877"
+ },
+ {
+ "file": "n4-s0-r0.json",
+ "tasks": 4,
+ "scenario": 0,
+ "replicate": 0,
+ "data_seed": 2026092700,
+ "sha256": "08fc30fec69a29a96ae57e373739ff0162ba3fcff6ab53119895679a31029390"
+ },
+ {
+ "file": "n4-s0-r1.json",
+ "tasks": 4,
+ "scenario": 0,
+ "replicate": 1,
+ "data_seed": 2026092701,
+ "sha256": "c9739a81f0c0dbc6ef8e5d5061eccd04a8e046db3d7f670e0b7689d7d4cc69e8"
+ },
+ {
+ "file": "n4-s0-r2.json",
+ "tasks": 4,
+ "scenario": 0,
+ "replicate": 2,
+ "data_seed": 2026092702,
+ "sha256": "88b2b434a81b9ddf68c43898785b4f6f2c891ed28befc9a6f268e6b083dbc547"
+ },
+ {
+ "file": "n4-s0-r3.json",
+ "tasks": 4,
+ "scenario": 0,
+ "replicate": 3,
+ "data_seed": 2026092703,
+ "sha256": "125b0b1fe9d0a431b457b083014998f33cb82d918e140db12414608702847198"
+ },
+ {
+ "file": "n4-s1-r0.json",
+ "tasks": 4,
+ "scenario": 1,
+ "replicate": 0,
+ "data_seed": 2026092710,
+ "sha256": "aa0ece2791aae422f427562f52a225e34573890675432668dc4ecd85a8ccd78b"
+ },
+ {
+ "file": "n4-s1-r1.json",
+ "tasks": 4,
+ "scenario": 1,
+ "replicate": 1,
+ "data_seed": 2026092711,
+ "sha256": "836204438f461f317c06e52eee9095d95210ae5e5be6b81a69c216266aa22a36"
+ },
+ {
+ "file": "n4-s1-r2.json",
+ "tasks": 4,
+ "scenario": 1,
+ "replicate": 2,
+ "data_seed": 2026092712,
+ "sha256": "103484d367bba6939e95310aa224358325eba3c739c1d94228a9d8c28aee2e3f"
+ },
+ {
+ "file": "n4-s1-r3.json",
+ "tasks": 4,
+ "scenario": 1,
+ "replicate": 3,
+ "data_seed": 2026092713,
+ "sha256": "4984d9ea14045c7d5025867e5de16c2cb0e2873919cc72f376d781d8dcf6b318"
+ },
+ {
+ "file": "n4-s2-r0.json",
+ "tasks": 4,
+ "scenario": 2,
+ "replicate": 0,
+ "data_seed": 2026092720,
+ "sha256": "9af23d9f34d060ee7e63feab87ad80511bdd416663485f76bd21cc31c298d504"
+ },
+ {
+ "file": "n4-s2-r1.json",
+ "tasks": 4,
+ "scenario": 2,
+ "replicate": 1,
+ "data_seed": 2026092721,
+ "sha256": "757985044dbd854bc54a96d9bbd6811fa20c7d908ae98ae54c22029e6c189a5a"
+ },
+ {
+ "file": "n4-s2-r2.json",
+ "tasks": 4,
+ "scenario": 2,
+ "replicate": 2,
+ "data_seed": 2026092722,
+ "sha256": "ddc2942dc20ad1a731547e61f8630f5d0816fde5631800724760dfe9c09d6967"
+ },
+ {
+ "file": "n4-s2-r3.json",
+ "tasks": 4,
+ "scenario": 2,
+ "replicate": 3,
+ "data_seed": 2026092723,
+ "sha256": "62dac5d42a79a79081d8ca08bde2e705f673d2c0ea74c9cd10d419709542ed99"
+ },
+ {
+ "file": "n5-s0-r0.json",
+ "tasks": 5,
+ "scenario": 0,
+ "replicate": 0,
+ "data_seed": 2026092800,
+ "sha256": "3b096967495414f6c7221f29bc07fd93e00f4ffd2699ae23860da80297f245fb"
+ },
+ {
+ "file": "n5-s0-r1.json",
+ "tasks": 5,
+ "scenario": 0,
+ "replicate": 1,
+ "data_seed": 2026092801,
+ "sha256": "33be7180ae045495e20118be59832c58b92de1b3606e624fb49ee921324b2178"
+ },
+ {
+ "file": "n5-s0-r2.json",
+ "tasks": 5,
+ "scenario": 0,
+ "replicate": 2,
+ "data_seed": 2026092802,
+ "sha256": "76eebc2eead32041f9502f223147ce83aadee15cbd3aa7d085c0ef5733d8a662"
+ },
+ {
+ "file": "n5-s0-r3.json",
+ "tasks": 5,
+ "scenario": 0,
+ "replicate": 3,
+ "data_seed": 2026092803,
+ "sha256": "1add7f70a8e1245cbfeab43a68ecff0c4363a8466db647bfbc74addacf540223"
+ },
+ {
+ "file": "n5-s1-r0.json",
+ "tasks": 5,
+ "scenario": 1,
+ "replicate": 0,
+ "data_seed": 2026092810,
+ "sha256": "b81bb3521d067c55d1c324a08e3c60a2ac45fe3939757f55be879a4b92088626"
+ },
+ {
+ "file": "n5-s1-r1.json",
+ "tasks": 5,
+ "scenario": 1,
+ "replicate": 1,
+ "data_seed": 2026092811,
+ "sha256": "b4220f8427bb64e26d03a7153c73a5b25aa2ddb0d03c2ca0ff8d4f47f2148faf"
+ },
+ {
+ "file": "n5-s1-r2.json",
+ "tasks": 5,
+ "scenario": 1,
+ "replicate": 2,
+ "data_seed": 2026092812,
+ "sha256": "c5aef421815278af00fc874bf90bc25f908db0c626e7175edda15119410278a8"
+ },
+ {
+ "file": "n5-s1-r3.json",
+ "tasks": 5,
+ "scenario": 1,
+ "replicate": 3,
+ "data_seed": 2026092813,
+ "sha256": "0c66b0c1a454629cd740c4653d9b44eb389629df1ca1f078e941e243b39dca70"
+ },
+ {
+ "file": "n5-s2-r0.json",
+ "tasks": 5,
+ "scenario": 2,
+ "replicate": 0,
+ "data_seed": 2026092820,
+ "sha256": "152b5cba1d3286c2bd54e7a1b8cc0452fd3718a4c5122fb49843942d50587d9c"
+ },
+ {
+ "file": "n5-s2-r1.json",
+ "tasks": 5,
+ "scenario": 2,
+ "replicate": 1,
+ "data_seed": 2026092821,
+ "sha256": "e60d5db27b35fd0b91a5e09b8cd2d6b2a4325844d8588f602fd997e1a1310b48"
+ },
+ {
+ "file": "n5-s2-r2.json",
+ "tasks": 5,
+ "scenario": 2,
+ "replicate": 2,
+ "data_seed": 2026092822,
+ "sha256": "b57d495cbb305f84ddf041862a157fe19d8040ea2224b0d872defce8c9fd9e42"
+ },
+ {
+ "file": "n5-s2-r3.json",
+ "tasks": 5,
+ "scenario": 2,
+ "replicate": 3,
+ "data_seed": 2026092823,
+ "sha256": "8bbbac614632276aae9cc270fa7477a191f2e1d0742c961db5457df28975a83b"
+ }
+ ],
+ "optimization_seeds": [
+ 0,
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9
+ ],
+ "training": {
+ "layers": 1,
+ "shots": 512,
+ "maxiter": 60,
+ "restarts": 2
+ },
+ "shots": [
+ 8,
+ 16,
+ 32,
+ 64,
+ 128,
+ 512
+ ],
+ "selection": "all instances retained; no solver-based selection or tuning"
+ },
+ "manifest_sha256": "e48a1ae889b2f55662ebf6e9e85b100df742a986513efc0b936c4c35daadc737",
+ "python": "3.12.3",
+ "platform": "Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39",
+ "packages": {
+ "numpy": "2.5.3",
+ "scipy": "1.18.1",
+ "pyqpanda3": "0.4.1",
+ "pyqpanda_alg": "2.0.0"
+ },
+ "sources": {
+ "benchmark_v2.py": "f7db56733a7c75c7279489c1471e83df80f3c08ef53e6c5a8b25a1fcade2e049",
+ "ablation.py": "cd8c41d2d100611ee1be776cd1e1d07144bb6b1f250d707f8859e3b27d6c2661",
+ "stress_benchmark.py": "30c66c5a33cbf8c72c62c422a6a442c7504f3359142d1571f2d071e6a0d0ed4e",
+ "core/milp.py": "fc3b22b705beb95491b6b9c51f875480a021bbb40607810abdc04fd6dc8b97a2",
+ "core/__init__.py": "232397fe0094a0c799b939f58da7689a60b8e40b243a7bce1e1cb072ae8056d7",
+ "core/__main__.py": "9ea4aa0d5ffe882a5e6ffe8eb09b79dcf9dc4de4fbfafbbec33354f8c2ec6046",
+ "core/classical.py": "d1bd575af9969c49cda59cd15328d98f176bb004ebc22e887be173b43d69aac5",
+ "core/problem.py": "22ce9db50a98dc8ad8ee8cc1f9b06cef3e5469df4cfe2b043ad87ad360292990",
+ "core/report.py": "96b5dbc737ea4f80b737b6acfb030fcdb33b0a65b2dbf5eb8ff641e8861df2aa",
+ "core/model.py": "f442c4751a7f17f66e5fae331e14f75eaa327177af5346a49ceddb87e86ef509",
+ "core/bookings.py": "dba45010ef9e5f6a1781d8a8d79e9f3faf4fbf90223f526f550687723de1382a",
+ "core/quantum.py": "3f8469be5a92afbf87eb0c82f7b80282a6443edfbe335a55635717f40501522f",
+ "core/metrics.py": "b084507c46a7bf6cc1ca2a6a116156e24a23efb3fdea699f02b4a29bdbd503e0",
+ "core/reduction.py": "99d07b5b02592a30cd8eb8c141e6bddcbdc2e85b366a057bd4b699018cd491e1"
+ }
+}
diff --git a/Tutorials/LabScheduling/results/v2/replay.json b/Tutorials/LabScheduling/results/v2/replay.json
new file mode 100644
index 00000000..cc6cce1a
--- /dev/null
+++ b/Tutorials/LabScheduling/results/v2/replay.json
@@ -0,0 +1,8 @@
+{
+ "instances_compared": 36,
+ "paired_runs_compared": 360,
+ "match": true,
+ "ignored_fields": "all keys ending in _seconds; no other exclusions",
+ "first_run_seconds": 97.70505226500973,
+ "second_run_seconds": 114.04295163899951
+}
diff --git a/Tutorials/LabScheduling/results/v2/runs.jsonl b/Tutorials/LabScheduling/results/v2/runs.jsonl
new file mode 100644
index 00000000..490ae374
--- /dev/null
+++ b/Tutorials/LabScheduling/results/v2/runs.jsonl
@@ -0,0 +1,360 @@
+{"instance":"n3-s0-r0.json","seed":0,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":4,"end":7,"reserved_end":7,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.4128922955590846,1.2482570517302491],"expected_energy":18.685613110118837,"initial_expected_energy":21.518164110247554,"history":[21.518164110247554,21.337937205474255,21.55292985532588,23.420591758053597,18.69526140834432,23.458496126443222,20.258258638191073,18.78518096970787,18.90338066013869,18.872803188035444,18.708354959623883,18.743975380826946,18.69811040116637,18.695218894117914,18.694981496386205,18.695122631872216,18.697368323813787,18.692379802393305,18.692704140767347,18.69272922778757,18.69253699409777,18.69213000070175,18.691975695570598,18.691794363896207,18.691457025816774,18.690799526779607,18.68950100305631,18.687925601922892,18.70065125737285,18.697756873606497,18.68771499461696,18.687242232533315,18.687643088712843,18.687390402776046,18.68704803866678,18.68709105724233,18.68702126797438,18.686974931876044,18.686890753438757,18.686762470336724,18.687806719809565,18.686674815685503,18.6865760659281,18.686697035178373,18.686445963056443,18.686395721100695,18.686309856260962,18.686149228145787,18.685888841230312,18.68704613569183,18.687205340444912,18.6858032578276,18.685854390698587,18.685776423278796,18.685890724426947,18.68571382208453,18.685672500705184,18.68564076456937,18.685693651560822,18.685613110118837,26.13604633154808,26.546565475912054,22.819723462607204,20.990639833529475,22.361686244126982,22.876813190107512,20.102796623671274,22.826374967058744,20.235626770211546,20.632296761587803,20.01615495835454,19.70227880919871,19.650980744297893,19.79247021186658,19.6106263684179,19.593944353216436,19.708355262864124,19.57381327952175,19.543929151985964,19.519215933637945,19.477427908972928,19.40316829654378,19.320497009506525,19.358102703812413,19.54432482111337,19.311270582243075,19.33209559612107,19.307791103660094,19.29869330711788,19.28788659614239,19.292947412331337,19.28148805963376,19.27648238537447,19.2752592536484,19.25865000617552,19.246426767908513,19.223344156363147,19.225927195208314,19.217403830366305,19.23298949006982,19.221692070737497,19.209060754194006,19.204258139627147,19.191885608697696,19.18119666833251,19.177527295221722,19.1450591802483,19.141952513199822,19.124331611819244,19.103254120840617,19.086472466056804,19.174715292627113,19.076171031672203,19.058857810007364,19.032816634508137,19.31284078531833,19.025557501112274,19.00675034321271,18.962858893384944,18.879824922641443],"feasible_probability":0.9944597988012455,"one_hot_probability":1.0,"sampled_feasible_fraction":0.99609375,"counts":{"00010011":121,"00010101":31,"00011001":2,"00100011":32,"00100101":19,"00101001":86,"01000011":39,"01000101":1,"01001001":42,"10000011":99,"10000101":6,"10001001":34},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13160810399858747},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":18,"objective_bound":17,"offset":36,"linear":[-18,-11,-11,-18,-9,-14,-8],"quadratic":[[0,1,36],[0,2,36],[1,2,36],[2,3,18],[3,4,36],[3,5,36],[3,6,36],[4,5,36],[4,6,36],[5,6,36]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r0","start":6,"cost":7},{"index":2,"task":"t1","resource":"r2","start":8,"cost":7},{"index":3,"task":"t2","resource":"r2","start":8,"cost":0},{"index":4,"task":"t2","resource":"r2","start":13,"cost":9},{"index":5,"task":"t2","resource":"r1","start":9,"cost":4},{"index":6,"task":"t2","resource":"r0","start":14,"cost":10}],"conflicts":[{"i":2,"j":3,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":4,"end":7,"reserved_end":7,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false}],"bits":[1,0,0,1,0,0,0],"qubo_energy":0},"seed":3757552657,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[-2.837944141373726,0.35433002887079834],"expected_energy":6.277620805343229,"initial_expected_energy":15.8153945535732,"history":[15.8153945535732,15.949757784162426,11.729379913420136,9.92778373182049,11.915788413794274,11.877274931397329,11.306104197698016,10.391049055026004,9.694484630958158,9.285714063040158,9.031972776809752,9.213165497449236,9.114561780490714,9.006384873558705,9.052480087658843,9.001520721844496,8.985480531038014,8.971275481183266,8.979563864072803,8.959966105682067,8.960113473620186,8.963239486485637,8.954007464648283,8.944413663857327,8.938367625624716,8.99159179445708,8.920949969370767,8.907397449723879,8.886493744993542,8.83860749066022,8.749373502639308,8.826548525425368,8.991001069312894,8.730562522732825,8.823720583870662,8.72665879455578,8.706709940558024,8.669181172414039,8.633198763497056,8.652888030103473,8.73732379685347,8.634703044013929,8.61971770945469,8.598931565949297,8.580580894181066,8.566337236044317,8.581285005014546,8.55846839778024,8.551542150730542,8.559433369382955,8.54546747688474,8.537591116873374,8.522950949049648,8.512375848861463,8.486271921074788,8.54289152466009,8.470648401242624,8.497791878513068,8.468553186517475,8.461618909786832,11.259045370459745,11.59497629689105,11.385954660522005,10.792148124962802,9.834387749617722,16.218249264373895,11.252009176005394,8.314381203699295,12.377164883065033,12.528717728420526,10.30351497533408,8.249320628503835,8.214999664237581,8.144323945243347,7.984616629264359,7.662712758958722,7.1738692834027145,14.083598097047549,11.525324769430176,7.0648929691570785,8.367560496677287,7.501826559280294,7.071530723303351,7.053646148292245,7.0611456413919536,7.068467322430735,7.030503493176536,7.012763852893346,7.055090594919046,6.9983513609971295,6.9863683684608,6.983356717722874,6.945220971660993,6.942959408374057,6.894829899428431,6.859577383416056,6.8057411308992775,6.68819671298349,6.5839455395609345,7.028312301942108,7.385721017897978,6.469335148313093,6.525296106615061,6.460160635228183,6.499366878069465,6.449053154893225,6.437741020691398,6.426335442641037,6.398362876077866,6.393129502453122,6.36069763851022,6.3724971445715575,6.366508690388782,6.354780617559555,6.362743569166857,6.3518806572577775,6.346367567995486,6.336142333601136,6.3170281309547995,6.277620805343229],"feasible_probability":0.9901558822237491,"one_hot_probability":1.0,"sampled_feasible_fraction":0.9921875,"counts":{"0001001":161,"0001010":7,"0001100":4,"0010001":20,"0010010":13,"0010100":15,"0100001":122,"0100010":95,"0100100":50,"1000001":17,"1000010":1,"1000100":7},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12405680099618621}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.9901558822237491,"total_shots":512,"runtime_seconds":0.12423205500817858},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":12,"optimal_probability":0.2664952365366342,"feasible_probability":0.9944597988012455,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.9166666666666666,"shots_for_95_percent":10,"hit_curve":[{"shots":8,"quantum":0.9162039574973104,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9929782232608875,"uniform":0.7514675930866618},{"shots":32,"quantum":0.999950694651426,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999975689826,"uniform":0.9961846700381721},{"shots":128,"quantum":1.0,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":12,"optimal_probability":0.3100995894398715,"feasible_probability":0.9901558822237492,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.9166666666666666,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9486794588482699,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9973662020558935,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9999930631083896,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999999518795,"uniform":0.9961846700381721},{"shots":128,"quantum":1.0,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.3100995894398715,"diagnostic_seconds":0.0033837770024547353}
+{"instance":"n3-s0-r0.json","seed":1,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":4,"end":7,"reserved_end":7,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.1110738427654643,1.2416959542525372],"expected_energy":18.72713574863898,"initial_expected_energy":22.984122229468703,"history":[22.984122229468703,23.47067626838122,21.255712468749095,22.59056687195648,22.789595746999968,21.970382806384556,19.84263716377999,21.404760480621235,20.0264190511249,20.032787661976982,19.661163210540504,19.790871090864158,19.703410628526424,19.728938260319865,19.710576563826386,19.664845439752213,19.64026238733414,19.599787987085993,19.521254098934655,19.438204611319854,19.44899140155747,19.591220776816087,19.489244343225877,19.37787880601446,19.410191033455256,19.359386855625928,19.343687636246955,19.31030037105772,19.250609551132605,19.57456912997423,19.315144780453068,19.291743213073083,19.240329404234565,19.235183637028484,19.21900794083264,19.20397022494847,19.17885664851147,19.300123394582258,19.170605967128008,19.154481486863038,19.12125152973617,19.06261345209073,18.9656116304158,19.89885857305941,19.634406631025705,18.94211471345871,19.077837748518238,18.979174830179616,18.941392421928867,18.935742873283786,18.925589123886965,18.909374908640256,18.877368329786997,18.83304740737715,18.984390390120232,18.999305117419407,18.825452325671606,18.818261686549217,18.816964668258052,18.838155915808887,21.97916877651886,21.58081253244384,22.19423699922552,23.048393056903052,19.155642458225078,22.405975555034278,20.190165783068505,19.22955304223317,20.116765151898342,19.110896735080203,19.05783742564066,19.006522064019222,19.008778824143256,19.110416164030504,19.0404529412317,19.013747246675866,18.996421186871217,18.984053786740738,18.969357417439518,18.952512024315915,18.945098184947014,19.039074428292153,18.924603357998578,18.92001722162714,18.908676140839784,18.887864629899735,18.85193424999444,18.853475037233654,18.964851107632413,18.846229860696496,18.913315580115636,18.841257894431138,18.83820518520352,18.834953430175112,18.859424109246653,18.831428150006865,18.826233898851406,18.822138331169,18.815345762378342,18.803111119769774,18.791056570253552,18.803995412664776,18.839267791965383,18.78583354991433,18.778373384305034,18.776643233916914,18.790808960151995,18.77291233976691,18.77047225919385,18.76817945882752,18.767109052894778,18.760934459372947,18.76189454236365,18.759944887536676,18.762411828582856,18.75744200148337,18.755395575249434,18.75086990081234,18.742919232733787,18.72713574863898],"feasible_probability":0.9964253519621641,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.998046875,"counts":{"00010011":122,"00010101":34,"00011001":1,"00100011":23,"00100101":18,"00101001":79,"01000011":47,"01000101":4,"01001001":60,"10000011":88,"10000101":7,"10001001":29},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13273701501020696},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":18,"objective_bound":17,"offset":36,"linear":[-18,-11,-11,-18,-9,-14,-8],"quadratic":[[0,1,36],[0,2,36],[1,2,36],[2,3,18],[3,4,36],[3,5,36],[3,6,36],[4,5,36],[4,6,36],[5,6,36]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r0","start":6,"cost":7},{"index":2,"task":"t1","resource":"r2","start":8,"cost":7},{"index":3,"task":"t2","resource":"r2","start":8,"cost":0},{"index":4,"task":"t2","resource":"r2","start":13,"cost":9},{"index":5,"task":"t2","resource":"r1","start":9,"cost":4},{"index":6,"task":"t2","resource":"r0","start":14,"cost":10}],"conflicts":[{"i":2,"j":3,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":4,"end":7,"reserved_end":7,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false}],"bits":[1,0,0,1,0,0,0],"qubo_energy":0},"seed":1641411168,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[-2.0432645000894647,0.3020495943493035],"expected_energy":7.162154971881826,"initial_expected_energy":8.43937700751242,"history":[8.43937700751242,8.301418316044092,12.275655984008539,13.073641782428899,9.464465530440654,9.417607438436015,8.292717419340445,8.197328772852018,8.302724611566935,8.19895782388798,8.197681129115931,8.203228401993941,8.197404143210104,8.199210550297234,8.197115591577019,8.19735736049124,8.197089953524479,8.197146945511783,8.197089664549368,8.197068657564028,8.197033210240264,8.196956636780271,8.19681117218733,8.1967282706658,8.197598658807824,8.198049210495636,8.196729988435864,8.1965412206134,8.196673549874191,8.19657331182286,8.196545706799,8.196528222028864,8.196534287668264,8.196518939167287,8.196503027678784,8.196471235801349,8.196411621262378,8.196313346310744,8.196706092157516,8.197152095031345,8.196355965845761,8.196364315999242,8.196326899106454,8.196296643615373,8.196308177804724,8.196283313816371,8.196269975948665,8.19624318850925,8.196191554443764,8.196156059653562,8.196272124653152,8.196518581163337,8.196146663748195,8.196084866542847,8.196096142122903,8.19607904813288,8.196098042115317,8.196066064100885,8.196062680691997,8.196048880001463,12.250047374816454,13.553155572563846,11.243252364133113,12.581692000814247,11.864221126281116,11.632505349820526,11.108596249087903,10.865720751404815,10.7546296693218,10.882838004742933,10.783550069776219,10.804039565270063,10.751832629279294,10.732334245898741,10.70626575920727,10.735899060425952,10.689607966486491,10.672798026641495,10.638662880469298,10.570078172960473,10.439565618710963,10.147352742566254,9.877355776583949,10.163962327139672,11.324520498177797,9.671501310420934,9.328733099858304,9.233155028944614,9.63272024527965,9.118243653339013,9.023638609728115,8.845520267087746,8.512334642995553,8.626355031712194,9.546981695293269,8.61626083318956,8.518235686436611,8.534873880758255,8.480694304363917,8.471621883949156,8.644119179468323,8.413603189733927,8.3675094018409,8.300529570612877,8.148974588149303,7.874512006669695,10.719944782870261,8.675608446750001,7.819354090119088,8.322125704642334,7.787767128163948,7.740061265605036,7.721155559802313,8.363400361605759,7.580497466552846,7.566982171921623,7.528295443801304,7.458098450792551,7.3404678714100795,7.162154971881826],"feasible_probability":0.9925597937974108,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.998046875,"counts":{"0001001":141,"0001010":23,"0001100":1,"0010001":31,"0010010":39,"0010100":24,"0100001":110,"0100010":67,"0100100":48,"1000001":21,"1000010":6,"1000100":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12278847199922893}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.9925597937974108,"total_shots":512,"runtime_seconds":0.12297363601101097},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":12,"optimal_probability":0.2538786746584487,"feasible_probability":0.9964253519621639,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.9166666666666666,"shots_for_95_percent":11,"hit_curve":[{"shots":8,"quantum":0.9039548091222249,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9907753213092517,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9999149053030525,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999927588925,"uniform":0.9961846700381721},{"shots":128,"quantum":1.0,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.3592239273284576e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":12,"optimal_probability":0.24973076714821238,"feasible_probability":0.9925597937974108,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.9166666666666666,"shots_for_95_percent":11,"hit_curve":[{"shots":8,"quantum":0.8995992174933077,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9899196828720439,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9998983872065998,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999896748403,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999999999,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.24973076714821238,"diagnostic_seconds":0.003139003994874656}
+{"instance":"n3-s0-r0.json","seed":2,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":4,"end":7,"reserved_end":7,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.3189245153622093,1.246973246146017],"expected_energy":18.684965123923998,"initial_expected_energy":25.262222793202024,"history":[25.262222793202024,25.315978142251733,21.959313127572262,21.28407763421309,22.76226445051057,23.43883377501967,22.275509478926644,21.818640392849435,20.886913610897878,20.082165553490402,18.95407959762325,19.96907377420509,18.789067359995656,18.8022630730849,18.77559641189255,18.944290253127583,18.732759911118187,18.767065656838092,18.73070137112748,18.743706924148455,18.730290832579055,18.728726793005322,18.72692501993705,18.73991702236879,18.724468582018268,18.723940645792226,18.72188518166507,18.719699035324588,18.716091366437904,18.716740318708304,18.719561981660792,18.718311574660305,18.71676702344363,18.714922860996133,18.7133326673414,18.71084710057614,18.70617658445169,18.696994258748855,18.68962001468075,18.981460791174097,18.823080665206014,18.695234090708674,18.689934296970208,18.704028230512073,18.68646667450096,18.686412240207083,18.686914714160743,18.686141750268373,18.68611385907559,18.68988034813418,18.685397083737826,18.68766058384102,18.68518326452243,18.685031589817406,18.685196040982444,18.685035988269547,18.68501698018566,18.685011342184985,18.68506045270603,18.684965123923998,22.089280513473383,21.670137360122606,22.32576973068523,22.03533112166252,23.208668813376985,21.68739267983272,21.626489851561928,21.65560959333339,21.631472897430545,21.71722944500737,21.62443717931903,21.63924953977891,21.6255403663519,21.619997434554318,21.61637908248659,21.621554512857756,21.614281531708798,21.613491174230656,21.611265030840073,21.607245220861895,21.599725431974534,21.585028374688168,21.602818908301685,21.63142903395714,21.60150818953165,21.583147217129653,21.58555000221581,21.582235153183937,21.584306563446965,21.58040589703763,21.579039095587962,21.57566297088741,21.569717943702862,21.558076997812186,21.6184920122649,21.602410643385326,21.579414748149688,21.556347386333158,21.557231610077583,21.555559253391667,21.55607477859801,21.553865304735304,21.554000146593232,21.55450142551303,21.553966092874873,21.553519114424457,21.552868914991212,21.552074012634172,21.550671541532985,21.54966994420152,21.54828463953648,21.546256451353834,21.54297644274061,21.53728405766043,21.542697483745354,21.552832891391155,21.53748353628109,21.535053413194515,21.530978276153984,21.52892584426762],"feasible_probability":0.9957072662600421,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.998046875,"counts":{"00010011":130,"00010101":27,"00011001":1,"00100011":29,"00100101":29,"00101001":84,"01000011":40,"01000101":2,"01001001":40,"10000011":103,"10000101":2,"10001001":25},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1240385970013449},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":18,"objective_bound":17,"offset":36,"linear":[-18,-11,-11,-18,-9,-14,-8],"quadratic":[[0,1,36],[0,2,36],[1,2,36],[2,3,18],[3,4,36],[3,5,36],[3,6,36],[4,5,36],[4,6,36],[5,6,36]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r0","start":6,"cost":7},{"index":2,"task":"t1","resource":"r2","start":8,"cost":7},{"index":3,"task":"t2","resource":"r2","start":8,"cost":0},{"index":4,"task":"t2","resource":"r2","start":13,"cost":9},{"index":5,"task":"t2","resource":"r1","start":9,"cost":4},{"index":6,"task":"t2","resource":"r0","start":14,"cost":10}],"conflicts":[{"i":2,"j":3,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":4,"end":7,"reserved_end":7,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false}],"bits":[1,0,0,1,0,0,0],"qubo_energy":0},"seed":2001025171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.8836361231138152,1.1779563976487932],"expected_energy":8.357038641595603,"initial_expected_energy":12.401364068432933,"history":[12.401364068432933,12.169450390739227,11.598785931806153,11.416404742358354,11.412761151003902,12.706471721868104,11.833850104246485,11.276525249472392,11.795611057857633,11.264895930247668,11.261168823096055,11.279504230984857,11.264704208539852,11.268777211674344,11.258934065337568,11.254628637822808,11.249753611201326,11.250394249613402,11.249117976949668,11.248607360037536,11.248468559733908,11.249891589108303,11.248130374437574,11.247970959115552,11.247784281476806,11.247525761120189,11.248621491588015,11.247300532132467,11.247212612015936,11.247004130217494,11.246756066216927,11.246398441389907,11.246295519181926,11.246142298985855,11.24670820836747,11.246438756681947,11.245718520636874,11.245621800608474,11.245751833286377,11.245639043295814,11.24556784563168,11.245562719129477,11.245718164749855,11.245551425948157,11.245504399703659,11.2454371935431,11.24539526430173,11.245569128054662,11.245338540885598,11.245289895039921,11.245201970040359,11.245062281699992,11.245133744613726,11.24546594467566,11.245032617792491,11.244995550504143,11.244922657121148,11.244791067344702,11.244744105302825,11.245078975309152,11.461768907287267,11.617933024190444,12.706711928551886,10.319508263589526,14.749558696012503,11.920212628332319,11.897599241860062,11.156922874421786,10.54436867531103,10.314176938844732,10.182080483214989,10.061430158832223,9.8589031766599,9.53271575336018,10.490512633160614,10.729603426131241,9.819378029212547,9.499545182084502,9.62669763328532,9.480568616975694,9.692302490653063,9.426702750915139,9.395806816615954,9.359368873421754,9.291863952756959,9.284174447183574,9.128671598699126,9.340941390852134,9.223088705740288,9.109819779988293,9.119315148178494,9.109618559865806,9.090847689347829,9.061273789798078,8.995089671232984,8.871431533295432,9.055604794426756,9.23204480854302,8.961210717020071,8.857688170873256,8.883503213039653,8.855601432733458,8.840996923671248,8.812253561170728,8.75718698855973,8.738492808815131,8.728291222978543,8.696444766474732,8.517125008046909,8.79359045534873,9.108666724652306,8.502073292585262,8.474482856357241,8.428667334820911,8.365340627842029,8.634441276507891,8.45677016269089,8.359104600458739,8.39745063808061,8.357038641595603],"feasible_probability":0.9902305381642208,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.986328125,"counts":{"0001001":163,"0001010":3,"0001100":7,"0010001":40,"0010010":38,"0010100":50,"0100001":18,"0100010":25,"0100100":26,"1000001":119,"1000010":1,"1000100":22},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11738051699649077}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.9902305381642208,"total_shots":512,"runtime_seconds":0.11756266301381402},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":12,"optimal_probability":0.262564522814872,"feasible_probability":0.9957072662600421,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.9166666666666666,"shots_for_95_percent":10,"hit_curve":[{"shots":8,"quantum":0.9125434749150402,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9923513562200638,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9999414982483277,"uniform":0.9382316427138628},{"shots":64,"quantum":0.999999996577545,"uniform":0.9961846700381721},{"shots":128,"quantum":1.0,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":12,"optimal_probability":0.31547024840241233,"feasible_probability":0.9902305381642209,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.9166666666666666,"shots_for_95_percent":8,"hit_curve":[{"shots":8,"quantum":0.9517898338342574,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9976757798782715,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9999945980008258,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999999708185,"uniform":0.9961846700381721},{"shots":128,"quantum":1.0,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.31547024840241233,"diagnostic_seconds":0.003189320006640628}
+{"instance":"n3-s0-r0.json","seed":3,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":4,"end":7,"reserved_end":7,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.223714960632092,2.7148571239733417],"expected_energy":17.85369355371354,"initial_expected_energy":20.64570774155108,"history":[20.64570774155108,19.741344504167408,22.501973279571903,22.440453677428557,21.438811654684308,20.934599519533045,19.806732698644474,19.66840699137471,19.675043851924045,19.750376974523668,19.648358034738685,19.644323093438896,19.67330631857012,19.642131594257336,19.63260266384261,19.616460619722282,19.584454725825438,19.531859529794524,19.43999332188237,19.308959545320405,19.336511688182007,19.68544213889315,19.35129459012073,19.31126889552972,19.318875324980297,19.29586414525562,19.29217902543973,19.31150912456711,19.284471019783368,19.277277494721233,19.263746004074147,19.23828188065035,19.18860229943648,19.099370070907806,19.17772062593408,19.52187771471376,19.074846376179423,19.16756872733837,19.081044000853154,19.069802055825594,19.07989031749068,19.066771209234158,19.06223992614643,19.05706322471316,19.048881772383876,19.051062287575185,19.041909922337574,19.045282072626044,19.044800406931724,19.037650194772795,19.03611656522466,19.054704465364992,19.03259098256018,19.026362173759683,19.01619190479265,18.998995458806085,18.964274218334147,19.00479929051057,19.007728442123465,18.959322878928454,21.564545736395164,21.79971630230841,21.442784125790908,18.908806541969454,19.254653413865555,23.38218803389166,18.858838879042935,23.103164583513745,18.79998417527641,19.484184269438366,18.905398644754698,18.5939372856745,18.475549233853172,18.474244684598847,18.47597899559707,18.49215712575009,18.47670195898028,18.465364909742863,18.453493751089965,18.482998196304234,18.442491627023223,18.432742461051753,18.413424854533755,18.376071572076103,18.463540036549304,18.377877102579387,18.367582776645374,18.370165194009942,18.37928651050604,18.349900927368516,18.336864830645915,18.36961908597082,18.324157757117668,18.31252700494151,18.29287872158909,18.334834702798865,18.27484527755538,18.255615466846102,18.265284219705446,18.237769997057928,18.21827310250646,18.221038254954426,18.197789410597913,18.179404479574945,18.24675676921732,18.157787268162494,18.139443373957015,18.15950144257502,18.123043939187863,18.10985151028018,18.082524751717536,18.043715474692114,18.09355954601074,18.191115398139445,18.01111601961746,17.998052979709655,17.96135925448876,17.929747492094176,17.85369355371354,17.904257107899042],"feasible_probability":0.9695645326877151,"one_hot_probability":1.0,"sampled_feasible_fraction":0.96875,"counts":{"00010011":129,"00010101":23,"00011001":16,"00100011":84,"00100101":17,"00101001":4,"01000011":71,"01000101":123,"01001001":14,"10000011":10,"10000101":11,"10001001":10},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12670639100542758},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":18,"objective_bound":17,"offset":36,"linear":[-18,-11,-11,-18,-9,-14,-8],"quadratic":[[0,1,36],[0,2,36],[1,2,36],[2,3,18],[3,4,36],[3,5,36],[3,6,36],[4,5,36],[4,6,36],[5,6,36]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r0","start":6,"cost":7},{"index":2,"task":"t1","resource":"r2","start":8,"cost":7},{"index":3,"task":"t2","resource":"r2","start":8,"cost":0},{"index":4,"task":"t2","resource":"r2","start":13,"cost":9},{"index":5,"task":"t2","resource":"r1","start":9,"cost":4},{"index":6,"task":"t2","resource":"r0","start":14,"cost":10}],"conflicts":[{"i":2,"j":3,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":4,"end":7,"reserved_end":7,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false}],"bits":[1,0,0,1,0,0,0],"qubo_energy":0},"seed":819382448,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.9480248017729247,2.7817638322056766],"expected_energy":6.173232928617327,"initial_expected_energy":11.201981311392249,"history":[11.201981311392249,10.799411100420327,11.315340106234135,10.2294235115796,16.238199368904592,10.855627170764357,11.980479796722117,10.456778412679567,9.115059812863255,10.193428892432863,9.233388569788428,9.00649816820434,8.954821331691244,9.090133186324632,8.90786215501123,9.012478976956936,8.874041342464812,8.866457047257837,8.934923464771263,8.845381877076957,8.830073068518441,8.806284704994699,8.752110237565557,8.665688735623709,10.226860720031166,8.904808118435124,8.850110649941843,8.649829041849337,8.638259979325108,8.622212819184131,8.632690997491878,8.607457562595677,8.607243398152892,8.612800485603724,8.60880045960134,8.601812049287558,8.595272366454022,8.605553158623474,8.590654857703552,8.586232321807207,8.578235258360108,8.569114807569262,8.55035932007983,8.545808830955908,8.525111151766009,8.521266131022589,8.50080469255894,8.50392315937638,8.505455399173009,8.497824152762213,8.498479178888198,8.494489053831323,8.492205380213273,8.492320896128849,8.48842610128043,8.485496265392744,8.485451604046538,8.480079211371853,8.475558052507244,8.468555627739306,12.40438307365234,12.500238948411292,10.331454128809607,11.820477447802253,10.542336408198082,10.122290528298244,10.073750595208692,9.78453638595417,9.37442058231405,8.476579030017643,7.388454858640709,11.995110221885025,11.262518857200945,7.566407586012846,11.091835054592435,7.165729004310411,7.9318601935872115,7.101198298071911,7.203143460869654,7.043767852104259,7.053271770946424,7.090765509096572,7.032422315286178,7.031478111601686,7.038523543291587,7.03176140510135,7.025032253576673,7.014206535333821,7.0121987857340145,6.997966928627187,6.98525980364008,6.963171832265104,6.922362677196686,6.840102474149409,6.800494265452056,6.973057605745698,7.395406744138963,6.7860629161171,6.657493872266017,6.644719036887513,6.617847949970198,6.5958965872773385,6.562926870013511,6.758340243411505,6.5500086203942125,6.531890378316428,6.494338907060763,6.416013164486378,6.244129417596916,6.308550217918016,7.48867727908575,6.434469208945891,6.22717445794102,6.342904414624675,6.210719912522906,6.204118126137725,6.25321630714058,6.190366753107186,6.181422490498521,6.173232928617327],"feasible_probability":0.9910874413717203,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"0001001":165,"0001010":4,"0010001":41,"0010010":13,"0010100":13,"0100001":123,"0100010":74,"0100100":58,"1000001":16,"1000010":1,"1000100":4},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12280032900162041}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.9910874413717203,"total_shots":512,"runtime_seconds":0.12297370200394653},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":12,"optimal_probability":0.2647232015285665,"feasible_probability":0.969564532687715,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.9166666666666666,"shots_for_95_percent":10,"hit_curve":[{"shots":8,"quantum":0.9145706903583299,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9927018330541476,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9999467367592305,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999971630272,"uniform":0.9961846700381721},{"shots":128,"quantum":1.0,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":12,"optimal_probability":0.3151356732228674,"feasible_probability":0.9910874413717202,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.9166666666666666,"shots_for_95_percent":8,"hit_curve":[{"shots":8,"quantum":0.951601002945494,"uniform":0.5014697532613109},{"shots":16,"quantum":0.997657537084118,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9999945128674878,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999999698914,"uniform":0.9961846700381721},{"shots":128,"quantum":1.0,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.3151356732228674,"diagnostic_seconds":0.003723351997905411}
+{"instance":"n3-s0-r0.json","seed":4,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":4,"end":7,"reserved_end":7,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.367871602797771,2.700873469652532],"expected_energy":16.452412728960528,"initial_expected_energy":22.682442043546132,"history":[22.682442043546132,22.752992158769153,18.902182244119018,22.577284870942332,19.574128195428365,18.950244887086,19.451635976905777,18.900785687441527,19.089396288171475,18.901924391097083,18.914523961098382,18.899939593058047,18.901945333675364,18.893258974603818,18.888876277156577,18.88506448989719,18.884829236974486,18.879183722844168,18.87123311502255,18.862102958835177,18.848657508800812,18.847311652935588,18.833293504782688,18.829320544397316,18.82351285460596,18.815782192223274,18.85682755092101,18.807607040149996,18.807280061807525,18.802597422487942,18.797061533121976,18.793015000886882,18.80273034994755,18.789934178064755,18.78790178339166,18.785002184921957,18.779723787086468,18.769380508012965,18.752498338671398,18.875309848560317,18.88129180147149,18.747917332543793,18.76003701786661,18.754693445331732,18.745663595956856,18.744427577990578,18.747983390357966,18.743232134478447,18.742213563340023,18.740225397971933,18.73770832861448,18.73455545885156,18.733573399624294,18.749162740642745,18.730064072313347,18.728982852767558,18.727270526638396,18.724392836276458,18.731758672926244,18.724650259807007,18.97507245819678,18.435289978882945,21.455069695349238,22.186872132614376,18.000783589185883,20.812576608953314,18.133093353115342,18.75564509239947,17.541585499072394,17.31884051686801,17.28779695065996,17.815090668701195,17.112553506563813,17.251665800468015,17.08297376512885,17.29058188860954,17.084217416858277,17.076757158528046,17.07874843869074,17.082325150815958,17.067642797381865,17.057548869502096,17.064358858172607,17.05461218747392,17.0483602205325,17.035436703652795,17.00987231745428,16.959971234596903,16.867561374856294,16.781794375870348,17.364730379123205,17.57142436747386,16.670381712889732,16.76706611538776,16.66097169434432,16.70189040307471,16.654043181342878,16.64296354841704,16.62124491400836,16.581738318730388,16.565676967110935,16.633518358607432,16.882648053639866,16.563769786431983,16.501447495877787,16.504115070376656,16.496132905060865,16.496363385272165,16.50138702009031,16.488242191868032,16.482953065077936,16.498202370440136,16.478107865501567,16.473993131607017,16.469719416409735,16.459246767066738,16.46152198553125,16.45905197814367,16.46796743212207,16.452412728960528],"feasible_probability":0.9882326543897245,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.990234375,"counts":{"00010011":159,"00010101":42,"00011001":5,"00100011":67,"00100101":2,"00101001":1,"01000011":79,"01000101":97,"01001001":26,"10000011":15,"10000101":9,"10001001":10},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11914781399536878},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":18,"objective_bound":17,"offset":36,"linear":[-18,-11,-11,-18,-9,-14,-8],"quadratic":[[0,1,36],[0,2,36],[1,2,36],[2,3,18],[3,4,36],[3,5,36],[3,6,36],[4,5,36],[4,6,36],[5,6,36]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r0","start":6,"cost":7},{"index":2,"task":"t1","resource":"r2","start":8,"cost":7},{"index":3,"task":"t2","resource":"r2","start":8,"cost":0},{"index":4,"task":"t2","resource":"r2","start":13,"cost":9},{"index":5,"task":"t2","resource":"r1","start":9,"cost":4},{"index":6,"task":"t2","resource":"r0","start":14,"cost":10}],"conflicts":[{"i":2,"j":3,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":4,"end":7,"reserved_end":7,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false}],"bits":[1,0,0,1,0,0,0],"qubo_energy":0},"seed":367776961,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.0191387522705373,1.1424866614460543],"expected_energy":8.323602785306202,"initial_expected_energy":11.516353485498156,"history":[11.516353485498156,11.45675174033092,12.704203363404625,10.304358801908794,15.222295423952856,11.836674832040103,11.877227403381108,10.652371628098328,10.594606880468778,10.366432782992996,10.260469568338172,10.121216702540686,10.105902837898103,10.002496678180593,9.925514128310338,9.759897888035237,9.442972207858631,9.837749871814028,10.626057681931737,9.778439239244962,9.406986496937655,9.51506310940469,9.40296694014969,9.633657927576833,9.34255636874732,9.311198586036827,9.279395424567188,9.262269227668241,9.174261116308799,9.217968483478899,9.158578208169935,9.219480058300597,9.138216265474886,9.12008447245238,9.085778988958655,9.021059290988163,8.935993928565956,8.857737123870479,8.77778028365254,9.023760693130708,8.833986503151078,8.921915231375046,8.824269462493277,8.710248078387862,8.71147344313908,8.70098282020536,8.684529385855416,8.65803751690624,8.61398804050669,8.614244669572667,8.709565802843372,8.611968821999529,8.596333429267874,8.57041069918995,8.534386730369235,8.502063509855091,8.463728735641968,8.391730049549771,8.323602785306202,9.300512340359914,11.852947947508932,11.833243545343793,12.651065799142685,11.034710502482596,13.679774907047152,11.20066715592894,12.011932458638752,11.202484192505725,10.847204466206817,10.79690249687646,11.452711319678567,10.636459790305222,10.574911407024395,10.5241104264491,10.60410717335589,10.47716486250696,10.442688044451279,10.403263877656782,10.326598703093731,10.208223210185855,10.471407824595492,10.63445986064719,10.126459614776458,10.104204553839542,10.311625523434293,10.041880134813354,10.000268964108722,9.965040861163445,10.01285689141083,9.936268918795387,9.896026860604431,9.815059933902331,9.65462237587162,9.364122159747206,10.21108735441498,10.322952665238939,9.317104316092724,9.963941040972685,9.251852005230015,9.277753163010788,9.30895582602229,9.25342146652109,9.231255011628472,9.202137616772179,9.132070141122261,9.001113352884076,9.245458154337333,9.30892072334943,9.109286630554767,8.984151380847454,8.996190739234496,8.973370520483583,8.97329988021673,8.983939458012335,8.974133906894245,8.963821963462483,8.949319615531115,8.956758235041992,8.93773775118542,8.928549416755525],"feasible_probability":0.9880276462001986,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.98828125,"counts":{"0001001":164,"0001100":6,"0010001":38,"0010010":51,"0010100":58,"0100001":12,"0100010":30,"0100100":25,"1000001":113,"1000010":5,"1000100":10},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11655692200292833}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.9880276462001986,"total_shots":512,"runtime_seconds":0.1167256990011083},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":12,"optimal_probability":0.30687569810542337,"feasible_probability":0.9882326543897245,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.9166666666666666,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9467292257924089,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9971622246153239,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9999919470308661,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999999351497,"uniform":0.9961846700381721},{"shots":128,"quantum":1.0,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":12,"optimal_probability":0.3169239138459454,"feasible_probability":0.9880276462001985,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.9166666666666666,"shots_for_95_percent":8,"hit_curve":[{"shots":8,"quantum":0.9526028038727854,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9977535057992784,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9999949532638062,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999999745305,"uniform":0.9961846700381721},{"shots":128,"quantum":1.0,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1796119636642288e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.3169239138459454,"diagnostic_seconds":0.0029246979975141585}
+{"instance":"n3-s0-r0.json","seed":5,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":4,"end":7,"reserved_end":7,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.086995226973895,2.829402841678145],"expected_energy":18.691928052059286,"initial_expected_energy":22.617177672859704,"history":[22.617177672859704,22.612046052813547,18.783936539069842,27.053248888898608,18.935861069191898,18.784787481232463,19.153573775323903,18.74916954864702,18.755061498080774,18.763064280678687,18.750926890688635,18.75238971488661,18.749180092157378,18.74800984798944,18.74634694289156,18.756297338360394,18.744633764787974,18.743134753161442,18.745710052477495,18.741551023148258,18.740646620332924,18.739457129178188,18.73719246396797,18.73381305546237,18.74394849966904,18.748427813401857,18.73240297465032,18.731699866749402,18.730718167109984,18.72993571301504,18.729853024285852,18.73330822131382,18.727523650826893,18.72625088845486,18.72549818734471,18.726790880704122,18.72495745684269,18.72443307652705,18.72339998692751,18.721378271835974,18.717997008023566,18.713056335574024,18.703813372379322,18.763926603265624,18.72977769729345,18.702276781143556,18.71697147294573,18.70143279090842,18.700148029843028,18.69993161986993,18.70793173406555,18.69999694248998,18.697308577066554,18.69566486454998,18.695810405789675,18.695070497033484,18.694547085870923,18.69364202851092,18.691928052059286,18.692098263580352,22.79005450280659,23.419519315546715,20.7487122053097,23.879722030102744,20.401189871417753,21.061566233191446,20.384721630585513,20.29390216346161,20.299576836414737,20.3218025432704,20.299922729092156,20.278414845073108,20.249722139436553,20.20632518886271,20.175779836433684,19.994592065698107,19.943015735131183,19.707349649612844,23.169002340683917,19.888947737083928,20.108923367445264,19.7810129344969,19.606935686788994,19.558721486167457,19.65851771475816,19.52685520592009,19.496482690649568,19.45502077759088,19.394155995760332,19.3269236714911,19.254664099531286,19.261247369138736,19.431787460419102,19.217439898354687,19.212031862482586,19.248457226409467,19.198821213750815,19.18634638654639,19.162455999842027,19.118298796210084,19.0766952066785,19.068454756343396,18.999088284178573,18.910311609607547,18.86642536952196,19.16114812903203,18.875229685955453,18.864121899338357,18.893870343826666,18.85698955883087,18.847729799629175,18.84320662490915,18.851834635021664,18.84081550071829,18.83855603148627,18.834388867923327,18.825692118655223,18.809574009513987,18.861415807664095,18.848686928759985],"feasible_probability":0.9776649768449502,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.98046875,"counts":{"00010011":99,"00010101":23,"00011001":10,"00100011":54,"00100101":46,"00101001":10,"01000011":88,"01000101":100,"01001001":46,"10000011":20,"10000101":9,"10001001":7},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11632190100499429},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":18,"objective_bound":17,"offset":36,"linear":[-18,-11,-11,-18,-9,-14,-8],"quadratic":[[0,1,36],[0,2,36],[1,2,36],[2,3,18],[3,4,36],[3,5,36],[3,6,36],[4,5,36],[4,6,36],[5,6,36]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r0","start":6,"cost":7},{"index":2,"task":"t1","resource":"r2","start":8,"cost":7},{"index":3,"task":"t2","resource":"r2","start":8,"cost":0},{"index":4,"task":"t2","resource":"r2","start":13,"cost":9},{"index":5,"task":"t2","resource":"r1","start":9,"cost":4},{"index":6,"task":"t2","resource":"r0","start":14,"cost":10}],"conflicts":[{"i":2,"j":3,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":4,"end":7,"reserved_end":7,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false}],"bits":[1,0,0,1,0,0,0],"qubo_energy":0},"seed":803261128,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.9947207805687963,2.7753546807382006],"expected_energy":6.133478283609101,"initial_expected_energy":11.065472768512304,"history":[11.065472768512304,10.957527434077171,8.351378660408589,15.235503717964537,7.521513233297286,7.238977654185917,8.350454761717682,8.068940521106832,7.2087994369391675,7.2113976829253055,7.1697623795869605,7.141477653755482,7.355185157273866,7.068742855423078,7.121146074868911,7.103893081327513,7.06183196011215,7.047864509753185,7.034568586217256,7.011406811491561,7.005920090835625,6.932747116513816,6.987779308911644,6.921242662204795,6.973849999715024,6.912682717693985,6.897653807555337,6.869814600622347,6.815830162631981,6.726682857382327,6.925001761421332,7.277500652294412,6.722816442350645,6.685631340090197,6.6194586444540615,6.524816906196179,6.510715956119716,6.319005918827764,8.262744645600325,6.515980207728769,6.30360656900557,6.546019860587249,6.258350055752227,6.259567593531436,6.2521362297960215,6.251123523521242,6.281259464004677,6.246522845797129,6.238530703061997,6.227061315104521,6.214760665506076,6.199796480987556,6.217013079730275,6.18659421666902,6.176724059478033,6.208378719384066,6.164037388807898,6.156314361822741,6.1475975123728155,6.133478283609101,11.784928668752855,11.60512184788871,11.112166048653663,8.615758816822108,11.00554484201361,10.554461251533947,11.037573191890301,8.28224984627347,8.656036686799482,8.284200964859082,8.225364557052044,8.240516547797025,8.276114629691898,8.227781932872986,8.20453486103803,8.168482175079783,8.096192322962834,7.986384900563796,8.215747809386638,8.36172545085442,7.930896341891229,7.89831113488297,8.073503339167255,7.850604151776136,7.823620975747769,7.792107657321367,7.73924476927919,7.960282299891479,7.714730211834072,7.651422038623259,7.519416661336544,7.275763805706141,6.930133978511984,9.282834960469186,9.562495910331462,6.900772362771562,6.873545126052472,6.906908774104708,6.9310955650959,6.7896935879262275,6.761152815080882,6.8566131619003166,6.739529919237164,6.744166188420855,6.719183746912963,6.709569215727305,6.719067520977587,6.707095067354459,6.702030535994286,6.691414412330339,6.670251819755974,6.6281304066297615,6.554633133168607,6.673137243938796,6.888213968632816,6.553449126459407,6.523424916999845,6.473546344054752,6.404152589046252,6.343925971662675],"feasible_probability":0.9918817405538927,"one_hot_probability":1.0,"sampled_feasible_fraction":0.986328125,"counts":{"0001001":161,"0001010":2,"0001100":7,"0010001":35,"0010010":10,"0010100":7,"0100001":127,"0100010":100,"0100100":49,"1000001":10,"1000100":4},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1095916639897041}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.9918817405538927,"total_shots":512,"runtime_seconds":0.10977905300387647},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":12,"optimal_probability":0.19510255146572145,"feasible_probability":0.9776649768449502,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.9166666666666666,"shots_for_95_percent":14,"hit_curve":[{"shots":8,"quantum":0.8238330620525137,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9689652099742065,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9990368418080549,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999990723262973,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999991395,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":12,"optimal_probability":0.3175960590592461,"feasible_probability":0.9918817405538927,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.9166666666666666,"shots_for_95_percent":8,"hit_curve":[{"shots":8,"quantum":0.9529746312204628,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9977886146911485,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9999951097750158,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999999760857,"uniform":0.9961846700381721},{"shots":128,"quantum":1.0,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.3175960590592461,"diagnostic_seconds":0.004064656008267775}
+{"instance":"n3-s0-r0.json","seed":6,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":4,"end":7,"reserved_end":7,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.322194805031068,1.2463984043684027],"expected_energy":18.684783938280987,"initial_expected_energy":22.537530568420017,"history":[22.537530568420017,22.872266531762772,19.831730449066562,22.878647322645556,21.74583443015961,20.546518382640436,19.188385835151024,19.60030322446395,19.28443024218197,19.22137660013074,19.134003488732496,19.18875651907563,19.096787883554594,19.106921919196914,19.113986485200975,19.09363773403195,19.095253230400616,19.08820114957772,19.08367318171777,19.082038993955532,19.068331952025403,19.05923476744336,19.049010941234243,19.030225860692077,19.040320655857137,19.028457612461743,19.050141271692706,19.029568220946302,19.02030950249658,19.011714643590892,19.022974669197254,19.00678625363951,19.002921728239876,18.992978274746218,18.97600603142339,18.95477872548002,18.914583306490755,18.999063128716493,18.975866532721767,18.94229750210241,18.920213053245376,18.911600960249924,18.903434220624295,18.896273754144097,18.890417904020783,18.873423460556303,18.887173016210156,18.868830240003213,18.881740450886213,18.864712290219884,18.86101064467355,18.854707078894428,18.84347910250638,18.829831061763624,18.803272632402795,18.76105356733199,18.97343232645452,19.183901468538032,18.84392598611207,18.757232025718295,27.88482754687074,27.511551910993926,22.750030556700622,18.77984273405876,23.378135713046927,20.36223598689656,23.65553693619612,20.796466624731035,19.862308894124837,18.859219484951964,18.69400126808148,18.809513235998295,18.704739159286568,18.71594165311094,18.69259882110858,18.688581255924365,18.687428571181588,18.688370814864268,18.687407808020204,18.687163941393482,18.68710693865,18.686799386544745,18.686456686045005,18.686025255250204,18.686144405395794,18.686957131665718,18.686499460094883,18.686092680356097,18.685998433183606,18.685960942579218,18.685927789238182,18.685875242496436,18.685952927956453,18.685798700980826,18.685769747315398,18.68592816595733,18.685721425565507,18.68568433822531,18.685620266373412,18.685483109017934,18.685234234139855,18.686967464873156,18.68590583496272,18.68518876844387,18.685596101916545,18.685139855915804,18.685117601168898,18.685276036793322,18.685073369657257,18.685046109723693,18.685020532273384,18.685015772409997,18.68496774804559,18.684923216335925,18.684883929336735,18.685017697815546,18.684849486172936,18.684822340910642,18.68491402851987,18.684783938280987],"feasible_probability":0.9955719305747582,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.990234375,"counts":{"00010011":138,"00010101":21,"00011001":5,"00100011":28,"00100101":18,"00101001":87,"01000011":27,"01000101":1,"01001001":46,"10000011":105,"10000101":2,"10001001":34},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11696291201224085},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":18,"objective_bound":17,"offset":36,"linear":[-18,-11,-11,-18,-9,-14,-8],"quadratic":[[0,1,36],[0,2,36],[1,2,36],[2,3,18],[3,4,36],[3,5,36],[3,6,36],[4,5,36],[4,6,36],[5,6,36]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r0","start":6,"cost":7},{"index":2,"task":"t1","resource":"r2","start":8,"cost":7},{"index":3,"task":"t2","resource":"r2","start":8,"cost":0},{"index":4,"task":"t2","resource":"r2","start":13,"cost":9},{"index":5,"task":"t2","resource":"r1","start":9,"cost":4},{"index":6,"task":"t2","resource":"r0","start":14,"cost":10}],"conflicts":[{"i":2,"j":3,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":4,"end":7,"reserved_end":7,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false}],"bits":[1,0,0,1,0,0,0],"qubo_energy":0},"seed":3153149895,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.1043248838246127,2.787586538497879],"expected_energy":6.034173947559813,"initial_expected_energy":12.761159810614885,"history":[12.761159810614885,12.739952903010284,8.339863482365583,12.587445702601354,9.191707396713783,8.813225555949128,7.8845801891028895,8.333760578688912,7.85118472062735,7.8753452493091,7.8401711566122,8.022950236375681,7.787568944952837,7.753181605316629,7.7264502081131115,7.810648526843854,7.703853677065416,7.672771640538889,7.611241121669514,7.494933150094928,7.568256917757305,7.6468758685504445,7.578037352672858,7.475651255049367,7.466598477219307,7.435773036408388,7.406802705584577,7.3558085278702725,7.4755265927885635,7.34976945306033,7.311318219341229,7.242026091644002,7.13977425667129,7.002297425803063,6.8710844882235165,6.746105765326545,8.718446428444862,7.170387299292347,7.785418676095646,6.690603004574408,6.514009429615605,6.521381394975712,6.528929182078967,6.525703958006307,6.496704427292191,6.4809008543391435,6.452577286283196,6.40310850090011,6.30292500482301,6.125448747531561,10.216099706669183,8.376615442326342,6.079980871791177,6.424086234317775,6.257167103421834,6.06913547254277,6.0569011754796,6.081635957200639,6.040322828050773,6.034173947559813,13.759855747172482,14.211462883176806,11.117940019695332,11.309299137414685,11.685543821182465,11.572180993695909,9.961592190218646,10.161412515668841,9.928379942761195,10.393232350519742,9.852082552296237,9.474357678293886,9.253832969692679,9.10063740199173,9.171317557273365,9.099416591725342,9.22877552809358,9.048663364255876,8.972002475052722,8.87344418740491,8.85065580416461,8.701231457111472,9.478131577105044,8.95995815337823,8.683716570806517,8.888261769780502,8.652532064350805,8.656445208557912,8.66566550192288,8.649564943266158,8.648563908904615,8.65352855131801,8.643112267307462,8.63812293189288,8.628872363812889,8.61025363995998,8.5766238344072,8.588194786108534,8.639283993321609,8.572889417439459,8.562315234059872,8.542809549551833,8.511661037636982,8.460065820405429,8.458625604878991,8.377410071816058,9.48059038885085,8.459880029457224,8.374571091426871,8.550475998039843,8.336182770881834,8.332428613546423,8.326730411422787,8.322870292181289,8.324741210010732,8.319183657829164,8.317643914897449,8.319884958646677,8.315339392949577,8.313445266349934],"feasible_probability":0.9913960760839047,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"0001001":161,"0001010":7,"0010001":47,"0010010":8,"0010100":8,"0100001":120,"0100010":83,"0100100":66,"1000001":9,"1000100":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10828808299265802}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.9913960760839047,"total_shots":512,"runtime_seconds":0.10844847100088373},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":12,"optimal_probability":0.26286406514099997,"feasible_probability":0.9955719305747583,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.9166666666666666,"shots_for_95_percent":10,"hit_curve":[{"shots":8,"quantum":0.9128272661708239,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9924009144767476,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9999422538992103,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999966653879,"uniform":0.9961846700381721},{"shots":128,"quantum":1.0,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":12,"optimal_probability":0.3186340671444882,"feasible_probability":0.9913960760839046,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.9166666666666666,"shots_for_95_percent":8,"hit_curve":[{"shots":8,"quantum":0.9535438381285803,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9978418250241765,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9999953422807737,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999999783057,"uniform":0.9961846700381721},{"shots":128,"quantum":1.0,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.3186340671444882,"diagnostic_seconds":0.0027546149940462783}
+{"instance":"n3-s0-r0.json","seed":7,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":4,"end":7,"reserved_end":7,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.8614701448941395,2.7010834245842763],"expected_energy":17.004387537390627,"initial_expected_energy":27.018352126465153,"history":[27.018352126465153,26.74960293021426,22.682318565658747,19.10890055178134,22.800790378108914,19.18947689621317,20.344290394223197,19.208295143158878,20.569259199492542,18.79621140992909,18.794805211257582,18.813982553096878,18.79375435117435,19.058815097439847,18.735632658983185,18.75654284353722,18.733882709276784,18.752415983578075,18.732178639203436,18.730398821287253,18.728843188302655,18.729331571073136,18.728055562862195,18.72795579585725,18.729254746689087,18.727419446852046,18.726453487977913,18.724841260712342,18.721464886901177,18.715300103030792,18.7112768197397,18.75060690195938,18.76227007413628,18.704001812788178,18.708011195627286,18.703563879916675,18.70602125498735,18.703326850345768,18.70284102209483,18.703244832575333,18.702501568514435,18.70192539272579,18.700777373578738,18.69864396447462,18.696481687932547,18.702473535077615,18.708811789058743,18.69596613200717,18.694424762817714,18.69513643306778,18.694912307917008,18.694478283755952,18.69421012716949,18.693796058117414,18.693141409214117,18.693994243442596,18.695029673820052,18.69284840153333,18.692611550100313,18.693104966214115,18.976367540703205,18.70511352176924,25.199670252726563,23.60010313651638,19.49018918735097,19.343527806785694,18.67883613813253,18.617487641875005,18.62725179666475,18.623875486511764,18.62119814019067,18.612034367977394,18.608141145036978,18.6029958931849,18.591883401983743,18.57210034681928,18.510934834633122,18.736824717199877,18.758046349044434,18.493464724472716,18.542554448830302,18.48747058388367,18.465060223768905,18.438257145280225,18.391086890206896,18.349716997642112,18.227648791044555,18.65122794955886,18.453529530657104,18.315665723133723,18.211523838491942,18.205381946189586,18.176190981764794,18.11820097776036,17.99826222820006,17.777819285375358,17.568373259942003,19.95783652993708,21.367096623190175,17.227404609578564,17.89293334483656,17.1715510191486,17.243132300511473,17.16568854949519,17.21707240392467,17.1643577490431,17.14810328527581,17.123580471393392,17.09229216890799,17.112094854735652,17.083183561991586,17.091254682909252,17.076304346370332,17.072463903188336,17.07722689500949,17.065937863007058,17.059499610834777,17.04704541306886,17.03032737390097,17.004387537390627],"feasible_probability":0.9825106156107538,"one_hot_probability":1.0,"sampled_feasible_fraction":0.98046875,"counts":{"00010011":151,"00010101":26,"00011001":10,"00100011":62,"00100101":5,"00101001":3,"01000011":90,"01000101":100,"01001001":21,"10000011":9,"10000101":16,"10001001":19},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11373924699728377},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":18,"objective_bound":17,"offset":36,"linear":[-18,-11,-11,-18,-9,-14,-8],"quadratic":[[0,1,36],[0,2,36],[1,2,36],[2,3,18],[3,4,36],[3,5,36],[3,6,36],[4,5,36],[4,6,36],[5,6,36]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r0","start":6,"cost":7},{"index":2,"task":"t1","resource":"r2","start":8,"cost":7},{"index":3,"task":"t2","resource":"r2","start":8,"cost":0},{"index":4,"task":"t2","resource":"r2","start":13,"cost":9},{"index":5,"task":"t2","resource":"r1","start":9,"cost":4},{"index":6,"task":"t2","resource":"r0","start":14,"cost":10}],"conflicts":[{"i":2,"j":3,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":4,"end":7,"reserved_end":7,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false}],"bits":[1,0,0,1,0,0,0],"qubo_energy":0},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.2826902310010206,1.162870964230962],"expected_energy":8.21642194693576,"initial_expected_energy":11.234776107384576,"history":[11.234776107384576,10.853730319668777,11.344052695444828,10.077294899368791,15.247546172578726,10.719043805327573,11.96219882825791,10.330966116998567,9.013276114182247,10.23366470090827,9.134779682973086,8.924956110502182,8.919651348250456,8.996244914459108,8.860867439646395,8.75602281007035,8.689003906801029,10.231350454820479,8.602645913377923,8.783572237421058,8.692666167982429,8.525349513020664,8.681732133057512,8.503961975508297,8.501358720852476,8.497631123842673,8.49052500048152,8.477525594529226,8.465615797280586,8.587882146191772,8.452416664039948,8.440040706348636,8.434943553462878,8.477236280823167,8.424673474995982,8.419832683583227,8.413625243753314,8.40273557286995,8.42050692436219,8.401520000935502,8.393074240925275,8.378659600760535,8.358698902552778,8.34433202299682,8.31918871793333,8.35000264754861,8.385335140024793,8.330375148813683,8.321394443811899,8.32272404101123,8.317624630710494,8.315218576140655,8.310598244037742,8.301960087871036,8.296843231594377,8.292357916724939,8.292697102430509,8.341574029403041,8.292365572931018,8.280137863081793,11.118955879017037,10.692787692725812,11.316002364137887,10.522932519133597,8.963040200886793,11.666937010603101,12.837393817482917,8.861762764561291,8.471242520069111,8.376398893235377,8.95023820482011,9.50427165469105,8.408395236020947,8.24273672416976,8.329262157637995,8.235951530864332,8.246412663486502,8.235190147184845,8.234555592721097,8.23365207190465,8.23367171175445,8.2330026572945,8.232750166224394,8.233401633622844,8.232612850137448,8.232318558867645,8.232031239548318,8.231641667781096,8.231050515380304,8.230498526049992,8.229361291647745,8.227158247835622,8.22309310175528,8.24387691890718,8.242291157721553,8.22547059905343,8.222712440840205,8.224277514113261,8.22225915626198,8.221888890954029,8.222798036878336,8.22150610761183,8.221066817660594,8.220378821239382,8.225644493974775,8.219857607953559,8.219236998433553,8.219903166524528,8.218526153110314,8.218368732763413,8.221269710024018,8.21758541782409,8.217161993362682,8.216827394140287,8.217093911133041,8.21661397653668,8.216533745371887,8.216779860410227,8.216515233571624,8.21642194693576],"feasible_probability":0.9946679020071342,"one_hot_probability":1.0,"sampled_feasible_fraction":0.99609375,"counts":{"0001001":172,"0001100":2,"0010001":49,"0010010":44,"0010100":44,"0100001":10,"0100010":29,"0100100":29,"1000001":120,"1000010":4,"1000100":9},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10801229899516329}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.9946679020071342,"total_shots":512,"runtime_seconds":0.10819465600070544},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":12,"optimal_probability":0.29050614194888047,"feasible_probability":0.9825106156107539,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.9166666666666666,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.93579200306443,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9958773331295219,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9999830036178751,"uniform":0.9382316427138628},{"shots":64,"quantum":0.999999999711123,"uniform":0.9961846700381721},{"shots":128,"quantum":1.0,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":12,"optimal_probability":0.325170245272879,"feasible_probability":0.9946679020071342,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.9166666666666666,"shots_for_95_percent":8,"hit_curve":[{"shots":8,"quantum":0.9569915504367856,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9981502732661685,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9999965785110102,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999999882934,"uniform":0.9961846700381721},{"shots":128,"quantum":1.0,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":9.71445146547012e-17,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.325170245272879,"diagnostic_seconds":0.002693827002076432}
+{"instance":"n3-s0-r0.json","seed":8,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":4,"end":7,"reserved_end":7,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.005466531383779,2.7419244053660337],"expected_energy":18.13572162245156,"initial_expected_energy":22.789259172749738,"history":[22.789259172749738,22.446002506357523,21.83542474428051,21.511945550366754,23.332637750364512,22.054509739298958,21.595303516494692,21.535870672484656,21.650690260485923,21.507600784830892,21.597574512531047,21.534522914588138,21.50795044881236,21.5133737834347,21.5087848643742,21.508358292540002,21.507886603196884,21.50756858492261,21.507597992828803,21.50757342253289,21.50755168872228,21.507552632415937,21.507544789699615,21.507539535169943,21.507538380681567,21.507574275603446,21.507538954953223,21.507525648413285,21.507511663331726,21.507530034022288,21.5075034537379,21.507496325988384,21.507480011726322,21.507450021019242,21.507402057128452,21.507337358808815,21.507361341091546,21.507447878624845,21.50739326948394,21.507342775279916,21.507327202709547,21.507313698412236,21.50728604058974,21.507232987898973,21.507144764148777,21.508253801428765,21.5079457955501,21.507235499282817,21.50713762951363,21.507217476430466,21.507129148013725,21.507122068246122,21.50711078501014,21.507090986881504,21.507103062276848,21.50710538820453,21.507097246699843,21.507094511749298,21.507087168467002,21.50709023557772,22.420530727523257,21.920507657471916,21.454216477584573,18.648005180918354,19.2821570847052,26.48871111188356,18.84806584175948,18.882216647931447,18.65194058867708,18.7161335882314,18.658819739792875,18.66765259194436,18.645205029273374,18.642125742407227,18.63947422432242,18.647527814535874,18.63654457982708,18.63366136145797,18.635956573693377,18.630456314017277,18.627379937991357,18.630788461954154,18.624020942655047,18.62052266188284,18.61936441360035,18.605852298291914,18.60611036710169,18.60303725886486,18.602571649973548,18.61384902476363,18.602094970887485,18.598607799690825,18.593329069678088,18.5838303647766,18.579037379403577,18.567450799198653,18.551022318731814,18.497532273380973,18.50779012363259,18.607957130683833,18.504617538661478,18.477534643300217,18.488397061067086,18.462892476727422,18.46647478210941,18.466536296252887,18.456895384686014,18.44947982211965,18.46403214673119,18.444309044432124,18.43676276406907,18.43835611221269,18.432653622788422,18.42858826693609,18.4203850173911,18.403554514365023,18.36806157369328,18.29950342908862,18.13572162245156,19.94900481043934],"feasible_probability":0.9630401486518488,"one_hot_probability":1.0,"sampled_feasible_fraction":0.97265625,"counts":{"00010011":146,"00010101":16,"00011001":14,"00100011":63,"00100101":24,"00101001":10,"01000011":70,"01000101":113,"01001001":29,"10000011":15,"10000101":3,"10001001":9},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10788493799918797},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":18,"objective_bound":17,"offset":36,"linear":[-18,-11,-11,-18,-9,-14,-8],"quadratic":[[0,1,36],[0,2,36],[1,2,36],[2,3,18],[3,4,36],[3,5,36],[3,6,36],[4,5,36],[4,6,36],[5,6,36]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r0","start":6,"cost":7},{"index":2,"task":"t1","resource":"r2","start":8,"cost":7},{"index":3,"task":"t2","resource":"r2","start":8,"cost":0},{"index":4,"task":"t2","resource":"r2","start":13,"cost":9},{"index":5,"task":"t2","resource":"r1","start":9,"cost":4},{"index":6,"task":"t2","resource":"r0","start":14,"cost":10}],"conflicts":[{"i":2,"j":3,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":4,"end":7,"reserved_end":7,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false}],"bits":[1,0,0,1,0,0,0],"qubo_energy":0},"seed":3257320810,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.4882445816703953,1.1585850904693318],"expected_energy":8.196338939150595,"initial_expected_energy":14.114189093968356,"history":[14.114189093968356,14.984842174054032,11.535244044135796,11.087677575696599,12.154091616512728,11.606065175420877,11.280825998290865,10.81740462642288,11.57511077246195,10.968453091547435,10.845389028113692,10.884128373989302,10.767343720380767,10.807905648020476,10.732710000905563,10.731908648842838,10.755349626988727,10.733283009410226,10.7226215838032,10.705527475891286,10.682315643293556,10.65251420079117,10.62153610801671,10.558767606469416,10.431862823343849,10.26017769391277,10.156484768231655,9.833741004130097,9.595844309672229,9.370014386163222,9.168965837202897,12.209403155373147,10.15938995189606,10.903222180043713,9.080736237284679,8.599425889408568,8.650062695294832,8.597774947676571,8.688095272497819,8.597022024820273,8.563463853827155,8.521887172569166,8.5019204783319,8.514252134430423,8.497049347829611,8.504832242412848,8.492567452161138,8.488760761520902,8.481540030127341,8.476698977091534,8.459397548016781,8.458568852298615,8.446234818478366,8.437057035467154,8.425354875012076,8.407971839924908,8.689073178410247,8.4137682555053,8.418856941719795,8.416786431947582,11.775604948796556,11.633930134703785,11.748030341354436,8.759977682097416,8.202329371532384,12.705450458871354,12.676392664921137,10.47870061515312,8.197910497895446,8.79275652402792,8.22036604241934,8.306843413582616,8.220205786114061,8.197705915075609,8.20682530069644,8.19743767035689,8.198263973458376,8.197565676051656,8.197467017251853,8.197491446787154,8.197433141248124,8.197408828672115,8.197362476134224,8.197271693156223,8.19715870726618,8.197197109529256,8.197357511121027,8.1972107638733,8.19709752961338,8.197138554162889,8.1970770237487,8.197056286160134,8.197014843424382,8.196933055484974,8.196789421844963,8.197264577995865,8.197594323462264,8.196746851725983,8.196848462953856,8.196765979188003,8.196732013933996,8.196741879508116,8.19671458039429,8.196707632792043,8.196686196497836,8.196660410116214,8.196620721241565,8.196567544086903,8.196498085898337,8.196501159412385,8.196574575739428,8.196488470052671,8.196566525815406,8.196470380236226,8.196460620295813,8.196443722535001,8.196429064145432,8.19639733161585,8.196338939150595,8.196413323073156],"feasible_probability":0.9951424961816645,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.99609375,"counts":{"0001001":178,"0001010":1,"0001100":2,"0010001":42,"0010010":62,"0010100":58,"0100001":15,"0100010":26,"0100100":22,"1000001":96,"1000010":5,"1000100":5},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09946645300078671}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.9951424961816645,"total_shots":512,"runtime_seconds":0.09964544599642977},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":12,"optimal_probability":0.25548551152965315,"feasible_probability":0.9630401486518488,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.9166666666666666,"shots_for_95_percent":11,"hit_curve":[{"shots":8,"quantum":0.9055971231324289,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9910880968391262,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9999205779820513,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999936921431,"uniform":0.9961846700381721},{"shots":128,"quantum":1.0,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.498001805406602e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":12,"optimal_probability":0.32606839435358437,"feasible_probability":0.9951424961816645,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.9166666666666666,"shots_for_95_percent":8,"hit_curve":[{"shots":8,"quantum":0.9574473517844764,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9981892721298459,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9999967212645803,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999999892499,"uniform":0.9961846700381721},{"shots":128,"quantum":1.0,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.8041124150158794e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.32606839435358437,"diagnostic_seconds":0.002784225987852551}
+{"instance":"n3-s0-r0.json","seed":9,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":4,"end":7,"reserved_end":7,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.316057434378722,2.709096569322862],"expected_energy":16.51025840433392,"initial_expected_energy":22.629990060041397,"history":[22.629990060041397,22.26314263425387,22.240249797166936,21.939538864031555,21.870649175898727,20.205287138587686,21.698947552048015,17.189052080351352,23.213751709266475,22.04845135453207,19.325657548215453,17.21612306726918,20.25721941001767,17.3738122521634,17.477628129497564,17.358596957309235,17.027886142077882,17.113375389381574,17.068153921609543,17.032922790777775,17.024848254078094,17.02034467709705,17.018529280069817,17.043930789411398,17.018337330139058,17.008446339312545,16.995639984995012,16.982981058605876,16.973967016921467,16.96039756194264,16.937996027408396,16.88745131496861,16.804757642569257,17.40604881480685,17.363489214602378,16.83131370373136,16.79972905498923,16.86029834823788,16.78002224236951,16.77132315519081,16.759634163519088,16.749530448861574,16.72775874691708,16.69127592574677,17.09809279117665,16.735231895525043,16.733692486690103,16.68328139233688,16.676884900392597,16.667393597034625,16.663417372021676,16.649792182675373,16.644005377589874,16.632195580585908,16.61354214706934,16.572216244641822,16.51025840433392,17.75511254207403,17.13621414539383,16.54528108381778,22.799014896256,22.742043749528975,18.96868651413048,22.6257225051845,18.831022921463962,20.052660632087832,18.89422123782834,18.691373355266144,18.81373421539553,18.696300387808602,18.700307236480878,18.691024383504942,18.692269823576098,18.692021520344127,18.691369095233455,18.691061143452963,18.69086823021688,18.690653846070184,18.691345214601103,18.69046337274998,18.690336979842254,18.69017026217665,18.689849455045675,18.68923947728329,18.68950391345183,18.690330234017555,18.689416921919012,18.68917748095774,18.689211987030365,18.689159948236394,18.689101808990024,18.688992073267887,18.688856918451417,18.68863144854439,18.688532252635042,18.68828386619256,18.688228207457595,18.687960065788932,18.688049616647962,18.688010969954203,18.687914564447865,18.687997452921728,18.687854140166472,18.68780051113484,18.687700644351217,18.687502099739323,18.687161959785612,18.68786624533913,18.688325066523237,18.687116035231234,18.687010348970436,18.68680195827502,18.686445084671174,18.685864232389175,18.68964909554266,18.690508473989084,18.685710823440672,18.686302325256683,18.68585501207541,18.68569209178633],"feasible_probability":0.9852707727336124,"one_hot_probability":1.0,"sampled_feasible_fraction":0.98828125,"counts":{"00010011":172,"00010101":32,"00011001":6,"00100011":59,"00100101":5,"00101001":1,"01000011":81,"01000101":99,"01001001":25,"10000011":8,"10000101":13,"10001001":11},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10631350098992698},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":18,"objective_bound":17,"offset":36,"linear":[-18,-11,-11,-18,-9,-14,-8],"quadratic":[[0,1,36],[0,2,36],[1,2,36],[2,3,18],[3,4,36],[3,5,36],[3,6,36],[4,5,36],[4,6,36],[5,6,36]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r0","start":6,"cost":7},{"index":2,"task":"t1","resource":"r2","start":8,"cost":7},{"index":3,"task":"t2","resource":"r2","start":8,"cost":0},{"index":4,"task":"t2","resource":"r2","start":13,"cost":9},{"index":5,"task":"t2","resource":"r1","start":9,"cost":4},{"index":6,"task":"t2","resource":"r0","start":14,"cost":10}],"conflicts":[{"i":2,"j":3,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":4,"end":7,"reserved_end":7,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false}],"bits":[1,0,0,1,0,0,0],"qubo_energy":0},"seed":747784396,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.628168851268684,2.7862226334737636],"expected_energy":6.489217634914938,"initial_expected_energy":11.184579855290018,"history":[11.184579855290018,10.911522146052366,11.89440920436084,10.056193543960138,12.544957622974598,8.912408326637676,10.523205296653934,12.466786226050335,8.20815017085851,8.202492350130719,8.977006694887596,8.204221276046983,8.252613472020421,8.358860966048047,8.202655827386641,8.21056348767308,8.19614065509137,8.202553231211324,8.196081183609571,8.197166178990814,8.196992907960276,8.196361542482816,8.196119642534377,8.196076596141346,8.196091322813611,8.196069330638041,8.196082238688097,8.196063638242343,8.196064907162455,8.19606282307078,8.19605992293467,8.196054258458474,8.196043060953867,8.196024237397591,8.196025927973478,8.196055948541558,8.196017539302645,8.196022264099097,8.196017318312451,8.196011083640794,8.196002997521216,8.195991487774155,8.195972674960952,8.19593811052135,8.195858756204839,8.195896331188218,8.19643814800867,8.195845046377041,8.196064849886053,8.195840458259187,8.195836912691664,8.195925093361684,8.195820670746945,8.195820327214866,8.19581417925748,8.195805298581474,8.195794054351015,8.195782972594651,8.195775236337692,8.195837071066832,11.600521452383237,12.164249980868785,11.152468517338793,7.429754732026426,8.610732934910553,13.818740289187813,10.385465771573104,8.35729255909251,7.622903355940377,7.574463834072207,7.2427032328702925,7.223715300296421,7.286485983472968,7.199977346660811,7.306067820316319,7.151285212864176,7.135102109006835,7.106681059088677,7.052511959320032,6.962518638481615,7.230538362194545,7.111079295345354,7.096055735042137,6.985105602401301,6.934728784816327,6.9153041838527,6.950174011259364,6.901404201799796,6.888914565609793,6.887324030648273,6.866771960387519,6.839774056209441,6.821179018890672,6.867823022295654,6.806634283365653,6.794865673796419,6.768193595107483,6.715286872454703,6.615077017068355,7.150247928143433,7.081104915096982,6.6497070517486,6.606220620754092,6.638965438859965,6.598469714665088,6.58569799154447,6.574014549932852,6.634124164189226,6.557041037562875,6.544459712176045,6.520796005793964,6.522917332064498,6.515214787002034,6.531019391254777,6.518839863445096,6.508022529928214,6.501404264480545,6.511186969915247,6.496528810035829,6.489217634914938],"feasible_probability":0.9896539228471875,"one_hot_probability":1.0,"sampled_feasible_fraction":0.994140625,"counts":{"0001001":156,"0001010":7,"0001100":3,"0010001":44,"0010010":23,"0010100":18,"0100001":115,"0100010":83,"0100100":45,"1000001":17,"1000100":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10393284499878064}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.9896539228471875,"total_shots":512,"runtime_seconds":0.10410933500679675},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":12,"optimal_probability":0.3071704558877829,"feasible_probability":0.9852707727336125,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.9166666666666666,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9469101875522261,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9971814718142602,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9999920558988662,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999999368913,"uniform":0.9961846700381721},{"shots":128,"quantum":1.0,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.996003610813204e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":12,"optimal_probability":0.3005939673056565,"feasible_probability":0.9896539228471873,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.9166666666666666,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9427421558890922,"uniform":0.5014697532613109},{"shots":16,"quantum":0.996721539287771,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9999892516953583,"uniform":0.9382316427138628},{"shots":64,"quantum":0.999999999884474,"uniform":0.9961846700381721},{"shots":128,"quantum":1.0,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.3005939673056565,"diagnostic_seconds":0.00306449799973052}
+{"instance":"n3-s0-r1.json","seed":0,"direct":{"status":"feasible","best":{"feasible":true,"objective":19,"raw_cost":19,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r0","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[1,1,0,0,0,0,1,0],"qubo_energy":19},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.7364950580585754,1.3302158649590021],"expected_energy":31.495685183704175,"initial_expected_energy":36.6956718445419,"history":[36.6956718445419,35.31851611777769,34.53172823906387,36.711715142823614,35.02218628795374,35.1702892800527,34.41640821721362,34.07505884447616,33.43438477107057,33.90149082807536,33.03302567764146,32.646268179383966,32.5705186821188,33.8546335322996,32.266870871111976,32.17461620519839,32.0299767628983,31.823049025941824,33.66672917826723,32.06157998054402,32.049148450245866,31.74937143096879,31.789057164666502,31.723651841754297,31.70378303113627,31.68023484071861,31.642919251898384,31.620131317424445,31.553843981857465,31.648331977941503,31.550131486070974,31.5703193871605,31.554373778767246,31.541143785468137,31.53550130629776,31.52777484539434,31.526115190484376,31.517290920147516,31.525874653297222,31.520036792485843,31.51642090663824,31.521777428462826,31.513047665466015,31.51073207530189,31.50820599032725,31.503973837701697,31.50070299687713,31.51002191734343,31.517821151853333,31.500058078609143,31.49764762910156,31.49862111396544,31.49811488905855,31.497748339776358,31.49759967776436,31.497527387130987,31.497502236173727,31.49760475176448,31.497408066672527,31.497234575210875,38.57893967590913,37.72666278004997,37.37119715331136,34.49807903047616,35.288953087575706,35.25121464703296,36.038367356409026,34.75050272929758,32.740778565245606,33.56268412910726,32.68781339092835,33.50776016878464,32.65301033027542,32.109075251732065,31.903698314949754,31.787163504084063,31.877415875427303,31.779057261755177,31.82678851793991,31.779983249394416,31.76361706464078,31.740049577885216,31.749848753273916,31.72185620190152,31.70740175149116,31.698456352929302,31.792559199200863,31.669745340786974,31.650730536135757,31.636610897159148,31.665780519601775,31.624879274895882,31.61009225773298,31.58368192456923,31.55372762057225,31.550136924673645,31.517257888938353,31.520332600939632,31.555597812375932,31.523444933082203,31.512541733071316,31.510143523793996,31.52640272228495,31.50665162958102,31.505678364797717,31.50339605390238,31.500480516952855,31.498822823619548,31.496791265334192,31.49663336196922,31.501330853540146,31.495960803146502,31.499099090067848,31.495755220882057,31.496997853240387,31.49642316481869,31.49568814848191,31.495768784706062,31.495702708713218,31.495685183704175],"feasible_probability":0.6427827933255276,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.640625,"counts":{"00010011":16,"00010101":4,"00011001":7,"00100011":115,"00100101":32,"00101001":101,"01000011":62,"01000101":6,"01001001":12,"10000011":13,"10000101":63,"10001001":81},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1121699119976256},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[3,2],"max_component_qubits":3,"component_to_original":[[1,2,3],[5,6]],"components":[{"qubits":3,"penalty":6,"objective_bound":5,"offset":6,"linear":[-6,-2,-1],"quadratic":[[0,1,12],[0,2,12],[1,2,12]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r0","start":3,"cost":4},{"index":2,"task":"t1","resource":"r0","start":1,"cost":5}],"conflicts":[]},{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-1,-3],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":11,"cost":11},{"index":1,"task":"t2","resource":"r0","start":10,"cost":9}],"conflicts":[]}]},"best":{"feasible":true,"objective":19,"raw_cost":19,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r0","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[1,1,0,0,0,0,1,0],"qubo_energy":19},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":3757552657,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.5320188455857027,1.1374005998183243],"expected_energy":1.4619806630138574,"initial_expected_energy":4.554208345458549,"history":[4.554208345458549,4.62469020493761,2.6580946177017433,1.9311351594607844,2.989776064209749,2.922565672599667,2.4046463733736014,2.166681235338244,1.8503019090793726,1.6960307471806115,1.5341509457002462,1.5588016371301827,1.5241164483952998,1.529043691368712,1.520034259588078,1.5726684369458384,1.5050273056733707,1.5034528471089992,1.4963190784848206,1.4855394697471334,1.4761793436991146,1.5230154800192828,1.5382466421918466,1.4698871614978537,1.4758784125345985,1.470946585375155,1.4707962250289306,1.4695223769027104,1.469945238230852,1.4689139304088923,1.4685651073838861,1.4693158643181103,1.4682886657511243,1.468033030626539,1.4675411611151166,1.466794899969209,1.4660473575533006,1.464056111229389,1.4704493484546315,1.468203468797878,1.465368240440701,1.4638819559477194,1.4640843980975702,1.463788395113811,1.463909854185394,1.463746994610234,1.4636661392578985,1.46352660779288,1.463247966252938,1.462820203350667,1.464187570184904,1.4646182110716857,1.4627439849952122,1.4626278761141434,1.4624036873053967,1.4620312480693776,1.462572450035069,1.4628165465881404,1.4619806630138574,1.4625929332449277,3.2908075443966123,3.598732766442345,2.5369534380318255,3.0441751593332915,2.3044566150049812,2.170378281119638,1.9348297385155662,2.184740235777974,2.3236313681470087,2.0402426054466005,1.9564241968310052,1.923761895410565,1.884985128871474,1.8141320760669801,1.6983104844174925,1.8447836545373946,1.9478087203093337,1.829820871405765,1.6812973051464772,1.688383310253943,1.6622719752968007,1.660725411567498,1.7496050772493892,1.6203382435458846,1.6252364689540972,1.615194119649133,1.6236589165318995,1.6080080256403861,1.602216943480463,1.5921107018657867,1.5736699913124943,1.6296570102406134,1.5768045530618164,1.5719996643443355,1.5903757194975483,1.5640228759636625,1.5583562987987167,1.551326557187322,1.5421646325173328,1.5261390711481109,1.4990673779154142,1.7746850574606081,1.6305202350576073,1.5248833404468507,1.4964362996567966,1.505952549309614,1.4959989396911442,1.493337561933238,1.4885094388399582,1.4867656876057094,1.4828766815419572,1.5159279768386864,1.4944473502922773,1.4862116643247059,1.477246890622523,1.4747398851856839,1.476986367728448,1.4740501548971703,1.4738158430911468,1.4730275294036346],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":345,"010":115,"100":52},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08141505699313711},{"status":"feasible","best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t2","group":"g0","resource":"r0","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[0,1],"qubo_energy":9},"seed":673228719,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.976348858273861,1.154180102808713],"expected_energy":9.387546310076734,"initial_expected_energy":9.80453192293364,"history":[9.80453192293364,9.747896320603147,10.328565417050847,9.875516418529381,10.045116054308831,9.65942564146296,9.651542752804772,9.645059046343937,9.644198312228323,9.673547285604844,9.62747901764443,9.623480287611024,9.61534057303792,9.60838346637777,9.610136014686471,9.605329003666933,9.61822213334568,9.610062469984184,9.602245956651576,9.618124470082181,9.597635812284757,9.593718746965711,9.587951588763806,9.579925414578678,9.575663359530171,9.561195576523264,9.584089814267097,9.555630408127335,9.569966852819674,9.555139948332197,9.550796844438757,9.548358276396463,9.544526644836028,9.540957712073382,9.533541298817239,9.519154268995608,9.502414365154959,9.513746511093583,9.569040832640582,9.499135531960949,9.502879004713126,9.498185868177023,9.496094650359039,9.49516797750504,9.491057254406158,9.487467156766721,9.480340863546463,9.46778359247294,9.485333177435857,9.517036287780885,9.46726988633414,9.462408550469982,9.45394619693359,9.44165080360003,9.429788127886948,9.427441800022564,9.387546310076734,9.433972535614448,9.45622482742335,9.391618838875454,10.040573841525473,10.061163392741696,10.124592716742558,9.85977303507315,10.071326160845667,9.952562345433606,9.938122237852218,9.849554001390299,9.84735943064127,9.836551788820577,9.817013416825597,9.789129592813705,9.72285371698138,9.716978441756375,9.702971887593712,9.969519987086997,9.674713558651108,9.596569858405427,9.576173378373067,9.601999389962957,9.572132737480707,9.592783544374964,9.563999157863595,9.564708911865681,9.568574249268515,9.562649016078707,9.562056253540554,9.563334161807354,9.561648946240155,9.560849238095226,9.559688479831646,9.56132720266104,9.558242606942915,9.556754300653807,9.553778776088013,9.54803166705798,9.539038928825109,9.525746960918228,9.524013019627583,9.499343992089436,9.569944161781407,9.519763423845385,9.49669860978064,9.503466211349409,9.496240177597274,9.493425791079785,9.487865407114228,9.477373715395256,9.502693920067934,9.487694233118376,9.482039509561842,9.474097818178622,9.468755096875157,9.45818053992209,9.438709167217574,9.544740446252792,9.500096939302281,9.48587467580076,9.434813783084122,9.431470062237175],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":104,"10":408},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08484011299151462}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.16647886599821504},"direct_metrics":{"exact_objective":19,"optimal_count":1,"combinations":12,"optimal_probability":0.1258832583947407,"feasible_probability":0.6427827933255276,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.5,"shots_for_95_percent":23,"hit_curve":[{"shots":8,"quantum":0.6591561160732644,"uniform":0.5014697532613109},{"shots":16,"quantum":0.883825446789738,"uniform":0.7514675930866618},{"shots":32,"quantum":0.986503473186396,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9998178437639696,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999668191056,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.3306690738754696e-16,"independent_samples":[{"shots":8,"best_objective":21},{"shots":16,"best_objective":19},{"shots":32,"best_objective":19},{"shots":64,"best_objective":19},{"shots":128,"best_objective":19},{"shots":512,"best_objective":19}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6600027518443767,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998214321720698,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999681135309,"uniform":0.9984775611596526},{"shots":32,"quantum":0.999999999999999,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.249000902703301e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":9,"optimal_count":1,"combinations":2,"optimal_probability":0.8062268449616332,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":2,"hit_curve":[{"shots":8,"quantum":0.9999980123089398,"uniform":0.99609375},{"shots":16,"quantum":0.999999999996049,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":9},{"shots":16,"best_objective":9},{"shots":32,"best_objective":9},{"shots":64,"best_objective":9},{"shots":128,"best_objective":9},{"shots":512,"best_objective":9}]}],"reduced_single_joint_draw_p_opt":0.5321119362854876,"diagnostic_seconds":0.0031806859915377572}
+{"instance":"n3-s0-r1.json","seed":1,"direct":{"status":"feasible","best":{"feasible":true,"objective":19,"raw_cost":19,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r0","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[1,1,0,0,0,0,1,0],"qubo_energy":19},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.6470507956384146,0.6288967963359713],"expected_energy":30.88853362494113,"initial_expected_energy":33.303182695576645,"history":[33.303182695576645,34.20093088463463,39.47204784231742,36.733168205833266,35.43535011783467,37.694207648093,33.12888698456948,32.13767431282072,31.952642740799583,31.82667350133367,32.165187171118255,31.835948025237393,31.8175251578809,31.818279109549184,31.807570387401476,31.791722942706066,31.773898333899155,31.805790841181466,31.763160513619447,31.752758846901536,31.732809991910948,31.690866945667064,31.60967955133589,31.48273233022607,32.68817992753384,33.03916860815123,31.556021253856812,31.47874703710774,31.679508410077656,31.43203841418661,31.4196767583868,31.399242676459814,31.384030861448405,31.35708843044404,31.32281237343616,31.243104448254755,31.159433796080094,31.21407333591584,31.719324972235256,31.11670377053631,31.152188655651912,31.10350410198173,31.094205741616868,31.07764125091534,31.06666204190842,31.02766340121471,31.098034445675353,31.011975461603797,31.04593585348712,31.009815484800285,30.999852944860578,30.992918691517605,30.984016489175513,30.97519610098113,30.963403470530075,30.945167730668363,30.937381451077908,30.91610302079045,30.91300195863324,30.88853362494113,40.8218783509859,38.39318742897399,33.61127874967953,39.01317045410664,34.998919068945156,36.16854844118966,33.265040551658075,32.384563364112516,31.63280363404945,31.99665541978883,31.691082979917738,31.648575899157944,31.640848749368594,31.63476642781125,31.626351441233087,31.62239087145336,31.623899429639486,31.61500469667112,31.609543119607707,31.613542146266667,31.603489629841764,31.600229147786195,31.605525822637404,31.59318342257778,31.58683770210832,31.574697462703966,31.558860396923812,31.54350152168921,31.532156730944713,31.570413391393657,31.522216756736732,31.522542500435126,31.525724661449495,31.521286587967815,31.52098659817603,31.522799651453596,31.519925655571406,31.51896874811119,31.51730522943386,31.514488605855632,31.509394560686005,31.521838235730087,31.51221327816081,31.50990620568048,31.51094594128839,31.50940272816213,31.508719976829248,31.50756039669752,31.50543686151058,31.50520900791159,31.501592078124716,31.503140492037097,31.50318225613031,31.502190374516555,31.501081942197416,31.502059390879197,31.500956643435146,31.50058044602656,31.500236686452716,31.500079043417436],"feasible_probability":0.5740673008638617,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.564453125,"counts":{"00010011":50,"00010101":102,"00011001":38,"00100011":46,"00100101":70,"00101001":39,"01000011":65,"01000101":52,"01001001":17,"10000011":4,"10000101":18,"10001001":11},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11713484300707933},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[3,2],"max_component_qubits":3,"component_to_original":[[1,2,3],[5,6]],"components":[{"qubits":3,"penalty":6,"objective_bound":5,"offset":6,"linear":[-6,-2,-1],"quadratic":[[0,1,12],[0,2,12],[1,2,12]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r0","start":3,"cost":4},{"index":2,"task":"t1","resource":"r0","start":1,"cost":5}],"conflicts":[]},{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-1,-3],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":11,"cost":11},{"index":1,"task":"t2","resource":"r0","start":10,"cost":9}],"conflicts":[]}]},"best":{"feasible":true,"objective":19,"raw_cost":19,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r0","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[1,1,0,0,0,0,1,0],"qubo_energy":19},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":1641411168,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.638191716891365,1.1368839224486],"expected_energy":1.4630624384843678,"initial_expected_energy":1.5707829247145442,"history":[1.5707829247145442,1.8487307506722912,3.1365855525902924,4.135159492232832,2.0795369776904904,1.833047782397424,1.5584278250887391,1.5692068076337131,1.5535093293809819,1.6310470813004907,1.5363997601301338,1.5324011971552225,1.5240853394705358,1.509815520770354,1.50645938575694,1.5223210248915289,1.5860835205368526,1.5053504471137216,1.4867783741631069,1.4836921161275254,1.4788200257094222,1.4777270472219184,1.473924827637898,1.4809791151904947,1.4725368372415677,1.4758163746349249,1.4724489546405497,1.4717025577813279,1.4712457728163326,1.470643869583569,1.4700638647510382,1.4692087986695563,1.468195644427654,1.465732546558129,1.4687761719870611,1.4703680031499746,1.4664589484457067,1.465931324301717,1.4658817796155983,1.4659394991542416,1.4657436554379866,1.4656315725102402,1.4654340062936781,1.4650633174502719,1.465258030615155,1.4649790107595964,1.4657973119570857,1.46491400852256,1.4646876675009932,1.4645429714923734,1.4647064934926362,1.4644566512195558,1.4643723240665225,1.4642058026936475,1.4638851143233498,1.4634132670497793,1.4638184681071107,1.4650097653509293,1.4632441853715683,1.4630624384843678,3.11247237145723,3.4261995487563266,3.0041867824115505,3.121501788040954,2.9664046687170047,2.7393813774244173,2.948857302838863,2.474417153552124,2.2378795285289184,1.8630710972099718,4.649569975813289,3.068989743652948,1.8180757329627677,2.7956581819773976,1.7567343140130078,1.8397307012863737,1.8106398300179443,1.7728931784804198,1.722616394657288,1.7482232937755573,1.7089028743196286,1.7061171054440418,1.6891204615465631,1.6665209378968862,1.6410117538105458,1.5969731005027312,1.8085325239489818,1.654048655889766,1.6280840418651925,1.5886287399156587,1.6016336597589074,1.5868602465151795,1.5817013334686627,1.5768567808727831,1.5727960811152482,1.5614919571133683,1.5548178947692797,1.5451845634371644,1.530700155694436,1.5156878407681165,1.4967829228700802,1.5161387186932322,1.5618353716105347,1.499426577264325,1.4849240434869548,1.4897995342745909,1.4828663340814945,1.4832098222008694,1.482306968325012,1.4815146568423798,1.4815631718497202,1.4811118821354263,1.4807309702270803,1.48004088297983,1.4791734848654148,1.4824232260624641,1.4787555556023624,1.477808569724227,1.4771056183868905,1.4774110407558771],"feasible_probability":1.0000000000000002,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":1.0,"counts":{"001":330,"010":141,"100":41},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08815871800470632},{"status":"feasible","best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t2","group":"g0","resource":"r0","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[0,1],"qubo_energy":9},"seed":1454127163,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.5235691701688365,2.755109908970691],"expected_energy":9.315703889581266,"initial_expected_energy":9.858711072224185,"history":[9.858711072224185,9.818491433033046,9.796489666287082,10.146276114235611,9.833038922386786,9.831564862449198,9.825995161929242,9.742153293711315,9.666010550274514,9.67950712912882,9.641022195885842,9.633687018908756,9.641420665788733,9.61881107938928,9.615625014494263,9.606840980805677,9.599218265829272,9.585191607049481,9.55730135429034,9.498754421651642,9.406156885406693,10.062902255131618,10.594996593870842,9.471684135161858,10.149514666492921,9.425437008379719,9.507113073486831,9.386480246471447,9.389122694546622,9.384672719226193,9.397398804339744,9.389452975272466,9.383789676976178,9.381751109686315,9.381235271564623,9.379510762746403,9.37786491045559,9.37468241027213,9.369830602008403,9.374403838198594,9.384614167463898,9.367026165155288,9.365643786280073,9.373458580789464,9.36339814257245,9.36192676867243,9.360480582368249,9.359219810049275,9.35549481315687,9.354438059472157,9.350518055257506,9.349410751307392,9.341580292191718,9.36773028497078,9.34687719715441,9.343920892335953,9.342637942648789,9.340484570973988,9.341789071288916,9.340183187631405,10.182957829912862,10.235614956281728,10.110260926087768,9.787451129413103,9.937539983810439,9.993911770151717,9.829319082793184,9.841321796594826,9.78105057285801,9.769440777197584,9.76191064479418,9.768351468244031,9.758009854296645,9.755654141711492,9.751359473735189,9.743412315375764,9.727926046649147,9.714782029662626,9.701213480896083,9.720433039788242,9.75361849920484,9.686494258181243,9.674564397961642,9.65516441471172,9.627487894292276,9.737186530279441,9.624313625676596,9.616833972645475,9.601421505080287,9.569624642341047,9.505199878623866,9.432236936355094,10.56104187546891,10.223812015023102,9.425054914220564,9.432690724650794,9.478775687129932,9.390608945509815,9.379764255679012,9.377617961997457,9.403812203102966,9.372343779786922,9.371024569184131,9.367240351852365,9.361326652780244,9.34830346584081,9.32530088182255,9.439873032809537,9.564416379013615,9.318708406813647,9.354879100279392,9.326247754182312,9.320462166694393,9.319531691142318,9.32017736266926,9.316807961477444,9.316449264299742,9.318569253152413,9.316442971198207,9.315703889581266],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":85,"10":427},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07917742800782435}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0000000000000002,"total_shots":1024,"runtime_seconds":0.16763170699414331},"direct_metrics":{"exact_objective":19,"optimal_count":1,"combinations":12,"optimal_probability":0.13402122149632528,"feasible_probability":0.5740673008638617,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.5,"shots_for_95_percent":21,"hit_curve":[{"shots":8,"quantum":0.683730002360273,"uniform":0.5014697532613109},{"shots":16,"quantum":0.8999732885929671,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9899946570050941,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9998998931115542,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999899786108,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.551115123125783e-17,"independent_samples":[{"shots":8,"best_objective":19},{"shots":16,"best_objective":19},{"shots":32,"best_objective":19},{"shots":64,"best_objective":19},{"shots":128,"best_objective":19},{"shots":512,"best_objective":19}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.656353885307241,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998055125847016,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999621746453,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999986,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":9,"optimal_count":1,"combinations":2,"optimal_probability":0.8421480552093662,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":2,"hit_curve":[{"shots":8,"quantum":0.9999996145220903,"uniform":0.99609375},{"shots":16,"quantum":0.9999999999998515,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":9},{"shots":16,"best_objective":9},{"shots":32,"best_objective":9},{"shots":64,"best_objective":9},{"shots":128,"best_objective":9},{"shots":512,"best_objective":9}]}],"reduced_single_joint_draw_p_opt":0.5527471480406044,"diagnostic_seconds":0.0038735770067432895}
+{"instance":"n3-s0-r1.json","seed":2,"direct":{"status":"feasible","best":{"feasible":true,"objective":19,"raw_cost":19,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r0","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[1,1,0,0,0,0,1,0],"qubo_energy":19},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.7530653745641079,1.910625234283773],"expected_energy":29.769040770311673,"initial_expected_energy":36.396959710364804,"history":[36.396959710364804,36.96454233921335,37.0454492388633,36.86424303069706,33.62704039736838,38.05405764923104,34.222381634327945,33.55568985310518,33.974514908921165,33.6144853402981,33.63338458817133,33.6813558814773,33.53444271822009,33.48431079135067,33.469698552859775,33.43796496939437,33.410293061444825,33.41334291627716,33.389290870507715,33.39185062341746,33.39601545413884,33.377863962382136,33.362734097386074,33.367386287815705,33.34992731066288,33.34029967157736,33.33735136440074,33.3741190104625,33.3219065882068,33.294444879066326,33.24980556962085,33.14888938100336,32.95756516635102,32.617231263695615,33.78427407628078,36.23414763462107,33.06337965364142,33.02129206198789,32.5845816564527,32.5476541226826,32.53113024989899,32.6738543773303,32.49444196662343,32.47627073419205,32.45545625046423,32.42822341627426,32.476674369614,32.399034537266125,32.40818191034442,32.38797330952938,32.37950992351271,32.38106766966098,32.368548236630645,32.36234019046228,32.36722261889712,32.3508600562268,32.343189735640934,32.35104565818443,32.331857455181904,32.32059292608596,32.471083943248935,36.606680824455026,35.452451913317006,34.86380572487799,35.421811328197855,31.290328948354194,31.931720606905067,31.197986063263315,31.239191603092515,31.103076167437763,31.32168187220431,31.18585352442267,31.089500422034167,31.045459900394018,30.981395396271395,31.20531250370875,30.90319401549627,30.816915224191312,30.645711382120425,30.32909809226388,32.28863700057265,30.615610399271638,30.453539568422855,30.42321974944405,30.319812352791526,30.278494669882388,30.225527195842133,30.31576363370074,30.187700663769466,30.152096114377592,30.08744737419599,29.989605782630548,29.89014774155953,29.790314167359988,30.706282506925156,29.8970142185834,29.789837527145004,29.898787331063417,29.778375781728677,29.774673707302803,29.773635388729215,29.78132251983878,29.772915451922145,29.769628363579706,29.770384737375913,29.769856385127824,29.76997708842285,29.76958483331233,29.769488518904318,29.76941634626632,29.769414740990094,29.76936164080056,29.76931268911148,29.769234859242438,29.769444942987782,29.769184144987438,29.769120503942794,29.769137243670073,29.769083049349515,29.769040770311673],"feasible_probability":0.6044423701568411,"one_hot_probability":1.0,"sampled_feasible_fraction":0.630859375,"counts":{"00010011":53,"00010101":29,"00011001":92,"00100011":7,"00100101":5,"00101001":11,"01000011":110,"01000101":30,"01001001":160,"10000011":5,"10000101":5,"10001001":5},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11628945599659346},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[3,2],"max_component_qubits":3,"component_to_original":[[1,2,3],[5,6]],"components":[{"qubits":3,"penalty":6,"objective_bound":5,"offset":6,"linear":[-6,-2,-1],"quadratic":[[0,1,12],[0,2,12],[1,2,12]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r0","start":3,"cost":4},{"index":2,"task":"t1","resource":"r0","start":1,"cost":5}],"conflicts":[]},{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-1,-3],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":11,"cost":11},{"index":1,"task":"t2","resource":"r0","start":10,"cost":9}],"conflicts":[]}]},"best":{"feasible":true,"objective":19,"raw_cost":19,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r0","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[1,1,0,0,0,0,1,0],"qubo_energy":19},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":2001025171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.437782707392377,1.13690744685872],"expected_energy":1.4680721260264602,"initial_expected_energy":3.0256829810704944,"history":[3.0256829810704944,2.776556075899964,2.6712856815482695,3.083644429986158,2.8442004791853703,2.6741285161783654,2.7103883809857487,2.601208196403274,2.49724460152765,2.5095168208908545,2.5802073640736474,2.4620233742796036,2.4019361758338,2.3466566083221596,2.7977534629674254,2.254420541806107,2.1286667035835034,2.0846053822894386,1.9950486023772398,1.8464447041134016,1.777592905451073,2.1653453332419095,2.7137313870718387,1.6119002205132256,1.6479705256331691,1.6078083107057157,1.6743158659415764,1.5886968353211697,1.597452322831321,1.6050580986346115,1.584197069428996,1.5840005016798648,1.5863439704168234,1.584326832594435,1.5817286273331028,1.5777751716799266,1.5756247885937427,1.5665038042618757,1.5592683787920976,1.5450022857808179,1.5270269443515812,1.5308647970550746,1.546271099315652,1.5339678200298072,1.5193136021088707,1.524438865496473,1.5179204078245996,1.5152897497485183,1.5124763144414843,1.5072478345140905,1.4998103702801058,1.4909106586993368,1.4869122087639468,1.4733033844809138,1.60507762477247,1.5137387006165426,1.474357645936765,1.5159447402825887,1.4680721260264602,1.4724700849679238,3.699146915879844,3.777657410723805,3.628796850800029,2.017601599309735,2.6843688378967703,2.72317671940516,2.2477525494611412,2.377898049557433,1.9672029401529914,1.8622420912916986,1.8000040885806343,1.8109804862306356,1.7810032330259533,1.7647591895171584,1.7357693486913501,1.6840879825626798,1.664624288785533,1.6792317120128577,1.880278195884709,1.6912559954451611,1.6080997611827672,1.5954055762840045,1.6361653111063728,1.5842011606080681,1.5756350974787754,1.5766218164024992,1.5706022721455444,1.5783242948168468,1.5731674642943867,1.5676176983213972,1.5708260625555606,1.5668308029192621,1.565297134589076,1.562065261694162,1.5559824469338008,1.5468370854894276,1.5635394970738608,1.5721037175617893,1.5430847426626908,1.5417223180336574,1.5389902938711515,1.536519179275119,1.5324182265920525,1.5350226182187086,1.5284326826164323,1.5261515976957465,1.5370821951827838,1.5228437200924523,1.5207889201056664,1.5186866402577852,1.516337136585896,1.5120437933478987,1.5110808746951654,1.506252381611127,1.5067518574905558,1.5054921185759302,1.507010492223999,1.5060822495163142,1.504615405528948,1.5045527676225214],"feasible_probability":1.0000000000000002,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":1.0,"counts":{"001":341,"010":110,"100":61},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08278473799873609},{"status":"feasible","best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t2","group":"g0","resource":"r0","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[0,1],"qubo_energy":9},"seed":2240297063,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.060994204081658,-0.3977847636278021],"expected_energy":9.373802782084692,"initial_expected_energy":10.226670167627274,"history":[10.226670167627274,10.264551893586559,10.247008423645438,9.854405249602141,9.880015261457647,9.742504535973374,10.368146983252293,9.671050250466248,9.902160207594893,9.94947213005916,9.588259487903576,9.599513011947876,9.586594993322674,9.605765846247758,9.576352360168338,9.577827982838462,9.57407949245863,9.574286044226145,9.574543602259038,9.57321447865295,9.571726051271835,9.569964027976505,9.57295066522172,9.568374111535629,9.566836531059716,9.563810345877283,9.557816404212295,9.546128185865435,9.528820371121348,9.515851916428678,9.486321098759914,9.517896775226193,9.60596232917947,9.477685702774021,9.492864399464008,9.48090824003542,9.474380592800863,9.475341644283272,9.479145050916685,9.474500774147385,9.47262814728538,9.470151404930592,9.46447280628536,9.45392935707627,9.437993732308868,9.41971669872116,9.441910843487092,9.578039604064541,9.410665743238361,9.40740873779137,9.472446910133806,9.395410363995264,9.396810392963145,9.394578031962018,9.395415937474834,9.393087753638218,9.391901204411411,9.389263250584001,9.384154106965124,9.373802782084692,9.987251371460623,9.950598089895085,10.111963453140454,9.912652984788362,10.100606611709349,9.963519225969767,9.90577492428634,9.957161368641426,9.896892984771753,9.875619735350785,9.84508508135718,9.850760588162224,9.834690038768223,9.82576871221868,9.810171658200748,9.777754523281487,9.715023760635626,9.976255210337005,9.965062622256832,9.702619807887729,9.833513019404375,9.69701505130948,9.69056695556836,9.678335060337002,9.662673067273836,9.827611538667739,9.633758474203319,9.653404765904181,9.63035698950314,9.638250256852414,9.626148293176417,9.63306528399449,9.622081872033204,9.622762774186318,9.620276822775924,9.618655765258655,9.616070388247328,9.619071707365945,9.612442536793479,9.609382264846063,9.614449024855052,9.606448686465047,9.60281779386593,9.595931689232419,9.588616484613675,9.578063925801121,9.590722858805579,9.595784954967282,9.572992054373955,9.569340950083173,9.568436432669628,9.561863219983001,9.55840154213277,9.549758470048538,9.534669247871431,9.507891007436726,9.540822169113238,9.679529728319178,9.499272594235213,9.528958643530387],"feasible_probability":0.9999999999999999,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":1.0,"counts":{"01":108,"10":404},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07382588999462314}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.15682315500453115},"direct_metrics":{"exact_objective":19,"optimal_count":1,"combinations":12,"optimal_probability":0.228437385645233,"feasible_probability":0.6044423701568411,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.5,"shots_for_95_percent":12,"hit_curve":[{"shots":8,"quantum":0.8744058509268701,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9842261097185964,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9997511843853902,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999380907899,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999999961,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":19},{"shots":16,"best_objective":19},{"shots":32,"best_objective":19},{"shots":64,"best_objective":19},{"shots":128,"best_objective":19},{"shots":512,"best_objective":19}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6616663396995964,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998283034147523,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999705202827,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999991,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":9,"optimal_count":1,"combinations":2,"optimal_probability":0.8130986089576528,"feasible_probability":0.9999999999999999,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":2,"hit_curve":[{"shots":8,"quantum":0.9999985109808966,"uniform":0.99609375},{"shots":16,"quantum":0.9999999999977828,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":9},{"shots":16,"best_objective":9},{"shots":32,"best_objective":9},{"shots":64,"best_objective":9},{"shots":128,"best_objective":9},{"shots":512,"best_objective":9}]}],"reduced_single_joint_draw_p_opt":0.5379999804038437,"diagnostic_seconds":0.002779035989078693}
+{"instance":"n3-s0-r1.json","seed":3,"direct":{"status":"feasible","best":{"feasible":true,"objective":19,"raw_cost":19,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r0","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[1,1,0,0,0,0,1,0],"qubo_energy":19},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[6.531278461205692,0.39501829883896383],"expected_energy":25.63564817715515,"initial_expected_energy":38.71414090298559,"history":[38.71414090298559,35.58093370005287,38.10570822068318,37.53891481990532,40.257298476819784,34.34388952716005,32.66767554551675,33.49049513964657,32.482547540370774,32.36585651268601,32.171984388578636,31.956230062040422,31.83323439441903,31.575283572354515,31.878613834150435,32.55320756794294,31.677898088010714,31.57038067198515,31.930310139528267,31.54094716405379,31.590413191419614,31.533221981459164,31.55485870556634,31.530783865186002,31.52694489729025,31.524937567491598,31.520758194402088,31.517574541758663,31.5111261487472,31.508722077924972,31.504743837353907,31.50648033363025,31.509142885197107,31.503759207922414,31.503970160613818,31.50331859457514,31.50295692415558,31.502590947110043,31.504194785462722,31.502414998196564,31.50185854589948,31.50143324407285,31.501858490882572,31.501064330768827,31.500801758917405,31.500922403515293,31.500729737316824,31.500566600387238,31.500267120205486,31.49972038003566,31.499626988365748,31.49880025745044,31.498178267673513,31.49745665425704,31.497045842965004,31.50458967832462,31.496192403515376,31.49735945397498,31.496317403025458,31.496431703914972,39.40387142983998,38.429939640404555,38.83699829977702,37.004770091799934,34.90681601632866,29.60189458956348,34.85413570664366,39.8600512402089,39.24995000310431,35.24179210505297,28.270943715618913,35.06229999714579,25.962166819310646,27.941119871440804,26.532801579731263,25.901673758618085,25.755342841287018,26.087513894867918,25.71303999555537,26.012177546923375,25.734208453246502,25.7252767832653,25.71562529532956,25.713207396455175,25.70912273445293,25.70661119968453,25.71095824713789,25.70105967646406,25.697928116625228,25.69305195297696,25.685016434266956,25.67238193906259,25.658171429348183,25.649710045887655,25.67616363032765,25.738216756041062,25.65268531820074,25.640127817021604,25.650530852376182,25.642127901675572,25.640736114414366,25.639900998141172,25.639734266796346,25.640196774464094,25.639707633457462,25.639546761257368,25.63926177251555,25.638709212941393,25.638007466213836,25.637344544678744,25.63686013401734,25.639423078869484,25.636172695348414,25.63620502845758,25.636118657673855,25.636111233891572,25.636303291777963,25.635960999270594,25.635764612122212,25.63564817715515],"feasible_probability":0.9056352533882343,"one_hot_probability":1.0,"sampled_feasible_fraction":0.921875,"counts":{"00010101":20,"00011001":15,"00100011":13,"00100101":87,"00101001":76,"01000011":26,"01000101":165,"01001001":105,"10000101":4,"10001001":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11190963700937573},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[3,2],"max_component_qubits":3,"component_to_original":[[1,2,3],[5,6]],"components":[{"qubits":3,"penalty":6,"objective_bound":5,"offset":6,"linear":[-6,-2,-1],"quadratic":[[0,1,12],[0,2,12],[1,2,12]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r0","start":3,"cost":4},{"index":2,"task":"t1","resource":"r0","start":1,"cost":5}],"conflicts":[]},{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-1,-3],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":11,"cost":11},{"index":1,"task":"t2","resource":"r0","start":10,"cost":9}],"conflicts":[]}]},"best":{"feasible":true,"objective":19,"raw_cost":19,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r0","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[1,1,0,0,0,0,1,0],"qubo_energy":19},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":819382448,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.534875028117868,1.1363826019661603],"expected_energy":1.461853169331869,"initial_expected_energy":2.3718570611773053,"history":[2.3718570611773053,2.220096449786905,4.252031841528668,2.3289226429786494,2.9021126744442673,2.429720789088852,1.8054039567005733,1.8239096480437875,1.6896457735881627,1.6553578283345738,1.6335063308804956,1.9081744333328434,1.5517799895329483,1.5249206452620725,1.5207957524379185,1.5872045844263625,1.5088070261023137,1.507805736284444,1.5031946433520753,1.4970288760262551,1.4925131386625026,1.5275394516962193,1.4922050025838685,1.4885401989730798,1.482844970863348,1.4761148456693471,1.4793563945117776,1.4866088144149987,1.4764911904949178,1.4768701138842228,1.474919555339034,1.473594556019301,1.4727401578001447,1.4752082778073583,1.4719971487643146,1.4714820619162092,1.4708683768718571,1.469721515103854,1.4684213946159193,1.4675649241625126,1.4660588520457127,1.4633260851118517,1.4659471243290243,1.4767938076377867,1.4718336676690686,1.4626475345526189,1.4634445510714316,1.462893081004506,1.4626217967530566,1.4628873420900477,1.4624258206733223,1.4621205987370571,1.4630689366170526,1.4625141291573653,1.4626451453906473,1.4619664201705105,1.4620502082529978,1.4619209835252933,1.4620334208433954,1.461853169331869,3.137876608694173,3.2967914164540892,2.684829553766628,2.9433587653509417,2.5011617666565895,2.2096051277497906,2.7374203130337094,2.5098959576058064,2.201783168240965,2.1482878957433504,2.0508974218760176,1.8965271811821522,1.6819045458861772,2.2183956684786708,2.297322708946802,1.6532754556063336,1.6846518772730035,1.661335005987975,1.6367164240710523,1.6342906923006806,1.648897031868925,1.6312253197424418,1.6256798025991988,1.6152245430553474,1.5964995022803106,1.5935524896430027,1.5558913034069564,1.5680434120279323,1.55352262917338,1.5654947148945233,1.5515638323735061,1.5481121087569014,1.5437972770192794,1.5602157177359632,1.5396265771503301,1.5367412426197524,1.53340174827982,1.5271538426372369,1.5210087094050921,1.5159822077837941,1.5132851413341688,1.5746847488493554,1.5009765032028592,1.5029998443981856,1.500358065886943,1.5028065533035784,1.4998157503570049,1.4989127972399254,1.4976109787783254,1.4993451618716997,1.496924497208723,1.4962023407919474,1.4950004597895443,1.4932840988599838,1.4903043541885284,1.488220678099842,1.4885557740933448,1.494296147304483,1.4875693855621517,1.4879604495131924],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":350,"010":114,"100":48},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08058549099951051},{"status":"feasible","best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t2","group":"g0","resource":"r0","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[0,1],"qubo_energy":9},"seed":1645421708,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.4501481621735115,1.2035937298187744],"expected_energy":9.327974162233607,"initial_expected_energy":10.21014392980135,"history":[10.21014392980135,10.26988591266009,9.747244331548213,9.995812504531099,9.833864846403898,9.777414186060941,9.718007411539027,9.713390424557153,9.788829843725267,9.698395718864882,9.691336558729231,9.685770448370777,9.692978370501926,9.681533520033081,9.677976380611486,9.670200774969636,9.65523164100533,9.656291067483876,9.663509557840353,9.652931587886327,9.662574364933812,9.648660468955033,9.64545861611177,9.63772324920377,9.622270426894127,9.59415093766689,9.71942910452046,9.744418329629704,9.603035645188383,9.591945423469337,9.60461493104535,9.586832352957012,9.584019592302646,9.580170730119583,9.576424867287292,9.569072836574772,9.554029685246585,9.524530263770236,9.49132081397696,9.755745084383616,9.757092493073124,9.487318815672966,9.46080915635185,9.508955942386384,9.470152609275182,9.462610782299944,9.45949197778679,9.457751849533865,9.457828542916769,9.457408297551835,9.45673446920281,9.45539843245071,9.452772024736857,9.447818067914863,9.444110973636201,9.435830570565098,9.458593385708998,9.448139538652748,9.43781414855496,9.431125920619813,10.413874733414643,10.473601276334495,10.067566413714804,9.537957941827703,10.292042189730717,9.634741940684872,10.290956833040392,9.645002789352674,9.628419249908138,9.54739370390286,9.522632448638266,9.518962016629674,9.536004226287885,9.514226943700049,9.510364505740492,9.503095665602451,9.491890656437572,9.494772163720825,9.535373172485004,9.4878991934055,9.483705050047506,9.490101866711889,9.478315626669726,9.476309555189493,9.472530611347821,9.465325296792425,9.451386149635091,9.42581740940107,9.687434047892861,9.633099653207367,9.427138938239827,9.422034761708035,9.465715807464916,9.408702506897036,9.415151006493673,9.407368993825076,9.410754852302038,9.406821275887747,9.405225222348392,9.402553591245466,9.412684389204673,9.400752716210224,9.39768924500649,9.391443917819565,9.378646722576356,9.351569039369227,9.375887572606224,9.541686439197171,9.397831850427409,9.362870093034479,9.349998980159983,9.352710895087984,9.349024051790767,9.347308455486163,9.344274600531879,9.338254988530407,9.330790825611297,9.339391629885114,9.355056644920397,9.327974162233607],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":73,"10":439},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07187778899969999}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.15265931100293528},"direct_metrics":{"exact_objective":19,"optimal_count":1,"combinations":12,"optimal_probability":0.045674514794226725,"feasible_probability":0.9056352533882343,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.5,"shots_for_95_percent":65,"hit_curve":[{"shots":8,"quantum":0.3120257644584692,"uniform":0.5014697532613109},{"shots":16,"quantum":0.5266914512310463,"uniform":0.7514675930866618},{"shots":32,"quantum":0.775979017662227,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9498145994724192,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9974814255738863,"uniform":0.9999854432572823},{"shots":512,"quantum":0.9999999999597636,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":23},{"shots":16,"best_objective":21},{"shots":32,"best_objective":19},{"shots":64,"best_objective":23},{"shots":128,"best_objective":19},{"shots":512,"best_objective":19}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6597077844902318,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998201890586522,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999676680253,"uniform":0.9984775611596526},{"shots":32,"quantum":0.999999999999999,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.7755575615628914e-17,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":9,"optimal_count":1,"combinations":2,"optimal_probability":0.8360129188831965,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":2,"hit_curve":[{"shots":8,"quantum":0.9999994770296274,"uniform":0.99609375},{"shots":16,"quantum":0.9999999999997266,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":9},{"shots":16,"best_objective":9},{"shots":32,"best_objective":9},{"shots":64,"best_objective":9},{"shots":128,"best_objective":9},{"shots":512,"best_objective":9}]}],"reduced_single_joint_draw_p_opt":0.5515242305216455,"diagnostic_seconds":0.002855922997696325}
+{"instance":"n3-s0-r1.json","seed":4,"direct":{"status":"feasible","best":{"feasible":true,"objective":19,"raw_cost":19,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r0","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[1,1,0,0,0,0,1,0],"qubo_energy":19},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.256362150674612,2.8957887453585403],"expected_energy":30.352228707272324,"initial_expected_energy":34.660840514702016,"history":[34.660840514702016,35.01886423186218,31.89402500444927,40.15681078364939,35.727029884084374,32.58215288936856,31.80517239253531,31.88493445228365,32.034472432385584,31.573904460307016,31.719763903317507,31.61465307732902,31.5807044744505,31.562271246826977,31.579183709713764,31.556953180668437,31.55210351973885,31.543092052956467,31.52662747216679,31.518498613794222,31.541766168581695,31.589920920449956,31.516787780352146,31.503577831112903,31.50525985008678,31.502944887063123,31.50769260849213,31.50060689575296,31.501218738985557,31.500292064656293,31.501342560713535,31.50006929802613,31.499687547363667,31.499075358775833,31.497958340053415,31.497500453480804,31.498390853079723,31.502393634123408,31.49729568272779,31.496381074343645,31.496379410305938,31.49661455175852,31.496428897434892,31.496272625705288,31.496189314731645,31.496099267980757,31.496081712587543,31.495978518151965,31.49599101777285,31.495999949499343,31.495963696303505,31.495962984431184,31.49602115491838,31.495919506239524,31.495872007632563,31.495813181012494,31.49573001486949,31.49648659271824,31.49604044848861,31.49575156238917,39.9036506865368,41.745091642231316,33.65605170515926,37.340302329831154,31.533392886580152,33.81304738024261,32.11757775380295,31.933813571359288,30.992948511291353,31.01881272994998,31.05016316719386,30.956339042106062,31.222169875693197,30.816587809818856,30.82001764197166,30.80925644014474,30.804290490315587,30.852776626967305,30.793360436168776,30.77506460068811,30.75204724591788,30.736773050870397,30.760202463251368,30.726714158211934,30.716903154963305,30.703252866340236,30.682992079967583,30.653327766246573,30.61017158974149,30.522053536233507,30.64450046624664,30.760499886385666,30.53549537848181,30.527437276036473,30.532879960433128,30.514219700772784,30.50772414881428,30.51756307715627,30.501855126668534,30.49436882871591,30.479867463811942,30.45508600956011,30.497210907050878,30.471517764763814,30.451613676048535,30.477411464222897,30.442709259701733,30.437938614607724,30.431435301369127,30.42528562256399,30.414293728335487,30.3926694997039,30.35551780217774,30.621966068984705,30.586363984944335,30.408860539456548,30.368999777232226,30.353628917543165,30.35650335378305,30.352228707272324],"feasible_probability":0.6517768476812962,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.666015625,"counts":{"00010011":11,"00010101":9,"00011001":4,"00100011":77,"00100101":51,"00101001":29,"01000011":128,"01000101":30,"01001001":26,"10000011":1,"10000101":90,"10001001":56},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10579180398781318},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[3,2],"max_component_qubits":3,"component_to_original":[[1,2,3],[5,6]],"components":[{"qubits":3,"penalty":6,"objective_bound":5,"offset":6,"linear":[-6,-2,-1],"quadratic":[[0,1,12],[0,2,12],[1,2,12]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r0","start":3,"cost":4},{"index":2,"task":"t1","resource":"r0","start":1,"cost":5}],"conflicts":[]},{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-1,-3],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":11,"cost":11},{"index":1,"task":"t2","resource":"r0","start":10,"cost":9}],"conflicts":[]}]},"best":{"feasible":true,"objective":19,"raw_cost":19,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r0","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[1,1,0,0,0,0,1,0],"qubo_energy":19},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":367776961,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.428078565881134,1.139324253521152],"expected_energy":1.4691876231821188,"initial_expected_energy":3.503240938093212,"history":[3.503240938093212,3.6775932286724036,3.4893185044565573,3.201897786799149,2.96275801494759,2.84951644769752,3.2044618462677725,2.0027535855103307,3.22765422208459,1.8128386860753372,4.08803564782936,2.7414516580879535,2.9475127330987485,1.7975475944659483,1.6500936218045759,1.8232829087355513,1.628756184293168,1.6702499780219915,1.6193634508707657,1.5944378594814623,1.5816819513817844,1.5588022003150097,1.613090458220458,1.6144299575208858,1.5328963188556575,1.5195840289676321,1.519678350180228,1.5362945354436248,1.5273881423313287,1.5210148674688577,1.5173021786904097,1.5144537987292133,1.5101517396210515,1.5054993758766397,1.4955478312114696,1.5319547370258215,1.5162565276341051,1.5050862027926035,1.494431211403943,1.4947639849242012,1.4946554781955026,1.4937101113999536,1.4936783514921959,1.4950491679301512,1.493540763470527,1.4925537244531475,1.4918225535668486,1.4905174340286664,1.4893826564756463,1.4896201783129395,1.48948533562845,1.489122073378528,1.4892250973228387,1.4895258504850177,1.4886109577801814,1.4885577844270361,1.4894247787260575,1.48791486049429,1.487085478484861,1.486110813339646,3.093295804888048,3.1731177547271048,3.5995420345372917,2.8664200490977825,2.963264357494793,3.034638923463825,2.8215667066997434,2.703146277942339,2.541131416639912,2.967231082158949,2.413959275826593,2.3151271756329863,2.096323379611635,1.8019424098415842,3.072904124925808,1.9641908016793288,1.8188105101486072,2.1646093995971336,1.763119639670152,1.7202949606961262,1.7044214157593085,1.7594547941668601,1.687754486426038,1.6739105907402259,1.6480419721653374,1.6304722316242108,1.5939032695501256,1.6513656154384948,1.6485078068103594,1.5788160196418262,1.5689925619529719,1.5718846332249456,1.5647957797624752,1.558812357210326,1.558559008308558,1.5642221743963454,1.5593270348087032,1.5561261907338446,1.5524704978737953,1.5574615133111565,1.548990376106612,1.5464613775316782,1.5481639148011137,1.5445920869544003,1.5431525376431514,1.5426703170943725,1.5389964927378361,1.5355757237728225,1.5291717908917561,1.5173632329276296,1.508134169599984,1.5039913327002843,1.479756106657343,1.5036662887987935,1.5938443555185517,1.4751913304686357,1.473216175361114,1.4794056500847974,1.470018057875126,1.4691876231821188],"feasible_probability":0.9999999999999999,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":1.0,"counts":{"001":330,"010":106,"100":76},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08161385300627444},{"status":"feasible","best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t2","group":"g0","resource":"r0","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[0,1],"qubo_energy":9},"seed":3166742020,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.660520536468622,2.756834392127796],"expected_energy":9.29938589436697,"initial_expected_energy":9.595343583532047,"history":[9.595343583532047,9.525733421127981,10.34771107094858,10.043974679343602,9.877527148797032,9.50261946181243,9.561029201206502,9.506960537995353,9.512480446363767,9.494208568034896,9.506374240774438,9.49072021882494,9.493089407678463,9.49037690336088,9.488576012996708,9.484990778059345,9.477859956802469,9.463848573068441,9.456970317699014,9.48121880006649,9.557086954155317,9.455129874586936,9.434702346687054,9.435092947651302,9.432853715592763,9.432481166417606,9.435544487862167,9.431732161309904,9.430363931891407,9.428144744964062,9.425364205325437,9.422675637464042,9.420336254830497,9.414794642097938,9.404658800571328,9.387461331840154,9.37748106133153,9.516326808274979,9.613355780598617,9.382354528873595,9.342893650643271,9.375697421233879,9.348069034660519,9.34332743923056,9.340970300374828,9.341351404591943,9.345193456669634,9.340745724398056,9.339291207067593,9.338223195120948,9.33578439415152,9.330809001433447,9.320966342197924,9.307946574083653,9.352982732148018,9.371196283931582,9.305258624509644,9.29938589436697,9.303260616556862,9.302875970631565,9.93321679436291,9.9182786756142,9.658450293252072,10.36906289605193,9.549015824220472,9.512350456654477,9.700796247596234,9.576219321718037,9.50853559261673,9.515408258522896,9.508723670795785,9.513034756747036,9.507351907699565,9.506934161135197,9.508571126100156,9.506485279089931,9.505632099803513,9.504052489589029,9.501269248806869,9.49571765178909,9.487744516341973,9.514674988175196,9.5293832943207,9.484233749033844,9.481619115849293,9.477452625238397,9.47763068343394,9.474013165082862,9.473279685331294,9.477730464948717,9.472433500927915,9.470876209811923,9.46791394388923,9.462272007437011,9.451072678771867,9.430690164808643,9.516074763342463,9.565282447151489,9.442189478987794,9.429026585582431,9.442696543716771,9.425449665293144,9.423936244344956,9.421045359610325,9.418396016874572,9.412998210053972,9.402300146665684,9.38628803996588,9.619326803122023,9.554466576636399,9.388970305487899,9.391214796371504,9.389931551962714,9.38146685917099,9.380901988396511,9.383782159326477,9.379717323107755,9.377551004700402,9.374353703719784,9.403540882340392],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":81,"10":431},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07141971599776298}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9999999999999999,"total_shots":1024,"runtime_seconds":0.15325074800057337},"direct_metrics":{"exact_objective":19,"optimal_count":1,"combinations":12,"optimal_probability":0.2359370083628839,"feasible_probability":0.6517768476812962,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.5,"shots_for_95_percent":12,"hit_curve":[{"shots":8,"quantum":0.883846228275911,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9865083013142683,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9998179740665735,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999668665596,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999999989,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":19},{"shots":16,"best_objective":19},{"shots":32,"best_objective":19},{"shots":64,"best_objective":19},{"shots":128,"best_objective":19},{"shots":512,"best_objective":19}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6622876783726468,"feasible_probability":0.9999999999999999,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998308097815125,"uniform":0.9609815576893767},{"shots":16,"quantum":0.99999997137467,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999992,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":9,"optimal_count":1,"combinations":2,"optimal_probability":0.8503070528165145,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":2,"hit_curve":[{"shots":8,"quantum":0.9999997478780186,"uniform":0.99609375},{"shots":16,"quantum":0.9999999999999364,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.678484070404245e-33,"independent_samples":[{"shots":8,"best_objective":9},{"shots":16,"best_objective":9},{"shots":32,"best_objective":9},{"shots":64,"best_objective":9},{"shots":128,"best_objective":9},{"shots":512,"best_objective":9}]}],"reduced_single_joint_draw_p_opt":0.5631478839137369,"diagnostic_seconds":0.0026697150024119765}
+{"instance":"n3-s0-r1.json","seed":5,"direct":{"status":"feasible","best":{"feasible":true,"objective":19,"raw_cost":19,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r0","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[1,1,0,0,0,0,1,0],"qubo_energy":19},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[-0.6214911017651757,0.3674986775270218],"expected_energy":26.42690608210342,"initial_expected_energy":35.30374388305753,"history":[35.30374388305753,35.45865120938191,28.07829370458737,42.44205715599652,28.06209324720599,26.9959479596685,31.12623962748219,28.03358884540157,26.931229126287327,27.22100697993738,26.941298731428997,26.984503471825974,26.921627858705108,26.933208477102482,26.932199197275523,26.902701380924853,26.874630924770678,26.871585399689728,26.905473420516365,26.8753593652049,26.855076053794235,26.829276665216124,26.852341572340986,26.806714082966682,26.792701825171704,26.810504575646767,26.77873446669598,26.76599352850064,26.74280597933872,26.699170137478095,26.651674693028408,26.59116933498042,26.580088031985845,26.88411677266631,26.5204764853295,26.51829772210322,26.501979118406936,26.478242224539102,26.450887077539036,26.50461276390946,26.498640212355063,26.44783785336308,26.443181888998964,26.442240842822848,26.46427508845939,26.437199278193894,26.43585196502847,26.43432160923419,26.434509474606706,26.433510799984575,26.433623496914564,26.43370150205802,26.433215454429245,26.432938058642357,26.434119249469113,26.432423868043163,26.432034129435774,26.431415122064184,26.430287829138,26.42917429814485,35.377791853749336,37.19691092080068,28.207208894625374,36.44758331089179,27.27541678387273,29.361616056350755,27.236635961510338,27.109461803732692,27.29550511865553,27.204896715295032,27.123706236420208,27.073577699438836,27.0700953187904,27.05696455758667,27.044454125777136,27.020275710049134,26.974232397588043,26.887330362882317,26.814856274378183,26.78065522540032,26.598436523867875,26.607882073635476,27.355623394732962,26.57673562742369,26.650442637356573,26.577812622251855,26.558832610343632,26.5521080086705,26.538875371702556,26.52730418165881,26.507525152289418,26.477030166787532,26.451097487347013,26.43112882095449,26.45938526264412,26.465462193146468,26.43685514079707,26.431777612845462,26.433497039436784,26.430858800317566,26.4301603832446,26.429417361170096,26.428482738933962,26.428177652016664,26.42764232248801,26.427090496033404,26.42865143764896,26.42837506622685,26.427142073636244,26.42803107570176,26.427004129382574,26.427095933213014,26.427040836727965,26.427013764690805,26.426984636178105,26.427014068465393,26.426972636919714,26.42696159830212,26.42694231708639,26.42690608210342],"feasible_probability":0.8114300551948056,"one_hot_probability":1.0,"sampled_feasible_fraction":0.814453125,"counts":{"00010011":24,"00010101":50,"00011001":6,"00100011":80,"00100101":137,"00101001":18,"01000011":46,"01000101":103,"01001001":33,"10000011":2,"10000101":7,"10001001":6},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11564228899078444},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[3,2],"max_component_qubits":3,"component_to_original":[[1,2,3],[5,6]],"components":[{"qubits":3,"penalty":6,"objective_bound":5,"offset":6,"linear":[-6,-2,-1],"quadratic":[[0,1,12],[0,2,12],[1,2,12]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r0","start":3,"cost":4},{"index":2,"task":"t1","resource":"r0","start":1,"cost":5}],"conflicts":[]},{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-1,-3],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":11,"cost":11},{"index":1,"task":"t2","resource":"r0","start":10,"cost":9}],"conflicts":[]}]},"best":{"feasible":true,"objective":19,"raw_cost":19,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r0","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[1,1,0,0,0,0,1,0],"qubo_energy":19},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":803261128,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.1177774218913847,2.732466475159257],"expected_energy":1.4795457078405398,"initial_expected_energy":2.612619936365151,"history":[2.612619936365151,2.5336185518508305,2.0527730943709335,4.159459986275962,1.5633555915794815,1.5208361450611554,1.528765166314586,1.5353213816835471,1.5077177565428228,1.5079562466223915,1.5341301329006787,1.4989660198685635,1.5461143067880352,1.4928971126867194,1.4931238394383888,1.493915619692131,1.4919347647712091,1.490266118226344,1.4908271288395487,1.4906377451448185,1.490090829568318,1.490801485624128,1.4894160247613244,1.4889540035366857,1.4884108270667715,1.4873929421767698,1.4862468963662998,1.4856141676423282,1.483911894033584,1.4810440891083831,1.4796239652295404,1.5636517458392962,1.4973020629680112,1.4797370819330742,1.4855852536951093,1.480373977400086,1.480161810714717,1.4795779269121114,1.479652354340161,1.4795875044082134,1.4795816663100663,1.4795803097560656,1.479573006172063,1.4795752343619335,1.4795713574135103,1.47957061542136,1.4795686108583324,1.4795660976911904,1.4795627935694737,1.479557064263099,1.4795511403972061,1.4795569914947035,1.4795733417909545,1.4795532288370494,1.479547718610125,1.4795476319655179,1.4795502294835754,1.4795478312385921,1.47954664303899,1.4795457078405398,3.630175877234799,3.9911990293419706,2.7590558125110602,2.6446814852067897,2.9163367058890417,2.8463861540617734,2.6979310786099138,2.603310288132039,2.5255645825094084,2.4161417708827564,2.575761848678281,2.326159810605029,2.251757379113902,2.1709095783462375,2.0841008927904627,2.5440176455052175,1.9771464091160498,1.9776648478473384,2.015131840643325,1.9660411382839384,1.9606739754983344,1.9693831910494142,1.954824648217014,1.943858221075534,1.9245621852462937,1.89215205680619,1.8303035579764513,1.7108661614113108,1.5868263963836768,2.42207267412153,2.324503904458143,1.5596966235861833,1.57878282621688,1.5731649795130696,1.5420161649191917,1.5403947652514964,1.5439617495233495,1.5410224851523902,1.5387580281937634,1.536673748064088,1.53730648968798,1.535407567633917,1.5344074516904902,1.5337991898184664,1.5381588286534222,1.5336930706368408,1.531929771698663,1.5293806819647526,1.5245048601296778,1.5215790460810978,1.5128518732224694,1.523384955307699,1.510377168076137,1.5186417870760613,1.5102880744917486,1.5078150135983979,1.5067182393196195,1.5047867809276065,1.5030536388432776,1.4999083429225888],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":327,"010":113,"100":72},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07903492399782408},{"status":"feasible","best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t2","group":"g0","resource":"r0","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[0,1],"qubo_energy":9},"seed":3767054407,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.499453289953354,1.1544655741217469],"expected_energy":9.321470669887798,"initial_expected_energy":9.70112971691509,"history":[9.70112971691509,9.637708430278183,10.372086253902712,9.925166098621162,9.999237493754809,9.617543051721675,9.554606671653428,9.585860673818381,9.561511790498226,9.559347699521968,9.549971719811648,9.541617525598047,9.528706917216464,9.498280126734114,9.485464580547674,9.755981032722396,9.788453357256058,9.487776091370678,9.441078774165803,9.4844232233509,9.448060533355255,9.447603474799411,9.441418891398623,9.442800858818499,9.441244116369418,9.440387332635314,9.439008534837585,9.436261226661209,9.430856327504602,9.4235272444865,9.412937806763862,9.427302702798407,9.424681703778425,9.411496511106769,9.426694844233133,9.407864664200265,9.406484987324578,9.403571600459973,9.400954553621423,9.39562535717979,9.385054978176704,9.36727008938959,9.541868456807498,9.528129808571187,9.3767012005512,9.378477461114745,9.369764187773614,9.364108232099824,9.36199591193053,9.364631534625714,9.360808020253149,9.359561966891523,9.357490025292579,9.353846782093884,9.348493396823464,9.338518263764739,9.321470669887798,9.695995932077793,9.412003580350941,9.374968768125726,9.99212638186557,9.936500883262235,10.090634036188124,9.93799378345879,9.951771753596846,9.942149680194893,9.944254824592573,9.922031389539915,9.898877740354848,9.883815528088997,9.845277552323411,9.812850469675205,9.751673896290395,9.659784087632673,10.515044382956651,10.325643463900324,9.812270596576688,9.670618358818663,9.83729917701947,9.621169912901106,9.64315206018006,9.629641073903167,9.62415142425279,9.616977550851058,9.631902945863867,9.612406993479535,9.608522395373765,9.600885139898674,9.588481132762556,9.593457333715746,9.62151216217967,9.583830202268945,9.578588974709604,9.586361324099393,9.573098501396014,9.570622061815872,9.592612358610628,9.5646007361471,9.561266557829063,9.558120898391598,9.55884241693454,9.555647426210662,9.556537090027723,9.556682615786695,9.554049769795185,9.552863481459852,9.559114913414838,9.550551605550927,9.548519249067816,9.544888603424734,9.537749333946055,9.528942820762843,9.523299874893155,9.511129616119753,9.475771930481148,9.545283413118396,9.655795325742965,9.493087242676578,9.483752950487316,9.479468393681817],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":68,"10":444},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08047895898926072}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.15972986799897626},"direct_metrics":{"exact_objective":19,"optimal_count":1,"combinations":12,"optimal_probability":0.09044443872809092,"feasible_probability":0.8114300551948055,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.5,"shots_for_95_percent":32,"hit_curve":[{"shots":8,"quantum":0.5315816836052398,"uniform":0.5014697532613109},{"shots":16,"quantum":0.7805842808658984,"uniform":0.7514675930866618},{"shots":32,"quantum":0.951856742196865,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9976822267281009,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999946279270601,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":21},{"shots":16,"best_objective":19},{"shots":32,"best_objective":19},{"shots":64,"best_objective":19},{"shots":128,"best_objective":19},{"shots":512,"best_objective":19}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6617546809673376,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998286617365268,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999706431995,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999991,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":9,"optimal_count":1,"combinations":2,"optimal_probability":0.8392646650561015,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":2,"hit_curve":[{"shots":8,"quantum":0.999999554455716,"uniform":0.99609375},{"shots":16,"quantum":0.9999999999998015,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":9},{"shots":16,"best_objective":9},{"shots":32,"best_objective":9},{"shots":64,"best_objective":9},{"shots":128,"best_objective":9},{"shots":512,"best_objective":9}]}],"reduced_single_joint_draw_p_opt":0.5553873206713599,"diagnostic_seconds":0.0027593770064413548}
+{"instance":"n3-s0-r1.json","seed":6,"direct":{"status":"feasible","best":{"feasible":true,"objective":19,"raw_cost":19,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r0","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[1,1,0,0,0,0,1,0],"qubo_energy":19},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.771865654929672,2.204712589494663],"expected_energy":31.01349271653396,"initial_expected_energy":32.79848760527797,"history":[32.79848760527797,34.07580918126174,35.53069652045657,39.276909546241065,37.7111444298253,32.70266921316731,35.32135956051472,32.6161183961718,32.83561792635409,32.646174956414804,32.62890894564369,32.623952641052014,32.60657320839426,32.59479522511633,32.571328658116265,32.524781787333886,32.436501904181384,32.59210937466507,32.69800151534187,32.410576462849306,32.453537186440016,32.40113929538417,32.44526327665671,32.38588106324147,32.37381294170863,32.353433243129516,32.307233024404844,32.218750874737566,32.0996958078588,32.1633428280448,32.512445037243864,32.08114416438984,32.10213814036416,32.07824611203911,32.067803183773634,32.05347601250881,32.08873647281724,32.041371721026785,32.031049942117455,32.009793964990436,31.972501975007837,32.00511957843089,32.03861456413472,31.95810197002376,31.94120856364576,31.93680044495835,32.109665621127526,31.894018811295318,31.87713407140518,31.861410402751556,31.892612305496463,31.846565234871072,31.831701401473165,31.855255968101062,31.81547433040748,31.802985401596793,31.830063334449342,31.79001134789732,31.78060421286836,31.770561454831256,38.81591480755357,38.235178555005476,35.259549570607845,32.91845130174977,32.633978058290324,37.07110963988078,37.23101313255506,31.414744542322435,37.42975660482432,32.70778625699765,32.03089936139818,31.396535890910986,32.67985576081237,31.053837247742536,31.621148413837922,31.057060843375183,31.04338739014474,31.053589510738572,31.04405668801799,31.04868964582294,31.04345740279117,31.043427194525435,31.04394848674453,31.04264697722037,31.042421896670717,31.043041013789626,31.04236809517194,31.042181200680105,31.042010917946914,31.041944334414197,31.041531094726672,31.04089499344199,31.03955290146473,31.03707278099307,31.065579309926036,31.044357932195304,31.036618536937297,31.042075577904935,31.036122688125204,31.03582234578642,31.03503885525357,31.03379126822785,31.031346291128585,31.026215733566083,31.020395735970332,31.139713291296648,31.094653750471494,31.019836873317715,31.018007345956377,31.0234289073078,31.019049082839615,31.016170652377912,31.01548427784292,31.01638858532601,31.015216712629176,31.015110715780008,31.01479197202218,31.014477460940494,31.013864586602615,31.01349271653396],"feasible_probability":0.5808780470444126,"one_hot_probability":1.0,"sampled_feasible_fraction":0.53515625,"counts":{"00010011":51,"00010101":27,"00011001":135,"00100011":39,"00100101":25,"00101001":105,"01000011":32,"01000101":60,"01001001":13,"10000101":3,"10001001":22},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11377625200839248},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[3,2],"max_component_qubits":3,"component_to_original":[[1,2,3],[5,6]],"components":[{"qubits":3,"penalty":6,"objective_bound":5,"offset":6,"linear":[-6,-2,-1],"quadratic":[[0,1,12],[0,2,12],[1,2,12]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r0","start":3,"cost":4},{"index":2,"task":"t1","resource":"r0","start":1,"cost":5}],"conflicts":[]},{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-1,-3],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":11,"cost":11},{"index":1,"task":"t2","resource":"r0","start":10,"cost":9}],"conflicts":[]}]},"best":{"feasible":true,"objective":19,"raw_cost":19,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r0","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[1,1,0,0,0,0,1,0],"qubo_energy":19},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":3153149895,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.374979025105305,1.1409372724551388],"expected_energy":1.4760224656732965,"initial_expected_energy":3.7566301351965348,"history":[3.7566301351965348,3.9371872117532734,1.9430162506111104,3.0883762555780345,2.25326522217203,2.0044126325542524,1.9299237593905867,1.999601661172295,1.9504572741459931,1.8759475150002878,1.8719298260460775,1.8364184065537033,1.804129360073614,1.7496002848349934,1.9343238648310952,1.7747385377132532,1.759194086566768,1.7738949426875292,1.7316303382503428,1.7706595630284185,1.7164910491454073,1.7035267224170323,1.6923448096915172,1.6629168590191796,1.6777234948446824,1.668718254226581,1.6584462386145518,1.6707293952486388,1.6546966190105583,1.6480866015917162,1.637115650790165,1.6166535145875507,1.619249496130474,1.6218715240785948,1.6136351848413373,1.6180549055462328,1.6082478351498264,1.6037274686547534,1.5940754154378782,1.5763124842935041,1.5572946200882978,1.5457297880152685,1.5121510037965584,1.5390439261098066,1.6847825150447604,1.5053200655095962,1.5149279313517376,1.509018474874038,1.5013584733948555,1.5015641112005524,1.5017601617923841,1.500647803764437,1.4993381139492565,1.4973435674073206,1.5067985674580673,1.4954989137177848,1.4958982339994091,1.4986518794552421,1.4955450444623741,1.4945339043134318,4.455129518630219,4.66608857566324,2.093042497118353,2.4539802332323766,2.408268963940238,2.3900170034768298,1.7115069807864263,1.6737401306384745,1.6444690967153517,1.6406884363434688,1.7351961230213553,1.5929975754785861,1.5956155069208267,1.5880499345284416,1.5908781197337,1.592728887854292,1.580776908391221,1.5754796930533659,1.5911197019954355,1.5701434595232893,1.5654599996195389,1.5585458227037452,1.5705105658677694,1.5521705483865467,1.5457395585012481,1.5557261820938828,1.5397195203774356,1.5344837428504459,1.5420701599391446,1.5296180390063105,1.526416322591739,1.5226421085973825,1.5158120770470607,1.5185511191256957,1.515252455991638,1.5226491679645997,1.5153764606642244,1.513029593064027,1.510006637556359,1.511103038882516,1.5086670660728267,1.5074397578850172,1.505319331927916,1.5051574374845185,1.5007816096584243,1.4969810264893264,1.4941852444170336,1.5013895486176418,1.4914713811051588,1.4899837344874418,1.487886436727192,1.484046952297974,1.4787388500156315,1.4788756892717845,1.4825589253215852,1.4804081027191671,1.4771027304888675,1.478783710646235,1.4763526012346295,1.4760224656732965],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":339,"010":106,"100":67},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08191781099594664},{"status":"feasible","best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t2","group":"g0","resource":"r0","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[0,1],"qubo_energy":9},"seed":4186225163,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.6276152542680675,1.1881136629728157],"expected_energy":9.303513537994503,"initial_expected_energy":10.066228004951009,"history":[10.066228004951009,10.084628123365011,10.22331662163411,9.73000551439524,10.136205200828838,9.838007636431664,9.89588431472875,9.721291468714359,9.721135949791462,9.70968712661622,9.688988844513524,9.657499310702512,9.600954134277304,9.639801788094758,10.069004083181966,9.660984470636294,9.597793377020812,9.664818593863437,9.585591339931554,9.58589493052821,9.583532467843852,9.582988004351549,9.591006793447303,9.582124953791599,9.579097158555742,9.576716457382155,9.57774247576315,9.574667300391184,9.57270374055183,9.568853001121226,9.561272313365855,9.546439326254138,9.524662266306423,9.789063303177382,9.72974211315595,9.52368481668339,9.513134983476402,9.493465220069236,9.465919995763901,9.455273697338432,9.455450563983796,9.503170998862442,9.447175324180396,9.449138538226228,9.450977085724258,9.441753108868213,9.43746777910503,9.429551242516503,9.418696227069553,9.403298490686888,9.420726855717039,9.440730441468643,9.413209068158022,9.405102114070308,9.404296510863439,9.402162416916674,9.401975759261072,9.405172732228179,9.401926861613894,9.400880667731341,9.653948253174114,9.60056046594448,10.494856792119187,9.834496120577981,10.076415162998966,9.475359340974537,9.476846442731961,9.473355488817216,9.474227704225346,9.489472726526465,9.4560560248494,9.459553383230496,9.459415860892161,9.456974332463357,9.454157490398417,9.451300863203368,9.44562847861358,9.463227697760255,9.44519812264945,9.440231728373323,9.43190182346584,9.42053984055151,9.410249193553595,9.396976742338817,9.369063511807495,9.398408638802676,9.524173781319686,9.430386697866709,9.365302061841877,9.371878061928006,9.365828052446489,9.363790871686618,9.363551039170318,9.365990644893323,9.363535737509817,9.362704021898857,9.361376321432951,9.358905586958778,9.358305681299036,9.35165898161519,9.354520263141756,9.350850550040981,9.355850130632216,9.350536463625506,9.34895276467644,9.347859070319927,9.34667316627178,9.345406885361541,9.342896734047315,9.33788922973499,9.32799193603088,9.311444524380926,9.458231368454857,9.484684498256641,9.32317195419697,9.31047223651038,9.330891458131767,9.307771311858597,9.305071585024734,9.303513537994503],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":77,"10":435},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.0767442159994971}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.158896189997904},"direct_metrics":{"exact_objective":19,"optimal_count":1,"combinations":12,"optimal_probability":0.091025587476269,"feasible_probability":0.5808780470444126,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.5,"shots_for_95_percent":32,"hit_curve":[{"shots":8,"quantum":0.5339706546183455,"uniform":0.5014697532613109},{"shots":16,"quantum":0.7828166492431465,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9528313921540256,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9977751224338727,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999950499198157,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.673617379884035e-17,"independent_samples":[{"shots":8,"best_objective":19},{"shots":16,"best_objective":19},{"shots":32,"best_objective":19},{"shots":64,"best_objective":19},{"shots":128,"best_objective":19},{"shots":512,"best_objective":19}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6629652893701947,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.99983350659189,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999722799451,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999992,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":9,"optimal_count":1,"combinations":2,"optimal_probability":0.8482432310027488,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":2,"hit_curve":[{"shots":8,"quantum":0.9999997186903875,"uniform":0.99609375},{"shots":16,"quantum":0.9999999999999208,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":9},{"shots":16,"best_objective":9},{"shots":32,"best_objective":9},{"shots":64,"best_objective":9},{"shots":128,"best_objective":9},{"shots":512,"best_objective":9}]}],"reduced_single_joint_draw_p_opt":0.5623558190980463,"diagnostic_seconds":0.002892131989938207}
+{"instance":"n3-s0-r1.json","seed":7,"direct":{"status":"feasible","best":{"feasible":true,"objective":19,"raw_cost":19,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r0","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[1,1,0,0,0,0,1,0],"qubo_energy":19},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.635514159399876,2.7775239870642743],"expected_energy":26.428288552737374,"initial_expected_energy":38.56227026438007,"history":[38.56227026438007,37.74200967124747,33.94629559690394,33.376897303151935,34.23442581976374,33.54025758871791,32.814632743758466,35.46177879267459,35.023814922772345,33.046128313791854,33.40579509039356,32.69392178711445,32.53272821222674,32.3425257692557,33.56299957019425,32.12400088372849,32.09908221829592,31.921643343729052,31.872128730259504,31.703702587609676,32.266781907067625,31.614503193928115,31.70837246802956,31.794456806501742,31.589206376263846,31.669788313183297,31.566710021718308,31.560251051095364,31.546298510845716,31.53544266179117,31.525116728170353,31.513324506072,31.516215654477122,31.541364413773948,31.50863734247588,31.50798664970643,31.511489290863558,31.505833459910598,31.50423243148731,31.50784999470828,31.50302805528287,31.502061662541482,31.50479208689466,31.500952613712215,31.500425465530512,31.499706851674468,31.498520582064444,31.501336380851583,31.499339071846588,31.498337102877514,31.49904205470402,31.498065728190404,31.497863194555357,31.49802315612427,31.497768339687948,31.497710389979137,31.497764839920094,31.49761642266911,31.49753308044994,31.497456968336333,32.46416847437226,33.83657826457722,38.35839246794243,32.987505131697816,29.877623301237172,30.515191513491157,33.20348283215921,30.285248305632095,29.839008840971033,29.33026731274569,29.138423501352477,28.628455802931775,27.618762361900657,26.572176291323714,34.56243642194461,30.295092514476586,26.94361700206243,26.568844164881593,27.034686856841546,26.508112532594097,26.838897488087888,26.46345811468131,26.454107558677542,26.459027354615586,26.452860969913356,26.454571683644616,26.450061325364892,26.450316806038096,26.451661692700448,26.45022584732686,26.449299406985464,26.44782409685066,26.445037339214686,26.442830824209402,26.437794348963983,26.438937373465183,26.437143569941817,26.441758491066345,26.435911338076334,26.43490023432594,26.433215678278668,26.433205182905393,26.430200753368833,26.43457051542039,26.432377654282348,26.429882659800878,26.430128136033463,26.429700016573058,26.429741034901745,26.429635861479223,26.429530545606696,26.429417094135424,26.429584375873297,26.429314334234743,26.42921660292594,26.4290345129791,26.428793904375194,26.428460302211803,26.428288552737374,26.429050534684244],"feasible_probability":0.8121640529271195,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.822265625,"counts":{"00010011":23,"00010101":43,"00011001":9,"00100011":78,"00100101":138,"00101001":23,"01000011":45,"01000101":107,"01001001":30,"10000011":5,"10000101":9,"10001001":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1131922930071596},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[3,2],"max_component_qubits":3,"component_to_original":[[1,2,3],[5,6]],"components":[{"qubits":3,"penalty":6,"objective_bound":5,"offset":6,"linear":[-6,-2,-1],"quadratic":[[0,1,12],[0,2,12],[1,2,12]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r0","start":3,"cost":4},{"index":2,"task":"t1","resource":"r0","start":1,"cost":5}],"conflicts":[]},{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-1,-3],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":11,"cost":11},{"index":1,"task":"t2","resource":"r0","start":10,"cost":9}],"conflicts":[]}]},"best":{"feasible":true,"objective":19,"raw_cost":19,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r0","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[1,1,0,0,0,0,1,0],"qubo_energy":19},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.4534111807148484,1.1342517261645444],"expected_energy":1.4666363451366016,"initial_expected_energy":2.3847303113480653,"history":[2.3847303113480653,2.2496387872956243,4.275276309850628,2.267371352071247,2.4359786669423187,2.265910498311633,2.355043656852573,2.0535127300595586,1.7472627267443965,1.6816214703479209,1.5719279380097926,1.7255810745127753,1.5375127316071424,1.5905215631743848,1.576632556100898,1.536964084549345,1.5524189620000732,1.5368142223417793,1.5315291513277096,1.522610315278452,1.510734843726262,1.5107277210514312,1.508952681315659,1.5076187444466127,1.5082879209424271,1.5124997858379663,1.5076223403636853,1.5057601861482977,1.5031956085812672,1.5007706474124571,1.4984529268812132,1.493319889367599,1.492095364006697,1.483950359750159,1.5015173372835262,1.4813544855954937,1.480142698994881,1.492227484566273,1.4773429710853867,1.476473101978558,1.474974219592005,1.472387327173827,1.472949035609195,1.4740259094736134,1.4730823230764356,1.4728521998674298,1.4718565650813225,1.472100679774099,1.4712754942239874,1.4709405676694884,1.4717996485111522,1.4703174645899537,1.4698455977838127,1.4687731118291945,1.4668871252233011,1.4753917776978434,1.470120717786588,1.4682497432618191,1.4666363451366016,1.4673133551667321,2.3344017322345962,2.180318977114089,4.2364271071009565,2.3675466328241788,3.0649492674308982,1.7700642213871576,1.6133246553186993,1.7228173366455728,1.6253041573617493,1.6323436261736615,1.6163598927086924,1.6238590244071454,1.6108120859517214,1.6113683399583714,1.6122131014593006,1.608246636014135,1.6040194071364817,1.6002060697681917,1.6129224153392807,1.5952427250552446,1.5906884659452731,1.5821725711652892,1.5662235020147135,1.538831757270256,1.6211795019607755,1.6223196846535382,1.5425372573825726,1.5379311510019424,1.5536058740649983,1.5367191260194095,1.5315712695155907,1.5280411176178643,1.5253090789806716,1.522286892796611,1.5170857024287048,1.5290312835465028,1.5151324456298088,1.5088851817146949,1.49915955470981,1.482440342333577,1.5516192976490957,1.5579765725635737,1.500761808239756,1.480839387440704,1.4869115251696652,1.4806315054637258,1.4789765881582162,1.475886617057904,1.4715184303378475,1.4775285507237843,1.479701919728734,1.470641513250977,1.4701331933419268,1.4693294719952998,1.4696494060987033,1.4686911867144135,1.4686772131686487,1.4693729295442357,1.4680799033581309,1.4671116299743001],"feasible_probability":0.9999999999999999,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":1.0,"counts":{"001":337,"010":127,"100":48},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08272687600401696},{"status":"feasible","best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t2","group":"g0","resource":"r0","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[0,1],"qubo_energy":9},"seed":3618983171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.719390697527386,1.2052315662289772],"expected_energy":9.296234285683303,"initial_expected_energy":9.730111581271062,"history":[9.730111581271062,9.686294504541236,10.509299867163548,9.748692725601028,10.098472360581425,9.626042591353604,9.493844594896698,9.474416816158065,9.521784922085391,9.467563715669916,9.479049829486465,9.457137835686448,9.46096120547065,9.461251701814112,9.456488494159636,9.458460521565604,9.456222546938077,9.45547801901202,9.454085270352433,9.451647316460752,9.459471706885441,9.4498974873531,9.447094019795545,9.44138439305285,9.430410503987616,9.408675304199013,9.37093198502492,10.053140016993009,9.889662467987279,9.36124669045552,9.438149866331383,9.382012386782707,9.365269462158928,9.366910419030317,9.36489415016167,9.356484593898191,9.356280696628179,9.357571351416212,9.356535888266956,9.355549918763634,9.354491542317975,9.357420550536107,9.353297053453256,9.352021045422957,9.349486308675022,9.344450555004267,9.334625117407022,9.31779086723415,9.374884084934035,9.48732952934618,9.31233808272565,9.329803980481552,9.318620444399894,9.310515789619842,9.305731030567143,9.297191802543948,9.297397706186048,9.309393166336012,9.296234285683303,9.317079469186503,10.06780477685875,10.08119353258715,9.62928409972208,10.238985498024853,9.662043815397535,9.612657943499707,9.60792930479188,9.586715139896693,9.696518483250589,9.605020002623846,9.597574916004778,9.59323021985033,9.581960684284091,9.594916179069404,9.577734166073887,9.57749031754552,9.575353894052046,9.571256432430538,9.563653747979684,9.549018362021405,9.519651203419237,9.48773981046014,9.796078289854133,9.7593817176699,9.46144007498106,9.505515203071385,9.471875170895544,9.462141875382809,9.460127562827966,9.458329275085148,9.457938843660258,9.460005586890004,9.457560591493706,9.456837861763603,9.455409240595323,9.452574286962781,9.446963463989256,9.435900158206918,9.418025782289757,9.586061837999349,9.572400411277279,9.412714022518003,9.419735763341457,9.418323671940787,9.408487411967196,9.406674369305472,9.403881161671105,9.40122021014949,9.397129919035779,9.391454146363383,9.377664569323706,9.39170370397234,9.412132113429784,9.378232134755429,9.378497322046394,9.377303232495878,9.381872490283747,9.376275095568165,9.374437667342491,9.372993481610635],"feasible_probability":0.9999999999999999,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":1.0,"counts":{"01":72,"10":440},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07402830201317556}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9999999999999998,"total_shots":1024,"runtime_seconds":0.15694971999619156},"direct_metrics":{"exact_objective":19,"optimal_count":1,"combinations":12,"optimal_probability":0.09040712624099434,"feasible_probability":0.8121640529271195,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.5,"shots_for_95_percent":32,"hit_curve":[{"shots":8,"quantum":0.5314279350027258,"uniform":0.5014697532613109},{"shots":16,"quantum":0.7804402199041902,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9517935029642797,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9976761336435451,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999945996451574,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.942890293094024e-16,"independent_samples":[{"shots":8,"best_objective":21},{"shots":16,"best_objective":19},{"shots":32,"best_objective":21},{"shots":64,"best_objective":19},{"shots":128,"best_objective":19},{"shots":512,"best_objective":19}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6608642150165152,"feasible_probability":0.9999999999999999,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.999825019785249,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999693819245,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999991,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.3306690738754696e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":9,"optimal_count":1,"combinations":2,"optimal_probability":0.8518828571583479,"feasible_probability":0.9999999999999999,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":2,"hit_curve":[{"shots":8,"quantum":0.9999997683445042,"uniform":0.99609375},{"shots":16,"quantum":0.9999999999999464,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":9},{"shots":16,"best_objective":9},{"shots":32,"best_objective":9},{"shots":64,"best_objective":9},{"shots":128,"best_objective":9},{"shots":512,"best_objective":9}]}],"reduced_single_joint_draw_p_opt":0.5629788956819777,"diagnostic_seconds":0.0027474530070321634}
+{"instance":"n3-s0-r1.json","seed":8,"direct":{"status":"feasible","best":{"feasible":true,"objective":19,"raw_cost":19,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r0","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[1,1,0,0,0,0,1,0],"qubo_energy":19},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.7556432174089673,1.9108145169203248],"expected_energy":29.769231397954684,"initial_expected_energy":41.64963311191113,"history":[41.64963311191113,40.056568210377236,33.18139965026053,38.22560935701161,32.009228952122555,37.400384211452476,32.02583663155494,32.21695982698026,32.12114983739787,32.038833710267774,32.08135051099973,32.035610279428695,31.961730208344534,31.908171519510983,31.845056053003823,31.787625100913274,31.716452632849574,31.64746413564125,31.603499512267565,31.88896100105565,31.5573881385895,31.58953938891894,31.564663959659413,31.5584180102632,31.553734071365195,31.553018532286863,31.56101768181426,31.547124255433673,31.542524580209072,31.534370766753053,31.542248272989834,31.53355061504068,31.52810634249022,31.52029106711919,31.511612828203965,31.512816957186175,31.518999188457396,31.5143552554554,31.50875797770624,31.511246222556636,31.506519051536756,31.50494179038226,31.502869129272852,31.500061167036534,31.500297357724303,31.501572968020483,31.500321006511953,31.500329068592023,31.49962176695668,31.498995479614436,31.498045024313555,31.505313412720312,31.49851959642763,31.497932041905308,31.498862568781348,31.49775172765877,31.49750415489911,31.49731388495914,31.497406659119846,31.49723665244189,32.20084370874305,35.77216598216208,35.50938317004012,34.69136046946319,35.43371733073853,31.43786757525846,32.68478270638188,31.36279313724562,31.45619369456528,31.3400159554216,31.567005134199732,31.233339500175788,31.215733513404896,31.134753300658154,31.054552133320325,30.89085223329204,30.542643294748945,30.085840717191388,30.29187226790936,31.123795391387986,30.19064517435976,29.980166457398013,29.98232048830826,30.0792609684474,29.95858489004761,29.956507157800683,29.970490288292936,29.955883432781622,29.94301151097377,29.92278995412618,29.88795547766967,29.90675283655571,29.88671645316846,29.91747669498794,29.888706458124837,29.874215204772472,29.858505015519352,29.869459010804675,29.851319089561624,29.84509295246899,29.83234892526283,29.810314462796907,29.851294450520562,29.826142755557104,29.806667658623926,29.816384934113856,29.802507411554394,29.798568704271233,29.797227259470134,29.787303277153114,29.786243292645167,29.778682387054623,29.778621371541213,29.774540678697342,29.774474275886053,29.771461555264594,29.77097793352898,29.769231397954684,29.77224541466661,29.771876937072864],"feasible_probability":0.6042583080449551,"one_hot_probability":1.0,"sampled_feasible_fraction":0.62890625,"counts":{"00010011":39,"00010101":30,"00011001":103,"00100011":9,"00100101":4,"00101001":10,"01000011":126,"01000101":26,"01001001":147,"10000011":3,"10000101":7,"10001001":8},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11495211899455171},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[3,2],"max_component_qubits":3,"component_to_original":[[1,2,3],[5,6]],"components":[{"qubits":3,"penalty":6,"objective_bound":5,"offset":6,"linear":[-6,-2,-1],"quadratic":[[0,1,12],[0,2,12],[1,2,12]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r0","start":3,"cost":4},{"index":2,"task":"t1","resource":"r0","start":1,"cost":5}],"conflicts":[]},{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-1,-3],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":11,"cost":11},{"index":1,"task":"t2","resource":"r0","start":10,"cost":9}],"conflicts":[]}]},"best":{"feasible":true,"objective":19,"raw_cost":19,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r0","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[1,1,0,0,0,0,1,0],"qubo_energy":19},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":3257320810,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.5615640321512956,1.1344555381341126],"expected_energy":1.4613562570094933,"initial_expected_energy":3.530386911494862,"history":[3.530386911494862,3.732822375000742,3.453381879565475,2.92516657351698,3.465382968019958,2.4416953667200825,3.295008843852103,2.236155507298884,3.426236713504327,2.110644946345805,1.8680910256032928,2.0660786177454065,2.3260648127966337,1.9288812146824124,1.883084873946803,1.8809144269395468,1.8422043531313204,1.832503846443278,1.9092129921270447,1.790262837327878,1.7724333660269507,1.737964173447481,1.6868294503702241,1.6098254310145967,1.5438519479054746,1.4797523655266809,1.5721283346865031,1.8763567595309327,1.627458933012348,1.4748487106987118,1.503010984955258,1.4969416449180997,1.4806694379665806,1.4751639869233792,1.4743189020572627,1.4743558404733768,1.4746724240686504,1.4737564040801048,1.4732218416352485,1.4761547788230818,1.4723093799739022,1.4717215362567913,1.4711589986065157,1.4707941500863804,1.4693979657303804,1.469261211905124,1.4683996357905094,1.467660652328767,1.466845671354247,1.466377448029034,1.4757027019185687,1.464815932189909,1.4653733086541134,1.4646961694127767,1.465167840370019,1.46445294673951,1.4648171621439143,1.4642981610547006,1.4643804529081734,1.464256550270569,2.7300467607361205,2.6866551155944274,4.370797593295784,1.8069351041077368,4.46981408123429,1.5137858815632712,1.466392130194613,2.0664201136261218,1.7020869545332942,1.464637322913278,1.4884500574558508,1.5064833558595458,1.4684358235148904,1.4680970637373805,1.4640536302833822,1.4639331130092184,1.4635733898996304,1.4632997482562429,1.462821629291251,1.4623405776845806,1.4630451200869752,1.4648858601277062,1.461973523443913,1.462081684929181,1.4622002141143282,1.4620100870695258,1.4620137601297056,1.4619737136971236,1.4619578184630262,1.4619269899656022,1.4618678125871303,1.4617913042255677,1.4617129521552077,1.4616678425125516,1.4620636645942526,1.4615916411148948,1.461597986522295,1.4615856666008153,1.4615885085869151,1.4615753914635572,1.4615662499642144,1.4615653852717245,1.4615520493616292,1.4615317983112235,1.4615069407266457,1.4614742720595337,1.461456264776619,1.4613776247978238,1.4617015124662869,1.461532008052545,1.461424865379859,1.4613767198087317,1.4613894063767097,1.461368393128282,1.461363989417055,1.461360675429011,1.4613646757096204,1.4613585517270948,1.4613566331640007,1.4613562570094933],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":350,"010":109,"100":53},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08910889399703592},{"status":"feasible","best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t2","group":"g0","resource":"r0","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[0,1],"qubo_energy":9},"seed":631391383,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.717961889948638,1.1783886097158636],"expected_energy":9.419241729709835,"initial_expected_energy":10.381745420783025,"history":[10.381745420783025,10.457325490698658,9.83242303521886,9.759087183384128,9.800566049902443,10.358329721440128,9.628783130762365,9.832319498643237,9.617499951797884,9.647625667145327,9.621944099620029,9.612773064034382,9.613317246472425,9.626667337657977,9.609414944365785,9.608871075889637,9.61513218621709,9.608728593781652,9.606176648237174,9.602517261485264,9.594929928129915,9.585906318923072,9.573923882008671,9.575886940707209,9.59381639927188,9.574408903392094,9.568685265146142,9.566119845851336,9.56234403991126,9.558604609253669,9.551487004957545,9.536876781752666,9.509364403524803,9.757364959582409,9.618829013523627,9.528254630536807,9.52045386784094,9.51438742585995,9.505451719485244,9.503105657061809,9.499134199256765,9.492920623350198,9.478251087804349,9.46071485066513,9.503445814235345,9.541878529701364,9.456200733446444,9.446614564938887,9.449436759105616,9.450952529116076,9.447011937481244,9.444849435590115,9.441430929035848,9.434539140287402,9.420914490256026,9.422542316068526,9.454148071625028,9.43086531916446,9.419241729709835,9.421066762627646,9.77057071349377,9.696984228134603,10.010900089511647,10.241700907935332,9.724063993414957,9.742878321457496,9.709699379009077,9.677210003787692,9.673261343690497,9.666900682708842,9.669857658349978,9.663383994131191,9.662983393568693,9.668415711295888,9.660650764640174,9.65635709208798,9.648975409853454,9.63373551679694,9.605293526892087,9.937428656949217,9.682827459749108,9.648758741325356,9.600882681514005,9.595623027073547,9.597181421294453,9.590969084151693,9.589872824121732,9.595230639728427,9.588792181047202,9.586781593025938,9.582873443824287,9.57521336473231,9.560176097096125,9.535049540701243,9.722874393008048,9.720663423576326,9.541351050599314,9.533483812553454,9.550647491828895,9.527004035002223,9.524067114995695,9.520398908544147,9.517443114947568,9.510374999764174,9.50059814471291,9.48436252472022,9.496402839114094,9.527725118564149,9.483008728955264,9.479278235453371,9.472009203597631,9.457936759674602,9.433282049224456,9.75596900170849,9.5448272072524,9.504458102510961,9.427774078045957,9.429492692169232,9.434164678981254,9.426022329692493],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":104,"10":408},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08660274899739306}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.1759151439910056},"direct_metrics":{"exact_objective":19,"optimal_count":1,"combinations":12,"optimal_probability":0.2285447460430503,"feasible_probability":0.6042583080449551,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.5,"shots_for_95_percent":12,"hit_curve":[{"shots":8,"quantum":0.8745455909565056,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9842611912515475,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9997522898991796,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999386397059,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999999962,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":19},{"shots":16,"best_objective":19},{"shots":32,"best_objective":19},{"shots":64,"best_objective":19},{"shots":128,"best_objective":19},{"shots":512,"best_objective":19}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6585287106483951,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.999815143998355,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999658282587,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999988,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":9,"optimal_count":1,"combinations":2,"optimal_probability":0.7903791351450823,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":2,"hit_curve":[{"shots":8,"quantum":0.9999962719985919,"uniform":0.99609375},{"shots":16,"quantum":0.999999999986102,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.136298667188473e-32,"independent_samples":[{"shots":8,"best_objective":9},{"shots":16,"best_objective":9},{"shots":32,"best_objective":9},{"shots":64,"best_objective":9},{"shots":128,"best_objective":9},{"shots":512,"best_objective":9}]}],"reduced_single_joint_draw_p_opt":0.5204873527904846,"diagnostic_seconds":0.0032924679981078953}
+{"instance":"n3-s0-r1.json","seed":9,"direct":{"status":"feasible","best":{"feasible":true,"objective":19,"raw_cost":19,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r0","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[1,1,0,0,0,0,1,0],"qubo_energy":19},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.7492694700883101,1.9110138324924972],"expected_energy":29.76889499292417,"initial_expected_energy":36.852606512117106,"history":[36.852606512117106,36.30015147367251,31.986647874485453,35.53312912969462,34.99763110632554,32.41603216606763,31.05375368014627,32.078919303242195,30.88433826584965,30.88846325356524,30.797887040543365,30.81685542642636,30.946995216208776,30.797815472897952,30.742039469853722,30.660680098242853,30.801220636038735,30.588610884896323,30.499949582699177,30.337747871082975,30.07449653692694,30.245089102088755,30.818429521692643,30.06774219682037,29.980779521547404,29.87455291606596,29.820787111552118,30.099575618258065,29.815069628626183,29.801921567113165,29.78225990646976,29.785575957763967,29.80105166982851,29.796248056107647,29.78572485898999,29.777654248139278,29.77845860005119,29.775168362313682,29.77345081876816,29.772188542251968,29.770825980825098,29.76925448064147,29.777004857816756,29.771147545281003,29.771128117313555,29.769538528880922,29.769278572886414,29.76916330375109,29.76915059624354,29.76902878477803,29.769108255739884,29.769016755357,29.7690683896518,29.76898712023711,29.768965404617184,29.768936728193435,29.76891004893711,29.76889499292417,29.7689834482102,29.76890143466727,35.859876264185644,35.52601791643988,32.52723742577198,39.50638401952472,33.57162843806478,32.41012997117435,32.005673928676636,31.62622859710971,33.19476948554391,32.113109953986296,31.634187299193712,32.106305025830075,31.550002406949147,31.817688164060417,31.516530349534925,31.51259396559226,31.50838012497934,31.510613650333518,31.513947211620092,31.508278485219464,31.506263052296454,31.507160386443637,31.50750413675945,31.506321416862328,31.505712177204238,31.504691440979336,31.5028190969788,31.502653727335275,31.49955815361709,31.501935985284113,31.50156206702205,31.5000081730444,31.499334033588823,31.498727660879595,31.498251407078143,31.49872743593565,31.497963598463954,31.497581041278263,31.49754632013067,31.499272801418016,31.497407816326174,31.496886633765556,31.496589279071802,31.496679825713095,31.49651447054515,31.496451241476876,31.49633873427757,31.496158502215394,31.4960286609927,31.49592771429902,31.495857548989157,31.49728466892871,31.495693468669955,31.496168104822523,31.49568713573585,31.495702481014252,31.495718699190384,31.49567597853401,31.495675205679078,31.495675918932463],"feasible_probability":0.6046140081622906,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.6484375,"counts":{"00010011":49,"00010101":30,"00011001":80,"00100011":11,"00100101":3,"00101001":12,"01000011":134,"01000101":30,"01001001":142,"10000011":2,"10000101":9,"10001001":10},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13360081901191734},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[3,2],"max_component_qubits":3,"component_to_original":[[1,2,3],[5,6]],"components":[{"qubits":3,"penalty":6,"objective_bound":5,"offset":6,"linear":[-6,-2,-1],"quadratic":[[0,1,12],[0,2,12],[1,2,12]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r0","start":3,"cost":4},{"index":2,"task":"t1","resource":"r0","start":1,"cost":5}],"conflicts":[]},{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-1,-3],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":11,"cost":11},{"index":1,"task":"t2","resource":"r0","start":10,"cost":9}],"conflicts":[]}]},"best":{"feasible":true,"objective":19,"raw_cost":19,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r0","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[1,1,0,0,0,0,1,0],"qubo_energy":19},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":747784396,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.6155316336290317,1.1355567245210645],"expected_energy":1.4620405643288006,"initial_expected_energy":2.4385823229436263,"history":[2.4385823229436263,2.4374575983253832,4.236794419973927,1.9189268329832847,4.702932778967387,1.4860194784410987,1.6145080657233377,1.4990048314349647,1.6217699068434677,1.4918649076085417,1.5400451013198206,1.4809565830782165,1.4852985156628502,1.4844516703629265,1.4802255494361654,1.4793851963050795,1.4788011626120785,1.477964769798225,1.4764411140081655,1.4735858349468989,1.4701787044551857,1.4718690397424101,1.4778222084896637,1.471352219833524,1.4688360436535368,1.4683536979495373,1.4712977470803428,1.4676732347022892,1.4672895351297142,1.466821656046387,1.4659734232533546,1.4658502161088478,1.4642457276324594,1.4676203550389526,1.4654183283030364,1.4640810043073527,1.4643546252756101,1.4639452702222462,1.464208488485153,1.4637564181525349,1.4637635189532765,1.46368647901736,1.4636204098449357,1.4635003170163756,1.4633497142308216,1.4640762266615135,1.4632403188890606,1.4630967220215645,1.4630016694745978,1.4631534696039283,1.462938352303444,1.462878075347932,1.462805593902935,1.4626814160389705,1.462587201371719,1.4623882627971552,1.4620405643288006,1.4639284828171846,1.4629153391114733,1.462467148254883,4.262719546413745,4.097488139449487,2.6965496295169613,1.9302810311283285,3.3307204071240406,2.7817691585542663,2.432937258242298,2.1375535331384627,1.8626949085425606,1.7467568839152974,1.6759770430331025,1.6619949071657105,1.7430157724073063,1.626012714422786,1.6258156853978727,1.5984996502796833,1.608816970856555,1.6144977974962946,1.5959674431131918,1.6135681667009205,1.5902031981678357,1.5852910488102814,1.576839520371161,1.560732687581531,1.5455684227397881,1.5551552159348199,1.592314808051162,1.55339666693162,1.5339860826980254,1.5301228302765648,1.5442449209166313,1.5265242809212323,1.5236017471661965,1.5181171072780595,1.5096869304882197,1.5160507785237212,1.5448019900212282,1.5081948558658684,1.5057287665466075,1.5008994936642326,1.4930722887940295,1.498123709027219,1.517040796188264,1.4918276217806992,1.502970034630257,1.4912526208712449,1.4907003005138795,1.4895913669044953,1.4875476795116314,1.4855496138291697,1.5076695724181866,1.4837097036409213,1.4854947077031682,1.4844337733247657,1.4830439320898174,1.4838110407953704,1.483546526739591,1.4829022709658455,1.4834295562801376,1.4825736471765372],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":338,"010":123,"100":51},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09756728100182954},{"status":"feasible","best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t2","group":"g0","resource":"r0","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[0,1],"qubo_energy":9},"seed":4053640108,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.5436340031773206,2.759723767905921],"expected_energy":9.443658254763186,"initial_expected_energy":10.312272590184012,"history":[10.312272590184012,10.375657878220863,9.683009561577487,9.948907960654193,9.78787085367271,9.73590258647367,9.624451607368593,9.63685279906958,9.626930231550435,9.634809559861706,9.618947682603103,9.626558307000899,9.615551277996095,9.617615702949754,9.614817676815488,9.612906781583705,9.609069351737423,9.601417917465369,9.586205992210543,9.572259519398724,9.583060912101594,9.63394773788235,9.58085926938087,9.557927282719344,9.553927373436677,9.570545059331167,9.549267351920435,9.545388912232369,9.537970226163825,9.523316949136722,9.503298100342716,9.517440412709824,9.565234611234661,9.501667999006216,9.506695552677437,9.50154723319536,9.499717505005439,9.497273410513069,9.501690407023958,9.495375096902478,9.493607530542645,9.490047196373846,9.483448705311483,9.478781322495038,9.462475887176645,9.541766011310283,9.481434700854416,9.476327914134153,9.465274916636874,9.459638578745208,9.456739803881316,9.457474008524814,9.455138231009933,9.45455377528603,9.456737040597158,9.454156260863613,9.453392885757815,9.451924884664171,9.449139990357699,9.44370615189562,10.372081106349812,10.428509518841315,9.579891945684098,9.97545953145707,9.701581147420015,9.639461204454028,9.525078328533908,9.547973115505382,9.52886736526252,9.531266797539498,9.526310834186074,9.528443295824733,9.52432286440699,9.524772678001483,9.523884207595533,9.523093298597816,9.521858961268574,9.521674213781985,9.52383615756915,9.521587659698692,9.520615394616616,9.518935112411734,9.515982159150633,9.51631069676841,9.514358959083342,9.514329663189272,9.51705949390754,9.51440975839873,9.513130870947103,9.51113736597869,9.510016122950582,9.507109404452379,9.504559707664386,9.502984371859835,9.49559544640559,9.495168873798816,9.490568213912256,9.485528802143598,9.481516138704277,9.505452688599696,9.478076741065774,9.47496884262405,9.481884125747428,9.470874090797176,9.468776794969706,9.46602455361867,9.461014638300922,9.461242837926012,9.459945801654737,9.464086496994428,9.46096469585475,9.457960869375784,9.456339309431176,9.456361490404902,9.45509263703068,9.45388481322959,9.451624905889847,9.448306723954467,9.478993974345753,9.443658254763186],"feasible_probability":0.9999999999999999,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":1.0,"counts":{"01":111,"10":401},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08948335399327334}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9999999999999999,"total_shots":1024,"runtime_seconds":0.1872978760075057},"direct_metrics":{"exact_objective":19,"optimal_count":1,"combinations":12,"optimal_probability":0.2284077474804936,"feasible_probability":0.6046140081622906,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.5,"shots_for_95_percent":12,"hit_curve":[{"shots":8,"quantum":0.8743672499837019,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9842164121233423,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9997508783537399,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999379384054,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999999961,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.551115123125783e-17,"independent_samples":[{"shots":8,"best_objective":23},{"shots":16,"best_objective":19},{"shots":32,"best_objective":19},{"shots":64,"best_objective":19},{"shots":128,"best_objective":19},{"shots":512,"best_objective":19}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6569547067949782,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998082162883979,"uniform":0.9609815576893767},{"shots":16,"quantum":0.999999963219008,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999987,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":9,"optimal_count":1,"combinations":2,"optimal_probability":0.7781708726184062,"feasible_probability":0.9999999999999999,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":2,"hit_curve":[{"shots":8,"quantum":0.99999413661291,"uniform":0.99609375},{"shots":16,"quantum":0.9999999999656207,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":9},{"shots":16,"best_objective":9},{"shots":32,"best_objective":9},{"shots":64,"best_objective":9},{"shots":128,"best_objective":9},{"shots":512,"best_objective":9}]}],"reduced_single_joint_draw_p_opt":0.5112230174574174,"diagnostic_seconds":0.0034587590052979067}
+{"instance":"n3-s0-r2.json","seed":0,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":4,"end":7,"reserved_end":8,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":7,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.152852577559761,1.0809258667022978],"expected_energy":21.584351048163537,"initial_expected_energy":25.667769141041013,"history":[25.667769141041013,26.238955171961578,29.345962197700906,33.81380351800207,29.483709580034926,25.962567308090932,25.633644717904282,26.013336124176536,25.45229012746345,25.592052724774696,25.495934452330108,25.45657792330484,25.448483906699845,25.442125211925188,25.433416794619077,25.44215723196312,25.423610049606616,25.414893717065716,25.398934114743966,25.36569770949108,25.299384523016077,25.17261413747744,25.70092405797613,25.760036542398176,25.126155485287438,25.14466795442522,25.15156236477458,25.088301262185663,25.08444584265282,25.12023771473916,25.08618241103202,25.06923683000006,25.046572957497485,25.06537268209359,25.027212872936715,25.01270066859402,25.024532976836056,24.9924570140109,24.984152693566443,25.00659934544476,24.97863186799801,24.967754882214727,24.946299957858386,24.903637954108298,24.818272536311135,24.64823658364338,24.28588066442175,25.847628787352715,26.683482405104368,24.4053300989943,24.355421442188717,24.331203822281424,24.231174716393383,24.241676061290303,24.218798897188556,24.197038700084402,24.161425333672604,24.172850212316625,24.11556057534341,24.074784965725947,40.8366596051725,35.10252473558685,25.473580193414243,30.555669076626202,24.68400229632106,25.19634416975139,24.668359658353033,24.996670457084598,24.57192201134454,24.61663652392944,24.67937241839859,24.57492231989145,24.536251547783046,24.509333329319674,24.44881115574038,24.331860569680366,24.074384875913154,23.868153896855485,23.955960997028335,24.864815384406803,23.818381260350293,23.873990255927403,23.78180150741067,23.71772665268889,23.634934677079563,23.56595973452184,23.534099722366186,23.457384432793923,23.33398066333881,23.061204474308788,22.545227725248942,22.00389794014425,25.33311876325968,26.377859560821776,21.796724632125283,21.962354060295606,21.844711175913623,21.734732108756347,21.757695306946566,21.727471265490138,21.714800503070784,21.702424152893244,21.707800039523903,21.692279097850797,21.697994416103164,21.695467404076386,21.687383763741316,21.68409575399368,21.701783033664185,21.68274127384114,21.675891861645567,21.66572951078639,21.64581354548792,21.626826182896302,21.592558885667017,21.600522778544384,21.66581721046757,21.58593531480347,21.615395934125168,21.584351048163537],"feasible_probability":0.904087359046015,"one_hot_probability":1.0,"sampled_feasible_fraction":0.904296875,"counts":{"00010011":110,"00010101":23,"00011001":33,"00100011":9,"00100101":3,"00101001":6,"01000011":134,"01000101":23,"01001001":61,"10000011":45,"10000101":20,"10001001":45},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1303532570018433},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":18,"objective_bound":17,"offset":36,"linear":[-18,-10,-9,-18,-14,-10,-11],"quadratic":[[0,1,36],[0,2,36],[1,2,36],[1,3,18],[1,4,18],[1,5,18],[3,4,36],[3,5,36],[3,6,36],[4,5,36],[4,6,36],[5,6,36]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r2","start":10,"cost":8},{"index":2,"task":"t1","resource":"r0","start":10,"cost":9},{"index":3,"task":"t2","resource":"r2","start":7,"cost":0},{"index":4,"task":"t2","resource":"r2","start":8,"cost":4},{"index":5,"task":"t2","resource":"r2","start":11,"cost":8},{"index":6,"task":"t2","resource":"r1","start":13,"cost":7}],"conflicts":[{"i":1,"j":3,"reasons":["resource"]},{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":4,"end":7,"reserved_end":8,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":7,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":7,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":12,"changed":false}],"bits":[1,0,0,1,0,0,0],"qubo_energy":0},"seed":3757552657,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9440650602117795,1.1089396469802386],"expected_energy":10.365470033153052,"initial_expected_energy":22.71371982388788,"history":[22.71371982388788,18.039140234524723,14.60410895349349,17.751506586918854,14.100199247782722,14.975345164561688,14.195631740775951,14.657230975177017,14.022565443655546,14.054120392812305,14.073258484213863,14.033697574027268,13.99376412357239,13.96045129459445,13.995695896860784,13.93082018302556,13.914175756975615,13.936667859872573,13.908874585179895,13.897273168699638,13.874094671315197,13.827017563966345,13.729029743405517,13.53199287198073,13.1474089674537,12.08644903960043,14.904637091381504,16.657328065504654,12.64303081311561,11.975402532234655,12.288704820213114,11.859917109873063,11.761744023576117,11.926222501707079,11.661684115599941,11.547006198857712,11.365230473240468,12.649740241047182,11.257994215383054,11.085612372853602,10.956511684223099,12.70228782450407,10.62556273270827,10.721293491339264,10.606764512772514,10.715515673812135,10.57305059945141,10.54925567880697,10.575328739877211,10.535438116525354,10.521819546061762,10.500241948034015,10.462462866590313,10.421769904851969,10.376118061388686,10.58004437333241,10.451453552490948,10.372480799405361,10.384299672095784,10.374283699552297,20.25103503449292,20.458258457207425,10.531625917887576,15.361243564742512,11.053922997519926,10.542714353178999,10.607979046923425,10.552356267613769,10.551322569211488,10.568193065469817,10.54352575916179,10.508942210476567,10.482281411568792,10.456455945063693,10.43284340405581,10.400502088792933,10.396405609618887,10.372408632907229,10.408578621021949,10.403553340345287,10.374593906305556,10.374402981409817,10.37331227875022,10.37105286211129,10.370781381404276,10.373327584815577,10.369329028289037,10.368633518916356,10.36765721608545,10.366514701315735,10.367395277600004,10.36783250372763,10.366982264480992,10.366639398435906,10.36674811168551,10.36663555285279,10.366325578232848,10.366163804053018,10.365935674137823,10.365765311738352,10.366249258369006,10.3659320548393,10.36576642323923,10.365793621684052,10.365775896483637,10.365735756816964,10.36568101915944,10.365619940479727,10.365557993774551,10.365531739311177,10.365846424611421,10.365485401721399,10.365506071883065,10.36548223878076,10.365498099673724,10.365477206734937,10.365493644069234,10.365473073365497,10.365470033153052,10.365472344950772],"feasible_probability":0.9098718594692075,"one_hot_probability":1.0,"sampled_feasible_fraction":0.91796875,"counts":{"0001001":102,"0001010":24,"0001100":27,"0010001":6,"0010100":4,"0100001":150,"0100010":18,"0100100":59,"1000001":61,"1000010":14,"1000100":47},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12267125700600445}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.9098718594692075,"total_shots":512,"runtime_seconds":0.12288247099786531},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":12,"optimal_probability":0.18444626023906066,"feasible_probability":0.904087359046015,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.75,"shots_for_95_percent":15,"hit_curve":[{"shots":8,"quantum":0.8042865519591141,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9616962462559475,"uniform":0.7514675930866618},{"shots":32,"quantum":0.998532822449115,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999978473900342,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999953663,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":12,"optimal_probability":0.19419641677003702,"feasible_probability":0.9098718594692075,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.75,"shots_for_95_percent":14,"hit_curve":[{"shots":8,"quantum":0.8222401995180788,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9684014533326276,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9990015318485099,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999990030613505,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999990061,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.7755575615628914e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.19419641677003702,"diagnostic_seconds":0.0036654169962275773}
+{"instance":"n3-s0-r2.json","seed":1,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":4,"end":7,"reserved_end":8,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":7,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0868878037196443,1.083619952625924],"expected_energy":21.54461981578836,"initial_expected_energy":37.65838473636475,"history":[37.65838473636475,34.46251240606237,25.53319887103586,28.778889609508774,25.513358886572675,24.41216817798604,28.689589412869775,25.129957684113243,24.351675536473177,24.561051969379818,24.31136391955528,24.594848093075946,24.226577025175207,24.185413167501984,24.118709607825217,23.984451575663467,23.723523223822042,23.17793849705612,22.937049507242953,25.076931320312763,28.951680930330745,22.161880239203754,22.442854845390762,22.13115334367417,22.402145087529433,22.079009132745075,22.05289428244151,22.139300361399606,22.02447462002437,22.00071701236695,21.956642258479686,21.873504614633777,21.95321666018466,21.927904126875347,21.860091887057393,21.907602928120387,21.84048911675057,21.82440157080401,21.848825211961937,21.810024256829678,21.791893776675586,21.757699099931884,21.71081527787223,21.696958272924157,21.622081881552184,21.598195987637066,21.70554902052433,21.90856309603282,21.599925619997883,21.549940700186085,21.572610218058,21.556721776345732,21.55138652822952,21.54740608494203,21.54823341951454,21.546296999227934,21.54552426459729,21.54571930708162,21.54524552691443,21.54461981578836,23.372261562386473,24.734168837311135,28.075208320346622,40.284517653373335,25.854010099815103,24.56467732574138,23.300787368799497,23.39441408333612,23.264397006970214,23.68361447436437,23.159167520777785,23.096774207912006,23.039075134602044,23.041238805378345,22.9936674242364,22.994254563344676,23.011754607970836,22.96371853101957,22.9279009790245,22.960405884028102,22.891440328719163,22.86982575360846,22.8875624244966,22.863435793471126,22.850766754811687,22.8285418167559,22.80834096984072,22.74986499332537,22.701794678306488,22.603127512601596,22.43848260888825,22.746893216048417,22.919747166783075,22.38398219583486,22.31421505848892,22.31197211640692,22.637473097087405,22.288385495511694,22.178203161627636,22.10498368930736,22.06355082184362,22.02649090728834,21.996471782915823,22.01313533160651,21.979080087137877,21.971597600404657,21.991166560187732,21.962002377827854,21.9527506256832,21.934778303440375,21.900311117722584,21.83720343029121,21.797131573172273,21.716757730581655,21.90427888276014,21.882287648945898,21.673746624246974,21.6457178070761,21.635862837248297,21.608823954565995],"feasible_probability":0.9071929256516148,"one_hot_probability":1.0,"sampled_feasible_fraction":0.916015625,"counts":{"00010011":101,"00010101":18,"00011001":35,"00100011":10,"00100101":3,"00101001":1,"01000011":149,"01000101":22,"01001001":54,"10000011":47,"10000101":16,"10001001":56},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.134054362992174},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":18,"objective_bound":17,"offset":36,"linear":[-18,-10,-9,-18,-14,-10,-11],"quadratic":[[0,1,36],[0,2,36],[1,2,36],[1,3,18],[1,4,18],[1,5,18],[3,4,36],[3,5,36],[3,6,36],[4,5,36],[4,6,36],[5,6,36]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r2","start":10,"cost":8},{"index":2,"task":"t1","resource":"r0","start":10,"cost":9},{"index":3,"task":"t2","resource":"r2","start":7,"cost":0},{"index":4,"task":"t2","resource":"r2","start":8,"cost":4},{"index":5,"task":"t2","resource":"r2","start":11,"cost":8},{"index":6,"task":"t2","resource":"r1","start":13,"cost":7}],"conflicts":[{"i":1,"j":3,"reasons":["resource"]},{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":4,"end":7,"reserved_end":8,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":7,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":7,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":12,"changed":false}],"bits":[1,0,0,1,0,0,0],"qubo_energy":0},"seed":1641411168,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9468993683789915,1.1089415128958837],"expected_energy":10.365455274615972,"initial_expected_energy":17.327385699506166,"history":[17.327385699506166,16.921648224882905,14.516727022727244,17.441131010591196,15.462382803652627,15.187021568833465,13.965240059875736,14.534933610056534,14.121202413015421,13.877358529401162,14.211856085875965,13.590368493171034,13.024740076379203,12.072734283999901,13.046173126518209,14.37761918518263,11.840823450135423,12.464433767139163,11.86438325884045,11.77942793468727,11.79357840676962,11.807087062020342,11.734817010066251,11.688678788174663,11.781345152091754,11.636905413546021,11.590405403754486,11.504459518007948,11.35774256088989,11.256719025228117,11.118413954155265,11.355944305531793,11.52300076877422,11.156085590424809,11.009136622851836,11.013357515512475,10.991407174344921,10.97795285626383,10.972414028032775,11.112353798238939,10.939447882803925,10.930493294024986,10.92173654038866,10.928606694558816,10.917137563930986,10.917776488032372,10.913595182406912,10.910843577392773,10.913091820171495,10.907984264255468,10.905517314059304,10.911151177993908,10.903234803482484,10.900766094448215,10.900003909084583,10.893435542095991,10.89953398254863,10.892556280636875,10.897024257548734,10.890186596422174,18.956144206323202,22.681514386606548,17.841598920186385,14.329660017485072,15.291386854485966,13.567883609535475,15.02939620062741,14.998613197528954,12.798275563660544,12.39368771915008,15.76935257180494,12.048564853292202,10.396107338932662,21.923483568872694,10.915155491516508,10.634368881677625,10.462874522084096,10.374402190109794,10.395017920162632,10.497108152189547,10.371128365901285,10.374019424235543,10.373560427157557,10.367685620257934,10.366321920310346,10.366900325894033,10.366156605902317,10.365692283376717,10.366649680636392,10.366413211763806,10.365925727545422,10.365737464113636,10.365691688326777,10.365662881206088,10.36563613194279,10.365589427719062,10.365523021348942,10.365868347402792,10.365603541557922,10.365562927357825,10.365510794347438,10.365526541211437,10.365498577314998,10.365492835556172,10.365481523045226,10.365476680538922,10.365466602983428,10.365490776085725,10.365484286921541,10.365459211184437,10.365457149214377,10.365458349813805,10.36546027808788,10.365458195287422,10.365455668710986,10.36545564157638,10.36545553564444,10.365455620248088,10.365455787389081,10.365455274615972],"feasible_probability":0.9096570750057915,"one_hot_probability":1.0,"sampled_feasible_fraction":0.9296875,"counts":{"0001001":111,"0001010":16,"0001100":27,"0010001":14,"0010010":1,"0010100":3,"0100001":140,"0100010":19,"0100100":70,"1000001":51,"1000010":11,"1000100":49},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12058480900304858}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.9096570750057915,"total_shots":512,"runtime_seconds":0.12107179999293294},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":12,"optimal_probability":0.1825690885522362,"feasible_probability":0.9071929256516148,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.75,"shots_for_95_percent":15,"hit_curve":[{"shots":8,"quantum":0.800653574119252,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9602610024885714,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9984208120767867,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999975061655032,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999937808,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":18},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":12,"optimal_probability":0.1943728277251,"feasible_probability":0.9096570750057915,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.75,"shots_for_95_percent":14,"hit_curve":[{"shots":8,"quantum":0.8225512903001939,"uniform":0.5014697532613109},{"shots":16,"quantum":0.968511955425874,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9990085030488979,"uniform":0.9382316427138628},{"shots":64,"quantum":0.999999016933796,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999990336,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.1943728277251,"diagnostic_seconds":0.003787259993259795}
+{"instance":"n3-s0-r2.json","seed":2,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":4,"end":7,"reserved_end":8,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":7,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.7875809687522706,1.8460878658679059],"expected_energy":21.792485368116814,"initial_expected_energy":33.50332885524856,"history":[33.50332885524856,29.443143770913785,26.055391041018517,28.904094361457595,27.04090336011967,26.700160497241612,26.067266153493158,26.368493582853862,26.06961826559668,26.101861220327663,26.038748698962085,26.020366614336574,26.018514327631884,26.02413014262165,26.019891828475814,26.014284851746574,26.01343694257699,26.010150231435325,26.006997160800857,26.000730828446272,25.988278257618276,25.96916739550737,26.157605133055256,26.14969146530103,25.96179849538537,25.95098702243765,25.95282614648372,25.968461415986567,25.951321719737614,25.94561404658813,25.942157585885674,25.938040734922147,25.9300752532314,25.912481641609062,25.886753671123962,25.87970900810181,25.778793492474716,26.046712732181007,25.88928876282548,25.767296093138064,25.791539759020093,25.762946345872983,25.74917129884117,25.726795463562503,25.679229911974375,25.57312815527488,25.67861035455475,26.10056443162538,25.60548300619669,25.562908657816227,25.595419792335726,25.552835980936486,25.5373154357503,25.52310895340396,25.518797434177213,25.47757526953862,25.472416022278892,25.412476459233318,25.38661184060475,25.29604543244072,25.39746715631096,23.983647467668582,27.95962000696856,28.132208465727416,25.065676348287788,24.44827278789426,24.079043898901602,23.977278069601248,23.80913618316412,23.639373355776733,23.307566785102182,22.765185122305414,24.110612691115485,25.950840723449645,22.85314778050244,22.85271293219027,22.928054204294153,22.658550485036997,22.9224985945736,22.580852724820105,22.528306768130417,22.454073899683824,22.37972976888372,22.262681754559978,22.22577556976282,22.61304288527814,22.13448602088944,22.111282317433208,22.058107166778196,21.971172620460685,21.886483710039784,22.177676342144125,22.301391394606647,21.873719023253933,21.84058811302394,21.881296237108323,21.856234123831555,21.842677385793266,21.83567151007442,21.835228947610617,21.830866861394085,21.8269689594188,21.81998886908194,21.814207752200076,21.809366521679873,21.807743578753723,21.880658038509257,21.795480026931507,21.800446022568863,21.795006029881414,21.799091050243796,21.794443082064305,21.793651593204295,21.794898590822864,21.792818498427426,21.793662819787773,21.793918158816965,21.79257874862526,21.792643055998,21.792485368116814],"feasible_probability":0.96172837147848,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.962890625,"counts":{"00010011":38,"00010101":2,"00011001":43,"00100011":67,"00100101":9,"00101001":80,"01000011":80,"01000101":8,"01001001":52,"10000101":49,"10001001":84},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12469412300561089},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":18,"objective_bound":17,"offset":36,"linear":[-18,-10,-9,-18,-14,-10,-11],"quadratic":[[0,1,36],[0,2,36],[1,2,36],[1,3,18],[1,4,18],[1,5,18],[3,4,36],[3,5,36],[3,6,36],[4,5,36],[4,6,36],[5,6,36]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r2","start":10,"cost":8},{"index":2,"task":"t1","resource":"r0","start":10,"cost":9},{"index":3,"task":"t2","resource":"r2","start":7,"cost":0},{"index":4,"task":"t2","resource":"r2","start":8,"cost":4},{"index":5,"task":"t2","resource":"r2","start":11,"cost":8},{"index":6,"task":"t2","resource":"r1","start":13,"cost":7}],"conflicts":[{"i":1,"j":3,"reasons":["resource"]},{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":4,"end":7,"reserved_end":8,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":7,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":7,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":12,"changed":false}],"bits":[1,0,0,1,0,0,0],"qubo_energy":0},"seed":2001025171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.941328161380896,1.1096091841819378],"expected_energy":10.365540180561077,"initial_expected_energy":12.829180254891991,"history":[12.829180254891991,12.271153067073234,13.072909602515757,25.670661619469097,10.538153255910997,13.004317314969072,10.452183708020788,10.793545882208651,10.52915030295029,10.425910549600374,10.408654952184598,10.560118459164709,10.379375199862928,10.394055857607178,10.377714540824519,10.387989949630397,10.376820050346426,10.375205942989172,10.373082814986537,10.380427869460524,10.371512244318003,10.370614680084023,10.372607780005525,10.369980557090367,10.369437262617042,10.369459253999658,10.369107477805303,10.369021952957056,10.369944176345541,10.368923967952949,10.368578967582115,10.368306540070202,10.368442599454504,10.368076186983135,10.367867008657626,10.367504741354958,10.36725823190517,10.366509536078103,10.366979733880072,10.36638494810485,10.366922386992881,10.366304344999723,10.366172456503751,10.365959477375043,10.36598477585519,10.365999730569301,10.365930681432232,10.36595364264828,10.365911383229772,10.365873252593612,10.365808022660747,10.365884242929086,10.365777241570218,10.365865876070979,10.365742419874913,10.365712697220877,10.36566001001651,10.365608105716833,10.365540180561077,10.365545206411415,14.85881150517203,13.102595873401109,14.821448722442819,17.379964276347703,14.229565496088707,13.383036986327665,12.951925991373104,12.836212368986393,13.058420129923483,12.637578625396223,12.492530105890713,12.692323456345752,12.318842101624663,12.178867004546614,12.72852680865451,12.056980785895739,11.920062167783419,11.937935954867534,11.814580673342089,11.707543221577826,11.806951858542014,11.609897804856347,11.610031153858442,11.597346397244541,11.55863510573987,11.492647528171169,11.392609396710107,12.26534705788308,11.343802618816259,11.284121116239628,11.165621344534173,10.987736266693165,11.933887981562423,11.564750532570411,11.244800726909546,10.967191878579916,10.99315466179966,10.962501498993129,11.001632679804484,10.960128313200352,10.950803351159283,10.94453308247856,10.946847084937879,10.941856174959579,10.939332221923403,10.93453717522512,10.925816373659242,10.92860291554103,10.925264972420022,10.933740676586444,10.925377580569698,10.922102406450216,10.91810746877679,10.92089133419506,10.916214412572403,10.914709493822116,10.911091549021004,10.904919093614767,10.89445327529101,10.995918435105928],"feasible_probability":0.9100141204002674,"one_hot_probability":1.0,"sampled_feasible_fraction":0.896484375,"counts":{"0001001":101,"0001010":21,"0001100":39,"0010001":6,"0010010":1,"0010100":3,"0100001":143,"0100010":31,"0100100":54,"1000001":50,"1000010":12,"1000100":51},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11753886099904776}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.9100141204002674,"total_shots":512,"runtime_seconds":0.11771150199638214},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":12,"optimal_probability":0.07533068402693312,"feasible_probability":0.9617283714784799,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.75,"shots_for_95_percent":39,"hit_curve":[{"shots":8,"quantum":0.46556908743096503,"uniform":0.5014697532613109},{"shots":16,"quantum":0.7143835996906285,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9184232718743168,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9933452374283084,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999557141351144,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":14},{"shots":16,"best_objective":10},{"shots":32,"best_objective":14},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":12,"optimal_probability":0.1941205204791226,"feasible_probability":0.9100141204002674,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.75,"shots_for_95_percent":14,"hit_curve":[{"shots":8,"quantum":0.82210621393525,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9683538008795489,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9989985180812287,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999989970339663,"uniform":0.9961846700381721},{"shots":128,"quantum":0.999999999998994,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.1941205204791226,"diagnostic_seconds":0.0037967810058034956}
+{"instance":"n3-s0-r2.json","seed":3,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":4,"end":7,"reserved_end":8,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":7,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0112280082943483,1.08990415856345],"expected_energy":21.52105158515916,"initial_expected_energy":23.52714500760738,"history":[23.52714500760738,25.651212891248612,26.280714831703033,27.06795331810012,26.93826696319268,22.44376512251795,22.87138572729529,22.482416308926574,22.68481796532179,22.376202090535905,22.28810658487271,22.175764372522,23.23395218935271,22.012831710619075,22.0692293050235,21.982702644341916,22.165789777412304,21.94612079383746,21.912348446189316,21.957317756281476,21.885568779363183,21.85372170824374,21.844016178520874,22.18204423344426,21.76853644145411,21.748755592304896,21.718093446658926,21.675863594020893,21.843593856977538,21.648684111006606,21.65266578846476,21.656090854679178,21.641491045638503,21.66262743609107,21.63825572686779,21.632479916100365,21.62383623062778,21.606519472690234,21.590106021387573,21.584386050053613,21.56549780200274,21.53550501094498,21.540277263386294,21.618358606867865,21.56002926429198,21.53741757640948,21.537000280655025,21.535442557889823,21.539245766567163,21.532979649627713,21.531638806098357,21.52993992282034,21.52692470816433,21.526426329671995,21.521584590399407,21.526381993628835,21.521136535598515,21.522781994015876,21.52105158515916,21.52421807414143,22.489719539174512,23.75407305118187,28.916656699107126,29.875196066295533,25.2680982963186,21.860062191045138,23.58472721681442,21.93093809220736,21.828791124374412,21.964350327233873,21.826309434561658,21.88154468569691,21.82497807585512,21.81015762419011,21.799669938337665,21.794022139662967,21.79634953351505,21.79506042233968,21.79515452458312,21.793801092877494,21.793454785668274,21.793174740286673,21.79321876476577,21.793069646693546,21.792981862074456,21.792878168172024,21.79310434731285,21.79281597643781,21.79269577052393,21.792481559564035,21.79248726888283,21.792344484477603,21.79227558953457,21.792452468082946,21.792140294801136,21.792026336294164,21.79183984313317,21.791487128598504,21.791252846099617,21.790777683072257,21.791535063795315,21.79147300616323,21.790842347398858,21.790568539413872,21.790544207164924,21.790415320835685,21.790303939458504,21.790152295218356,21.790059060025314,21.78990482686571,21.7896891383224,21.790586885829125,21.789763246105927,21.789680426215288,21.789896650161854,21.789624977837455,21.78961213152293,21.789596604182854,21.789595723683338,21.78957808854036],"feasible_probability":0.9103663201293348,"one_hot_probability":1.0,"sampled_feasible_fraction":0.890625,"counts":{"00010011":87,"00010101":30,"00011001":24,"00100011":11,"00100101":3,"00101001":4,"01000011":159,"01000101":23,"01001001":53,"10000011":55,"10000101":15,"10001001":48},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11642751499311998},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":18,"objective_bound":17,"offset":36,"linear":[-18,-10,-9,-18,-14,-10,-11],"quadratic":[[0,1,36],[0,2,36],[1,2,36],[1,3,18],[1,4,18],[1,5,18],[3,4,36],[3,5,36],[3,6,36],[4,5,36],[4,6,36],[5,6,36]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r2","start":10,"cost":8},{"index":2,"task":"t1","resource":"r0","start":10,"cost":9},{"index":3,"task":"t2","resource":"r2","start":7,"cost":0},{"index":4,"task":"t2","resource":"r2","start":8,"cost":4},{"index":5,"task":"t2","resource":"r2","start":11,"cost":8},{"index":6,"task":"t2","resource":"r1","start":13,"cost":7}],"conflicts":[{"i":1,"j":3,"reasons":["resource"]},{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":4,"end":7,"reserved_end":8,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":7,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":7,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":12,"changed":false}],"bits":[1,0,0,1,0,0,0],"qubo_energy":0},"seed":819382448,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9449557941377283,1.1088157283742193],"expected_energy":10.36546138395153,"initial_expected_energy":13.691234741002944,"history":[13.691234741002944,15.545700051641207,15.113719659447108,10.380842270942491,17.644009227658348,15.920632486573458,10.502740899991434,10.451330720520879,11.122030051498825,10.37988434467605,10.55533966328425,10.368257331739642,10.407158914813555,10.368858279791175,10.367577636960963,10.36827513297036,10.368945788178033,10.366215410637576,10.366966220458867,10.365998799054294,10.366055964502273,10.365975214651474,10.365941791261108,10.365939104614911,10.365900956863232,10.365864747832493,10.365797783920913,10.365695436343612,10.365792536285973,10.365849246396657,10.365664605167012,10.365670976630067,10.365644845977712,10.365630018618885,10.365631367143454,10.36560582088942,10.365589108710273,10.365605218359597,10.365579541696171,10.365574325569451,10.36556479962507,10.365547364207188,10.365517728546735,10.365527216484939,10.36554212574543,10.365513317709114,10.365537812741774,10.365512574910856,10.365504354117931,10.365498952041508,10.365493473487932,10.36548860391501,10.365479321956393,10.365466294766353,10.36547081133239,10.365476418982068,10.365468551170625,10.36546507868514,10.36546261014565,10.36546138395153,13.697656865287508,14.307639833053136,18.191084673058945,14.335194453071315,17.52792559191995,12.795371072724214,12.715124752527803,12.543027572225485,12.191011352778945,11.521382523534868,10.627501320074828,14.437814261305721,11.411638235095424,11.179831350040722,10.698174653427888,10.55862669044777,10.530892274737582,10.748388880148564,10.48306693832411,10.465961517830927,10.439111017320572,10.399974950008364,10.578153073127726,10.474642220916348,10.410011427486104,10.397817096948403,10.386345936875564,10.379283764304628,10.369556361247714,10.3664123807415,10.452434364886638,10.398336600612843,10.369436793138572,10.366727833905369,10.367963089058412,10.366016870071272,10.366280865518297,10.366491960498026,10.365893706129956,10.365919244778755,10.365878863938605,10.365845506185709,10.365813752372949,10.365783657231972,10.365717884823887,10.365672887811087,10.365624636820584,10.365547785957926,10.36587875019057,10.365652357375007,10.365535477268168,10.365595944975395,10.365523669045665,10.365512911357989,10.365530141072984,10.36550477308218,10.365495041510808,10.365491536216053,10.36557680895389,10.365473561489182],"feasible_probability":0.909816294330918,"one_hot_probability":1.0,"sampled_feasible_fraction":0.90625,"counts":{"0001001":103,"0001010":22,"0001100":26,"0010001":11,"0010010":1,"0010100":4,"0100001":159,"0100010":25,"0100100":64,"1000001":44,"1000010":9,"1000100":44},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11287265999999363}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.909816294330918,"total_shots":512,"runtime_seconds":0.11304385999392252},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":12,"optimal_probability":0.18012603170930974,"feasible_probability":0.9103663201293348,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.75,"shots_for_95_percent":16,"hit_curve":[{"shots":8,"quantum":0.7958371219602454,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9583175192305243,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9982625707969023,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999969813397642,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999908877,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":12,"optimal_probability":0.1942340968521901,"feasible_probability":0.909816294330918,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.75,"shots_for_95_percent":14,"hit_curve":[{"shots":8,"quantum":0.8223066862690608,"uniform":0.5014697532613109},{"shots":16,"quantum":0.968425086255318,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9990030248220159,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999990060404945,"uniform":0.9961846700381721},{"shots":128,"quantum":0.999999999999012,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":7},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.1942340968521901,"diagnostic_seconds":0.003794571995967999}
+{"instance":"n3-s0-r2.json","seed":4,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":4,"end":7,"reserved_end":8,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":7,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.122564646941297,0.20259415785748416],"expected_energy":20.998358741782084,"initial_expected_energy":28.159334220057275,"history":[28.159334220057275,27.92977702934344,30.00974605940799,25.31166286038364,28.21299420007719,27.360517014158233,27.004552995381683,26.163063076942112,24.979633562563574,28.031970001884588,24.37897388941005,23.458326936477505,23.230292492522757,22.39860735236617,21.839464929000485,21.928985589886885,21.906856275574427,21.697754752057364,22.025930799608936,21.59246805692672,21.569579917823525,21.807038830498662,21.5007109697768,21.457107552513165,21.421477043023316,21.487427661821187,21.397553760906767,21.35908723557904,21.28737752541791,21.184416630816315,22.153482140902945,21.725950434838985,21.182639507176482,21.14631510833753,21.090103105642207,21.029350152987696,21.247432028391046,21.156550428895805,21.023350789600443,21.03672805998682,21.02657373205261,21.020185632945243,21.016821570220692,21.0165779442438,21.011120854120552,21.01184956737666,21.01046888818736,21.012062705569498,21.009452628976497,21.008631575227234,21.007220505441737,21.00449621895943,21.00002581680576,21.010537936267735,21.01877672222787,20.998960286099262,21.00221322603712,20.999354723432308,20.99857259420883,20.998358741782084,31.387167315161626,31.841914178326398,29.03209524046673,32.43879848397321,30.28228701261437,30.611067223484714,26.822710097406734,27.430149715244745,26.67955483168685,26.811034136873978,26.383291735363162,26.49427634074315,26.54792323552462,26.391262881004437,26.30108464928578,26.132237251973642,25.783267409860485,25.147179781572753,23.633613808707608,26.168473278220908,27.08272846280221,23.42282723749507,25.406616059815327,23.09352410428083,23.022835661208905,23.940614274082332,22.765615012728894,22.616968128131006,22.496068188793988,22.745227239406383,22.400049973844965,22.26899021340548,22.03756662612882,22.17285366481825,22.05407449618818,22.003368074204957,22.068706655615276,22.068569198104274,21.904315577216067,21.85145464904776,22.020077404024,21.82038168402979,21.771162968006692,21.721467017174646,21.96990796726369,21.647957455286353,21.602338261217525,21.559096532493168,21.541262409316246,21.429223129019547,21.42542199365552,21.360419583777514,21.305107880362304,21.252097247382785,21.352230276420215,21.237926372458276,21.207261633784057,21.149274246139395,21.06560196272114,21.642828494540293],"feasible_probability":0.9809954582004957,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.98046875,"counts":{"00010011":43,"00010101":1,"00011001":38,"00100011":66,"00100101":3,"00101001":47,"01000011":86,"01000101":6,"01001001":82,"10000011":13,"10000101":68,"10001001":59},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11746293799660634},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":18,"objective_bound":17,"offset":36,"linear":[-18,-10,-9,-18,-14,-10,-11],"quadratic":[[0,1,36],[0,2,36],[1,2,36],[1,3,18],[1,4,18],[1,5,18],[3,4,36],[3,5,36],[3,6,36],[4,5,36],[4,6,36],[5,6,36]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r2","start":10,"cost":8},{"index":2,"task":"t1","resource":"r0","start":10,"cost":9},{"index":3,"task":"t2","resource":"r2","start":7,"cost":0},{"index":4,"task":"t2","resource":"r2","start":8,"cost":4},{"index":5,"task":"t2","resource":"r2","start":11,"cost":8},{"index":6,"task":"t2","resource":"r1","start":13,"cost":7}],"conflicts":[{"i":1,"j":3,"reasons":["resource"]},{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":4,"end":7,"reserved_end":8,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":7,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":7,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":12,"changed":false}],"bits":[1,0,0,1,0,0,0],"qubo_energy":0},"seed":367776961,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[-0.9313338155711792,2.0354920990514396],"expected_energy":10.366541656225287,"initial_expected_energy":15.828405781430966,"history":[15.828405781430966,15.091664844650769,14.855573631160098,14.959869688732812,15.117174133230758,15.094204824941713,14.85781265946924,14.831976751768366,14.886143609482613,14.824247330728063,14.821702510619307,14.818015652870383,14.81221176701379,14.794418628560518,14.828592072081747,14.82215565015256,14.80504111748492,14.797098922863762,14.79328613421317,14.80000584688651,14.793443468279737,14.791071883515135,14.78781974899706,14.796080208217765,14.784396883102266,14.780113624077927,14.771106716207367,14.753475578997762,14.71386874865666,14.70413865833731,14.55348018508412,14.732994590045731,14.66701653975655,14.578494987708421,14.534824813257705,14.485193200516298,14.375079615712838,14.106945810085247,14.115811506985501,14.309094514064167,14.144716196938877,14.148795709117469,14.044946938897109,14.04338478014485,14.22687144738273,14.05569303488295,13.96825801927364,13.867136482084133,13.906551407847845,13.817997193575476,13.768925373500819,13.66743784325893,13.450346189315916,13.027252434555777,12.315292811004884,10.55020829419464,13.104895161037886,15.839552481704136,12.862585309844771,10.651776853325513,15.23930396043338,15.304701617412151,13.823876922326408,16.850511624378257,13.614114130847964,12.97019208469208,13.10083715058095,13.14203577973689,13.07948606221229,12.830452232251288,12.82980424393469,13.01397682972715,12.650514827281208,12.3141664073344,11.75685468459891,11.185950427028601,11.312987370607429,13.788659030373438,11.50273585454192,10.739249140574607,10.762315792865998,10.829263057713549,10.768097639493739,10.781139392503086,10.730931133984468,10.706856682311756,10.66587841659556,10.727583572428918,10.63720938590798,10.595133084438837,10.521428609118804,10.459503135216481,10.518908453276445,10.642447152875425,10.459890783311984,10.444107421839304,10.421587603378361,10.407643260926475,10.392501365613438,10.395549432148485,10.387879457454542,10.396427742583555,10.389276216402877,10.386173182385036,10.383877221211648,10.380495123465433,10.39889572492314,10.378228633539864,10.375158484493229,10.373373237442735,10.406396347971272,10.36846343892769,10.370391182863056,10.368175455373539,10.369871228859616,10.367655254825976,10.367103182348258,10.367880523032877,10.366780615445034,10.366541656225287],"feasible_probability":0.9110778857258037,"one_hot_probability":1.0,"sampled_feasible_fraction":0.923828125,"counts":{"0001001":113,"0001010":18,"0001100":30,"0010001":4,"0010100":4,"0100001":152,"0100010":21,"0100100":57,"1000001":48,"1000010":14,"1000100":51},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11551064399827737}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.9110778857258037,"total_shots":512,"runtime_seconds":0.11568016299861483},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":12,"optimal_probability":0.07981208958241673,"feasible_probability":0.9809954582004956,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.75,"shots_for_95_percent":37,"hit_curve":[{"shots":8,"quantum":0.48594192561861377,"uniform":0.5014697532613109},{"shots":16,"quantum":0.7357442961633012,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9301689229897709,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9951236206835915,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999762209247625,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":12,"optimal_probability":0.19297408227735222,"feasible_probability":0.9110778857258037,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.75,"shots_for_95_percent":14,"hit_curve":[{"shots":8,"quantum":0.8200715416531782,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9676257498769361,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9989519079289693,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999989015030106,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999987933,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":8},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.19297408227735222,"diagnostic_seconds":0.0033111380034824833}
+{"instance":"n3-s0-r2.json","seed":5,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":4,"end":7,"reserved_end":8,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":7,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3888326561490127,2.920633110746243],"expected_energy":18.563380401809084,"initial_expected_energy":27.620787796843775,"history":[27.620787796843775,27.601671743917812,20.049289857024068,42.29050816284528,25.008201801941695,20.88354837956862,20.091655798060025,20.40230811283048,19.595770234434703,19.916980139684128,19.362581375582565,19.629261979351057,19.309293209290193,19.197928508718512,19.003801928717152,18.878029446276056,19.305025477211206,19.863604833862787,18.71045584393886,18.729725593920328,18.70548898759108,18.754466783776394,18.69751906907037,18.685541587955186,18.67214303089289,18.659009208263488,18.675719591616083,18.649748027996452,18.643562400932908,18.650847429675874,18.63982179187861,18.63610717084522,18.62953379773184,18.61720590715561,18.594478991070964,18.592235068318374,18.574965669624003,18.67857985601699,18.569732526142786,18.568256159955183,18.569815158032505,18.57043604293034,18.565454351867956,18.564879884219007,18.565829532572497,18.56471185100209,18.56473898335294,18.564672533223437,18.56454400530735,18.56440161293574,18.564820432999355,18.564263419453383,18.56414431050625,18.563923543368805,18.56352427967095,18.56396048909482,18.563977438496295,18.563447325250554,18.563647152111194,18.563380401809084,28.231293268488365,30.679325163059495,35.634270545414516,36.06967979369184,33.396671170369544,27.73542317185669,27.62651068289399,27.935391341927996,27.864684254015756,27.339718507233794,27.32332069595474,27.715513877046313,27.176046385695678,26.97235256039881,26.801560792606807,25.974125190908747,25.47191884253896,22.954889206471975,30.11852138549217,25.797521721032695,22.738659673314288,25.350835903406338,22.143345950407024,21.97949817667398,21.46705823501987,21.13925121604252,20.722584984677912,20.10661321748636,20.905194971195513,22.209342857859085,20.03419831456202,19.8513222377384,19.52340489334295,19.058584085697518,20.51006356555151,20.9063576366902,19.34664138169927,19.020960342611893,19.175716869131172,18.988685129555478,18.949905419111644,18.89767753596513,19.09975363775161,18.85148544932442,18.83148670510753,18.793818054449815,18.742060442193303,18.693922923484383,18.650007817964777,18.705707947908586,18.69903647769884,18.676664705061693,18.642139606485596,18.647725783875096,18.634634537517545,18.628967059383015,18.62178224762075,18.610756304737095,18.603142352014146,18.58349534516568],"feasible_probability":0.9845157490973969,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.98828125,"counts":{"00010011":85,"00011001":62,"00100011":108,"00101001":70,"01000011":43,"01000101":6,"01001001":29,"10000011":46,"10000101":40,"10001001":23},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1159964270045748},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":18,"objective_bound":17,"offset":36,"linear":[-18,-10,-9,-18,-14,-10,-11],"quadratic":[[0,1,36],[0,2,36],[1,2,36],[1,3,18],[1,4,18],[1,5,18],[3,4,36],[3,5,36],[3,6,36],[4,5,36],[4,6,36],[5,6,36]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r2","start":10,"cost":8},{"index":2,"task":"t1","resource":"r0","start":10,"cost":9},{"index":3,"task":"t2","resource":"r2","start":7,"cost":0},{"index":4,"task":"t2","resource":"r2","start":8,"cost":4},{"index":5,"task":"t2","resource":"r2","start":11,"cost":8},{"index":6,"task":"t2","resource":"r1","start":13,"cost":7}],"conflicts":[{"i":1,"j":3,"reasons":["resource"]},{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":4,"end":7,"reserved_end":8,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":7,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":7,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":12,"changed":false}],"bits":[1,0,0,1,0,0,0],"qubo_energy":0},"seed":803261128,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.2965829063463896,2.8958008809470464],"expected_energy":8.142424809452724,"initial_expected_energy":15.273082125135502,"history":[15.273082125135502,14.98046885431318,8.572935894703573,26.83217025276007,9.895749506944174,8.317555791026667,8.17050229935571,9.768577425149608,8.298513255528128,8.170677443927344,8.537075188645016,8.167997332499176,8.216960636166739,8.169610507144665,8.157534569589924,8.152075564177887,8.149784120714067,8.1492491330511,8.147153510922404,8.144213755816677,8.14957609903559,8.153217343100316,8.146577800878049,8.144358532379167,8.14431749245397,8.144175408861237,8.144718102874977,8.14409437853418,8.1439554430333,8.143756646937396,8.143507674023603,8.143218210675835,8.14321466165453,8.14268933456953,8.14291927544638,8.142664651825505,8.142851929874197,8.142627990193592,8.142607790365652,8.142668331563545,8.142588597886617,8.142573252487649,8.14254451799821,8.142523491395224,8.142486785020733,8.142526650426133,8.142539631442531,8.142490179444748,8.142472295498077,8.142470509161392,8.142461147404525,8.14245334431147,8.14244299168773,8.142439404381008,8.142426619288715,8.142431749256428,8.142455466917665,8.142424809452724,8.142430244307977,8.142425304136948,14.6354026764119,15.477306072928743,15.885600509403513,14.72420885354266,13.292312751064468,15.466720909537575,13.927542257822216,13.263573974326995,12.902287080345378,12.129087737680367,10.70149058572433,11.520373984512688,15.286402972087123,10.503704984957974,12.70539762285505,10.711737769016139,10.85833380756443,10.605606923839137,10.471796682017013,10.553665810385183,10.465486038371168,10.447131012176001,10.426002370952324,10.410227808809893,10.43465602056139,10.402483030028618,10.39698182094059,10.406066382675348,10.393695533600242,10.39092923044748,10.385765715109484,10.380752508534961,10.37488473790031,10.374963069789771,10.384365455260834,10.375239249815689,10.37272817014236,10.37190529700402,10.370597448570848,10.36945053976411,10.369193525188717,10.36747862369958,10.368172595346696,10.368253211174983,10.3680995622451,10.367442874538837,10.36875593351903,10.366964890786226,10.366268052432593,10.365601278683512,10.368232564612798,10.366872941194337,10.36565731040792,10.36559430011447,10.365746064988429,10.36557585898952,10.365550751499654,10.3655369909069,10.365523568065633,10.365509784676576],"feasible_probability":0.9776108172665897,"one_hot_probability":1.0,"sampled_feasible_fraction":0.962890625,"counts":{"0001001":80,"0001010":1,"0001100":69,"0010001":108,"0010100":80,"0100001":26,"0100010":18,"0100100":21,"1000001":49,"1000010":39,"1000100":21},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12003530299989507}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.9776108172665897,"total_shots":512,"runtime_seconds":0.12020211000344716},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":12,"optimal_probability":0.16857685946971232,"feasible_probability":0.984515749097397,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.75,"shots_for_95_percent":17,"hit_curve":[{"shots":8,"quantum":0.7716626994191603,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9478620771634553,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9972816370022906,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999926105026127,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999453953,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":12,"optimal_probability":0.18491567972223563,"feasible_probability":0.9776108172665898,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.75,"shots_for_95_percent":15,"hit_curve":[{"shots":8,"quantum":0.8051859343987965,"uniform":0.5014697532613109},{"shots":16,"quantum":0.96204747984393,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9985596062138031,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999979252657407,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999956954,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.5265566588595902e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.18491567972223563,"diagnostic_seconds":0.0032876909972401336}
+{"instance":"n3-s0-r2.json","seed":6,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":4,"end":7,"reserved_end":8,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":7,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.17224561116189,0.20626588788463526],"expected_energy":20.99676547948621,"initial_expected_energy":32.8803095109649,"history":[32.8803095109649,30.991026227815546,27.638834794800687,27.623379358398108,21.897466675385616,26.595567908666006,25.431641719205665,22.027838910201375,22.62418717765832,22.397121317589747,21.961743451889102,22.18733349295126,21.821840915493517,22.09182302748154,21.80977541693438,21.852547898264596,21.807565158373272,21.79733970545815,21.791471453379263,21.79063013919105,21.78999918484464,21.791926487918083,21.790319803890206,21.790278933145157,21.78993092975751,21.789805564678666,21.789675887126457,21.78972888407079,21.789652055387133,21.78963668770081,21.789619373757333,21.789599864612384,21.78974859492756,21.78958649443147,21.789592743563247,21.789615015823525,21.789583085720544,21.789594014890483,21.789581327045727,21.789578414615693,21.789574477478013,21.789584610653016,21.789572823731557,21.78957064916073,21.789568527923915,21.789568531498453,21.789567319493905,21.789566530358385,21.789566699071575,21.789565247011588,21.789564380310388,21.789564821001157,21.789563173439383,21.789562426127606,21.7895634476488,21.789561219594653,21.789560092666893,21.78955791403392,21.78955417268954,21.78955306529238,33.621728772137494,27.34213001619571,27.39997587529147,23.0196226105664,21.79364550998999,34.42942516597738,27.55891749464332,25.97356430861697,25.205193167308433,21.751734589097303,21.130364878449377,21.293129774107307,21.180444372528036,21.167341022627483,21.088137327409008,21.085883154380916,21.074788191417127,21.065957788046344,21.052985260174808,21.03144024641174,21.07521870787665,21.095981077638406,21.040728173837334,21.02954434252267,21.034292892983064,21.026820520556214,21.03134007938709,21.02457895484271,21.02508349654514,21.023574329472943,21.022719029086446,21.02166665456859,21.024368716693335,21.021032792873058,21.019865416975456,21.01796403279676,21.01433893847458,21.01216408007199,21.00753153122568,21.01829737363163,21.015072501124564,21.00852253322473,21.00501761451015,21.00475526608957,21.004089658856508,21.003516450785877,21.002648792942512,21.00521341312809,21.001665371239305,21.00116697453023,21.00371521339649,21.000434616152504,20.99995716895714,20.999493283074745,20.999094975057496,20.99807404414221,20.9979295416791,20.996890785939982,20.996955153652866,20.99676547948621],"feasible_probability":0.9837890314991953,"one_hot_probability":1.0,"sampled_feasible_fraction":0.98828125,"counts":{"00010011":47,"00010101":2,"00011001":23,"00100011":85,"00101001":70,"01000011":79,"01000101":4,"01001001":62,"10000011":16,"10000101":72,"10001001":52},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12881218700204045},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":18,"objective_bound":17,"offset":36,"linear":[-18,-10,-9,-18,-14,-10,-11],"quadratic":[[0,1,36],[0,2,36],[1,2,36],[1,3,18],[1,4,18],[1,5,18],[3,4,36],[3,5,36],[3,6,36],[4,5,36],[4,6,36],[5,6,36]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r2","start":10,"cost":8},{"index":2,"task":"t1","resource":"r0","start":10,"cost":9},{"index":3,"task":"t2","resource":"r2","start":7,"cost":0},{"index":4,"task":"t2","resource":"r2","start":8,"cost":4},{"index":5,"task":"t2","resource":"r2","start":11,"cost":8},{"index":6,"task":"t2","resource":"r1","start":13,"cost":7}],"conflicts":[{"i":1,"j":3,"reasons":["resource"]},{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":4,"end":7,"reserved_end":8,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":7,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":7,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":12,"changed":false}],"bits":[1,0,0,1,0,0,0],"qubo_energy":0},"seed":3153149895,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.289470984085033,2.896284293931714],"expected_energy":8.14265591255601,"initial_expected_energy":14.637696645335046,"history":[14.637696645335046,14.995824003911144,13.176836413914959,15.662475820318216,16.029349573344074,14.131988153985194,10.224239089550535,11.236767188315408,9.73188554332004,11.443871263663617,9.334992666736255,8.670807251755008,8.403464237519598,8.655638651324145,8.344087671991153,8.369989989579988,8.333051104667286,8.339677188673221,8.32958998210488,8.31912851797155,8.299865579799867,8.28526057404438,8.2453931719708,8.242719217572304,8.216908164870341,8.206010862435463,8.17885826504475,8.155551779125247,8.19606790690909,8.227530376989069,8.152719869360755,8.149925132132662,8.150512741285954,8.15572069741817,8.148292965762852,8.147941970464796,8.149238752609872,8.147694094913195,8.147280162185478,8.146665645544417,8.148511346605725,8.146082974784893,8.145638168775735,8.146568965661887,8.145225954182742,8.14495439764911,8.144652108788666,8.144150980953574,8.143986490557175,8.143438937299294,8.146325682942114,8.142904352050797,8.14314785719164,8.14312816790952,8.142885621129405,8.142952034177236,8.142833114052426,8.142786333102876,8.142723410608278,8.14265591255601,24.560829572653383,20.917322789970434,13.751944125809437,18.240639801632327,13.166461738639454,13.141053063277218,12.897185238759285,12.476129567054997,11.902342557967849,11.26804347021903,10.621733148832364,11.707507891394913,13.315722072635483,10.739673436717137,10.507721894432283,10.566307642257362,10.60189413892354,10.452224721924766,10.606877441365521,10.4285514110801,10.442072486820663,10.421554614214596,10.417607542524387,10.430983690554177,10.417326870505399,10.41296461209065,10.40620417990342,10.393492353932974,10.38385454067351,10.386032803884348,10.402983929510642,10.382626488033857,10.385990379046596,10.379315469463473,10.377901772085714,10.379691290862244,10.376059689195156,10.374787579257577,10.373116110961176,10.37071175634965,10.37211442309705,10.374398715255932,10.369972288063504,10.368942542642657,10.367802569448566,10.374835092165403,10.366898953697135,10.36711242858061,10.368032597680578,10.366804894008265,10.3674086738858,10.36670476044107,10.366536106511253,10.366259957806065,10.365854962148754,10.367663434791986,10.366944231740739,10.365922985270196,10.365827601112812,10.365880339614009],"feasible_probability":0.9777256673200547,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.978515625,"counts":{"0001001":94,"0001010":2,"0001100":63,"0010001":98,"0010100":76,"0100001":30,"0100010":9,"0100100":14,"1000001":57,"1000010":35,"1000100":34},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.127267795993248}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.9777256673200547,"total_shots":512,"runtime_seconds":0.12744374699832406},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":12,"optimal_probability":0.07756359361429413,"feasible_probability":0.9837890314991953,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.75,"shots_for_95_percent":38,"hit_curve":[{"shots":8,"quantum":0.4758066807787114,"uniform":0.5014697532613109},{"shots":16,"quantum":0.7252213640837682,"uniform":0.7514675930866618},{"shots":32,"quantum":0.924496701244015,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9942992518769644,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999675014708377,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.3306690738754696e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":12,"optimal_probability":0.18483326325516153,"feasible_probability":0.9777256673200548,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.75,"shots_for_95_percent":15,"hit_curve":[{"shots":8,"quantum":0.8050282911225134,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9619860327373926,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9985549382929574,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999979117966629,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999956394,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":7},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.18483326325516153,"diagnostic_seconds":0.0037067499943077564}
+{"instance":"n3-s0-r2.json","seed":7,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":4,"end":7,"reserved_end":8,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":7,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3964962445060782,2.9215413000577297],"expected_energy":18.565353616721964,"initial_expected_energy":33.14296164253551,"history":[33.14296164253551,27.805199888488062,30.22482204757516,28.985371927425298,27.417170340406077,27.73097335768567,27.70832977356988,28.055833971451918,27.400323794584953,27.670810382129815,27.400386190839278,27.399817188318103,27.402296098789012,27.406758311987875,27.38821722945164,27.37587530982868,27.390630047519775,27.367853510930992,27.360063627100807,27.340941690462643,27.300626904294887,27.207827714836128,27.112932623341766,26.550325432832388,27.13271693195572,26.465626717908627,27.08163890006022,26.46298783837218,26.21403101881319,25.87126613170389,25.5392750753,25.18847569641526,24.3702425970351,23.14976958982785,20.61941487312177,21.161648958480455,28.659058764667922,21.22683292898123,20.686916301018222,21.682185400862547,20.413838824559804,20.26398440462174,20.709157122271556,20.124621238127407,20.00798124347462,19.90349833314199,19.633539613508383,19.597124875999445,19.339468658883565,19.296691095969862,19.083283400166508,19.309726541327436,19.21495979963466,19.090215400318975,19.102222314650074,19.057646852726855,19.04958173489253,19.10849740990723,19.025565929389238,19.004782777684397,24.134763734422478,27.3001897537048,33.43785816958575,26.04054597028348,19.257542655353603,28.166135618211698,21.317645647762667,20.103513594481985,19.431596975177627,19.432886796906757,19.048573354446727,18.87609415198166,18.876285765272456,18.90238295466933,18.922408530361977,18.881978912376162,18.862271027279384,18.84807897305849,18.822691956750642,18.80357314570734,18.74703957554022,18.75502381051722,18.737173691715,18.76188099177262,18.730467730891327,18.718654030105636,18.69758019761187,18.661851572109683,18.702372241956915,18.719912612920123,18.660447354946577,18.64944149477979,18.632325829550243,18.61093161504049,18.603707655079983,18.578510180897556,18.660911967218336,18.632510044993847,18.59655675249348,18.576513684320858,18.5791701859851,18.57537675316241,18.57746265690559,18.573223701026755,18.573407991721936,18.57298387106962,18.572288502841406,18.571699722082894,18.572241057363627,18.571211374218876,18.571238573544385,18.571108763321966,18.570854535351348,18.570375051493986,18.569569068283403,18.569192500399396,18.567881204451034,18.56654990831253,18.565353616721964,18.567850348588472],"feasible_probability":0.9847840129862353,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.984375,"counts":{"00010011":88,"00011001":58,"00100011":97,"00101001":64,"01000011":51,"01000101":8,"01001001":29,"10000011":48,"10000101":45,"10001001":24},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12628143398615066},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":18,"objective_bound":17,"offset":36,"linear":[-18,-10,-9,-18,-14,-10,-11],"quadratic":[[0,1,36],[0,2,36],[1,2,36],[1,3,18],[1,4,18],[1,5,18],[3,4,36],[3,5,36],[3,6,36],[4,5,36],[4,6,36],[5,6,36]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r2","start":10,"cost":8},{"index":2,"task":"t1","resource":"r0","start":10,"cost":9},{"index":3,"task":"t2","resource":"r2","start":7,"cost":0},{"index":4,"task":"t2","resource":"r2","start":8,"cost":4},{"index":5,"task":"t2","resource":"r2","start":11,"cost":8},{"index":6,"task":"t2","resource":"r1","start":13,"cost":7}],"conflicts":[{"i":1,"j":3,"reasons":["resource"]},{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":4,"end":7,"reserved_end":8,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":7,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":7,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":12,"changed":false}],"bits":[1,0,0,1,0,0,0],"qubo_energy":0},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9470644117456523,1.1088758167112032],"expected_energy":10.365456060168219,"initial_expected_energy":13.930618810197839,"history":[13.930618810197839,15.780509875001968,15.007814005152325,10.45409441444743,13.771306750099573,16.440266204136748,10.817526736113374,10.82722892780874,10.630236794915694,10.632279360135785,10.532914331968852,10.370122029064806,10.466842639965739,10.379343649332618,10.369766742318436,10.368791522739409,10.375775022271277,10.367186288692004,10.367139706055031,10.366296423737769,10.366417869316749,10.367111342751297,10.366242039434084,10.366461336779171,10.366250963625376,10.366172340072534,10.366077634768658,10.366120770514712,10.366034987649904,10.365997239178721,10.365942755630797,10.366190848461622,10.365875566989859,10.365819760394693,10.365920016115453,10.365776647371199,10.36572056814104,10.365639221065626,10.366281599168246,10.365639471885673,10.365626140707446,10.365628417066894,10.365652554073506,10.365587047539378,10.365564102764122,10.365634783024257,10.36554591593685,10.3655351187494,10.365555535602399,10.365519897454405,10.365511420040848,10.365533715475827,10.365504352438709,10.365498545293669,10.365487852307133,10.365477594136197,10.365469788408882,10.36546380911348,10.365505037777083,10.365456060168219,13.685972646009372,15.648194442908242,15.032115795219706,10.37271377255303,16.81128083650061,16.022700763938694,10.500551490171425,10.512272489409055,11.044441757981343,10.458966254248658,10.383375293204505,10.467540768143948,10.39034499549925,10.377725043933555,10.371805539572104,10.371829984862853,10.370624011150342,10.36962039471334,10.36889294549282,10.37788153162383,10.367264198175809,10.367267470141833,10.367145592917101,10.367375423216343,10.3676411472011,10.367256249954442,10.366894548718092,10.36677506792776,10.366461282478198,10.36622494390302,10.366659786911608,10.366178715815037,10.36604478582341,10.365827363476123,10.365569311493182,10.3660570681168,10.365838616211404,10.36554625234722,10.36559436326962,10.365548861452137,10.365532718996352,10.365529868141707,10.365621590498575,10.365505790921503,10.365494897790276,10.365486873940819,10.365497741206223,10.36548223059317,10.365478565080753,10.365480351025603,10.365476647839877,10.3654757845408,10.365477909876443,10.36547459377727,10.365473472159454,10.36547136565268,10.365467609263646,10.365467008957582,10.365461462551144,10.36546149748606],"feasible_probability":0.9096508324278749,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.91796875,"counts":{"0001001":98,"0001010":20,"0001100":29,"0010001":7,"0010010":3,"0010100":1,"0100001":150,"0100010":19,"0100100":61,"1000001":53,"1000010":9,"1000100":62},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11756002598849591}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.9096508324278749,"total_shots":512,"runtime_seconds":0.11773172700486612},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":12,"optimal_probability":0.16825552737288532,"feasible_probability":0.9847840129862353,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.75,"shots_for_95_percent":17,"hit_curve":[{"shots":8,"quantum":0.7709557532025699,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9475387330089979,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9972478154656989,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999924254802891,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999426267,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":12,"optimal_probability":0.19437357153117024,"feasible_probability":0.9096508324278749,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.75,"shots_for_95_percent":14,"hit_curve":[{"shots":8,"quantum":0.8225526009511299,"uniform":0.5014697532613109},{"shots":16,"quantum":0.968512420570791,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9990085323416893,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999990169918825,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999990337,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.19437357153117024,"diagnostic_seconds":0.0030378259980352595}
+{"instance":"n3-s0-r2.json","seed":8,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":4,"end":7,"reserved_end":8,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":7,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0189107886879853,1.0904635675461214],"expected_energy":21.52272480576803,"initial_expected_energy":23.034454039207006,"history":[23.034454039207006,23.948118950917525,27.341144354246914,44.111419798744194,23.607815746997186,24.9844732477794,23.267534491085975,22.597652355778923,22.415647982565936,22.567218878438595,22.35801862188002,22.320371584465903,22.259472554071447,22.159746308690934,21.9625689445913,21.720251242922153,22.874786596826688,22.55861980732259,21.67942797857048,21.67766176117884,21.727675258720375,21.67739976829242,21.661830714236842,21.638729542999098,21.613750634173474,21.635187302675554,21.606876783225868,21.614400892761275,21.604490851356427,21.601393256547063,21.59742213106218,21.590848549788607,21.586676483569967,21.570747109444156,21.581713986825285,21.567483672886073,21.579448600175944,21.56386728659892,21.56073164765764,21.555319832542143,21.56072663693706,21.554322939288884,21.55950295582786,21.5507962964785,21.547819555985935,21.54291776941849,21.53485467936313,21.54883956226197,21.55830142468899,21.536474740548726,21.53476354088916,21.539204380147677,21.532192389955753,21.53123055073435,21.52943378069801,21.526484735557542,21.52272480576803,21.525953660461703,21.53135345808883,21.522768581124684,24.98377990186336,23.915368468524303,28.819771282196594,28.24311126104692,25.48960831437844,23.83821524028441,23.652282787703392,23.235002846776613,22.608933125672976,21.963738155370116,25.07376094182741,26.328659320370626,21.925982703735215,22.12996032699883,22.449570344268494,21.813368777118818,21.815587536351742,21.812882343808997,21.84482361465724,21.80767768748758,21.80065711247617,21.797759592846845,21.796150155843854,21.79625808473441,21.795982633396147,21.79677052730971,21.796294691677005,21.79549339371298,21.79536158147834,21.795003659694814,21.79469439680812,21.794525707036136,21.793696685469218,21.793399487356783,21.79273564369193,21.792061444788533,21.791298392713465,21.791049183801697,21.795684419685443,21.790394228500624,21.790711461469755,21.79034244040282,21.79054388117794,21.790320928269654,21.790270350635893,21.79021620689447,21.79012018415311,21.790067363264583,21.790268204584955,21.790014614058784,21.789979800599035,21.789940201965244,21.789870653806336,21.790008881133282,21.789881193614114,21.789859605143448,21.789888737331673,21.78981859131672,21.789799627645834,21.7897668955373],"feasible_probability":0.9099445066412839,"one_hot_probability":1.0,"sampled_feasible_fraction":0.89453125,"counts":{"00010011":107,"00010101":28,"00011001":30,"00100011":8,"00100101":2,"00101001":7,"01000011":130,"01000101":24,"01001001":65,"10000011":46,"10000101":20,"10001001":45},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12272351099818479},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":18,"objective_bound":17,"offset":36,"linear":[-18,-10,-9,-18,-14,-10,-11],"quadratic":[[0,1,36],[0,2,36],[1,2,36],[1,3,18],[1,4,18],[1,5,18],[3,4,36],[3,5,36],[3,6,36],[4,5,36],[4,6,36],[5,6,36]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r2","start":10,"cost":8},{"index":2,"task":"t1","resource":"r0","start":10,"cost":9},{"index":3,"task":"t2","resource":"r2","start":7,"cost":0},{"index":4,"task":"t2","resource":"r2","start":8,"cost":4},{"index":5,"task":"t2","resource":"r2","start":11,"cost":8},{"index":6,"task":"t2","resource":"r1","start":13,"cost":7}],"conflicts":[{"i":1,"j":3,"reasons":["resource"]},{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":4,"end":7,"reserved_end":8,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":7,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":7,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":12,"changed":false}],"bits":[1,0,0,1,0,0,0],"qubo_energy":0},"seed":3257320810,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9479706520254816,1.1089971268546839],"expected_energy":10.365462440354062,"initial_expected_energy":22.785513451424187,"history":[22.785513451424187,22.501995057684706,19.049648805709573,12.047586508503738,15.192272543667018,16.346701188740013,13.245613658056062,11.481596676208468,12.360783655172078,11.423855253730968,11.328485508511935,11.201525191940032,11.000079251532648,11.980827106837223,10.94591996399802,10.818272969819935,10.59169833433359,10.376582787582208,11.593140618261678,10.75272900062994,10.466582391578436,10.37175489750862,10.495536856017122,10.376404565270336,10.383303935699903,10.372833132306898,10.369744843086574,10.368957245533865,10.370785746881815,10.36842318554758,10.36798060692056,10.367456915337625,10.366673790993882,10.366015539815153,10.367191144444215,10.367882670706749,10.365899405895961,10.365712635121765,10.365777956896897,10.365815715891122,10.365696295406273,10.365711794131517,10.365670351287497,10.365651662641906,10.365627638401053,10.365586227569477,10.365520447172848,10.366063025927621,10.365629570325703,10.36555728298208,10.365513054079436,10.365515816843686,10.365504110623018,10.365503067991238,10.365535368114124,10.36548656239356,10.365484338133944,10.36547366645406,10.365467741536284,10.365462440354062,14.818640335298605,15.675504745320296,15.009528915457922,13.04798781838,13.59342039306192,12.012551956610428,26.740931514720582,11.146072364870363,14.335561514158904,13.719638537268452,10.900990576905063,11.705397234688599,10.936477870158281,10.767574327198815,10.833881034582127,10.724651148495063,10.730617783233193,10.712302900699612,10.69304377473408,10.679660228793441,10.759024675874047,10.651304484783669,10.627071445530136,10.58635382051707,10.514440298677247,10.539367540222367,10.56206092806017,10.513442096249427,10.542043240542219,10.5149300129249,10.503523474182105,10.488180789038513,10.49252970249951,10.476529845651287,10.466264141931571,10.449919956274996,10.465043499692257,10.435675302948539,10.424804257786919,10.447226811772408,10.41514027715517,10.408925211701973,10.401966780350643,10.390675546142988,10.395658244200149,10.402349948925464,10.388120378463263,10.3830284725587,10.374997039919947,10.380772095772375,10.38388159612218,10.377028399855977,10.373544409661646,10.370222418788279,10.367586922329835,10.371268329368473,10.374840643262047,10.367110960564675,10.366465460200557,10.366670164994744],"feasible_probability":0.9095704158745856,"one_hot_probability":1.0,"sampled_feasible_fraction":0.90625,"counts":{"0001001":111,"0001010":25,"0001100":30,"0010001":8,"0010010":3,"0010100":5,"0100001":153,"0100010":20,"0100100":55,"1000001":37,"1000010":15,"1000100":50},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12722179699630942}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.9095704158745856,"total_shots":512,"runtime_seconds":0.12739083101041615},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":12,"optimal_probability":0.18060648375389546,"feasible_probability":0.9099445066412839,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.75,"shots_for_95_percent":16,"hit_curve":[{"shots":8,"quantum":0.7967922884913002,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9587066259833971,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9982948572623249,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999970924882442,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999915464,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":12,"optimal_probability":0.19444702178130477,"feasible_probability":0.9095704158745856,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.75,"shots_for_95_percent":14,"hit_curve":[{"shots":8,"quantum":0.8226819849646454,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9685583215439217,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9990114208558646,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999990227112758,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999990449,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.249000902703301e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.19444702178130477,"diagnostic_seconds":0.0034539569896878675}
+{"instance":"n3-s0-r2.json","seed":9,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":4,"end":7,"reserved_end":8,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":7,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[-0.9671059223851525,2.053993528739041],"expected_energy":21.51710235873506,"initial_expected_energy":25.71469489412796,"history":[25.71469489412796,26.12673861219742,25.680618141575884,24.50369795239321,21.985821729870715,28.31801258663362,35.080685477102605,21.55511376080905,27.470392185064064,36.603626339097154,24.737661842554495,22.130401187679357,21.54692137169039,21.805665456182066,21.56586208466377,21.610211414343617,21.524769400431087,21.520201384690395,21.520040226732505,21.524730129061926,21.52010690859769,21.51815636779468,21.51911593732327,21.518406541657082,21.518227965128073,21.518060544543708,21.51796600395706,21.517977907629216,21.517918586978787,21.518024783754743,21.517944569375217,21.51788311187172,21.517897090797092,21.517843798703197,21.517807739017428,21.517754512297593,21.517670078033518,21.517534714171056,21.517312712883992,21.517304828689387,21.517325980374494,21.517350542807968,21.517284415985472,21.517438964856527,21.51721057312475,21.517133771969494,21.51712472326388,21.5171581039146,21.517112965659507,21.517114068167302,21.51711230517132,21.51713626138344,21.51711417370422,21.51711107240733,21.517109249776226,21.517107867889198,21.51711169816646,21.517106733203416,21.517105207824596,21.51710235873506,26.7944883318321,26.971610647678542,29.826650428846268,34.80820879637259,25.796183721133474,29.729177871556782,25.546787547926737,25.010006969710176,26.01205112513729,25.19909628078531,25.152548875645053,24.929031871558195,24.844033483053416,24.928830461703924,24.777916658479086,24.81510647547603,24.76402458272198,24.7475132037937,24.7727301376988,24.74156624124158,24.729788382514332,24.706955043471957,24.68124423599566,24.632461372970088,24.590309865224324,24.49334229776491,24.314416502994284,23.891491218728532,24.0243300922938,25.247985502379827,24.29787505640208,23.836729898177076,23.879418918957263,23.807412685608092,23.83400269613459,23.791279256227007,23.765539462541078,23.75401218807265,23.825623347730165,23.756204348692226,23.724203120520123,23.68016541034521,23.776306180690334,23.634938599478968,23.580185784880527,23.470668919845945,23.251932503888657,22.823779891085536,22.682226853971088,23.92653792518398,26.609135101432923,22.69517370095547,22.097411917335634,22.25807894547724,22.174785435215796,22.125954318183155,22.05423292187626,22.024652334124244,22.062236243823186,22.006019221517633],"feasible_probability":0.9126437131305225,"one_hot_probability":1.0,"sampled_feasible_fraction":0.921875,"counts":{"00010011":105,"00010101":15,"00011001":44,"00100011":16,"00100101":2,"00101001":4,"01000011":142,"01000101":23,"01001001":64,"10000011":38,"10000101":20,"10001001":39},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12240643499535508},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":18,"objective_bound":17,"offset":36,"linear":[-18,-10,-9,-18,-14,-10,-11],"quadratic":[[0,1,36],[0,2,36],[1,2,36],[1,3,18],[1,4,18],[1,5,18],[3,4,36],[3,5,36],[3,6,36],[4,5,36],[4,6,36],[5,6,36]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r2","start":10,"cost":8},{"index":2,"task":"t1","resource":"r0","start":10,"cost":9},{"index":3,"task":"t2","resource":"r2","start":7,"cost":0},{"index":4,"task":"t2","resource":"r2","start":8,"cost":4},{"index":5,"task":"t2","resource":"r2","start":11,"cost":8},{"index":6,"task":"t2","resource":"r1","start":13,"cost":7}],"conflicts":[{"i":1,"j":3,"reasons":["resource"]},{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":4,"end":7,"reserved_end":8,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":7,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":7,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":12,"changed":false}],"bits":[1,0,0,1,0,0,0],"qubo_energy":0},"seed":747784396,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.7512326881833706,1.8034355351294922],"expected_energy":10.882197869736423,"initial_expected_energy":16.377621355711526,"history":[16.377621355711526,17.616311543887132,13.234756109630982,14.970749699942168,13.470265088400364,12.292163913281879,14.764385660163963,13.081647366098082,12.32541225684769,12.099395020666027,11.945774376861019,11.68572106392897,11.369014560842738,10.990656658329577,12.465451272504335,12.051966037302456,10.959227968601086,11.060784856098755,11.174787277782022,10.99567826426825,10.974718261992898,10.941591739802906,10.936023145522748,10.964765498409564,10.929824622050655,10.925277884126071,10.917715838392528,10.904147319019279,10.954455851322853,10.926844785133575,10.901877678344494,10.915354411260342,10.899698677472516,10.897916325341109,10.900242016263618,10.896489470328614,10.89540304095139,10.893123167051959,10.889673529819468,10.898817932023475,10.900931646311694,10.889007054380079,10.888153179066993,10.886622692814,10.884661539154344,10.895249280346764,10.883800473484637,10.884580921633406,10.883581796485977,10.884831270215932,10.883410400010835,10.883086449359443,10.88292390356738,10.88314722777062,10.882855526868852,10.88279535014159,10.882669935468037,10.882446885434515,10.882911906475183,10.882620185067381,12.182207179118919,11.88189263818951,15.022801715878309,18.55927992548907,14.742336661187409,10.948747581596756,12.562634424381875,10.969241264934023,11.03929037934687,11.252546083690207,10.9714920234214,10.983986036142452,10.944488186695738,10.935172798205029,10.928810134279207,10.929652362292854,10.926368512289823,10.924072131986241,10.919753533240941,10.912037241513406,10.906726473320237,10.900387529764116,10.911320150556747,10.918284513643,10.90246529478977,10.894718348183885,10.893719937399297,10.891624108522874,10.890822389799641,10.88857207565513,10.888749210455067,10.888195676026555,10.888739695390697,10.888468027692593,10.887800325412929,10.887721452872336,10.88818122628979,10.887636389451888,10.88747432603116,10.887159940981993,10.886563342284353,10.88551174469789,10.887429723239071,10.885875933363637,10.885347491777495,10.885584967683936,10.885098515751144,10.884886539085935,10.885003320962305,10.884713700212753,10.884665290382223,10.885014695084903,10.884526342674402,10.884294144441792,10.883950041422603,10.883298361189773,10.882293654445268,10.883398012847543,10.883861386019912,10.882197869736423],"feasible_probability":0.9568316800967549,"one_hot_probability":1.0,"sampled_feasible_fraction":0.9453125,"counts":{"0001001":38,"0001010":1,"0001100":27,"0010001":114,"0010010":12,"0010100":100,"0100001":51,"0100010":15,"0100100":36,"1000010":57,"1000100":61},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12516483099898323}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.9568316800967549,"total_shots":512,"runtime_seconds":0.12534300299012102},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":12,"optimal_probability":0.17736405580336853,"feasible_probability":0.9126437131305226,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.75,"shots_for_95_percent":16,"hit_curve":[{"shots":8,"quantum":0.7902695672482524,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9560131455777646,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9980651566380371,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999962563811646,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999859853,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":12,"optimal_probability":0.0716461678318207,"feasible_probability":0.9568316800967549,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.75,"shots_for_95_percent":41,"hit_curve":[{"shots":8,"quantum":0.4482932774482314,"uniform":0.5014697532613109},{"shots":16,"quantum":0.6956196922911858,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9073526282790876,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9914164645132071,"uniform":0.9961846700381721},{"shots":128,"quantum":0.999926322918547,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.249000902703301e-16,"independent_samples":[{"shots":8,"best_objective":4},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.0716461678318207,"diagnostic_seconds":0.0034087060048477724}
+{"instance":"n3-s0-r3.json","seed":0,"direct":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":5,"task":"t2","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":5,"end":7,"reserved_end":7,"changed":true}],"bits":[1,1,0,0,0,1,0,0],"qubo_energy":14},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.1708308489868013,1.1606813256511248],"expected_energy":25.2672889381475,"initial_expected_energy":35.57024783237094,"history":[35.57024783237094,37.754689682689225,39.54210657538722,44.27752580086564,39.65934480542842,35.17410210293303,35.846449874588366,35.29725955098751,34.984140462825664,35.33309682733539,34.855090364604195,34.732844310815025,34.47448855829085,33.978482956285156,32.76008788579666,34.55316512772056,34.08135289030235,32.54987080987694,34.011852354734316,32.37896450478853,32.1039448709429,31.890640089288837,32.31120029481676,31.795147595329563,31.607729277303555,31.43338289472534,31.310599608887202,30.89918071917144,30.5525136080065,29.833075278383053,28.480664989520513,34.01464567809044,29.77064986268528,29.070613264500295,28.873458395384723,28.433854534586256,28.248770910444215,27.993097481818147,28.377499382725357,27.82210609388249,27.65563852566063,27.385189291938275,26.838080569902484,25.87299692428666,27.88564047540389,28.678360445717875,26.694645110916397,25.77815388149279,25.964991633860862,25.735279110407124,25.64252001774222,25.543067055630477,25.421199761514494,25.35645289841275,25.71599936322474,25.327254900176534,25.32827719104091,25.36206458456036,25.319937887475184,25.316511546041152,53.6931061584476,44.790628802425374,34.98950403724129,41.37543167762061,33.126301865140135,33.97272177374429,33.106904767850914,34.89189500023685,32.865655532119,32.490860731527356,32.05709552827447,31.2422021939521,30.450389883654687,28.715506799959652,31.358201082980116,30.19993337561056,29.11714524764271,28.922481222274357,28.55687732117528,28.980970666590558,28.184567297133306,27.840678447818973,27.241050412834866,26.64432694906015,25.90406479332095,26.573692902407153,27.564829744569227,25.869071258487843,25.64225515326538,25.85375007359724,25.57427613521272,25.586150337453063,25.56720899707627,25.555159482266696,25.539628124425953,25.555612996057818,25.533414780021804,25.520217200547435,25.495186874745954,25.449409152077305,25.428198922665885,25.342701622841386,25.390644698843797,25.339599761609488,25.36560491144062,25.34278383724574,25.328567949826116,25.318648102957162,25.330701245038647,25.312286829011953,25.30937320161369,25.30316609507287,25.292355549270738,25.274710570480643,25.312868088726894,25.308908056951402,25.271011653393685,25.27978794089499,25.27092721476333,25.2672889381475],"feasible_probability":0.7975117677768828,"one_hot_probability":1.0,"sampled_feasible_fraction":0.802734375,"counts":{"00010011":24,"00010101":6,"00011001":3,"00100011":69,"00100101":16,"00101001":22,"01000011":202,"01000101":33,"01001001":51,"10000011":60,"10000101":19,"10001001":7},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13213065500895027},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[2,3],"max_component_qubits":3,"component_to_original":[[1,3],[5,6,7]],"components":[{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-1],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":7,"cost":11}],"conflicts":[]},{"qubits":3,"penalty":10,"objective_bound":9,"offset":10,"linear":[-4,-1,-2],"quadratic":[[0,1,20],[0,2,20],[1,2,20]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":3,"cost":6},{"index":1,"task":"t2","resource":"r0","start":9,"cost":9},{"index":2,"task":"t2","resource":"r0","start":11,"cost":8}],"conflicts":[]}]},"best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":5,"task":"t2","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":5,"end":7,"reserved_end":7,"changed":true}],"bits":[1,1,0,0,0,1,0,0],"qubo_energy":14},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":3757552657,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7288115955855516,1.1783506892371451],"expected_energy":0.0005377928443121962,"initial_expected_energy":10.369518711935195,"history":[10.369518711935195,8.880040151483625,4.810711526526668,3.088842264737077,5.157117106342766,7.4935242954264325,4.03134130196815,3.64405821814164,2.9364159635173337,2.6803058320809265,2.6153873658300713,2.406559460526275,2.231313868978292,2.165585211785158,1.6765888117086283,1.4322925774779036,1.0844565373771282,0.5633276959323347,2.004903957661465,2.125493699061862,0.7287900804907816,0.5270090169136392,0.6679707146256337,0.45458457067143193,0.5793735145388891,0.4084438787628646,0.3640178767595057,0.33032529064310323,0.2386616024298015,0.23750671130823764,0.17468150164632168,0.15116218499369383,0.08641910499968365,0.032836745008863355,0.13208210686051988,0.21578965142173986,0.01648857148235096,0.022723743823920492,0.02805102582075129,0.014746402465245636,0.01590237088112181,0.012964773399489829,0.011801048271797033,0.010079038369624323,0.007884959106029002,0.005803409929915568,0.004030395973241438,0.011737099194440838,0.004647398271113114,0.00449176567542172,0.004672402344521542,0.0038796839947427618,0.0035309151947479486,0.0032237681335675374,0.002805379011298733,0.0024712923728299114,0.00209586408780514,0.0014841668238119376,0.0005377928443121962,0.0026626095205842092,7.438118061759388,8.340521571208317,2.1789698499769363,6.1563041928959885,3.5411464871110034,2.2962500286864134,1.8425589120971857,2.3668323278772503,1.6445844384300745,1.466322917506901,1.269989042003908,0.9364375601399948,0.7038705535006855,0.6349726127695695,0.32955427544652904,0.0394909135933262,0.03649946361938757,0.51024534585127,0.051312476528426555,0.11306391106891356,0.15301175247821244,0.04662065694092285,0.0397752896889611,0.04005043539306446,0.03618837356974696,0.03342873868964109,0.03000656055560045,0.038774199355834926,0.02713994180823675,0.024791187885398476,0.020238262393246283,0.014238058604209378,0.012037559483008489,0.004229028508239639,0.011567948612264631,0.023166312829767517,0.005561239876548266,0.0045642411473076,0.005623521009418739,0.004648814389671675,0.0041292940905031375,0.0038821962971985996,0.0035812038553069904,0.003834402597104696,0.0033507938810524228,0.0032441069014105335,0.003463971527054797,0.0032142204255714247,0.0031251424659880234,0.002956007700669968,0.0026516417275386293,0.0033002375752495604,0.002474318938494003,0.0021615662614034963,0.0016250857052133845,0.0008214736747294983,0.005203629127470583,0.00403917896610268,0.0010899896403211576,0.0007689262275102964],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09095781699579675},{"status":"feasible","best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true}],"bits":[1,0,0],"qubo_energy":6},"seed":673228719,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.911708541813582,1.1642386037863686],"expected_energy":6.89963108136258,"initial_expected_energy":7.290742435402816,"history":[7.290742435402816,7.2193793388103265,7.954948503447927,7.424470589766045,7.745325748716523,7.033871371778527,7.007894323330235,7.023220605191547,7.012720401861252,7.025805570987471,6.995106850638118,7.012122472952237,6.991411117295089,6.995196263767672,6.990444621793347,6.989635786334967,6.98758381207837,6.983813908993062,6.976667800547559,6.962446593544671,6.960410320022192,6.938326332663417,7.025690546834307,6.932558970334192,6.933613146327289,6.929550834961022,6.9273235408119564,6.929482033891617,6.921962978220092,6.922520358796509,6.921196615924083,6.9219644888818,6.920780982319612,6.920149372312205,6.919926852930544,6.921432773701353,6.920008752177669,6.919267596568787,6.918295128014418,6.920993369690435,6.917292149243211,6.91608163918452,6.913694799969857,6.909153263650344,6.9177815649959635,6.913515554480057,6.910937378242194,6.910473277441573,6.909041969881397,6.908442636309772,6.907518764464919,6.91003366654895,6.906607436603531,6.905480846643775,6.9032896635005905,6.89963108136258,6.91457470823674,6.901515426776044,6.901203968869227,6.900679503497434,7.757169412035911,7.796175310462069,8.068017161633335,7.679563439444402,7.599660976873084,7.490925502646812,8.072888515879688,7.663931209870157,7.691386248499105,7.33686815985096,7.924411812974592,7.374389399877138,7.348808355229149,7.40138291238801,7.3325303173760075,7.322318337668545,7.302403548863982,7.261833534590937,7.186736915153347,7.123981047999983,8.27435459027583,7.835550187656249,7.131039207278514,7.063037321103241,7.393867760481594,7.060932889817364,7.095466275686681,7.049752772040806,7.064040830712697,7.0544023179665025,7.055008040148307,7.053675151942733,7.049664072861348,7.050930376819151,7.049733076857928,7.048522949580699,7.046683331319997,7.046779397150161,7.045233795619511,7.043890100211959,7.041645511011572,7.042023400634472,7.038450541598711,7.0363538815069715,7.0407869107254974,7.034529259016725,7.032895956120374,7.029691638112693,7.025195282984419,7.019646597848457,7.016520500319398,7.035899142109006,7.011808279943675,7.009804317982828,7.006574942852962,7.000274270736432,6.988250769663491,6.988875971599425,7.0097349562049285,6.986299750024929],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":297,"010":36,"100":179},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09520863500074483}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.18638236999686342},"direct_metrics":{"exact_objective":14,"optimal_count":1,"combinations":12,"optimal_probability":0.13064114261546692,"feasible_probability":0.7975117677768828,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.5,"shots_for_95_percent":22,"hit_curve":[{"shots":8,"quantum":0.6737183378671099,"uniform":0.5014697532613109},{"shots":16,"quantum":0.8935402769557985,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9886663273693519,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9998715478647013,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999835000489,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":14},{"shots":16,"best_objective":14},{"shots":32,"best_objective":14},{"shots":64,"best_objective":14},{"shots":128,"best_objective":14},{"shots":512,"best_objective":14}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999511097414262,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":6,"optimal_count":1,"combinations":3,"optimal_probability":0.5884705504951318,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":4,"hit_curve":[{"shots":8,"quantum":0.9991773646762829,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999993232711242,"uniform":0.9984775611596526},{"shots":32,"quantum":0.999999999999542,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":6},{"shots":16,"best_objective":6},{"shots":32,"best_objective":6},{"shots":64,"best_objective":6},{"shots":128,"best_objective":6},{"shots":512,"best_objective":6}]}],"reduced_single_joint_draw_p_opt":0.5884417800177549,"diagnostic_seconds":0.0037998720072209835}
+{"instance":"n3-s0-r3.json","seed":1,"direct":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":5,"task":"t2","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":5,"end":7,"reserved_end":7,"changed":true}],"bits":[1,1,0,0,0,1,0,0],"qubo_energy":14},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.1443753446117457,1.160977297362685],"expected_energy":25.254366150429487,"initial_expected_energy":50.09004138707421,"history":[50.09004138707421,44.74110770593911,34.38402483883024,39.491640105153735,33.4222557581312,32.02162703858107,35.195998880299776,32.54742156805514,32.19727343409753,31.962218485682037,32.55453111844474,31.548526185470806,31.194996676632716,30.502362584939647,29.139944222533927,30.057060821318743,30.331851783535626,29.66040754522048,29.555490771959313,29.06532922294933,28.73365534796071,28.504587764004043,30.493173251111685,27.989247240666927,27.677707341499747,27.391631126469278,27.433971839209477,27.214108608914508,27.34365384565767,27.40577606282713,27.015939677928007,27.233857012727007,26.867380033516646,26.727231357643706,26.493429359354824,26.051188226462315,25.416204091711627,27.11238051930213,26.333280746959517,25.547351207089463,25.43870984187466,25.4765059834685,25.400034111781867,25.377090228060844,25.337546633575165,25.334177546186012,25.274019824088093,25.31159494938353,25.270854503617414,25.293857572775778,25.26921419312952,25.266365775194764,25.26406895410328,25.267275432255875,25.261792480637112,25.259904414681827,25.26181370294862,25.258623732085944,25.2576787772782,25.258321295022025,29.96957472655856,33.014483177719725,36.38177123920251,52.55217121056756,30.862774282847838,29.75052258661404,32.03389257689655,29.388258865415544,28.89987410385558,28.596761994325785,28.92601673212354,28.42145967747505,28.24720423387084,27.907251304161612,27.263643968271033,26.340367899170033,26.39874007120483,27.1531782605647,26.557123222157177,26.17483399237483,26.47044035991862,26.082605093089104,26.07895088019222,26.000813656110807,25.886684915853884,25.77560231841641,25.61459921056809,25.529666204649764,25.955480951977293,25.457548551837718,25.439483620147453,25.380648733592523,25.363385575207488,25.3209775226803,25.32151431013769,25.316586271401594,25.335079754227678,25.32108646605554,25.310078597183207,25.311099346011506,25.304002572470345,25.298396277565967,25.288548436616942,25.289153859864783,25.286575723283434,25.29197726949355,25.289842892679633,25.28139250556591,25.28032809399332,25.285962866334504,25.275854497820973,25.268335116193242,25.25793266292313,25.272537656341587,25.268989944409732,25.25665652047714,25.2573837555197,25.255564999083305,25.2574040291337,25.254366150429487],"feasible_probability":0.7980320468095892,"one_hot_probability":1.0,"sampled_feasible_fraction":0.791015625,"counts":{"00010011":22,"00010101":4,"00011001":7,"00100011":66,"00100101":13,"00101001":9,"01000011":210,"01000101":51,"01001001":48,"10000011":56,"10000101":10,"10001001":16},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1196887430123752},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[2,3],"max_component_qubits":3,"component_to_original":[[1,3],[5,6,7]],"components":[{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-1],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":7,"cost":11}],"conflicts":[]},{"qubits":3,"penalty":10,"objective_bound":9,"offset":10,"linear":[-4,-1,-2],"quadratic":[[0,1,20],[0,2,20],[1,2,20]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":3,"cost":6},{"index":1,"task":"t2","resource":"r0","start":9,"cost":9},{"index":2,"task":"t2","resource":"r0","start":11,"cost":8}],"conflicts":[]}]},"best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":5,"task":"t2","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":5,"end":7,"reserved_end":7,"changed":true}],"bits":[1,1,0,0,0,1,0,0],"qubo_energy":14},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":1641411168,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7222421103718704,1.1785953967177356],"expected_energy":0.0001836595293365709,"initial_expected_energy":3.91906214140404,"history":[3.91906214140404,6.305846160544463,5.727033190229754,5.254401287649379,5.088751768235631,3.7423480465836336,3.177832372905277,2.2069970393160285,2.47446884963656,2.5936658101955032,2.317542285197691,2.4804073608372863,2.1818951330043403,1.9722394914844945,1.7659276378524065,2.4108270162601366,1.5558762185547292,1.3777290492667653,1.0604347938506182,1.086442577734995,1.1756687108910024,1.0055837452181418,1.2123797296300196,0.8495073270298701,0.7330453438121298,0.504934681244905,0.17849962669415942,0.7909574973614759,0.6829590779883191,0.14419435752779292,0.20423846297593826,0.17138901397286826,0.18938373448830226,0.13442565325690628,0.14293843847662877,0.1318150303065576,0.12663661029343312,0.11919364266646844,0.10850139370506173,0.09083783020095647,0.06181990764088334,0.03453719116274455,0.005220241982657175,0.1851598338975598,0.09308145765947648,0.003367110768910944,0.012324354332193683,0.006552023710484217,0.003052449679918121,0.0022683489381469827,0.0011942747877293546,0.0020565800987641823,0.00047894309943984477,0.001974811704261221,0.00022073233919234003,0.001527387495210519,0.00025895370100414885,0.0002372617140917712,0.00024667749171556014,0.0001836595293365709,6.473935943896372,7.926319611857364,6.096683090739366,5.580377360357456,8.187438580574625,4.480075210112513,3.6205693835991646,5.840094020549268,4.831467553585416,3.077351822240693,2.750037564344715,3.5936704260826495,2.6158069753362914,2.3661177702817784,1.9894255934913323,1.293887058114759,2.0168415953383745,2.0007106110323924,1.503325132809244,1.2113621934798189,1.1870069394311535,1.4056096627651737,1.0156807855686034,0.74303438673999,0.3187026302357922,3.472525874713497,1.757957083648827,0.6860950478678545,0.35386713371600953,0.40830523473555147,0.30915700695916354,0.3874908092110192,0.3021527662340266,0.2755430576671456,0.2557839163842174,0.28309784138215205,0.23792437129744456,0.22628284480315478,0.20693087423363601,0.17747552573295014,0.12008023846970337,0.04503999048741323,0.19162023294567077,0.19820967817097804,0.03595010205943147,0.040302424857375556,0.0333437074081828,0.044336934069564564,0.030418694234446576,0.025883138011727876,0.0216095541239291,0.017693343123835865,0.017944398589444178,0.016178900930576535,0.016291242874557795,0.0171993071793822,0.014777185767042482,0.014280193349298781,0.017821043500176693,0.012087886526392581],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08165378800185863},{"status":"feasible","best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true}],"bits":[1,0,0],"qubo_energy":6},"seed":1454127163,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.9442604952450897,1.169302867740762],"expected_energy":6.895417705305595,"initial_expected_energy":7.349451882983724,"history":[7.349451882983724,7.313841362974137,7.316649358757763,7.389132047133747,7.351715143830296,7.317023938093325,7.374155738277004,7.2051295316106305,7.0489044372946825,7.054670250037408,7.077903325826876,7.078388974826327,7.007409402399484,6.992308502572577,6.986472123364404,7.00889680293866,6.983466109983796,6.981226092247734,6.986635959621815,6.978926944334539,6.977389716400463,6.97559897264223,6.9722508413055895,6.970478219851737,6.962780126957107,6.973495200064267,6.960421947839405,6.966992174913287,6.959405004074582,6.957669380164072,6.9554094630610575,6.9516604511774105,6.9513333143456,6.944565721959684,6.946410948945621,6.946459086366099,6.945765578397796,6.94332981813062,6.944487632766788,6.943011097207895,6.94237419294342,6.941035523265543,6.938420264743989,6.9333505241013,6.923238354902251,6.904002065219375,6.963478178972976,7.060761422284579,6.940439624782231,6.901850683929615,6.913831640316747,6.901903600839556,6.901244788692349,6.900968184379982,6.902516806519461,6.900031554277464,6.8993002686201805,6.898262491796348,6.897161622090541,6.895417705305595,7.863769870831183,7.936697520522916,7.669619822017023,7.518819878596822,7.7443005701311005,7.503028124953593,8.265935474865703,7.294576897925114,7.3535630406495684,7.3015201378751176,7.332993859218246,7.289812713711728,7.299495575606362,7.295580469673506,7.289588679352461,7.286713791175764,7.281036221114291,7.270166404229831,7.266814997062848,7.242077045787353,7.283607662396877,7.233147869010153,7.226752853923347,7.249915361074715,7.2191537950459255,7.215342120042473,7.209619087535612,7.198404908438944,7.176661739106246,7.154534951742769,7.211469853696245,7.255760149279504,7.132035258777959,7.132743991319558,7.130815637019211,7.1311866537888715,7.132807044996755,7.127772491217665,7.125692337610527,7.134906018212612,7.122624940511136,7.11986487944211,7.114614199367448,7.104404421704877,7.084981540307516,7.094392915144606,7.151101788081327,7.0797338984329325,7.095523243623547,7.079789563470913,7.075775608637782,7.071882496089202,7.104290611914988,7.0642811952433675,7.0618292114080266,7.056555385139879,7.046826056357992,7.028564974404983,6.992676898586801,7.027812393974794],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":305,"010":34,"100":173},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08657390000007581}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.16842952399747446},"direct_metrics":{"exact_objective":14,"optimal_count":1,"combinations":12,"optimal_probability":0.1283765647441884,"feasible_probability":0.7980320468095891,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.5,"shots_for_95_percent":22,"hit_curve":[{"shots":8,"quantum":0.6668566193563623,"uniform":0.5014697532613109},{"shots":16,"quantum":0.8890154879333283,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9876824380813228,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9998482776683796,"uniform":0.9961846700381721},{"shots":128,"quantum":0.999999976980334,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":16},{"shots":16,"best_objective":14},{"shots":32,"best_objective":14},{"shots":64,"best_objective":14},{"shots":128,"best_objective":14},{"shots":512,"best_objective":14}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999833036791512,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.70950318673391e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":6,"optimal_count":1,"combinations":3,"optimal_probability":0.5907817637898491,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":4,"hit_curve":[{"shots":8,"quantum":0.9992136066481209,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999993815854962,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999996175,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":6},{"shots":16,"best_objective":6},{"shots":32,"best_objective":6},{"shots":64,"best_objective":6},{"shots":128,"best_objective":6},{"shots":512,"best_objective":6}]}],"reduced_single_joint_draw_p_opt":0.5907718999079693,"diagnostic_seconds":0.0031917930027702823}
+{"instance":"n3-s0-r3.json","seed":2,"direct":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":5,"task":"t2","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":5,"end":7,"reserved_end":7,"changed":true}],"bits":[1,1,0,0,0,1,0,0],"qubo_energy":14},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4426891817003142,2.8701057401208563],"expected_energy":20.99150506534251,"initial_expected_energy":42.11480720688855,"history":[42.11480720688855,34.83101330916662,37.34937020813901,26.878482448219145,38.18610705417812,42.90846117292936,26.47309431474654,25.982003637818877,28.532080005493825,25.792530828386525,25.742933649933867,25.831557706965018,25.81556049145229,25.763123439401326,25.73070165374873,25.710432484588086,25.691289214964385,25.707214917349084,25.688491482592212,25.680504401161166,25.66606850172463,25.644904732025786,25.741346410563708,25.724921626685138,25.638081672085058,25.630902909600458,25.637429676693024,25.624771865593047,25.62608280619156,25.620822424053074,25.618847375701062,25.62745386578504,25.614514198226832,25.61322815710111,25.60934661289655,25.60773145462249,25.604691154350476,25.603934264562135,25.60083678922772,25.614088695733713,25.59856105454598,25.59997131774896,25.601802405355265,25.598465350591226,25.599042058893886,25.59852248744366,25.598256188576578,25.59799685135784,25.59821989404218,25.597867731853174,25.597749116171084,25.597508286609063,25.597067905535148,25.597109562892886,25.597232670931177,25.596992117251546,25.597061369765264,25.596903975126544,25.596810764409188,25.596658577079467,39.96024010050665,37.691431707975624,37.16632441694994,36.39519156426149,36.054808839604036,39.70195843414642,34.432478933519135,51.73263216031866,37.132007831964934,35.74329475229987,32.09133754731974,29.04730923509364,25.374633237068252,21.476318909198554,37.339410417875754,30.728925828203266,25.686380545440382,21.342805300205683,21.154297399639226,21.565805630571262,21.261939601907514,21.202795060292438,21.094449878742466,21.081656232082437,21.139944478188198,21.06866041993026,21.058484133747328,21.041971582117405,21.053517251690522,21.04955340662918,21.039382754577897,21.044380565161156,21.044127107175417,21.035265994681296,21.045995722543203,21.03146193217887,21.02812522974493,21.02296036615597,21.016077209473174,21.004956534809835,20.997888348085592,21.02934250860332,21.03968267124585,20.997526425515893,20.993014624858155,20.999089924346507,20.99247315836705,20.993155544480352,20.992438215181608,20.992315178076026,20.99224427102301,20.99236593688238,20.992194501778016,20.99214753349861,20.992062927704353,20.991924691491164,20.991667906318963,20.99150506534251,20.993554517962643,20.992940481176724],"feasible_probability":0.9397213310855157,"one_hot_probability":1.0,"sampled_feasible_fraction":0.94140625,"counts":{"00010011":13,"00010101":1,"00011001":8,"00100011":155,"00100101":3,"00101001":86,"01000011":110,"01000101":3,"01001001":77,"10000011":33,"10000101":2,"10001001":21},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1155911409878172},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[2,3],"max_component_qubits":3,"component_to_original":[[1,3],[5,6,7]],"components":[{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-1],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":7,"cost":11}],"conflicts":[]},{"qubits":3,"penalty":10,"objective_bound":9,"offset":10,"linear":[-4,-1,-2],"quadratic":[[0,1,20],[0,2,20],[1,2,20]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":3,"cost":6},{"index":1,"task":"t2","resource":"r0","start":9,"cost":9},{"index":2,"task":"t2","resource":"r0","start":11,"cost":8}],"conflicts":[]}]},"best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":5,"task":"t2","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":5,"end":7,"reserved_end":7,"changed":true}],"bits":[1,1,0,0,0,1,0,0],"qubo_energy":14},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":2001025171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7107424331480319,1.1763850035984613],"expected_energy":0.00014781306063704042,"initial_expected_energy":4.970942434150848,"history":[4.970942434150848,3.979275425862391,3.3152644974807823,7.488015221991012,4.217078665867021,3.5645806847209935,3.5949589682571395,2.8094058500352013,2.113128652626129,2.0343233651159567,2.424893621129754,1.9443979483777363,1.8081428564691504,1.7346324879338093,2.6510238894236506,1.7048176528616816,1.4009855794524106,1.2220633126617013,1.0677223977651893,0.9636489878964007,0.8195950797510515,0.5719000281905415,0.4417082863631745,0.5710430645344291,1.29770593655366,0.5308872600645386,0.2439927028697303,0.20776884171244067,0.35480538228873204,0.16674203203543272,0.13570683224034635,0.11145478320641715,0.0770345896159885,0.12765483754034634,0.1287121414401396,0.08243876425196685,0.06080625220625696,0.058491123999816194,0.04919624955374844,0.04154328108491809,0.0379562918010115,0.023496246767291187,0.044357150758505534,0.01999939107637627,0.03129001046023158,0.01998724529004096,0.017231660695775006,0.015762806310383043,0.01388448217068005,0.012191282542658886,0.00952692625659507,0.005267540535167164,0.0016393607004526814,0.000494246124045368,0.009527540606396101,0.0075302425061165145,0.0005354978653851555,0.0002253114279212224,0.0021426193804717,0.00014781306063704042,8.913769782956047,8.940412620722977,7.806895530225076,0.18135586546124333,10.650932346173049,2.461670931952395,1.6110247367056103,0.8394621600200441,0.21663296189444395,0.2609150918025924,0.20814137429261179,0.22224711618121473,0.1744733496770243,0.18952682204876725,0.1711540347678641,0.1648008617113029,0.15272397596917467,0.13056133134750694,0.10604862528773952,0.07877233999190722,0.0782427889324499,0.14367994563149386,0.07978383584570291,0.057037023955143935,0.04417253148433503,0.04549003103124722,0.04310267501110233,0.038936359003134205,0.035986497903433015,0.03753598921035395,0.03455801318902699,0.033234543860843825,0.03096200301757596,0.03145725180061425,0.028791871014678963,0.02807708436695499,0.03162418773748386,0.02759523895998896,0.026140466897843505,0.023817453816731022,0.020799075635462235,0.02985865035492128,0.01843981799282561,0.01662703062798031,0.012937060687332524,0.007157328564735778,0.029830161708527488,0.02690841485550554,0.008427017074456512,0.0067762769277293425,0.008171818988096267,0.006089146820794955,0.005607643994857574,0.00506145657905362,0.004535339144225727,0.0036503654808081117,0.002623833599392596,0.0012254657234914725,0.0027055968486966522,0.006798338910083554],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07682488400314469},{"status":"feasible","best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true}],"bits":[1,0,0],"qubo_energy":6},"seed":2240297063,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.8485516429620668,-1.9751851556593056],"expected_energy":6.8257535531629845,"initial_expected_energy":8.118720767384794,"history":[8.118720767384794,8.171529283407105,8.120718939955669,8.004263431645178,7.844158530045378,7.763462598602606,7.800785404613742,7.693577071173549,7.682240261306493,7.450218365413687,7.849423625246326,7.505252282569504,7.44562179478174,7.328838473193853,7.126385525313619,6.916732475464519,7.0198521218893095,8.71447785498625,7.334779673688585,7.675388746616755,7.04435742871386,6.84277844682892,6.955116344227886,6.845074639123291,6.845061716071896,6.846909798887718,6.847855090937407,6.84307230121987,6.8422025182368245,6.841281740326214,6.840328603109121,6.839845514980744,6.841104539048132,6.839491902328354,6.839186221467897,6.838511057144471,6.837201235749265,6.834870214345052,6.8363180059587485,6.846923161382265,6.835606825367108,6.835354310441281,6.835126672221178,6.834566911709758,6.834697740345666,6.834266285107086,6.834047710710181,6.834298225990608,6.8337596165427055,6.8335069897075815,6.833765381244121,6.833294638233186,6.833010302303514,6.832466355323659,6.831727738449903,6.831284348090527,6.830455467522308,6.828780567199721,6.8257535531629845,6.867034675012552,7.613334625278707,7.556324370385322,7.5884350777543474,7.204928345385879,7.015928628386122,8.229752323494964,7.760350126456841,7.416780728905584,7.005663413055928,7.04072684709438,7.019228983982134,6.997041376693735,7.001466881211697,7.003546889589937,6.9954843519033485,6.9963326922068845,6.995140786763515,6.994408097107228,6.992886290274468,6.989877287619528,6.984587980998149,6.98164921401515,6.967632687699314,7.042815482261364,6.984752488013166,6.965842763246696,6.984108489262761,6.961960362024037,6.961011749032765,6.957748337566738,6.9553094171632495,6.949687375911723,6.939925651875492,6.954668167102997,6.984824329471724,6.941490453675742,6.940292675640971,6.940999184931693,6.93846214098775,6.937965796517865,6.939622923021478,6.93725204900646,6.9365716417178795,6.935241284492239,6.932630489756258,6.927561304127997,6.918760584606922,6.975200541164298,6.969802489470914,6.916075965641916,6.919582444231522,6.916753791396714,6.914700131699259,6.914450298173616,6.916125162626832,6.9137795396923964,6.9125040347348214,6.91009855881361,6.9054508345288745,6.896387002501005],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":312,"010":53,"100":147},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08235806100128684}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.15940266799589153},"direct_metrics":{"exact_objective":14,"optimal_count":1,"combinations":12,"optimal_probability":0.2992944441875651,"feasible_probability":0.9397213310855157,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.5,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9418855023812279,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9966227051665177,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9999885938796077,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999998699004,"uniform":0.9961846700381721},{"shots":128,"quantum":1.0,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":14},{"shots":16,"best_objective":14},{"shots":32,"best_objective":14},{"shots":64,"best_objective":14},{"shots":128,"best_objective":14},{"shots":512,"best_objective":14}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.999986562449033,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":6,"optimal_count":1,"combinations":3,"optimal_probability":0.6378732288307699,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9997042770302498,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999125479252,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999923,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":6},{"shots":16,"best_objective":6},{"shots":32,"best_objective":6},{"shots":64,"best_objective":6},{"shots":128,"best_objective":6},{"shots":512,"best_objective":6}]}],"reduced_single_joint_draw_p_opt":0.637864657376747,"diagnostic_seconds":0.003136352010187693}
+{"instance":"n3-s0-r3.json","seed":3,"direct":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":5,"task":"t2","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":5,"end":7,"reserved_end":7,"changed":true}],"bits":[1,1,0,0,0,1,0,0],"qubo_energy":14},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.1206111907417198,1.1605150125759804],"expected_energy":25.24990312643832,"initial_expected_energy":27.439499586658698,"history":[27.439499586658698,31.826522297465562,39.498242765844616,41.6389006784227,32.77657969043264,26.92761913213114,27.38423325851933,27.0752163578612,26.643947921375613,26.837712751767928,26.52083772797053,26.482347343735345,26.33849108060628,26.128680836513542,25.736612663260495,25.731691848605738,25.342344825502014,26.657369315320803,25.29541630759318,25.345893437074963,25.320237227459202,25.263760878366554,25.262147798439674,25.264510942868938,25.265238542599235,25.258649671533234,25.257968582263874,25.26274386656806,25.256523994322137,25.25546256832486,25.25383182956679,25.253502569589376,25.251060113342646,25.2558140727264,25.25348364744624,25.250844212986816,25.251308715647227,25.25087348104048,25.25069668430784,25.250675018078933,25.251100885200493,25.250614483796433,25.25051567678815,25.250395404703127,25.250305136877913,25.25040117705479,25.250256096609565,25.2502110974957,25.25020594752081,25.250133333412567,25.250085547245327,25.25005264338776,25.250017102812723,25.249955893447652,25.249990863890197,25.250013209568905,25.249954533239467,25.250005785137375,25.2499212268267,25.24990312643832,30.621986084182367,29.37796319476707,38.71934905990838,41.535824333975434,34.21071795358154,29.59002383490699,29.423683591925155,29.70061463344436,29.1168858702124,29.30559481253173,29.115470641106764,29.141646128655843,29.115762390389012,29.113028977751405,29.11509537497773,29.11295342407196,29.113321804574284,29.112953845531212,29.11288242937363,29.11285537882281,29.112884413835054,29.112837270987846,29.112866113635103,29.112827709562662,29.11281929272281,29.112825955219336,29.112814019654678,29.112822675554632,29.112809430917437,29.11280529837486,29.11279838361696,29.112789442781665,29.112777838919378,29.112772684752578,29.112821226974134,29.112815830238333,29.11276844471155,29.112774102663796,29.112769211749693,29.11276895979649,29.112768466689875,29.11276849287395,29.112768505424505,29.11276836199621,29.1127683280014,29.112768300741656,29.112768314859736,29.11276828927091,29.11276829999246,29.112768275588863,29.112768276318313],"feasible_probability":0.798401630397039,"one_hot_probability":1.0,"sampled_feasible_fraction":0.794921875,"counts":{"00010011":11,"00010101":4,"00011001":3,"00100011":56,"00100101":16,"00101001":18,"01000011":207,"01000101":55,"01001001":48,"10000011":55,"10000101":16,"10001001":23},"circuit_evaluations":111,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":51}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10288893899996765},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[2,3],"max_component_qubits":3,"component_to_original":[[1,3],[5,6,7]],"components":[{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-1],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":7,"cost":11}],"conflicts":[]},{"qubits":3,"penalty":10,"objective_bound":9,"offset":10,"linear":[-4,-1,-2],"quadratic":[[0,1,20],[0,2,20],[1,2,20]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":3,"cost":6},{"index":1,"task":"t2","resource":"r0","start":9,"cost":9},{"index":2,"task":"t2","resource":"r0","start":11,"cost":8}],"conflicts":[]}]},"best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":5,"task":"t2","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":5,"end":7,"reserved_end":7,"changed":true}],"bits":[1,1,0,0,0,1,0,0],"qubo_energy":14},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":819382448,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7153027719975302,1.1781586663294166],"expected_energy":6.897466140789848e-06,"initial_expected_energy":2.112326344488148,"history":[2.112326344488148,1.9812724201560474,10.736610911180374,3.19331617592843,7.053482521753456,0.424283468702167,0.11095512823674804,0.7212507143314307,0.1678410301062925,0.05619549821344942,0.18987013457845656,0.03806936944148024,0.05811556951055042,0.03268500528105367,0.03325354643212271,0.03273526736279608,0.029689351260165704,0.0279074974395161,0.030217130903620517,0.025442236124483618,0.02307777767584887,0.019244314834817745,0.01381187971440821,0.0066245996999307714,0.00481744305213703,0.03535399436140728,0.03914973842118308,0.000339617580848256,0.003832310763390486,0.0002743550437098504,0.001837622343106157,0.0006459065729044721,0.0008004075629295363,0.0002215738729078285,0.00018569595591472353,0.00013992281257296858,0.00010671469349536248,0.0004240308690628888,5.316129298343428e-05,9.766403952013789e-05,6.0833003228916556e-05,5.5867271950144125e-05,4.48286510718412e-05,4.249071213789912e-05,7.46577121124821e-05,2.9333014850613552e-05,3.2202949045869453e-05,2.7670315964102166e-05,3.322263610769082e-05,2.651977043778267e-05,2.4609301348039588e-05,2.284425774971693e-05,2.2451314893412153e-05,1.807743780599009e-05,1.5590915465293658e-05,1.2602560529056256e-05,7.763475095945529e-06,2.5372039126337136e-05,1.5791600012766633e-05,6.897466140789848e-06,5.648091643252652,6.414215565417743,5.042766699471353,5.8413216274476,4.073727995482577,3.8314961365022207,8.887429771701287,3.9025835957296686,1.7627259221247484,6.725147098848224,2.8418693454676847,1.8205141951431028,1.3394433238104129,0.7336723708973053,6.869852829178317,1.8327823045695681,0.6752274736643905,1.9355348153135752,0.5515089051142519,0.4271169495078969,0.37965292823936436,0.6044903308907045,0.3227464502085694,0.28560018388374586,0.247016896795479,0.18949255435676862,0.23709286868073715,0.29820944435160746,0.16514418632642058,0.14375227298513113,0.16305753072172588,0.1286057284171906,0.1287599997395807,0.12613702049765657,0.12139437960942691,0.11263600197738852,0.09916564928384113,0.1358065486147383,0.08468633343934957,0.07645640732704743,0.11496797149577546,0.06534245283665763,0.05879786170188701,0.05192244752222348,0.04360923624666458,0.033412091571317595,0.03056821119159796,0.0719135770256131,0.02164835266301739,0.0193120190833786,0.015130248764213016,0.008885480044533208,0.03875260959650567,0.01788638441131368,0.01387156911985689,0.00794701274216246,0.007709474276034894,0.006430547368905146,0.005347185676448624,0.004465475241205271],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.0773704429884674},{"status":"feasible","best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true}],"bits":[1,0,0],"qubo_energy":6},"seed":1645421708,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.4570025629641585,1.190802121227607],"expected_energy":6.847962208651685,"initial_expected_energy":7.698626895352813,"history":[7.698626895352813,7.7707339754098275,7.542376914079917,7.585013059661215,7.406949145609074,7.289996486277387,7.155896220521221,7.411554664262271,7.608376420974201,7.196463512442149,7.153262693718688,7.187553776551223,7.145251379847507,7.1472983422981935,7.154363346904603,7.1455349454623605,7.1420514191970295,7.139574340679347,7.134319700726654,7.125410777755397,7.112447248921907,7.0867855325482,7.134815959331172,7.143100779221319,7.093861217429199,7.088898634913363,7.089177466534108,7.084788622163179,7.0848028072475895,7.084316946253597,7.083435151232309,7.081932513124128,7.080536838788685,7.0880351172017075,7.079149345090825,7.076776477342481,7.0732414530509,7.065977817464173,7.058043017009135,7.053377737542636,7.042751268172814,7.01158566719008,7.025897644274545,7.190154286880391,7.000465103674088,7.0261550675092685,7.0078993758674795,6.999516008190286,6.99518153208533,6.99083831738053,6.9827284832644105,6.980363094142213,6.970588798954612,7.011149596909946,6.96172365278814,6.967993664391329,6.963904108427775,6.9618209097584,6.960479499268262,6.959404026091374,8.472510660967828,8.538996375235392,7.778389685282543,6.918362933506896,7.787617252117824,6.948573087202606,7.7617813308025365,7.45922708401252,6.915890590588106,6.8945941843522665,6.937963499298984,6.887981783279779,6.876353452050789,6.885860181514455,6.88018065443732,6.876272596071375,6.875314108024163,6.874998184103546,6.87803525201087,6.874585694476529,6.8739072020810035,6.873031830697361,6.872222632585794,6.872532445466717,6.871645928851587,6.872273877962092,6.871920878912518,6.871268255141379,6.871309909258788,6.870828235995331,6.8704384174313144,6.869976891444287,6.871788946268992,6.869665341736367,6.869132927625089,6.868338053927712,6.866478458279842,6.8628806605902675,6.858278635568302,6.869401579572676,6.87805669513684,6.857180555178834,6.855250903942511,6.855765840625612,6.8564502936812515,6.854980075026593,6.855105947055508,6.854588142386639,6.854311298241165,6.8545367263952395,6.853913038770594,6.8537518906168025,6.85429928188597,6.853310040444301,6.85253205335046,6.850980111321684,6.848573584926861,6.866478658317818,6.864442869724304,6.847962208651685],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":335,"010":49,"100":128},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08213166400673799}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.1597100409999257},"direct_metrics":{"exact_objective":14,"optimal_count":1,"combinations":12,"optimal_probability":0.12599294442211748,"feasible_probability":0.798401630397039,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.5,"shots_for_95_percent":23,"hit_curve":[{"shots":8,"quantum":0.6594981243615947,"uniform":0.5014697532613109},{"shots":16,"quantum":0.884058472686728,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9865575622442658,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9998193008671832,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999673478234,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":14},{"shots":16,"best_objective":14},{"shots":32,"best_objective":14},{"shots":64,"best_objective":14},{"shots":128,"best_objective":14},{"shots":512,"best_objective":14}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999993729576235,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.110340469959926e-20,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":6,"optimal_count":1,"combinations":3,"optimal_probability":0.6199404874427353,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":4,"hit_curve":[{"shots":8,"quantum":0.9995646757543529,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999998104928012,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999641,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":6},{"shots":16,"best_objective":6},{"shots":32,"best_objective":6},{"shots":64,"best_objective":6},{"shots":128,"best_objective":6},{"shots":512,"best_objective":6}]}],"reduced_single_joint_draw_p_opt":0.6199400987137789,"diagnostic_seconds":0.0026513420016271994}
+{"instance":"n3-s0-r3.json","seed":4,"direct":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":5,"task":"t2","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":5,"end":7,"reserved_end":7,"changed":true}],"bits":[1,1,0,0,0,1,0,0],"qubo_energy":14},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.329390143450026,3.4494891114732287],"expected_energy":25.595617822861378,"initial_expected_energy":38.10859109570058,"history":[38.10859109570058,37.55820639966767,42.2437619123321,32.10522799077333,38.24680477668396,30.63474765317922,30.6638971524011,37.80311398934971,28.79848326911958,33.02660262160916,29.688485654442943,27.691533976282415,27.857340742499794,27.76903269185764,27.96693670509884,27.44658123385021,27.787192621785415,27.6567018213174,27.42705959860644,27.330119531891576,27.17846380515404,27.44552270445445,27.043566481540733,26.87880041893493,26.585490302806463,26.501877096437575,26.15204478505637,27.398378878644564,25.90881135364568,26.014048223278866,25.95940799171467,25.886427121028916,25.797704217310837,25.927299354855972,25.8228233042106,25.787485158248266,25.805007821792973,25.78247181816005,25.770964652218755,25.75347574274675,25.729513879154048,25.68753984572686,25.64392129303264,25.65624487575009,25.71380031754085,25.65506825128132,25.634975272326045,25.62933036051198,25.652871916689637,25.623248978241215,25.620635122111874,25.61624340726454,25.609584740658427,25.608212891724463,25.598986088249326,25.640854710615386,25.608656312356498,25.598429045665565,25.603668293227337,25.5990070441554,40.093220346891954,42.47275110131967,38.68318215914864,42.34452493904247,37.46094804803287,31.773446372859365,37.58659548072789,31.406268834970206,33.36513591721486,31.931913507294265,30.276649360537903,28.981032723990733,28.079315796869277,28.86252680286763,27.89828919420556,28.597207750906826,27.45146817962668,27.086734215057458,26.641073714508124,26.32720335671444,25.91311400045379,25.692024629727477,32.276447302393194,26.264855100603512,25.709786432935072,26.383537339319425,25.59859226671563,25.6678445011789,25.602186165246614,25.600419361699796,25.599905714509603,25.599258528574733,25.60102533303945,25.599528622976337,25.598837364395287,25.598163256617866,25.59787113814908,25.598094574624607,25.597757982964588,25.597715399270484,25.597587417254676,25.597468306469814,25.597244998663925,25.596869815181584,25.59648019683776,25.59600743239094,25.596136877942953,25.597072385680377,25.59601366501749,25.595831218054144,25.595881764438587,25.595805866892324,25.595864518833416,25.595762110341994,25.59573635280456,25.595807508656424,25.59571451588513,25.595697216997344,25.595662994356623,25.595617822861378],"feasible_probability":0.8169941041812834,"one_hot_probability":1.0,"sampled_feasible_fraction":0.796875,"counts":{"00010011":50,"00011001":50,"00100011":17,"00100101":2,"00101001":21,"01000011":146,"01000101":1,"01001001":137,"10000011":48,"10000101":1,"10001001":39},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11805755700333975},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[2,3],"max_component_qubits":3,"component_to_original":[[1,3],[5,6,7]],"components":[{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-1],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":7,"cost":11}],"conflicts":[]},{"qubits":3,"penalty":10,"objective_bound":9,"offset":10,"linear":[-4,-1,-2],"quadratic":[[0,1,20],[0,2,20],[1,2,20]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":3,"cost":6},{"index":1,"task":"t2","resource":"r0","start":9,"cost":9},{"index":2,"task":"t2","resource":"r0","start":11,"cost":8}],"conflicts":[]}]},"best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":5,"task":"t2","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":5,"end":7,"reserved_end":7,"changed":true}],"bits":[1,1,0,0,0,1,0,0],"qubo_energy":14},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":367776961,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7026176939700226,1.1781673934728736],"expected_energy":0.00027871445767108506,"initial_expected_energy":8.001200705086863,"history":[8.001200705086863,8.838504305919137,7.190520159774676,3.5176963258502063,7.827520545662469,4.359952249774678,4.324034860602009,3.9706517245167774,3.355248760213231,3.074000707319165,2.8733548301642804,3.329073659048085,2.8655164795261383,2.6416645762525888,2.2200505782396815,1.4724450085741423,4.0070433621331585,2.305451841545718,1.5846159183167665,1.3991874087585403,1.3647164828068006,1.6340768756665307,1.173528313659777,1.0280712231000464,0.761548391890575,0.8704826521666755,0.8761915212430915,0.7584778449729271,1.0283834338843545,0.5907801635532041,0.5230168103779917,0.4115880099129682,0.24057707907533396,0.3428849112574534,0.6073800494159679,0.2760996222025002,0.21848945467659756,0.34042965818658766,0.25787885384198606,0.21292926052627187,0.19571114922261112,0.18389673430358705,0.23533910122562557,0.1638214658708253,0.14768561954403547,0.11980965821554337,0.11082614066900413,0.0635052667869269,0.1497488868818547,0.052773196116110976,0.0897140838720101,0.04341836374056631,0.037766916994267104,0.047930527584472256,0.035713179785387954,0.032207340149816376,0.027778609569690783,0.023193693863956956,0.01874541353778032,0.012809902259345531,6.008889022594421,6.4500771513065835,7.311163323561806,3.9831381073483505,5.794434422555059,5.95590793743213,4.709314294325859,3.6823600409828603,3.3029485176231566,3.7659157177259432,3.193284319756927,2.9585106481570707,2.5151221198363705,1.731130871620584,2.853895659786489,2.720944435557954,1.6741169886818512,1.4533429909201583,1.0900554911293576,0.6382470484974186,0.6228247495614754,0.1981457340719059,0.8020642353583742,0.7229829279287394,0.16237564872026586,0.2087295316448943,0.1805775402242225,0.2139986158982251,0.16300135472001037,0.1450581973853174,0.13277857391467107,0.10662258016112791,0.06641065206181686,0.1603217346305776,0.19536586851851598,0.06510911049596803,0.05229654063244129,0.03364423782734792,0.014222841282667866,0.05821965599360979,0.05573981899609858,0.011648661068137368,0.011122548623130809,0.00976147571066746,0.00867084663076101,0.007904695314299204,0.019393348910688064,0.006188230782982099,0.004243342482393983,0.0038847507055611522,0.002835852545223942,0.0021577892306051923,0.0016417160082213666,0.0010297381420232893,0.00027871445767108506,0.003934890074763772,0.0012978027069227697,0.0011723282122904403,0.0004260410839369643,0.0002962124133337027],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07850800800952129},{"status":"feasible","best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true}],"bits":[1,0,0],"qubo_energy":6},"seed":3166742020,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.187303976788933,2.821889877572043],"expected_energy":6.8874319331267095,"initial_expected_energy":7.15643203265591,"history":[7.15643203265591,7.053298475585017,8.338547897406137,7.6906151075831675,7.449533455231346,7.153352965788479,7.048128475260479,7.058671978686053,7.053268881068651,7.054584478333583,7.048290401814371,7.045571559947375,7.041373390680118,7.031893382179466,7.014283651277305,7.000772738375959,7.057280578517471,7.161898527024223,6.998444447797185,6.975383179479954,6.986462821897411,6.97280839457351,6.976430559658018,6.972365732706283,6.971236713606002,6.9702726289852786,6.969942691403941,6.968280737050435,6.9666772106496015,6.9636041713249455,6.958816082569941,6.967856419663531,6.974617297656672,6.955717313334943,6.954551676244688,6.962444585055319,6.952326814823806,6.950790962120276,6.949378427455784,6.949028793028792,6.944828521948407,6.943481900888394,6.939791602879351,6.935799712360527,6.928873430991448,6.9325774373316955,6.935448616568774,6.930195235614557,6.929659511796008,6.928229142847204,6.929852516066157,6.92740870359465,6.926638049136064,6.925142819123431,6.922211287532178,6.916559891930525,6.908501857153501,6.903434851712437,6.8874319331267095,6.933684500119378,7.647270070571786,7.629228872826842,7.179217138392863,8.421544209154407,7.17109311249261,7.105642885113914,7.35488253185674,7.184282430883105,7.100618859458586,7.1163808930411445,7.105023954425763,7.105353764721261,7.100288925246099,7.104371570280766,7.100157905186266,7.098795374642886,7.096551622368931,7.092521405081325,7.091521261413091,7.08091309484552,7.079703284098093,7.069202477144811,7.075988451523994,7.073478633186145,7.068330016096784,7.0756928637534084,7.066996478631068,7.064662962844442,7.060860620551614,7.0540611282045385,7.039854149154166,7.024195960017536,7.0716775166326284,7.125386925497963,7.019226988404924,7.005614761954802,7.008474791046387,7.00906023437042,7.0063164482777935,7.003847617642127,7.000991449780051,6.995558616942404,6.988326590509441,6.975159703851527,6.949490059880168,6.953366965708737,7.118715025497817,6.966688635928906,6.977817815336437,6.9549559438748965,6.947743581883327,6.9451155823929,6.941415005643602,6.997576486665734,6.9386907249545615,6.93795643618989,6.946993905838894,6.936832991364263,6.933797893392387,6.931804109811182],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":321,"010":85,"100":106},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08948980600689538}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.16821654200612102},"direct_metrics":{"exact_objective":14,"optimal_count":1,"combinations":12,"optimal_probability":0.03972630532539659,"feasible_probability":0.8169941041812833,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.5,"shots_for_95_percent":74,"hit_curve":[{"shots":8,"quantum":0.27696344090371044,"uniform":0.5014697532613109},{"shots":16,"quantum":0.47721813421019776,"uniform":0.7514675930866618},{"shots":32,"quantum":0.7266991208013331,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9253066294292357,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9944209003927785,"uniform":0.9999854432572823},{"shots":512,"quantum":0.9999999990311502,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.0531133177191805e-16,"independent_samples":[{"shots":8,"best_objective":14},{"shots":16,"best_objective":16},{"shots":32,"best_objective":14},{"shots":64,"best_objective":14},{"shots":128,"best_objective":14},{"shots":512,"best_objective":14}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999746623220299,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":9.147955830346444e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":6,"optimal_count":1,"combinations":3,"optimal_probability":0.6368901173549173,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9996977929767827,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999086709151,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999917,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.498001805406602e-16,"independent_samples":[{"shots":8,"best_objective":6},{"shots":16,"best_objective":6},{"shots":32,"best_objective":6},{"shots":64,"best_objective":6},{"shots":128,"best_objective":6},{"shots":512,"best_objective":6}]}],"reduced_single_joint_draw_p_opt":0.6368739800382214,"diagnostic_seconds":0.0032962910045171157}
+{"instance":"n3-s0-r3.json","seed":5,"direct":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":5,"task":"t2","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":5,"end":7,"reserved_end":7,"changed":true}],"bits":[1,1,0,0,0,1,0,0],"qubo_energy":14},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4628971414786296,2.8680533713153293],"expected_energy":20.996733893050042,"initial_expected_energy":37.31463888551454,"history":[37.31463888551454,37.29018077436998,22.159935989680623,56.8261184456297,26.993462866669788,22.429649505452417,23.52492621479225,22.346111135054926,22.45848181361397,22.342301477128174,22.158571378637852,22.069802729189767,21.905419268272816,21.61800273205886,22.312332294287813,22.011961322063037,21.644846539748368,21.58432382387534,21.60449478493185,21.600486944799364,21.557292283577826,21.525719664905573,21.55426124048214,21.501625102078812,21.484244380468674,21.488252822394763,21.46173102658056,21.441516233537648,21.41355494817089,21.466257737053724,21.389985225903146,21.368761725549525,21.329160129238623,21.297973677085103,21.218658816141694,21.200219181602847,21.13373015620703,21.15324825127494,21.1255302022957,21.17645280611938,21.110603482599867,21.098216282896285,21.076961967046778,21.05209244308692,21.040238289008965,21.007825063516663,21.018616070786948,21.115276565230616,21.014289764484182,21.0145779320821,21.008328330408272,21.004685501722697,21.004080913426044,21.006985876072367,21.003083799558496,21.002191139124438,21.00065682860387,20.999953490672006,20.996733893050042,21.00117563692681,38.373117247135625,41.805888743768605,44.42702725718329,46.22170940573817,42.472485401433524,37.16227195740264,39.07230002367082,37.0039945619648,36.97582112154393,36.3838732489251,35.530972263079505,32.70498118723894,31.856508552124893,23.051483930222567,54.77208516176562,35.94233119854428,30.307744972961764,22.566460913756032,24.672116385152872,22.372799141623172,21.937263345381233,21.97466964943364,22.210622997265368,21.93731729117293,21.97557620322801,21.881213241460376,21.853443016066628,22.24990475205601,21.735231761022657,21.656878693442724,21.59745621696963,21.73017522422935,21.550400575795088,21.48737013244922,21.37378877874199,21.241105750498104,21.28015238299072,21.395216075953336,21.247013463695325,21.260060602742506,21.209953234963763,21.1729462165805,21.15685334789827,21.207002940570575,21.141202741834817,21.12806461875449,21.10410836006689,21.089670195090306,21.052957443487028,21.09525775458718,21.04286551925762,21.078938864783556,21.03451740764112,21.02944666237842,21.038389948861266,21.023452711656056,21.020761936716774,21.034332439904293,21.017009362843478,21.014522076232254],"feasible_probability":0.9406995758797945,"one_hot_probability":1.0,"sampled_feasible_fraction":0.951171875,"counts":{"00010011":12,"00011001":7,"00100011":162,"00100101":2,"00101001":105,"01000011":111,"01000101":2,"01001001":63,"10000011":23,"10000101":2,"10001001":23},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12846932400134392},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[2,3],"max_component_qubits":3,"component_to_original":[[1,3],[5,6,7]],"components":[{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-1],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":7,"cost":11}],"conflicts":[]},{"qubits":3,"penalty":10,"objective_bound":9,"offset":10,"linear":[-4,-1,-2],"quadratic":[[0,1,20],[0,2,20],[1,2,20]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":3,"cost":6},{"index":1,"task":"t2","resource":"r0","start":9,"cost":9},{"index":2,"task":"t2","resource":"r0","start":11,"cost":8}],"conflicts":[]}]},"best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":5,"task":"t2","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":5,"end":7,"reserved_end":7,"changed":true}],"bits":[1,1,0,0,0,1,0,0],"qubo_energy":14},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":803261128,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7135000680243098,2.7488899461278877],"expected_energy":2.1841099295081366e-08,"initial_expected_energy":4.153121709037732,"history":[4.153121709037732,3.83636692192841,1.524551425467748,10.483609171998399,0.03718586575772333,0.1370647699587426,0.048368340993586646,0.4759918979128446,0.0252041232877968,0.05175420164669189,0.08316535545474209,0.017616418224468317,0.0026719469277452852,0.000679174614560406,0.0041317222288934355,0.0009892014337708139,0.001805844919853728,5.053096566074827e-05,0.0014706779383064274,9.505144690686832e-05,0.00012605763599789536,1.407849980287797e-06,8.124797667833955e-05,3.231696172656774e-06,4.301851970193045e-06,6.450106945598203e-06,4.448015958279386e-06,1.694033330900431e-06,9.122364521994729e-07,2.435791324635472e-07,2.1841099295081366e-08,6.436423510903036e-08,2.0585725606702036e-07,8.290874293374552e-08,2.6390356104687106e-08,2.3593352537350503e-08,2.4943338408456346e-08,7.75585205565662,9.720155354041339,4.827756856043744,4.634039431484371,5.492551569384705,5.733624212512146,4.418763387672441,4.616224420080287,4.547735064080147,4.172927064263975,3.7643617171428176,3.7680458081683916,4.196347619859627,3.838620601951795,3.5237977266885836,3.072987530608252,2.682877519670012,1.8151560309255652,1.7277101805797916,1.09482064798818,1.3134094158507554,1.3363222008388267,1.2073621502257752,0.9859155884221009,1.1280568709553567,0.8460970875889016,0.744999757520597,0.6163091748811781,0.4367684307576818,0.3607155799075435,0.1554378016726063,0.30076322414706136,0.5641942599146675,0.19384235314645035,0.18348474674503035,0.23179963378572072,0.18493674702492263,0.1610042958369994,0.14144500551618766,0.13318851870822548,0.10247222864374893,0.09195398755214171,0.06712953939749414,0.07052304201265042,0.07589499956113495,0.06512708955540901,0.08495481431736138,0.06416611598623102,0.05884955570298726,0.05483100499651766,0.04796810887642504,0.04253865439703027,0.0364324527287434,0.02642672188608852,0.024306914073472345,0.008482849216482433,0.022680347738867516,0.007261068752181613,0.01275706067477719,0.006635256467422378],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":97,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":37},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07293646500329487},{"status":"feasible","best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true}],"bits":[1,0,0],"qubo_energy":6},"seed":3767054407,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.2703224476801327,1.1760319665274375],"expected_energy":6.862822284652326,"initial_expected_energy":7.1293509228194845,"history":[7.1293509228194845,7.062090825673662,8.051324339074359,7.539290443246395,7.6738553806351995,6.926072343249356,6.977620290140447,6.92401660488698,6.957407859643431,6.919430541682988,6.92827950068091,6.92550889757538,6.920634441422273,6.916876650475177,6.916537016564185,6.915025457493627,6.913690609498141,6.91226992482849,6.909063771842947,6.909631856735884,6.908223048115131,6.9092732120719,6.908566139510798,6.90771041556615,6.907613705443584,6.907005287685991,6.906411998231289,6.9052431152646,6.902941650585036,6.898487363841724,6.89242946856122,6.890940712557962,6.878250396516531,6.961848388944037,6.905235502236353,6.892545738421784,6.876814566045606,6.876907056468651,6.877370575880609,6.875718083501892,6.875345085221705,6.877027623898336,6.8747514462763775,6.8742276386138235,6.87327803926787,6.87139994488061,6.868539016062744,6.880402523220085,6.884459035089069,6.867537087045765,6.867107785487031,6.86473987734361,6.866147339097172,6.865916282237524,6.8643888766023995,6.864942668114624,6.864001035499272,6.863575666245376,6.862822284652326,6.864324444338265,7.574770898499839,7.490202926925195,7.608454805505725,7.33149968385772,7.9356833755884795,7.386376245533633,7.696247785674441,7.3825849797271115,7.2398486602318215,7.244913286734521,7.244957643579157,7.249324742819763,7.229186219238077,7.2241419022008255,7.212679694465029,7.210349341812783,7.18655938871664,7.214774325515812,7.182529397287911,7.201301380544427,7.171324236065238,7.161431757842803,7.145180074267165,7.150421940382913,7.191817724633089,7.141193771696759,7.13306526673842,7.118695388762594,7.13513258795953,7.122486480022968,7.131494874731392,7.107936038460448,7.110046077777521,7.122335617370979,7.105845041809772,7.110455398508274,7.104518653220918,7.102077534905362,7.09744735075457,7.088451301725877,7.071907071445472,7.063857359668695,7.076835322648315,7.182073229818375,7.038777711159899,7.034840515412765,7.026845448716926,7.011480356764619,6.988570775679388,7.703621848782524,7.107163570892501,6.985542010067551,7.099844988897164,6.969091478957388,6.978932084284348,6.967562523059009,6.971133298374127,6.96735181034593,6.966256936890952,6.964603823277045],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":305,"010":35,"100":172},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09876095499203075}],"circuit_evaluations":217,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.17190318899520207},"direct_metrics":{"exact_objective":14,"optimal_count":1,"combinations":12,"optimal_probability":0.2990771339317265,"feasible_probability":0.9406995758797945,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.5,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.941741161091494,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9966059076890328,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9999884801373846,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999998672927,"uniform":0.9961846700381721},{"shots":128,"quantum":1.0,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":14},{"shots":16,"best_objective":14},{"shots":32,"best_objective":14},{"shots":64,"best_objective":14},{"shots":128,"best_objective":14},{"shots":512,"best_objective":14}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999999980144456,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.528232115421715e-22,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":6,"optimal_count":1,"combinations":3,"optimal_probability":0.6103598056332006,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":4,"hit_curve":[{"shots":8,"quantum":0.999468736461567,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999997177590527,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999203,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":6},{"shots":16,"best_objective":6},{"shots":32,"best_objective":6},{"shots":64,"best_objective":6},{"shots":128,"best_objective":6},{"shots":512,"best_objective":6}]}],"reduced_single_joint_draw_p_opt":0.610359804421298,"diagnostic_seconds":0.004278866996173747}
+{"instance":"n3-s0-r3.json","seed":6,"direct":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":5,"task":"t2","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":5,"end":7,"reserved_end":7,"changed":true}],"bits":[1,1,0,0,0,1,0,0],"qubo_energy":14},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.144949241129181,1.160827683124118],"expected_energy":25.25453638768308,"initial_expected_energy":43.68680424973204,"history":[43.68680424973204,40.0839178366614,38.19114211131654,42.83655237878405,37.948220366816294,39.97236886178641,37.74652630156312,36.6265958850208,34.707356384384155,33.9293861479102,37.79642126709291,32.94233350882712,32.1993235373069,30.98438278065869,29.762497007877997,26.484065386574933,43.167215265369045,34.415306966201,26.176609437579224,31.814096972601476,25.842128561462225,26.39140589402733,26.16738716766907,25.986139210861445,25.69344600461319,25.804584246913098,25.805567186307453,25.693828525964836,25.649333455507808,25.584756301827024,25.457756806171485,25.342527679182254,25.6551455539674,25.774329911872567,25.326440258935314,25.284787289253995,25.324275219092243,25.301083540359116,25.28443491328427,25.280343484349476,25.2777441375099,25.282889726638004,25.273777470552453,25.270659468146444,25.278489729224386,25.268516101285705,25.26532808285833,25.260008364231663,25.264986543428964,25.262811893319714,25.26080900883361,25.261674991469455,25.25992289896607,25.259254399941593,25.258304212292092,25.261041726222416,25.25738470441641,25.25633782244975,25.25453638768308,25.257865100178353,43.63030951858828,34.461172928987885,37.323627822568405,30.686296473348825,48.112523756283366,28.424853533626894,29.16629803620444,29.00237114125782,27.56892395144325,27.68236689845401,27.929305568754835,27.40615461593336,27.508731040092634,27.843217904775166,26.896099152538675,27.00615016012641,27.04996526238915,26.922918703328268,26.81597636627198,26.70206012811869,26.78433659130144,26.604741154449634,26.469653714840177,26.24178624853021,26.46314847878814,26.30460449908604,26.21170847391846,26.283598425407334,26.149414210101742,26.104848924029312,26.05716104734665,25.973555050849896,25.85060806279521,25.73546415842432,25.65258644809279,25.855814096390386,25.68651479665282,25.647642513086215,25.686317407374396,25.642964280082133,25.63664954426824,25.632062538430517,25.635001083549867,25.629854754446775,25.629304384665154,25.632554345731677,25.628601040047855,25.627279661637658,25.624843063676416,25.620541862698516,25.613116637466447,25.608608252258044,25.61061407379416,25.630690867604308,25.6122536557901,25.60290988831695,25.601637846737773,25.60707617402777,25.60036687542756,25.59945274241207],"feasible_probability":0.7980332691072614,"one_hot_probability":1.0,"sampled_feasible_fraction":0.802734375,"counts":{"00010011":21,"00010101":3,"00011001":1,"00100011":63,"00100101":18,"00101001":18,"01000011":207,"01000101":51,"01001001":54,"10000011":48,"10000101":7,"10001001":21},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1449018200073624},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[2,3],"max_component_qubits":3,"component_to_original":[[1,3],[5,6,7]],"components":[{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-1],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":7,"cost":11}],"conflicts":[]},{"qubits":3,"penalty":10,"objective_bound":9,"offset":10,"linear":[-4,-1,-2],"quadratic":[[0,1,20],[0,2,20],[1,2,20]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":3,"cost":6},{"index":1,"task":"t2","resource":"r0","start":9,"cost":9},{"index":2,"task":"t2","resource":"r0","start":11,"cost":8}],"conflicts":[]}]},"best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":5,"task":"t2","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":5,"end":7,"reserved_end":7,"changed":true}],"bits":[1,1,0,0,0,1,0,0],"qubo_energy":14},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":3153149895,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7358529663758875,1.1780226730621823],"expected_energy":0.0011448946656017914,"initial_expected_energy":8.217621168361237,"history":[8.217621168361237,9.03068283772208,1.6154123667182998,5.93103788867298,3.065304552417442,1.9163796429406315,1.2946537990129217,2.1074464682627787,1.1226243908762337,1.0158907809532456,0.855017662190527,0.7304154460200519,0.5008664800624465,0.4866838106430446,0.29363442795175343,0.2652867990949216,0.18367092349860842,0.07146567391482006,0.11791427575923336,0.14928288762552022,0.10417350225152273,0.07514066412493543,0.06250660960207849,0.0533590928076957,0.03872212524845492,0.06726799079415798,0.0691052126398344,0.03523493833509101,0.028723257309084007,0.019048962902690696,0.07574213279141824,0.025697088732257227,0.017942861182482485,0.03232919522694312,0.01597148215063546,0.013301184987257419,0.011830084150128052,0.013779541160625318,0.011019844782188667,0.01025779562427805,0.008803945565886942,0.006201389184815717,0.004781364405737265,0.005412592572680405,0.011957159146825429,0.006105896710013136,0.0027432686014126116,0.0021716202769839167,0.003904609597276665,0.0017716111026697806,0.0014646891614642447,0.0014923665841840802,0.001491417977466332,0.0013668035213733735,0.0013608618719651397,0.0014490766186077567,0.0013658319405502847,0.0012848674569787,0.0011750856788756273,0.0013156395397192651,10.828120960528645,10.027999514835537,2.6616773746989115,3.358365386183974,3.7095895126382996,3.6320739364154813,1.2216047933181058,1.4481070192068024,1.2591699050990146,1.4387406033457029,0.9074984341948519,0.8051575660030774,1.3199779432134116,0.6777890200998961,0.6020282188249794,0.7396701880214326,0.4656237667162404,0.44628909216029317,0.3296443666315134,0.28641566395806817,0.201151990659514,0.19861495232387447,0.0783164555019465,0.35416740925155893,0.18296737714356792,0.05912841584052898,0.17796716123485865,0.06401283700612641,0.05844140371149401,0.06548202434061075,0.05819891159360974,0.0523763393424022,0.04544489801879071,0.03920321512124274,0.03580546747475304,0.029625507817181772,0.02236978778977481,0.015024062284755875,0.009965523093992996,0.030323346515280115,0.007348004092951831,0.008137519474462248,0.009645662622773951,0.0067914924382833945,0.0068277559668024,0.006940699463761495,0.00651403311597863,0.006020393008592275,0.005392456519542455,0.007365822478077659,0.004678009551222564,0.004240896244560664,0.003769015598770583,0.0030974818778223582,0.0024697936677980205,0.0019671034908180225,0.002985074206152643,0.0015785524589246635,0.0014659559401638224,0.0011448946656017914],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08559684199281037},{"status":"feasible","best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true}],"bits":[1,0,0],"qubo_energy":6},"seed":4186225163,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.808483418203228,1.1758450838715666],"expected_energy":6.825869464781755,"initial_expected_energy":7.8035503020363155,"history":[7.8035503020363155,7.835862370700019,8.192964813087043,7.487876019321578,7.827765140298612,7.486619724319295,8.099802207909175,7.702653568742547,7.6449733296100035,7.4976184717196634,7.55276394726174,7.4779514743083,7.469618421506761,7.485088326946364,7.461373225995371,7.453563586779922,7.469802127176992,7.443792206235679,7.436985449005611,7.456831734812637,7.429810151518216,7.424562468570995,7.4134413896594715,7.397120317899666,7.434040411191553,7.449580562850757,7.389763981040416,7.381285462670905,7.369563542300659,7.345780782775277,7.297648161839501,7.213555937019539,8.15138679499009,7.622317358664567,7.339592996817352,7.210205270323234,7.301737730235677,7.191960624925912,7.195350833396258,7.18949268639359,7.1948577560017695,7.1877108571586135,7.184975891727944,7.18545006698025,7.184582866962515,7.183444246168902,7.181242982202476,7.17714419982733,7.184491102818281,7.174561463435917,7.170012596321298,7.161172167152515,7.144793058585521,7.119082213963626,7.139195110586304,7.274396626232227,7.107687593828388,7.124992807261409,7.114388071786149,7.10174518685771,7.110371021572895,7.0658483537027745,8.155961254730638,7.419415025306517,7.7799430406812675,6.871410119100223,6.881743376076644,6.870458730348108,6.9194409576905525,6.8485310506438255,6.859847246433398,6.847699950283092,6.851206612391907,6.847579145727897,6.846703022053925,6.846112261820014,6.845695775127886,6.845388813139158,6.845046679853178,6.844630607509492,6.843868765722281,6.843492043640044,6.842689862886642,6.842267038561899,6.840685623932762,6.841747200560579,6.840401335801339,6.841798344501141,6.840185199978707,6.839815250712105,6.839134563353179,6.837974488845482,6.838289081518852,6.838541313024946,6.838287496658175,6.838245034035374,6.837637461245285,6.83765349884936,6.837790864176645,6.837361577323084,6.83691685164925,6.837452915060561,6.836486765045722,6.836146173603868,6.837144037431331,6.83570199605483,6.835445479111977,6.83514611339021,6.834649870429558,6.837099509831148,6.8343823029600514,6.833807496785534,6.832605358031813,6.830150175611942,6.826154720139029,6.886416161488821,6.8764266825041584,6.832780690503906,6.825869464781755,6.831041707709304],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":330,"010":46,"100":136},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09084576800523791}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.17665778398804832},"direct_metrics":{"exact_objective":14,"optimal_count":1,"combinations":12,"optimal_probability":0.1283693473349335,"feasible_probability":0.7980332691072614,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.5,"shots_for_95_percent":22,"hit_curve":[{"shots":8,"quantum":0.6668345501764247,"uniform":0.5014697532613109},{"shots":16,"quantum":0.8890007830438548,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9876791738351226,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9998481972426149,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999769559228,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":14},{"shots":16,"best_objective":14},{"shots":32,"best_objective":14},{"shots":64,"best_objective":14},{"shots":128,"best_objective":14},{"shots":512,"best_objective":14}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9998959186667635,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.4123498337802474e-18,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":6,"optimal_count":1,"combinations":3,"optimal_probability":0.6365521425975902,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.999695535330624,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999073012651,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999915,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.440892098500626e-16,"independent_samples":[{"shots":8,"best_objective":6},{"shots":16,"best_objective":6},{"shots":32,"best_objective":6},{"shots":64,"best_objective":6},{"shots":128,"best_objective":6},{"shots":512,"best_objective":6}]}],"reduced_single_joint_draw_p_opt":0.6364858894019141,"diagnostic_seconds":0.0030913649970898405}
+{"instance":"n3-s0-r3.json","seed":7,"direct":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":5,"task":"t2","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":5,"end":7,"reserved_end":7,"changed":true}],"bits":[1,1,0,0,0,1,0,0],"qubo_energy":14},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.44343744771308,2.869567277839129],"expected_energy":20.99144078196794,"initial_expected_energy":44.549913736577466,"history":[44.549913736577466,37.33562682882549,39.68127779043664,36.80079095778165,43.78564322561017,29.86422041300399,36.86545962697811,34.86559750936149,30.682963831567562,31.143279940643836,29.493528887469495,28.914042286442204,28.196545179413565,27.39680192635894,26.828276098655678,28.374101846182015,26.63473193478159,26.48380136276804,26.924121988418698,26.308604393308435,26.23302066852766,26.12171812694507,25.941884598504146,26.30683805000343,26.139257848894843,25.97878041461746,25.898947011549353,26.06406402168144,25.855139458515332,25.82265532372342,25.763121052117384,25.70319053664498,25.71415602103407,25.802631808442193,25.697572710499266,25.714664820460904,25.692791546113277,25.6841106128618,25.670491691708996,25.71436247832683,25.665200656442778,25.64970082999554,25.62924907779589,25.613192003675533,25.604708947567964,25.606133187960133,25.622422820275958,25.607468552834064,25.60197479409841,25.601395396760882,25.6087590324017,25.599854726994504,25.599369601203506,25.59853544912099,25.597233047621295,25.59864984938606,25.599768491445722,25.59779286331952,25.597107423625516,25.597252367429302,25.927779268745752,31.110519531666903,45.54878640687052,37.06332875977641,24.05741437301723,28.64601155887531,25.483298927996387,23.084078190893997,26.212090486962467,22.29800551060865,21.452988056173076,21.312591137529814,22.072842631131778,21.194778215257585,21.14366028180786,21.1168059129813,21.055293201249818,21.00627777630853,21.21201891171075,21.224913762775174,21.00006041050008,20.9998663643537,21.01778534125137,20.992831390302843,20.996730794486933,20.9929557680773,20.993129975194357,20.99269339445717,20.993326935019,20.992619589994693,20.992506022746056,20.992356941118665,20.992666007365823,20.992288277560547,20.992187972970903,20.992107920685363,20.9922489108105,20.99205534160845,20.991970694320123,20.99181952406743,20.991644017247328,20.991893050349653,20.992017807151285,20.991607539884928,20.991573376917373,20.991557609426813,20.99168296644958,20.99152796259584,20.991515881185823,20.991499347185286,20.99147369634055,20.991616669945184,20.99149056142154,20.991470175927585,20.991494306797673,20.99146209290978,20.991458038067723,20.991452526236024,20.991447482648056,20.99144078196794],"feasible_probability":0.9397140639097756,"one_hot_probability":1.0,"sampled_feasible_fraction":0.943359375,"counts":{"00010011":10,"00011001":11,"00100011":159,"00100101":4,"00101001":90,"01000011":121,"01000101":2,"01001001":59,"10000011":41,"10000101":2,"10001001":13},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12841330500668846},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[2,3],"max_component_qubits":3,"component_to_original":[[1,3],[5,6,7]],"components":[{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-1],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":7,"cost":11}],"conflicts":[]},{"qubits":3,"penalty":10,"objective_bound":9,"offset":10,"linear":[-4,-1,-2],"quadratic":[[0,1,20],[0,2,20],[1,2,20]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":3,"cost":6},{"index":1,"task":"t2","resource":"r0","start":9,"cost":9},{"index":2,"task":"t2","resource":"r0","start":11,"cost":8}],"conflicts":[]}]},"best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":5,"task":"t2","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":5,"end":7,"reserved_end":7,"changed":true}],"bits":[1,1,0,0,0,1,0,0],"qubo_energy":14},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.715054197683842,1.178107423268779],"expected_energy":4.918076330670122e-06,"initial_expected_energy":2.226699388726585,"history":[2.226699388726585,2.1687217140983845,10.7501367766209,3.0237458705447575,7.258538015076918,0.539971687813236,0.12621344783830812,0.812721726831739,0.10398684364010732,0.29375359547311825,0.09782497235764934,0.05548262322105626,0.009815609990490273,0.27793672710317613,0.05886380497933319,0.056850602625007046,0.014457037154002511,0.001733116998840184,0.004528174564700765,0.0022879662001574663,0.0023604767128715875,0.0014123065942413383,0.0008025313649060657,0.00031143751042425063,0.001673695252111181,0.002198235752415868,0.00022215893026438286,0.0005298285108315653,0.0007380808995914287,9.289182891895611e-05,8.899372107619679e-05,6.975380062689906e-05,5.415828378983791e-05,3.184717270752907e-05,3.667257404776776e-05,4.797837680947243e-05,3.838575259961172e-05,3.8030302006640934e-05,3.107643570343751e-05,2.8530765523895728e-05,2.649059463737631e-05,3.108137157329484e-05,2.4371713599223556e-05,2.3561446488452e-05,2.171087330954101e-05,1.8327139070953042e-05,1.326197728539158e-05,2.5173003930964367e-05,2.746031719109171e-05,1.1622164914113308e-05,1.1833635852705246e-05,1.0628733470680607e-05,9.840792876498823e-06,9.560796883286837e-06,1.7905031179445323e-05,7.248715594039042e-06,6.067416835898668e-06,5.424683008532484e-06,6.787587885911832e-06,4.918076330670122e-06,1.9506120970956975,1.8621658118167412,10.660594899188316,3.3684238408377447,6.896716536419987,1.8475417377552188,0.41461841193294463,0.2235802712672508,0.4545116823478277,0.1938126404071837,0.3709394965720799,0.10317520931506469,0.23811983567767506,0.0799010812804427,0.08024503594401966,0.07583203173152345,0.07892485772026059,0.07882763105907518,0.0710721629583602,0.06678630928833337,0.07574540402808394,0.06272223351261755,0.059014689574581544,0.052757115495718175,0.06202215972822596,0.04837315771916823,0.04236269647354539,0.03326563147267043,0.09192032917545974,0.03129648248439343,0.025394208034131904,0.015077766961872434,0.0033781346704859733,0.04689936720664824,0.018825514784029777,0.0070500454962831565,0.003924168136412105,0.00396490440689101,0.0031364226978900546,0.003641969711239614,0.002875531637575462,0.002671811449172378,0.0023123175628566098,0.0025263784808608634,0.002182287324051686,0.0027683480849296444,0.001968518550720269,0.0017913457841352753,0.00148284977072778,0.0010247403406899495,0.0007297344079179033,0.00030767420012185883,0.00017425899837264055,0.0025709205115525373,0.0021005230267393286,0.0002040274905490505,1.7877162739794254e-05,0.000400890760776246,1.227681626907774e-05,4.619738605792968e-05],"feasible_probability":0.9999999999999999,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08404964899818879},{"status":"feasible","best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true}],"bits":[1,0,0],"qubo_energy":6},"seed":3618983171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.749097224517167,1.1845514665439518],"expected_energy":6.828441955074798,"initial_expected_energy":7.233174875654735,"history":[7.233174875654735,7.1925671102460065,8.131716585715282,7.2827912676405875,7.8532692916429045,6.932907345740611,6.993915633844937,6.930746891925493,7.192145213432562,6.899404002327376,6.861418593592145,6.855350738941205,6.849841865039454,6.852352387730173,6.851964745651465,6.850238394674156,6.851027978027005,6.849706191652652,6.849344664813866,6.848914528680783,6.849505320619544,6.848464843857082,6.848387915688916,6.848835164456416,6.847991855638557,6.847219349703192,6.845718514831624,6.842908716176257,6.84691966120525,6.85392731833581,6.844118481740152,6.8426494189774605,6.843528575627813,6.842479991815159,6.842155826765439,6.8423434244154295,6.8419141678856565,6.841949877016161,6.842120334609827,6.8416160950286455,6.841517542516492,6.843253587508633,6.840983857429763,6.840604543817468,6.840074745937084,6.839341194955674,6.838207634431569,6.836029493321401,6.830889877094016,6.834217378280561,6.875536977509513,6.829664337805324,6.840780113879868,6.831600974024905,6.830097108454213,6.829545916873737,6.830002554764983,6.829237217915486,6.829001942838172,6.828441955074798,7.690047680309313,7.705330905405814,7.233128239057412,8.165274072025753,7.41155045420229,7.261950937686122,7.233711134493902,7.235847502311482,7.214926415102556,7.217289618243809,7.21235955075082,7.215785089798827,7.208897285526932,7.205999042122487,7.200852376071908,7.189707496765262,7.167895870601789,7.134254790708112,7.345782530854436,7.493565586259832,7.141924109011936,7.132756623895416,7.1696814244236915,7.12634916500017,7.118810623619448,7.115282954549661,7.123198927555452,7.112511191235581,7.109908905629442,7.104822658564839,7.094990455072711,7.07995251322555,7.067725344129325,7.048950305786158,7.16555383268546,7.185937969711826,7.064083629421132,7.0146472310522014,7.019131538356183,7.00921568311956,7.006157223644349,7.013410413579352,7.002720531061045,7.000761432044797,6.998671018525766,6.996222547377339,6.991569762208888,6.989582390850828,6.984648395740974,6.984045113510952,6.975929789513334,6.977044338405615,6.977562838926607,6.977436373915995,6.974231941952539,6.9749342610828915,6.974645769465278,6.973564106796995,6.972789916612715,6.97421317741853],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":332,"010":35,"100":145},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08859158599807415}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9999999999999999,"total_shots":1024,"runtime_seconds":0.172860190999927},"direct_metrics":{"exact_objective":14,"optimal_count":1,"combinations":12,"optimal_probability":0.29951192476106586,"feasible_probability":0.9397140639097756,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.5,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9420296434183253,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9966394377577935,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9999887066214163,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999998724596,"uniform":0.9961846700381721},{"shots":128,"quantum":1.0,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":14},{"shots":16,"best_objective":14},{"shots":32,"best_objective":14},{"shots":64,"best_objective":14},{"shots":128,"best_objective":14},{"shots":512,"best_objective":14}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999995529021517,"feasible_probability":0.9999999999999999,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6427145220813087e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":6,"optimal_count":1,"combinations":3,"optimal_probability":0.6339500513513009,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9996776536164849,"uniform":0.9609815576893767},{"shots":16,"quantum":0.999999896092809,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999892,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":6},{"shots":16,"best_objective":6},{"shots":32,"best_objective":6},{"shots":64,"best_objective":6},{"shots":128,"best_objective":6},{"shots":512,"best_objective":6}]}],"reduced_single_joint_draw_p_opt":0.633949767913597,"diagnostic_seconds":0.002923386011389084}
+{"instance":"n3-s0-r3.json","seed":8,"direct":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":5,"task":"t2","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":5,"end":7,"reserved_end":7,"changed":true}],"bits":[1,1,0,0,0,1,0,0],"qubo_energy":14},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4547776850689076,2.869598251733647],"expected_energy":20.99330622207342,"initial_expected_energy":29.709520558654336,"history":[29.709520558654336,31.574019908999908,33.70687820993756,57.082535992126175,27.328393083186743,32.651378525930426,28.481433906616367,27.48539457226597,27.049092844735004,26.75142657806051,27.004539876840504,26.61530289910227,26.51847106016503,26.385448634229853,26.15462925362955,25.779319482536646,25.879391944239803,26.61398525746183,25.759762730567527,25.60565642949792,25.394319512929275,26.134795784062707,25.43906253739697,25.424763281853373,25.419110176459306,25.363294179072973,25.363156636750787,25.37197127371255,25.366531208786757,25.354027303787284,25.34172394999978,25.357510116991858,25.334533070110503,25.327551684137685,25.315547877691316,25.294895344334826,25.275729445961545,25.258282379732506,25.327725715280252,25.32038014405269,25.256592470921625,25.253422538870815,25.26042091937577,25.255868584268985,25.253664333863117,25.25303079486801,25.25245175718952,25.25220531720908,25.25299154961288,25.251957106232602,25.251818788165213,25.252180876085838,25.251745697424873,25.251602397802266,25.251478314193683,25.251394684869084,25.25120420573991,25.251040401645277,25.250932445351594,25.2505699548799,38.796166200610706,36.62957094600442,36.39215606564402,36.58165476779283,29.57386403861698,36.51309399507351,32.96294109255342,24.140786044138363,26.65467349410634,25.922187938405504,25.022391434364096,22.70306074076924,22.23675100652622,21.537268704153,21.874436959686317,21.459112734111304,22.084604761011924,21.25662537074264,21.246957154102155,22.32405958853842,21.13141149249997,22.082231387760544,21.024501907646503,21.050799509273517,21.058367295525382,21.027142035851604,21.02747618324469,21.022614747444628,21.035460309515756,21.018538983918987,21.015773320627304,21.01340547109483,21.014790679647064,21.01196226721661,21.013371156597948,21.011339952517694,21.010120731237414,21.007863174504152,21.004175645372005,21.00362089529377,20.99702388998034,21.004582816160116,21.003431043297898,20.997814799369664,20.997165137589217,20.996578823075396,20.99628810581328,20.996571151950505,20.99609456975103,20.99575432860863,20.995275819964807,20.994892909765454,20.995308893730424,20.994661663737052,20.995018864157664,20.99445781349307,20.994270458683857,20.99391960645205,20.99330622207342,20.993613703323177],"feasible_probability":0.9404218259454292,"one_hot_probability":1.0,"sampled_feasible_fraction":0.935546875,"counts":{"00010011":19,"00011001":9,"00100011":166,"00100101":2,"00101001":83,"01000011":106,"01000101":3,"01001001":70,"10000011":39,"10001001":15},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1121737150097033},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[2,3],"max_component_qubits":3,"component_to_original":[[1,3],[5,6,7]],"components":[{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-1],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":7,"cost":11}],"conflicts":[]},{"qubits":3,"penalty":10,"objective_bound":9,"offset":10,"linear":[-4,-1,-2],"quadratic":[[0,1,20],[0,2,20],[1,2,20]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":3,"cost":6},{"index":1,"task":"t2","resource":"r0","start":9,"cost":9},{"index":2,"task":"t2","resource":"r0","start":11,"cost":8}],"conflicts":[]}]},"best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":5,"task":"t2","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":5,"end":7,"reserved_end":7,"changed":true}],"bits":[1,1,0,0,0,1,0,0],"qubo_energy":14},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":3257320810,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.6636869706281345,1.1781603001770147],"expected_energy":0.00575507691116385,"initial_expected_energy":8.216932124606606,"history":[8.216932124606606,8.69864606122521,7.79531644453546,3.07737120584856,6.719899192863997,3.996405105220725,3.708599601784717,3.9399536702323923,2.8675987834232317,2.457877355893375,1.882664080640311,2.072624243463657,1.6834859735119103,1.5140924488160854,1.3077667024381594,0.9884352740105162,0.9365488837404332,1.7552389823620502,0.7133491084349253,0.6065881287306779,0.5163092530822169,0.5669053968923825,0.46740305920116004,0.47208704368586624,0.45574587154314844,0.4353847684278358,0.40551896403637533,0.4561283051892003,0.3620988394109978,0.32769330059752927,0.4189110127417548,0.29690528767249874,0.26008579947247495,0.20821829814321652,0.38124030307509654,0.17266173843163282,0.157351255022064,0.22023951306212108,0.13926491649896217,0.1256777759668958,0.10096393964367802,0.10301539840772932,0.10261525906507801,0.09554410810492214,0.09705810479213739,0.09889068342273576,0.09000263124620617,0.0835511671890617,0.08735353514052886,0.07933928501149204,0.0764109027063102,0.07717606540825422,0.0723571242169202,0.06899983508684822,0.06690932602666669,0.057863595207081925,0.05166985420418054,0.04494208705614493,0.033655631806787684,0.029783551189789346,4.088464937441646,4.111432331374265,10.823884234046721,1.35216655645019,10.359347915066735,0.40444276828222686,1.0379362737191609,0.7569187396986325,0.47765385368299484,0.47785810876766915,0.3736797894814962,0.5670075167144143,0.32025114956850687,0.27596771081947863,0.20729221305786427,0.3723778442951068,0.21504881409616988,0.19799608339511526,0.22750548001617432,0.18315245686546391,0.16212468037840308,0.1602420917096585,0.15462380078076968,0.1495103039159509,0.14076044411786406,0.13426726558939556,0.18640159967106507,0.13263987283752565,0.11564373407090547,0.10482555752367198,0.09523987487177905,0.0876510458690108,0.07884748636200548,0.06318449984245453,0.07192051073011721,0.06385663114588011,0.0596563326437152,0.05959041824111602,0.06751687548800533,0.053229254852221325,0.045041652819353004,0.04084814214603674,0.03515384081800149,0.029978708689453105,0.029413298071737,0.020270105866114344,0.020280063257434814,0.020950628287699558,0.021981037548136146,0.018138894987894918,0.01786495717641965,0.020895174317600018,0.01560382754043337,0.012117757446169773,0.006346166925312966,0.029778160682721464,0.02059822076273113,0.010150056884115837,0.00575507691116385,0.00656273603103301],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08773637701233383},{"status":"feasible","best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true}],"bits":[1,0,0],"qubo_energy":6},"seed":631391383,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.151453289968131,1.1841343396357529],"expected_energy":6.873841426753239,"initial_expected_energy":8.47085319772336,"history":[8.47085319772336,8.558525018587558,7.352827814242529,7.25491681271369,7.320463278256636,8.029671942918975,6.97684801014778,7.35090902627265,6.966561780429986,7.0355583186013195,6.974234960899852,6.968293843650216,6.966945014679791,6.968137223820914,6.964475953136937,6.963880899429171,6.966375602871834,6.963476592407785,6.962720481645848,6.961253474148105,6.958392092601766,6.9528191864632145,6.9429743408877185,6.961120427321781,6.988450406156856,6.944432231665752,6.943186984814873,6.944064408325575,6.941466570338133,6.940884544770474,6.94235813501154,6.94059742067078,6.939928975878065,6.938678902171871,6.938129828947895,6.934809439450734,6.933376917765022,6.930391115542955,6.926834710435827,6.921174492535204,6.921941076502302,6.926141618384392,6.922274711066652,6.923371142569784,6.9202964102968885,6.91905093261418,6.916563354396093,6.9117542771203695,6.902763420300284,6.90190800887329,6.887005353770048,7.067965982245987,6.9006405904628245,6.88614343573172,6.9108329762323475,6.8810339830803615,6.88061011978113,6.8793322691419725,6.878199337825674,6.876129944814567,7.137705445947336,7.063023979608986,7.683093916667046,8.192308963127147,7.161599726301137,7.058354210559836,7.250493336764585,7.036945662661648,7.013518496954675,7.011694315662677,7.030766210016669,7.005598394019982,7.000927742417625,6.993475532976821,6.981311989271295,6.967019829494374,6.958577706547862,6.907555631319974,7.318315813884427,7.120345839503242,6.962309301953762,6.916124039216378,6.909703736344071,6.909311556378892,6.906552864991679,6.907491508575943,6.906203318969249,6.905529393869584,6.904466554893635,6.902197959167141,6.898339145286526,6.903000851839623,6.909972175095186,6.896938447282322,6.897836594859173,6.897220450730635,6.895924688805206,6.895832398682755,6.895096389151787,6.894457370867887,6.893388677793883,6.8914103257764445,6.892904957867007,6.891269498690953,6.889718811033019,6.8873663952695985,6.8843471176425926,6.880986779947418,6.879611195038635,6.90214615048735,6.875730619049053,6.876155608651949,6.875426864182231,6.875615013649565,6.874917001592634,6.874472680908756,6.874576645695225,6.874089308722134,6.873841426753239,6.873970229492144],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":313,"010":38,"100":161},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.0888303329993505}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.17679360498732422},"direct_metrics":{"exact_objective":14,"optimal_count":1,"combinations":12,"optimal_probability":0.2988453124170116,"feasible_probability":0.9404218259454292,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.5,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9415868354482713,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9965879022070526,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9999883575886513,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999998644542,"uniform":0.9961846700381721},{"shots":128,"quantum":1.0,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.551115123125783e-17,"independent_samples":[{"shots":8,"best_objective":14},{"shots":16,"best_objective":14},{"shots":32,"best_objective":14},{"shots":64,"best_objective":14},{"shots":128,"best_objective":14},{"shots":512,"best_objective":14}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9994768111898943,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":6.830473686658678e-18,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":6,"optimal_count":1,"combinations":3,"optimal_probability":0.6035052839308344,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":4,"hit_curve":[{"shots":8,"quantum":0.999389199713422,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999996269230099,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999998608,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.4637067577342995e-32,"independent_samples":[{"shots":8,"best_objective":6},{"shots":16,"best_objective":6},{"shots":32,"best_objective":6},{"shots":64,"best_objective":6},{"shots":128,"best_objective":6},{"shots":512,"best_objective":6}]}],"reduced_single_joint_draw_p_opt":0.6031895367194421,"diagnostic_seconds":0.0031048259988892823}
+{"instance":"n3-s0-r3.json","seed":9,"direct":{"status":"feasible","best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":5,"task":"t2","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":5,"end":7,"reserved_end":7,"changed":true}],"bits":[1,1,0,0,0,1,0,0],"qubo_energy":14},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.119729602278047,1.1603872390820829],"expected_energy":25.249869098792935,"initial_expected_energy":31.195782845514337,"history":[31.195782845514337,31.03232965805214,39.65717919597132,30.735726405233116,58.19076791589012,30.993517144140625,33.687241550097774,26.80753109529396,25.56754140039841,26.59525734788975,25.576712906854297,25.548199601188134,26.02094038438452,25.44623724349425,25.39858316014862,25.357934520892446,25.368291774400348,25.345350137963823,25.363377536791294,25.341367244532886,25.33421846622987,25.323938033462863,25.325123137690795,25.32006999346081,25.31484129078175,25.31394384300891,25.322200975897687,25.307194129771755,25.29598761746621,25.277747245287795,25.36572728985572,25.2992206061724,25.28412222739115,25.27524191732064,25.279701057751808,25.27144090635152,25.267981602475988,25.264049611870615,25.259016883233272,25.257515821618664,25.277197647963064,25.254166629777416,25.25438768794745,25.25387694102486,25.256102495453963,25.254684744991533,25.2541586148534,25.253357709986258,25.252765647632597,25.252147694018866,25.25159971165524,25.25092192387536,25.250582394425283,25.249918165661878,25.251009179488808,25.252311476867042,25.249869098792935,25.25045973128295,25.24990217814836,25.249960804057004,36.61135752554698,37.06011159147744,39.26265362441063,46.21055331092081,34.75130835094778,38.869910942735586,34.20958829284741,33.87866883571689,33.21100800499762,32.93323700147436,36.60439286408565,32.75286612883961,32.027737906993806,31.657987684988,31.98299086774454,31.48383562237059,31.310798894448002,30.950042649451674,30.222035449642497,28.844689660414865,27.182466619675925,28.63485265385485,33.3217988270189,27.66631127542093,26.364225791848405,26.525837969630093,26.652335916986466,26.33271181410375,26.492067325373913,26.30985692970594,26.24381579462795,26.135850855579278,26.3192396209253,26.0553197346109,25.947178431037813,25.764758887538825,25.53169504958895,25.501630481527858,25.29957387755404,25.599370739326943,25.59844277404177,25.315886082900647,25.316707456680863,25.311812850619898,25.288590667167824,25.280801255211152,25.299591875211277,25.275577580847937,25.27254690143931,25.26891061996537,25.262945859314957,25.259010217695423,25.26391275712263,25.278835482108995,25.25424989831902,25.253344013016836,25.252045990711473,25.25166286456833,25.250885586810973,25.253051982018675],"feasible_probability":0.798420207741124,"one_hot_probability":1.0,"sampled_feasible_fraction":0.81640625,"counts":{"00010011":22,"00010101":5,"00011001":3,"00100011":59,"00100101":12,"00101001":24,"01000011":206,"01000101":42,"01001001":60,"10000011":50,"10000101":10,"10001001":19},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11331001900543924},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[2,3],"max_component_qubits":3,"component_to_original":[[1,3],[5,6,7]],"components":[{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-1],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":7,"cost":11}],"conflicts":[]},{"qubits":3,"penalty":10,"objective_bound":9,"offset":10,"linear":[-4,-1,-2],"quadratic":[[0,1,20],[0,2,20],[1,2,20]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":3,"cost":6},{"index":1,"task":"t2","resource":"r0","start":9,"cost":9},{"index":2,"task":"t2","resource":"r0","start":11,"cost":8}],"conflicts":[]}]},"best":{"feasible":true,"objective":14,"raw_cost":14,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":5,"task":"t2","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r0","start":5,"end":7,"reserved_end":7,"changed":true}],"bits":[1,1,0,0,0,1,0,0],"qubo_energy":14},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":747784396,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7255091341661397,1.1781025105619114],"expected_energy":0.0003279483553221656,"initial_expected_energy":3.1694007262276447,"history":[3.1694007262276447,3.8060662564699896,10.62968207723525,2.2352683586237525,9.948944820656502,3.1094399768507426,3.322666410095638,0.6811552505514872,1.1363721585381195,0.8812643015944243,0.9050003275889553,0.37172555583200556,0.2700364513046155,0.375576210999931,0.2255259452998498,0.4247559692570488,0.1848240420169248,0.16449174482310353,0.13258025813072474,0.0928159560983624,0.07055818158197943,0.02728274830625041,0.030956447547679802,0.14358028166099526,0.044197410860894175,0.03146451846349984,0.026041778701810916,0.0178682636436975,0.030313739168112204,0.019974790649424867,0.01708390699753258,0.017493239752289398,0.01813128436507882,0.015680530922849628,0.015440421416570677,0.019188385276338926,0.013036508870160125,0.01167984489171761,0.010100149890769121,0.007628358593268313,0.008690690665424591,0.0081359533761056,0.007306394073082869,0.008074334045999918,0.008502987005264558,0.0061669361758677505,0.0074881573649826175,0.005584186183716875,0.005128870686148177,0.004576346835825267,0.0036220930925004273,0.0024802304793669723,0.0016068810930618524,0.0006192575339878625,0.0013357013264691491,0.0027748830878950204,0.0023383335019692107,0.0003279483553221656,0.0003972707407654429,0.0003615953799839935,10.01186917927759,8.244198304096097,4.872512197206433,3.916628338806726,5.767152893687434,5.0268007769551115,3.980788197901907,3.7901934534695116,3.563753559805476,3.2506255269044115,3.373101493235038,3.135825581329667,2.9423569169784685,2.734459023477224,3.29243421027463,2.4863100015083175,2.2650626310936945,1.8730650914763656,1.185775188707137,1.3965477775006923,2.2879432472839385,1.2215369757787908,0.9540226171419551,0.8851815195426052,1.82535190185282,0.869521524253243,0.6167892088535893,0.5319667519537983,0.4263418225530722,0.3584364010534493,0.2711829266408938,0.20368421717688717,0.05715782682587723,0.19375773898161908,0.5261679841992812,0.08066632624641788,0.12969369881326312,0.1254147740107271,0.08513438385682655,0.05601559367472156,0.048949216961243394,0.04832721150962661,0.05501039588438128,0.04885119873081914,0.0431096270791117,0.03795501444319099,0.04529796187025193,0.035062925816071275,0.03304160064298565,0.03013700755815665,0.0254450095479145,0.017019798021392342,0.007239257864781672,0.02270738386016665,0.03620407298263985,0.005766572234587888,0.0044447900327130455,0.00442212009484845,0.007964936754703486,0.0027740138507619597],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08066978400165681},{"status":"feasible","best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r0","start":3,"end":4,"reserved_end":4,"changed":true}],"bits":[1,0,0],"qubo_energy":6},"seed":4053640108,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.225124832978369,1.1878416284549564],"expected_energy":6.867191167183123,"initial_expected_energy":8.310530990636398,"history":[8.310530990636398,8.371928445182927,7.074480022825258,7.590831789584717,7.230045523365321,7.174196300247215,6.977428826724844,7.029808144309271,6.98068203298486,6.996073380109243,6.9767488514457785,6.966543758671328,6.98610694450843,6.975792971266987,6.975089390685326,6.970350245885014,6.966137766232228,6.964207443689609,6.960555330007529,6.953716494942138,6.941875095899377,6.939266077024316,6.9170768290576365,7.168140252536066,6.940044190555884,6.915483351730245,6.950784287100005,6.908451910284307,6.908384054437115,6.90632643750855,6.904515556433154,6.901504794715489,6.895941290957162,6.885559912224819,6.915912832579274,6.954445864112239,6.895452576709802,6.8902724281691015,6.886397986873596,6.885092068142681,6.883808205781021,6.881521921929162,6.880154552679889,6.8775470759515,6.891168269115217,6.883816505904614,6.8790556662242945,6.874690568872196,6.874234646376449,6.873196911275228,6.8729375858271595,6.876059666793413,6.872510261474387,6.8718128650173576,6.870947995541959,6.8701746549677445,6.870987900696495,6.869583913869466,6.868740580079427,6.867191167183123,7.882805300461577,7.940762601109708,7.31077307304603,7.617563251371893,7.479727496628077,7.397304367776686,7.14047789061811,7.2520302551457085,7.166200431245396,7.16791846985684,7.10044029573929,7.107850310223382,7.111789198076941,7.102785974545713,7.114454261047049,7.098905550865113,7.09314267295841,7.0868207245003525,7.089395401528925,7.084427690001715,7.0830194878562,7.085523431274878,7.082466125170084,7.0813380896871285,7.079298707851935,7.075611094736496,7.068502115309647,7.077042374836521,7.068874140095721,7.070843385265631,7.065072386418421,7.06176689848573,7.06106589980484,7.050439679139947,7.053697630372259,7.049173759137888,7.0557145212581585,7.0483518331393835,7.046192711181291,7.044457939124225,7.046491752745959,7.042892032419516,7.042429241390961,7.04522273463597,7.041267620393323,7.039221229074146,7.035895622370374,7.02841087798211,7.013887623375055,6.9909620490991955,7.180977292910565,7.25462209731452,7.002003348768068,7.008277102827667,6.994719106152761,6.986096878170932,6.983326681264714,6.987786184366505,6.981703742841585,6.980046830372498],"feasible_probability":0.9999999999999999,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":1.0,"counts":{"001":311,"010":36,"100":165},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08921074800309725}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9999999999999999,"total_shots":1024,"runtime_seconds":0.17012038300163113},"direct_metrics":{"exact_objective":14,"optimal_count":1,"combinations":12,"optimal_probability":0.12585967323673372,"feasible_probability":0.798420207741124,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.5,"shots_for_95_percent":23,"hit_curve":[{"shots":8,"quantum":0.6590825367383898,"uniform":0.5014697532613109},{"shots":16,"quantum":0.8837752832432686,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9864918152148175,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9998175289438094,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999667043137,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":14},{"shots":16,"best_objective":14},{"shots":32,"best_objective":14},{"shots":64,"best_objective":14},{"shots":128,"best_objective":14},{"shots":512,"best_objective":14}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999701865131526,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":6.776263578034403e-20,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":6,"optimal_count":1,"combinations":3,"optimal_probability":0.6076218902417525,"feasible_probability":0.9999999999999999,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":4,"hit_curve":[{"shots":8,"quantum":0.9994381269970537,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999996842987285,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999003,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":6},{"shots":16,"best_objective":6},{"shots":32,"best_objective":6},{"shots":64,"best_objective":6},{"shots":128,"best_objective":6},{"shots":512,"best_objective":6}]}],"reduced_single_joint_draw_p_opt":0.6076037749145196,"diagnostic_seconds":0.0028770600038114935}
+{"instance":"n3-s1-r0.json","seed":0,"direct":{"status":"feasible","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":13,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,1,0,0,1,0,0],"qubo_energy":25},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7211195102114811,1.174229902907813],"expected_energy":44.17332309498306,"initial_expected_energy":54.40619444377894,"history":[54.40619444377894,55.40283600887135,50.15563916694948,54.24671045289489,48.48403102119046,51.08268715077192,48.398500291311514,50.37271699681888,48.32155558218611,48.317120610443475,48.12651997818722,48.408428607927775,48.20280137169458,48.1596774304536,48.20539296604191,48.10795373213786,48.117795616419976,48.10040901544505,48.08484954886699,48.05378656156011,47.99085286860009,47.86393992630353,47.62142704059508,46.86448025816814,48.43970848158397,48.38798375090389,46.60505156343508,46.63733985987776,46.6279222850376,46.367616016738594,46.038861593923144,46.82154138996652,45.76532990497628,45.52378616095187,45.05791128858352,44.475449734730816,45.6633738679641,45.3217131426381,44.39899999029056,44.347824909305636,44.310748257824805,44.637467355992236,44.237480895719294,44.23693904161796,44.215443446944676,44.2002107462144,44.184195959673886,44.186756677464665,44.186396488989715,44.19023306180135,44.1813459040587,44.18446039209355,44.1800717779016,44.17885640543823,44.17682573418399,44.17542451897127,44.17569279712129,44.17928218982044,44.17629454680834,44.174260135127206,57.14252560658435,53.824415421861254,53.27334829354925,55.30742924833627,52.21253341065998,46.25012955570283,52.53180623445162,52.41621009942453,45.716792674041834,52.09934752662268,44.520371874268584,45.77879066998219,44.7638360433913,44.64383810105778,44.45965996805883,44.64224078500448,44.606030070959285,44.44479538696125,44.39524895013677,44.37516598116618,44.34175016299842,44.31186685923718,44.265902288595086,44.22535449858382,44.194732428146246,44.20312433810457,44.20331517631724,44.19985665333828,44.194245084899116,44.18958934798147,44.18347411822545,44.17912240395741,44.17488646888474,44.17403725057214,44.17921814262305,44.17952194041773,44.173355864475916,44.17387717294827,44.17343924857196,44.173385027049434,44.17334732553742,44.17335565723359,44.173348484657105,44.17334480185269,44.173344713654785,44.17334819824003,44.17334182949187,44.17333767596785,44.17333344946712,44.17332922296936,44.173338275571126,44.17332658581564,44.17332631306933,44.173328360125105,44.173326540895175,44.173325067019654,44.17332488444466,44.173325867689904,44.17332416082484,44.17332309498306],"feasible_probability":0.10904903079218055,"one_hot_probability":1.0,"sampled_feasible_fraction":0.130859375,"counts":{"0001011":11,"0010011":67,"0010101":35,"0100011":36,"0100101":108,"1000011":254,"1000101":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12169597498723306},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[0,1,4],"fixed_cost":25,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":3,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":1,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":13,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,1,0,0,1,0,0],"qubo_energy":25},"components":[],"circuit_evaluations":0,"status":"classical_propagation","feasible_probability":1.0,"total_shots":0,"runtime_seconds":0.0001405540097039193},"direct_metrics":{"exact_objective":25,"optimal_count":1,"combinations":8,"optimal_probability":0.10904903079218055,"feasible_probability":0.10904903079218055,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.125,"shots_for_95_percent":26,"hit_curve":[{"shots":8,"quantum":0.6029634971448714,"uniform":0.6563910841941833},{"shots":16,"quantum":0.8423620154005695,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9751502658114297,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9993824907107574,"uniform":0.9998056809433629},{"shots":128,"quantum":0.9999996186822777,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.3592239273284576e-16,"independent_samples":[{"shots":8,"best_objective":25},{"shots":16,"best_objective":25},{"shots":32,"best_objective":25},{"shots":64,"best_objective":25},{"shots":128,"best_objective":25},{"shots":512,"best_objective":25}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":1,"diagnostic_seconds":0.001580512005602941}
+{"instance":"n3-s1-r0.json","seed":1,"direct":{"status":"feasible","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":13,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,1,0,0,1,0,0],"qubo_energy":25},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.720842113788713,1.1741987480541252],"expected_energy":44.1733222113435,"initial_expected_energy":52.58438499284043,"history":[52.58438499284043,52.67057987376043,48.203214161971125,51.33926256956091,49.90560036189508,49.808285677281,46.13937378824586,46.33950652956489,46.3396592231815,45.82489677627089,45.35885173640828,46.38159177059502,45.06168820006836,44.98531889273257,45.54386668616297,44.62874196201996,44.61240994597451,44.3808900686777,44.29341734681643,44.23057725236017,44.179087642857716,44.29311739153017,44.21052909483203,44.202112960329515,44.18240157877125,44.174445014151694,44.17419451515315,44.177565530044596,44.17352640161412,44.173357557129606,44.17347962768423,44.17344758134356,44.17334097726104,44.173322563752905,44.1733287478747,44.173330366936284,44.17333077886508,44.17333270997326,44.17332269535224,44.173322779961055,44.17332330742373,44.173322264573734,44.173322242814315,44.17332223017337,44.17332224819957,44.1733222113435,44.17332221424482,44.1733222119202,44.17332222587673,48.321867389603796,51.61407671862201,50.188008794833166,51.63248640367054,51.58000756772706,48.881563859960046,47.54820117776955,46.2154632310416,44.998248721146,45.56754810929018,44.80278800731415,44.57673323168791,44.279168778714435,45.16003029993375,44.49553186228477,44.44817208804336,44.335939470182765,44.287052250407086,44.2572414502599,44.25017614055028,44.22603567703525,44.2176490230838,44.20071117786485,44.19308795230895,44.18525632791025,44.18191599824639,44.215344965556625,44.17700546400404,44.17672133885644,44.17467830180577,44.173853348801465,44.174052359218834,44.176535142219464,44.1741083953998,44.17419167747685,44.17390411970432,44.17376186324454,44.17369422523403,44.17370488278129,44.173666055953866,44.173641284972426,44.17360454154611,44.17368510229434,44.17355607080846,44.173519458577154,44.17355140012149,44.1734982385193,44.17349245920874,44.17347105802532,44.1734518145299,44.173418158537,44.17337484600415,44.17338203774673,44.1733934576298,44.17338515400017,44.17336350419343,44.173369832890046,44.17335858510427,44.173355394586316,44.17335061541783],"feasible_probability":0.10902640503524218,"one_hot_probability":1.0,"sampled_feasible_fraction":0.10546875,"counts":{"0001011":10,"0010011":54,"0010101":31,"0100011":49,"0100101":114,"1000011":252,"1000101":2},"circuit_evaluations":109,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":49},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11946434898709413},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[0,1,4],"fixed_cost":25,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":3,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":1,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":13,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,1,0,0,1,0,0],"qubo_energy":25},"components":[],"circuit_evaluations":0,"status":"classical_propagation","feasible_probability":1.0,"total_shots":0,"runtime_seconds":0.00014486598956864327},"direct_metrics":{"exact_objective":25,"optimal_count":1,"combinations":8,"optimal_probability":0.10902640503524218,"feasible_probability":0.10902640503524218,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.125,"shots_for_95_percent":26,"hit_curve":[{"shots":8,"quantum":0.6028828278356396,"uniform":0.6563910841941833},{"shots":16,"quantum":0.8422979515721818,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9751300639216701,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9993814862794598,"uniform":0.9998056809433629},{"shots":128,"quantum":0.9999996174407775,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.3306690738754696e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":25},{"shots":32,"best_objective":25},{"shots":64,"best_objective":25},{"shots":128,"best_objective":25},{"shots":512,"best_objective":25}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":1,"diagnostic_seconds":0.0015651099965907633}
+{"instance":"n3-s1-r0.json","seed":2,"direct":{"status":"feasible","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":13,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,1,0,0,1,0,0],"qubo_energy":25},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.8697715581820941,-0.2851397708395606],"expected_energy":39.88621689388701,"initial_expected_energy":53.65267662670288,"history":[53.65267662670288,54.42341714330082,54.28621163286901,52.17216587513013,45.967932237200394,53.87584157022485,54.99174769899404,54.88194702881579,51.080705488034354,48.95087561666202,44.68362150840503,43.14731574469084,40.82330382953894,54.721887983480826,41.15900127139647,40.25915477518195,40.38674039154311,40.44963634452977,40.16857329638593,40.29730592813744,40.02594855329888,39.99466925803394,39.9023741080956,40.04580820864673,39.90730219979579,39.905166515586586,39.9130909049794,39.89999452431803,39.89620945919899,39.890855591355866,39.895882812349896,39.88981173060305,39.89363425323695,39.887947687266404,39.88685627718324,39.88845536877903,39.88681224367451,39.8865668922798,39.886306940284825,39.886220284278515,39.88668238968348,39.886291708470104,39.886220535122916,39.88624983022771,39.88622387156411,39.886230755138065,39.88621805510039,39.88621794244311,39.886218558553125,39.88621755542259,39.886217317417064,39.88621753977266,39.88621699990101,39.88621741593924,39.886216923860175,39.886216929922014,39.88621691622399,39.88621690839362,39.88621691934582,39.88621689388701,54.05557723127137,54.8912176478474,50.474033152000736,41.575752448741454,50.45812326937724,43.38437795323092,64.31087399725311,40.9703484021213,43.00760921843494,41.154688051755876,40.73120161384634,40.88295851373329,40.6762472543877,40.673717435110056,40.63622870293879,40.583556480835135,40.4906446014159,40.27173918582858,40.19121505960817,41.99198801755211,40.90203918213848,40.21500362256965,39.96506226348331,39.956358055920305,39.907879268548655,39.889358524659556,39.91643883120179,39.88639724735886,39.8913176502785,39.886865919985965,39.88734191528198,39.88658932915584,39.886296049642546,39.88643378681075,39.88628495450524,39.88626634720346,39.88624698461129,39.88624371749398,39.88621991143386,39.886225164344545,39.886220752402174,39.88623911661616,39.88621923919021,39.886222382842064,39.88621929856686,39.88621824113619,39.88621785204723,39.88621844089529,39.88621745780146,39.886217440654775,39.886217039854515,39.886217091194354,39.88621704154164,39.886217065950646,39.88621700656615,39.88621699869573,39.88621707388434,39.88621696790838,39.886216943693256,39.88621690922382],"feasible_probability":0.3803148614554248,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.37890625,"counts":{"0001011":47,"0001101":10,"0010011":194,"0010101":68,"0100011":91,"0100101":33,"1000011":59,"1000101":10},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.118861160997767},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[0,1,4],"fixed_cost":25,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":3,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":1,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":13,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,1,0,0,1,0,0],"qubo_energy":25},"components":[],"circuit_evaluations":0,"status":"classical_propagation","feasible_probability":1.0,"total_shots":0,"runtime_seconds":0.00016193999908864498},"direct_metrics":{"exact_objective":25,"optimal_count":1,"combinations":8,"optimal_probability":0.3803148614554248,"feasible_probability":0.3803148614554248,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.125,"shots_for_95_percent":7,"hit_curve":[{"shots":8,"quantum":0.9782545375882696,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9995271348645001,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999997763985636,"uniform":0.9860601629623169},{"shots":64,"quantum":0.99999999999995,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.942890293094024e-16,"independent_samples":[{"shots":8,"best_objective":25},{"shots":16,"best_objective":25},{"shots":32,"best_objective":25},{"shots":64,"best_objective":25},{"shots":128,"best_objective":25},{"shots":512,"best_objective":25}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":1,"diagnostic_seconds":0.0022709010081598535}
+{"instance":"n3-s1-r0.json","seed":3,"direct":{"status":"feasible","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":13,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,1,0,0,1,0,0],"qubo_energy":25},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7207898639380663,1.174200545396089],"expected_energy":44.17332222824163,"initial_expected_energy":44.20542121063303,"history":[44.20542121063303,46.21645639142855,54.67174302673825,50.49967260808572,48.45446796847187,45.595626441947616,44.2446406032145,44.56585271916996,44.31608479559629,44.29483194826315,44.17832059661714,44.18165808908815,44.179222468926206,44.17676063765157,44.17704244315355,44.17841646537347,44.176344426218115,44.17625929145584,44.17683182034042,44.17616331230741,44.17598428401139,44.17564989410566,44.17506217766121,44.17426125573172,44.174345190117634,44.17450208912005,44.174417559496476,44.17409733873306,44.17421290512369,44.174012623257795,44.17396210223463,44.17387872999401,44.17374170285706,44.17353321656816,44.173463827025714,44.17337602040492,44.17345492196598,44.17359537188747,44.17336874763199,44.173339682765686,44.17336907451913,44.17333384990982,44.17333289803418,44.17333020559248,44.173326261617056,44.17332454616673,44.173333824855575,44.17333930056571,44.17332237048543,44.17332318274241,44.173322413454294,44.17332306862968,44.17332232621612,44.17332258344812,44.17332228311595,44.17332226300577,44.17332232809457,44.173322244338785,44.17332223970534,44.17332222824163,54.20942108131767,55.83728775126154,51.989671836661415,55.97977613224122,54.81274242895929,53.14570588485284,52.5179462747108,52.17178726088535,51.762049186252455,51.889718828283016,51.864371994470076,51.74328279982713,51.71862823120502,51.70834873812028,51.67244328244762,51.65983842235665,51.57535032084641,51.60950541142788,51.60287221226332,51.5645523437272,51.62526486710627,51.5577381844803,51.54071628370606,51.5257945471994,51.52176049187225,51.4879505097467,51.45519053612797,51.3901974030141,51.257191660224855,51.06871820074762,51.217985480257504,52.297405630140915,50.83282408460206,50.88403755971423,50.951064876480395,50.79839823082587,50.79273235265934,50.8636076024525,50.76162309277127,50.702690075102026,50.59527826041375,50.38006272698819,50.02819924578862,50.69209769934192,51.25524285761435,49.71026931300585,49.62225244103162,49.227416479738096,48.9218476022895,48.02520258485505,48.32932358136394,48.48506962923389,48.42055228974044,48.09159219528797,47.83793910025325,47.46675329105055,46.766768585955056,46.172766571007706,44.36174561774632,45.158969937222025],"feasible_probability":0.10902617404131001,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.099609375,"counts":{"0001011":9,"0010011":51,"0010101":32,"0100011":47,"0100101":111,"1000011":259,"1000101":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12993486699997447},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[0,1,4],"fixed_cost":25,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":3,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":1,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":13,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,1,0,0,1,0,0],"qubo_energy":25},"components":[],"circuit_evaluations":0,"status":"classical_propagation","feasible_probability":1.0,"total_shots":0,"runtime_seconds":9.528400551062077e-05},"direct_metrics":{"exact_objective":25,"optimal_count":1,"combinations":8,"optimal_probability":0.10902617404131001,"feasible_probability":0.10902617404131001,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.125,"shots_for_95_percent":26,"hit_curve":[{"shots":8,"quantum":0.6028820041816874,"uniform":0.6563910841941833},{"shots":16,"quantum":0.8422972973972466,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9751298575917875,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9993814760165952,"uniform":0.9998056809433629},{"shots":128,"quantum":0.999999617428082,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":25},{"shots":16,"best_objective":25},{"shots":32,"best_objective":25},{"shots":64,"best_objective":25},{"shots":128,"best_objective":25},{"shots":512,"best_objective":25}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":1,"diagnostic_seconds":0.0015600949991494417}
+{"instance":"n3-s1-r0.json","seed":4,"direct":{"status":"feasible","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":13,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,1,0,0,1,0,0],"qubo_energy":25},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.9265015274053967,2.9330838406747466],"expected_energy":44.84163223152676,"initial_expected_energy":51.627744363082186,"history":[51.627744363082186,51.391504616879786,50.40028969877899,54.86040790559979,53.46945763775974,51.40181987506332,49.406852792487676,49.96057563158029,49.483878425239666,49.51723382364801,49.36912667606988,49.373967850482344,49.34881921101477,49.43149286466553,49.35672681979332,49.34093224145367,49.3319333243716,49.33857734949527,49.325271423033186,49.32285365068581,49.32859870981625,49.317368253682915,49.31207988123007,49.30227356006064,49.30235587677873,49.29620296458904,49.30231121070894,49.29975058303088,49.29150839536182,49.2917061393145,49.28634133671615,49.28170312993893,49.27593447528875,49.29863023628603,49.2681685532577,49.26239214565226,49.252005736193745,49.26296018155161,49.24602802796383,49.2332786564149,49.2072846664808,49.16064954153904,49.05304760471036,49.34907876802844,49.48004797509693,49.26448579854207,49.03623756348624,49.04358520675904,49.04422485840282,49.022623266755126,49.01802602075397,49.046327027216,49.00804240970383,48.99964438972669,48.98544592180653,48.95517031389761,48.893947883039594,48.7545048924026,49.13557299012252,49.449980613106845,58.188789378846174,60.553805416227135,51.30516271273202,53.500709396540415,51.857660297086035,50.905090255470384,54.655445714219276,50.832224414504466,50.29943550195034,50.2738809797676,49.68813741186581,49.31169700275984,48.84828175680741,47.864379597552414,46.08169114596608,47.57520996000093,52.109096480790456,47.87400760076634,45.98305770033595,47.085323007135344,45.88880410563282,45.554307891862834,44.9989686241982,44.98005200886002,47.19692105706987,45.067939283049554,45.848843589324375,45.07652770882191,45.01383748421821,44.96607214524078,44.973168556755226,44.952475663601646,44.943012095884804,44.95669069600335,44.93130034517789,44.921286729688866,44.93444746261085,44.91419967279037,44.903952968053005,44.886825628205294,44.91773249550592,44.88981404209842,44.88600093122177,44.910490935221006,44.87304878042619,44.87114973783249,44.86258437146928,44.8568040394917,44.851424347266274,44.84374806056976,44.846070496468215,44.85196439029158,44.84692934245331,44.846904473751074,44.8443758028712,44.842848794857446,44.84211464368182,44.84234842266388,44.84182321724175,44.84163223152676],"feasible_probability":0.17175100927983192,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.1796875,"counts":{"0001011":31,"0001101":51,"0010011":92,"0010101":37,"0100011":5,"0100101":187,"1000011":102,"1000101":7},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1398747150087729},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[0,1,4],"fixed_cost":25,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":3,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":1,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":13,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,1,0,0,1,0,0],"qubo_energy":25},"components":[],"circuit_evaluations":0,"status":"classical_propagation","feasible_probability":1.0,"total_shots":0,"runtime_seconds":0.00016773199604358524},"direct_metrics":{"exact_objective":25,"optimal_count":1,"combinations":8,"optimal_probability":0.17175100927983192,"feasible_probability":0.17175100927983192,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.125,"shots_for_95_percent":16,"hit_curve":[{"shots":8,"quantum":0.7785440655836887,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9509572691117985,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9975948105470275,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9999942150636953,"uniform":0.9998056809433629},{"shots":128,"quantum":0.9999999999665345,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":25},{"shots":16,"best_objective":25},{"shots":32,"best_objective":25},{"shots":64,"best_objective":25},{"shots":128,"best_objective":25},{"shots":512,"best_objective":25}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":1,"diagnostic_seconds":0.001868248000391759}
+{"instance":"n3-s1-r0.json","seed":5,"direct":{"status":"feasible","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":13,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,1,0,0,1,0,0],"qubo_energy":25},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.8697181097409805,2.856451157930044],"expected_energy":39.88621685726445,"initial_expected_energy":51.51046524284014,"history":[51.51046524284014,51.55639500927444,41.637134265013906,65.81144520656976,40.46199592967392,40.11918884241637,40.30504768248806,40.028040295771476,39.974196899274645,40.16207822946092,39.942835037081444,40.38034019801984,39.894869767173994,39.9145873218772,39.892677836504774,39.91088388695271,39.89135397796119,39.88934377911958,39.88797216265273,39.89031054933166,39.88746751882843,39.8864946135232,39.88663415464255,39.88907888797392,39.88633254886661,39.88625138711406,39.88626811043108,39.88623778693371,39.88623777179746,39.88625553785413,39.8862258198065,39.886219646477535,39.886234086870495,39.886223641890865,39.88622451333821,39.88622126373084,39.88621756510982,39.8862178371667,39.88621712388593,39.88621692269694,39.88621701830631,39.8862171495355,39.88621701512937,39.886216926622396,39.88621691555352,39.88621690601863,39.88621690612234,39.886216892420435,39.88621688809023,39.886216907012965,39.88621687627102,39.886216868262636,39.88621686346626,39.88621685938827,39.88621685726445,39.88621686238294,52.541472492675936,56.162951830374226,45.3998903427821,55.55166661740322,46.812504956963465,46.699139953248526,45.245558777437026,44.970106118900816,44.3781569714495,42.99798936540633,41.01788311257336,51.52339857670118,53.44439328641597,40.54481877897578,40.58598553168775,40.96363774104752,40.17210399628248,40.21594288213061,40.25826586664386,40.1000054783503,40.33992179388439,40.002713901844466,39.971114583382914,39.92661845001558,39.90008818056472,39.92953223249579,39.90480470540609,39.89830676249766,39.89772293252686,39.90316270742634,39.89398550410276,39.89123979350411,39.88770347463682,39.889677773798,39.88897236909806,39.88860919351617,39.88806580644494,39.88833504785041,39.88761252693855,39.88794220825639,39.88754142439048,39.88739370522532,39.887146016060846,39.88714429529347,39.886933951023366,39.886751368235494,39.88647645019661,39.88637257483318,39.886591677367335,39.88701430766449,39.8863483055066,39.88622808709041,39.886240563221804,39.88622947691832,39.886245570562686,39.88622763345521,39.886222046394785,39.886218558722085,39.88621739616823,39.886217039091484],"feasible_probability":0.38030362828736086,"one_hot_probability":1.0,"sampled_feasible_fraction":0.40625,"counts":{"0001011":34,"0001101":11,"0010011":208,"0010101":70,"0100011":101,"0100101":32,"1000011":49,"1000101":7},"circuit_evaluations":116,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":56},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13755753700388595},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[0,1,4],"fixed_cost":25,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":3,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":1,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":13,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,1,0,0,1,0,0],"qubo_energy":25},"components":[],"circuit_evaluations":0,"status":"classical_propagation","feasible_probability":1.0,"total_shots":0,"runtime_seconds":0.00012726199929602444},"direct_metrics":{"exact_objective":25,"optimal_count":1,"combinations":8,"optimal_probability":0.38030362828736086,"feasible_probability":0.38030362828736086,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.125,"shots_for_95_percent":7,"hit_curve":[{"shots":8,"quantum":0.9782513839101571,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9995269976981767,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999997762688224,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9999999999999499,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":25},{"shots":16,"best_objective":25},{"shots":32,"best_objective":25},{"shots":64,"best_objective":25},{"shots":128,"best_objective":25},{"shots":512,"best_objective":25}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":1,"diagnostic_seconds":0.001993728001252748}
+{"instance":"n3-s1-r0.json","seed":6,"direct":{"status":"feasible","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":13,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,1,0,0,1,0,0],"qubo_energy":25},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7212323860039653,1.1742758653700658],"expected_energy":44.17332430087125,"initial_expected_energy":51.413609481011655,"history":[51.413609481011655,51.48140899712422,49.90493534418687,53.482200796724875,50.68328815610249,51.00468048465374,48.09198925107944,49.29782949362094,48.80012994119549,48.33420445589265,47.666826358565245,47.47683579652431,46.878952763980976,46.27260894220762,45.25031342522091,44.27157476253904,51.971099636449395,46.80274337283985,44.40208584958767,45.75272973853941,44.36033158241213,44.320880116895545,44.31437146906596,44.26530379942233,44.249472098927896,44.23503948416077,44.220277834007504,44.21243579220754,44.199487382414176,44.18772063374768,44.18756366391099,44.176039497161064,44.18262981010248,44.19343727250188,44.177203854792026,44.1748925404198,44.17551307196288,44.17623396444652,44.17485492437059,44.17454255471972,44.174484031342715,44.174931787540054,44.1744140385507,44.17429106916741,44.17408702766295,44.17378266094524,44.17393897746004,44.174124355809326,44.17374048294002,44.17360012414649,44.17344815637754,44.17339431127204,44.173365953127124,44.17335813652987,44.17370182557195,44.173459564573,44.173369315109824,44.173378889650806,44.173355215766044,44.17334464614797,52.47258665997605,52.51490016525119,52.0118773591753,48.90125934544486,56.062715622664555,48.148637865758445,54.24284479096654,45.7236434907776,51.38759793630784,47.88201056790845,45.46270610017269,47.67402601437252,45.29827420898926,45.06918291739302,44.92988595601105,45.40237008782814,44.6818910406217,44.62321554923779,44.41465766772235,44.4428220781426,44.39280936043792,44.53758032477017,44.3692457845291,44.3311127873673,44.27263294182188,44.21351653389277,44.278437653930354,44.33204295555926,44.20283360806436,44.194897766770694,44.19187817549421,44.23070873247544,44.18456997636656,44.18150100318504,44.17949924121408,44.18343537321587,44.17830782786261,44.17743473408985,44.178191577531614,44.17696823883896,44.17690728740557,44.17640120992145,44.17595793157749,44.1751991205179,44.174940970741304,44.173952089901704,44.17613899718926,44.17371311887482,44.174031293190524,44.17374717732288,44.17361812192808,44.173580062976235,44.17353157566297,44.17349786032739,44.173456109499725,44.17339476034521,44.17332725980807,44.17367870511682,44.173457176247226,44.17332430087125],"feasible_probability":0.10907574314601697,"one_hot_probability":1.0,"sampled_feasible_fraction":0.09375,"counts":{"0001011":7,"0010011":48,"0010101":33,"0100011":46,"0100101":118,"1000011":258,"1000101":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13939115600078367},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[0,1,4],"fixed_cost":25,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":3,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":1,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":13,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,1,0,0,1,0,0],"qubo_energy":25},"components":[],"circuit_evaluations":0,"status":"classical_propagation","feasible_probability":1.0,"total_shots":0,"runtime_seconds":0.00013727799523621798},"direct_metrics":{"exact_objective":25,"optimal_count":1,"combinations":8,"optimal_probability":0.10907574314601697,"feasible_probability":0.10907574314601697,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.125,"shots_for_95_percent":26,"hit_curve":[{"shots":8,"quantum":0.6030587182472714,"uniform":0.6563910841941833},{"shots":16,"quantum":0.842437618840501,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9751740960433487,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9993836744927351,"uniform":0.9998056809433629},{"shots":128,"quantum":0.9999996201428691,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":25},{"shots":16,"best_objective":25},{"shots":32,"best_objective":25},{"shots":64,"best_objective":25},{"shots":128,"best_objective":25},{"shots":512,"best_objective":25}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":1,"diagnostic_seconds":0.0015879220009082928}
+{"instance":"n3-s1-r0.json","seed":7,"direct":{"status":"feasible","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":13,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,1,0,0,1,0,0],"qubo_energy":25},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.872236668541365,2.856428931264051],"expected_energy":39.88628816145432,"initial_expected_energy":52.72233217709162,"history":[52.72233217709162,51.07332167266638,51.168436417124894,53.36645623587452,51.29331836419394,51.513731449853765,51.19215912162626,51.051989844463094,51.00257736120922,51.043773149965695,51.007509784420876,51.002787228892174,51.038875679646345,50.995315674745605,50.992292051933475,50.99307927396018,50.992272382144066,50.992213932225226,50.99393021041071,50.9919906975753,50.99277451575567,50.992002530931885,50.99196398486168,50.99198427322752,50.99198980104604,50.9919382022371,50.991957971555415,50.99193179644269,50.99193291215694,50.99193057229337,50.991929653687336,50.991933055654805,50.99192793265139,50.99192646425121,50.99192398293262,50.991920828350615,50.9919192622979,50.99191716758174,50.99191731290884,50.991918668147,50.99191725733372,50.991917576977144,50.99191720271513,50.991917158511455,50.9919172360023,50.99191713042331,50.9919171120485,50.99191709795306,50.991917120009894,50.9919170900194,50.99191707686541,50.99191705807989,50.99191707529879,50.99191708602123,50.99191705877647,47.213102125345166,54.5244310578123,56.048065617159075,52.45910405864959,47.32243500602463,49.993800927247094,46.84562668254021,45.5092090118112,44.23181285080546,46.03078659038169,43.84418537767851,44.35248652626978,43.63268968009612,43.244415953470885,42.55358399114069,41.94525966519821,42.40411545086384,42.29519182875874,42.22136972003449,41.4142960228173,41.1695061975368,43.341620667408876,40.901289989450646,40.76305328447806,40.78893038793745,40.756848060656566,41.021814670867805,40.66964897047709,40.60943591481338,40.5664149522344,40.517999704978536,40.42187996752195,40.223843476244674,40.03441616512209,41.55729430693701,40.588648291046695,40.262662103843994,40.04863166900389,39.97643901066477,39.948601278425244,40.05836630270083,39.9266710808611,39.91320876585142,39.902506901320166,39.89339616179885,39.88983112045506,39.88838545210079,39.886893383482565,39.89184499364087,39.88717986465042,39.88722114025568,39.887630057543426,39.8874140343423,39.88688142374858,39.88706456667357,39.88687156954125,39.88671530228954,39.88649254199761,39.88628816145432,39.886552280617565],"feasible_probability":0.3808545100247543,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.3671875,"counts":{"0001011":55,"0001101":16,"0010011":188,"0010101":78,"0100011":80,"0100101":35,"1000011":53,"1000101":7},"circuit_evaluations":115,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":55},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12304774700896814},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[0,1,4],"fixed_cost":25,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":3,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":1,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":13,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,1,0,0,1,0,0],"qubo_energy":25},"components":[],"circuit_evaluations":0,"status":"classical_propagation","feasible_probability":1.0,"total_shots":0,"runtime_seconds":9.737900109030306e-05},"direct_metrics":{"exact_objective":25,"optimal_count":1,"combinations":8,"optimal_probability":0.3808545100247543,"feasible_probability":0.3808545100247543,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.125,"shots_for_95_percent":7,"hit_curve":[{"shots":8,"quantum":0.9784055717410087,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9995336806681673,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999997825462807,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9999999999999527,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.7755575615628914e-16,"independent_samples":[{"shots":8,"best_objective":25},{"shots":16,"best_objective":25},{"shots":32,"best_objective":25},{"shots":64,"best_objective":25},{"shots":128,"best_objective":25},{"shots":512,"best_objective":25}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":1,"diagnostic_seconds":0.0016015620058169588}
+{"instance":"n3-s1-r0.json","seed":8,"direct":{"status":"feasible","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":13,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,1,0,0,1,0,0],"qubo_energy":25},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.8697212323610822,2.8564552550274147],"expected_energy":39.88621685905877,"initial_expected_energy":49.47990347413495,"history":[49.47990347413495,50.514500399115576,48.994687441463725,53.74812654146131,49.40954703202751,50.58736928287837,48.4738055511026,47.30771250726449,45.27135303252833,45.01052587039224,45.83038868646564,45.57122368783392,44.301301378783286,44.21105915152215,44.24601012545917,44.59689539052085,44.189265271422975,44.24155831122964,44.20406469545908,44.182930211854455,44.19347523246495,44.181711177533316,44.18513422975149,44.178999113146325,44.182017418667805,44.177974638397146,44.17870947777329,44.177821684038186,44.17730620609909,44.17640575719802,44.17686258026021,44.17615152150323,44.1777474075951,44.17564358378425,44.17523822171556,44.174592209707576,44.174359688299006,44.1739088603413,44.17600598640387,44.17501621824495,44.174130817293744,44.173518545922015,44.17351312367015,44.17349599687726,44.1735006835264,44.173541279592506,44.17344181354882,44.173438075749274,44.17348924036475,44.17340141270277,44.17335478422973,44.173335055313686,44.17335747712682,44.17338523565387,44.17333098608646,44.17332613402157,44.17333930603436,44.173322756961284,44.17333061496,44.173323531663094,53.405350760446986,53.999543488108,47.1806329517036,43.34256181409059,64.1652715431326,49.47500966343516,45.66581795858137,45.72899907999124,43.233156500761865,42.62758837534406,42.18461053161428,41.9589911736914,41.07196005074553,41.36550060530711,41.25310464489724,40.83458032477228,40.72516622763508,40.61862391507596,40.524163308987056,40.288439790693864,40.16746421574379,40.32708054539025,42.89558808503129,39.939727293016496,39.95020823905442,40.077875490740404,39.90515388170304,40.01088988901034,39.889439606858545,39.923502265530125,39.89655967683335,39.88807706233262,39.88970752531912,39.89003791498763,39.88623040085121,39.887499396086874,39.88625873744796,39.88637147720189,39.88623844179844,39.88622748533368,39.88622398685575,39.8862445869733,39.886217864843815,39.886219210792994,39.886217800276825,39.88622025899659,39.886217246615736,39.886217208606666,39.88621693549971,39.886216900464575,39.8862169483351,39.88621746197962,39.886216860463016,39.88621692518638,39.886216870584676,39.886216864231564,39.8862168597968,39.88621687275419,39.88621685905877,39.88621687017142],"feasible_probability":0.38030344197350735,"one_hot_probability":1.0,"sampled_feasible_fraction":0.353515625,"counts":{"0001011":62,"0001101":18,"0010011":181,"0010101":61,"0100011":99,"0100101":42,"1000011":42,"1000101":7},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12276784400455654},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[0,1,4],"fixed_cost":25,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":3,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":1,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":13,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,1,0,0,1,0,0],"qubo_energy":25},"components":[],"circuit_evaluations":0,"status":"classical_propagation","feasible_probability":1.0,"total_shots":0,"runtime_seconds":9.040501026902348e-05},"direct_metrics":{"exact_objective":25,"optimal_count":1,"combinations":8,"optimal_probability":0.38030344197350735,"feasible_probability":0.38030344197350735,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.125,"shots_for_95_percent":7,"hit_curve":[{"shots":8,"quantum":0.97825133159973,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9995269954228151,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999997762666699,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9999999999999499,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":25},{"shots":16,"best_objective":25},{"shots":32,"best_objective":25},{"shots":64,"best_objective":25},{"shots":128,"best_objective":25},{"shots":512,"best_objective":25}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":1,"diagnostic_seconds":0.0015958520089043304}
+{"instance":"n3-s1-r0.json","seed":9,"direct":{"status":"feasible","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":13,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,1,0,0,1,0,0],"qubo_energy":25},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7209947072039933,1.1742769301415332],"expected_energy":44.173323049250925,"initial_expected_energy":49.88087230259681,"history":[49.88087230259681,48.56795843153307,53.67987677622649,50.66373036053209,53.38440916096692,47.86951865690261,45.77565566204632,47.7646379719731,46.287048902514954,45.21973809091076,44.94785576133466,44.74381399652048,45.018398412679254,44.647363772106665,44.562496538604336,44.57865021015622,44.51810917588254,44.49819030128588,44.5435288474733,44.489829049617434,44.47189351071716,44.438525480004905,44.41322637177945,44.347753008800325,44.30538633717117,44.263927447632284,44.229498206305365,44.25189828445039,44.24858331768606,44.22839746509139,44.242172010593734,44.217963593062095,44.205101228848235,44.197583727931345,44.219304247352284,44.19259614428772,44.189163394470214,44.192945923565084,44.1873157762644,44.18552208035819,44.18337787800591,44.1803921611823,44.17859616651704,44.183599662825095,44.1774516631128,44.17670193919378,44.17782343324888,44.176259452546596,44.17585449404337,44.17558396564273,44.17476562180028,44.17448987748727,44.17396896683228,44.173881806475976,44.173573205163194,44.174136558018304,44.17348994156436,44.173733136849606,44.17349764517212,44.17344779287882,52.327816814089395,52.57360337763923,48.724699173863414,54.91747875042735,49.09870484087456,49.51773989638576,48.70742481818463,49.12492886603407,48.99233563329638,48.33764128005546,48.27083243782609,48.62634201504779,48.1769016809083,48.108185828379916,47.959721983441476,47.63114232834915,46.80163718614027,49.77211287223257,47.69680406191886,47.32346172117571,47.01019187352895,46.55487964254763,46.72323699035496,46.4792228686226,46.3372830288028,46.13926322398924,46.49027753857277,46.05863193341668,45.89072907929467,45.57790546916788,44.999454274666725,44.925958567833845,44.22960010342653,45.43265343248015,44.19455172683684,44.451944094566876,44.22338756602104,44.208870798765325,44.1970459933,44.19419995772222,44.189220803158705,44.182303517040395,44.17723969800725,44.1788509413543,44.17880991808213,44.17964469604637,44.176756873321565,44.17834824885556,44.17648340954113,44.17601378594679,44.17524713573042,44.17438854565978,44.17406657564251,44.173329929733384,44.17548058679724,44.17609660453533,44.17396750762363,44.173325819783585,44.17352844485616,44.173323049250925],"feasible_probability":0.10907095785565772,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.09765625,"counts":{"0001011":9,"0010011":50,"0010101":46,"0100011":33,"0100101":125,"1000011":248,"1000101":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1144105679995846},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[0,1,4],"fixed_cost":25,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":3,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":1,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r0","start":10,"end":11,"reserved_end":13,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,1,0,0,1,0,0],"qubo_energy":25},"components":[],"circuit_evaluations":0,"status":"classical_propagation","feasible_probability":1.0,"total_shots":0,"runtime_seconds":8.794399036560208e-05},"direct_metrics":{"exact_objective":25,"optimal_count":1,"combinations":8,"optimal_probability":0.10907095785565772,"feasible_probability":0.10907095785565772,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.125,"shots_for_95_percent":26,"hit_curve":[{"shots":8,"quantum":0.6030416616682601,"uniform":0.6563910841941833},{"shots":16,"quantum":0.8424240776289039,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9751698286888983,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9993834625926613,"uniform":0.9998056809433629},{"shots":128,"quantum":0.9999996198816253,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.7755575615628914e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":25},{"shots":64,"best_objective":25},{"shots":128,"best_objective":25},{"shots":512,"best_objective":25}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":1,"diagnostic_seconds":0.0018095660052495077}
+{"instance":"n3-s1-r1.json","seed":0,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":6,"end":8,"reserved_end":9,"changed":true},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":9,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,1,0,0,0],"qubo_energy":10},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.621799996727493,1.0284353562794188],"expected_energy":19.77544549548938,"initial_expected_energy":20.16435153678178,"history":[20.16435153678178,19.88206927504344,23.920522258666868,33.03545935302314,22.277393181137125,21.31552145834226,19.868508231095188,19.83302963205455,20.025392305492403,19.84732038410479,19.858481486372114,19.82852437673976,19.81894598088362,19.80833900754702,19.81079472819865,19.80637431044688,19.804878957140588,19.803481388372244,19.80043993151567,19.794725349262492,19.807268846361648,19.815900551125928,19.800838698551768,19.794034006487863,19.795273775354797,19.793726539063066,19.795987589873842,19.79276181309684,19.79221801829267,19.79161004822802,19.790698295259077,19.79284957004462,19.790044630309765,19.789093705753437,19.788466770523804,19.80238527315006,19.785930847924465,19.786032629947357,19.785763459896323,19.785700605431114,19.78712368581276,19.785431865651404,19.78499281572007,19.78446183859474,19.78398377264157,19.784387678001703,19.783645557291674,19.78311999684456,19.782090605704127,19.780306593217716,19.797257795752486,19.782506500799805,19.780032927646797,19.783305235531245,19.77923323396985,19.77898826208264,19.778444641134485,19.777954262324837,19.777046261957537,19.77544549548938,36.793983708123314,36.868858614183644,21.387372282762946,25.746774353596575,22.210040203260682,22.240380469851846,20.970297529553164,21.713409660260695,21.075214475040333,20.926912694216494,20.9073952432939,21.21371104790277,20.843996405457506,20.83852418773166,20.817760743599145,20.78195258618722,20.725335043987993,20.627624676040522,20.41837534514094,20.195886827677718,31.20655912509888,21.256670685767517,20.18991504861697,21.479774635054987,19.978293689523838,20.07339105823919,19.97968217225465,19.98854507140077,19.970563216845388,19.980867807506794,19.97246017133571,19.9689372602232,19.965561987451782,19.959116666473065,19.947914795793878,19.948145924559846,19.95215568680905,19.949875496651778,19.9505190796877,19.94453382053017,19.943995622116567,19.948338481923358,19.940495742110894,19.93416370752253,19.922420321422663,19.899701266611714,19.980955687915163,19.977584959166812,19.895331659947583,19.932721728520324,19.892710712462673,19.88861527750288,19.884742625571068,19.938032310254105,19.87500121275424,19.87538527922793,19.874269758427566,19.873898382190912,19.87902954194061,19.870347661290975],"feasible_probability":0.8212824279058457,"one_hot_probability":1.0,"sampled_feasible_fraction":0.8125,"counts":{"000111":221,"001011":105,"010011":96,"100011":90},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10313426800712477},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[0,1],"fixed_cost":10,"removals":[{"variable":4,"forced_by":1,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[3],"max_component_qubits":3,"component_to_original":[[2,3,5]],"components":[{"qubits":3,"penalty":14,"objective_bound":13,"offset":14,"linear":[-14,-1,-3],"quadratic":[[0,1,28],[0,2,28],[1,2,28]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":9,"cost":0},{"index":1,"task":"t2","resource":"r1","start":15,"cost":13},{"index":2,"task":"t2","resource":"r0","start":15,"cost":11}],"conflicts":[]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":6,"end":8,"reserved_end":9,"changed":true},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":9,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,1,0,0,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":9,"end":11,"reserved_end":12,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":3757552657,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.5730667406150751,1.1904996623804112],"expected_energy":3.9693591467691043,"initial_expected_energy":11.662557159934755,"history":[11.662557159934755,10.389022574784448,7.630230459775885,6.763189092717786,8.082705993488094,7.63689585021649,6.741590440124349,6.503201404701803,6.081526727756868,5.611164493436408,5.010643766191338,4.260723610241121,8.033082035362897,4.9164581014589235,4.65635399035928,4.320585912293986,4.20638291430014,4.172109465857493,4.312837169543892,4.135574625727774,4.118362141867621,4.0921130267339585,4.050417197832046,4.053288263132252,4.109451021900496,4.051469595052108,4.047394073370699,4.0448248847919,4.054116435122383,4.04216570191388,4.037490974149479,4.030304173744226,4.019993003899611,4.0093294396067725,4.0128568079690945,4.007563383029358,4.018910114800162,4.007020081053344,4.003084864839146,4.000271245377901,3.99564128036961,3.9929383762210033,3.988726078326712,3.9820626267218406,3.982248643461591,3.991558096275474,3.9822990315250157,3.9798048509511794,3.9787287220592966,3.9868175573598523,3.9767341049400087,3.975878476868503,3.9748998574857457,3.9740544433978613,3.9726064438143407,3.973827074421618,3.9742481298525827,3.972212339128083,3.972357211013846,3.9721371067197997,9.647501563610966,10.167625299814059,5.2130385778743005,8.547654140295304,6.184147148504293,5.338028352300054,5.04430953672112,5.765846208905376,4.888983194133005,4.764232988635135,4.562552106657652,4.453795241089257,4.426403568839609,4.244822432311732,3.972762093312858,4.330169444000746,5.250862983893363,4.194379693983363,3.9808711889299415,4.056399363284097,4.0222624179904,3.996495463487462,3.970730948457303,3.97543737648778,3.9704649832592955,3.9715856085702876,3.9700704125571784,3.971352670603868,3.969867983010073,3.9698499851115256,3.969722742515385,3.9696850350541797,3.969548255710886,3.9694425863234333,3.969590451535044,3.9697972845547898,3.9694258131178577,3.969401462898676,3.969422001407238,3.969416435524467,3.969400329324834,3.969394680188336,3.9694002414294296,3.969390755962996,3.9693914251837263,3.969390218097733,3.9693883598732116,3.969384891590875,3.9693787863781713,3.969371973708329,3.969367685108889,3.9693603899500776,3.9693651928251334,3.969402164974795,3.9693596591584837,3.9693638082355873,3.9693630072520234,3.9693591467691043,3.9693594244151154,3.969359276849523],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":346,"010":70,"100":96},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09105203399667516}],"circuit_evaluations":120,"status":"feasible","feasible_probability":1.0,"total_shots":512,"runtime_seconds":0.09120961499866098},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":4,"optimal_probability":0.44093693983849497,"feasible_probability":0.8212824279058457,"uniform_optimal_probability":0.25,"uniform_feasible_probability":0.75,"shots_for_95_percent":6,"hit_curve":[{"shots":8,"quantum":0.990456968021004,"uniform":0.8998870849609375},{"shots":16,"quantum":0.9999089305406479,"uniform":0.9899774042423815},{"shots":32,"quantum":0.9999999917063536,"uniform":0.9998995475742793},{"shots":64,"quantum":0.9999999999999999,"uniform":0.9999999899093102},{"shots":128,"quantum":1.0,"uniform":0.9999999999999999},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6642410634794913,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998384821053631,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999739119697,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999993,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.6642410634794913,"diagnostic_seconds":0.0017793759907362983}
+{"instance":"n3-s1-r1.json","seed":1,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":6,"end":8,"reserved_end":9,"changed":true},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":9,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,1,0,0,0],"qubo_energy":10},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.075204442152771,1.0188666614147914],"expected_energy":20.037142136130708,"initial_expected_energy":32.00011616481495,"history":[32.00011616481495,32.33687224650862,21.251896592135182,23.759717026712188,21.375338707951038,20.988613372105206,21.715413736814718,20.96343114925147,21.174659373752146,20.989081143124153,20.990796659355826,20.947681119851268,20.935559624496687,20.946152333458976,20.92907081250711,20.925323759454912,20.929489154046525,20.91889340120906,20.90613882646143,20.881130033922783,20.84325233239276,20.86016369505603,20.93160010901598,20.82083421012211,20.808095390941613,20.86053952169454,20.791748042474907,20.78021840269463,20.768525548999076,20.752630797214827,20.727866435378644,20.71376561355043,20.7670320099707,20.698566205207136,20.687586556703895,20.66433375557626,20.629718923768557,20.712159868848502,20.77158899232929,20.61364877691515,20.604905977736713,20.5839720408267,20.56981481223198,20.606336625608126,20.55245438334938,20.542051648414866,20.531063539079213,20.518185863975404,20.493656945691097,20.483709336177938,20.457085788147392,20.45580834864688,20.411489555150357,20.41470775890379,20.418161093141784,20.4196622539115,20.402111694603214,20.40415298644363,20.40479589885084,20.397636938725846,21.29514167119619,20.59099698022411,24.490971952979947,33.728612412654826,23.816996218489304,21.390820997229863,20.5624403396915,20.744502035278206,20.632387769053306,20.594960914962037,20.552807192336964,20.53968420672082,20.5198734431862,20.67181473798425,20.502429858025714,20.489214713169844,20.550659908441606,20.466498457397964,20.45611386090693,20.442734357534874,20.421053504292168,20.53666530972027,20.411712896051235,20.398134116095687,20.368626225862773,20.31059699351324,20.21345964356513,20.655428858787687,20.869854102774003,20.30652534764395,20.204949505562336,20.269402927587574,20.193828435747108,20.18834606297142,20.21256190224623,20.182183168320915,20.17718784027486,20.168693033914973,20.150469309851594,20.115515632931896,20.139098828600037,20.179842458387743,20.136265406013166,20.111109632056824,20.11307596582792,20.10781372610898,20.105926037689073,20.109233931999448,20.101020161753645,20.09705914190556,20.0888923683091,20.076102275461817,20.080176769877085,20.095041394849805,20.070768583733084,20.070564436393774,20.066052805227567,20.06165826340261,20.053171699011138,20.037142136130708],"feasible_probability":0.8095401726430339,"one_hot_probability":1.0,"sampled_feasible_fraction":0.82421875,"counts":{"000111":245,"001011":140,"010011":90,"100011":37},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09680070799367968},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[0,1],"fixed_cost":10,"removals":[{"variable":4,"forced_by":1,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[3],"max_component_qubits":3,"component_to_original":[[2,3,5]],"components":[{"qubits":3,"penalty":14,"objective_bound":13,"offset":14,"linear":[-14,-1,-3],"quadratic":[[0,1,28],[0,2,28],[1,2,28]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":9,"cost":0},{"index":1,"task":"t2","resource":"r1","start":15,"cost":13},{"index":2,"task":"t2","resource":"r0","start":15,"cost":11}],"conflicts":[]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":6,"end":8,"reserved_end":9,"changed":true},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":9,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,1,0,0,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":9,"end":11,"reserved_end":12,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":1641411168,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.5758024051764212,1.190666342911715],"expected_energy":3.9693689053188717,"initial_expected_energy":7.561517589434911,"history":[7.561517589434911,9.40367938586844,8.123345576401842,6.671821342966755,9.526538871254942,5.483269732485474,5.9008293349665415,5.38594755904335,5.887101600691038,5.310188422997904,5.167557807358613,4.91988777872648,4.4997334294950875,7.265429381808403,5.170158929452676,4.785707088509262,4.447077153498134,4.46310216025839,4.382364989364885,4.358638127467709,4.583420707159805,4.254210861464389,4.2505857334878705,4.164234877585816,4.13403443639386,4.076895412668085,4.066259828782133,4.001011802726821,4.064325257333433,3.9934014309262826,4.098625066249407,3.990369666572799,3.984540998274423,3.975918990237572,3.970488501908823,3.9900318484624777,3.9990531950611166,3.970955777248524,3.9712937337334155,3.971539591053575,3.969566018886363,3.9701427201043824,3.969579889709774,3.9695982718845664,3.96956437361813,3.969599027936275,3.9695700224873556,3.969538188818299,3.969527578696723,3.9695818094378996,3.9695081801593437,3.9694910895238675,3.9694620492078583,3.969438309085219,3.969424848845095,3.9694078191495827,3.9694621317610386,3.9693704845916353,3.9693939235963964,3.9693689053188717,8.931615035522613,10.068156443817815,8.665856197869022,7.999606035408624,9.164821463814196,7.625049871122517,7.105573010017891,5.9182249526615625,9.05567567268209,7.09389573550831,5.801767132350966,8.574936176591903,5.305811777660177,4.787054977897224,4.756641139322243,5.005346187029376,4.80494227641013,4.5836578735654125,4.551002322939263,4.453418924936226,4.375561520895423,4.437461148058823,4.345261494431557,4.505724849807789,4.2599842015479865,4.194347703937366,4.1403098413822175,4.081566859532524,4.112750383176715,4.260961069687568,4.076499254605119,4.056131972179538,4.205154801092053,4.031155597933665,4.016342204415938,4.02865688037159,4.009081212971358,4.014401971304983,4.007935204379066,4.005669007324514,4.003215914775547,3.9986893293077497,3.9973095779681733,3.987044339570814,3.99234106393119,3.9862265289155276,3.989312219023515,3.9840604234759702,3.982273848417424,3.9793951640573093,3.975259552371761,3.974840786664683,3.9714179383514967,3.9756832954605956,3.9753311734681223,3.9717885386859253,3.9715969586356747,3.971172299623646,3.9720973300103743,3.9707413619193366],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":334,"010":59,"100":119},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08547191800607834}],"circuit_evaluations":120,"status":"feasible","feasible_probability":1.0,"total_shots":512,"runtime_seconds":0.0856246490002377},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":4,"optimal_probability":0.4500773841267225,"feasible_probability":0.8095401726430339,"uniform_optimal_probability":0.25,"uniform_feasible_probability":0.75,"shots_for_95_percent":6,"hit_curve":[{"shots":8,"quantum":0.9916360265566497,"uniform":0.8998870849609375},{"shots":16,"quantum":0.9999300439482389,"uniform":0.9899774042423815},{"shots":32,"quantum":0.9999999951061508,"uniform":0.9998995475742793},{"shots":64,"quantum":1.0,"uniform":0.9999999899093102},{"shots":128,"quantum":1.0,"uniform":0.9999999999999999},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6643218827533995,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998387928703892,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999740122614,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999993,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.6643218827533995,"diagnostic_seconds":0.0017672609974397346}
+{"instance":"n3-s1-r1.json","seed":2,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":6,"end":8,"reserved_end":9,"changed":true},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":9,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,1,0,0,0],"qubo_energy":10},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.356000445614665,2.8044767014248824],"expected_energy":16.224623310457684,"initial_expected_energy":35.3199456992982,"history":[35.3199456992982,34.02948307629372,20.08928955618744,24.090687828283713,20.880038492015515,20.790932577297063,20.052533927148602,20.11252389671602,20.27222996675423,19.831739403466973,19.917918095944387,19.83908828095766,19.842309577875053,19.824548842287783,19.838135120030653,19.823524257388762,19.82367303287612,19.82244088511357,19.82348369891797,19.82353647184221,19.82235773358025,19.821863659224576,19.821072845272532,19.82210820704439,19.82035613182937,19.8194351928499,19.81762561316965,19.814125275409722,19.80949312308281,19.808918776081804,19.801713262191683,19.802377510472567,19.80766154778484,19.803087665228396,19.800940456776576,19.79962812995236,19.79927375381071,19.797250489324178,19.797282485081205,19.7968870355771,19.7968609187432,19.797569259261223,19.79685780056844,19.796607533216132,19.79617409399889,19.7954883984599,19.795921667865755,19.795035539902372,19.7948360338762,19.79574194734205,19.79470428093637,19.79433367270175,19.793772740336614,19.794807991655667,19.79329507994199,19.792756974689723,19.791769495531124,19.789870648567632,19.79383801548275,19.791109909220793,24.302255617284644,23.73082639898105,22.451560200425117,16.368186955584413,17.973581078925374,32.59640528645619,16.25058339180492,16.684797345516955,16.260854423524627,16.426492996168907,16.258318217311242,16.265736796063074,16.25798671346819,16.246208254904168,16.2386061842792,16.229726916617818,16.229399141258448,16.229826425291613,16.23017683257247,16.229546263076944,16.22930360103166,16.22919551811652,16.229301946620254,16.22915767493095,16.229088419474042,16.22899951496914,16.229111727897585,16.228925688503537,16.228853327617323,16.228711450403594,16.228436842201916,16.227992716549647,16.227637783862626,16.22646742561827,16.23000173016979,16.228207880478017,16.227167333295288,16.226607089266796,16.226411506728667,16.226208966700778,16.22602983157819,16.22581522703551,16.226551567590853,16.225662348418325,16.225598429140664,16.22546063185699,16.225421159974335,16.225917363775835,16.225406628261897,16.225262221083593,16.225185822061995,16.225115935884073,16.225060471312354,16.22499111137023,16.224860148665094,16.22463952196637,16.225348526910793,16.22541701245868,16.224665339792555,16.224623310457684],"feasible_probability":0.986861121539814,"one_hot_probability":1.0,"sampled_feasible_fraction":0.982421875,"counts":{"000111":242,"001011":75,"010011":9,"100011":186},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11024144900147803},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[0,1],"fixed_cost":10,"removals":[{"variable":4,"forced_by":1,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[3],"max_component_qubits":3,"component_to_original":[[2,3,5]],"components":[{"qubits":3,"penalty":14,"objective_bound":13,"offset":14,"linear":[-14,-1,-3],"quadratic":[[0,1,28],[0,2,28],[1,2,28]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":9,"cost":0},{"index":1,"task":"t2","resource":"r1","start":15,"cost":13},{"index":2,"task":"t2","resource":"r0","start":15,"cost":11}],"conflicts":[]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":6,"end":8,"reserved_end":9,"changed":true},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":9,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,1,0,0,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":9,"end":11,"reserved_end":12,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":2001025171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7865078228085265,2.7746769331337973],"expected_energy":3.952234945720393,"initial_expected_energy":7.360716141596594,"history":[7.360716141596594,6.733542486936566,6.213633126811455,9.935405258343543,6.881879730728517,6.475617563336009,6.447869347109858,5.785078012118927,5.199689355966297,5.136233886732642,4.943029075569229,4.953245047252068,5.150537878147736,4.826253987858509,4.8119567796670415,4.991865918610438,4.682293691524169,4.578188867711052,4.399460694985038,4.795613225105619,4.5348782419411275,4.422401512369583,4.447174032543476,4.401045736992648,4.377857266993789,4.337677438316426,4.263996163516592,4.285911351324794,4.273009548919477,4.247609682606153,4.258361034850184,4.259200272846194,4.2294503520446565,4.215441095516539,4.262160894131704,4.20643793883908,4.190055364570744,4.160144129702231,4.1116413273156915,4.140010611435153,4.12529441111762,4.110366966438369,4.138323443814787,4.110105966555103,4.100875501722923,4.086144100754041,4.065809957742449,4.072840825191777,4.059115522475094,4.0562248986253655,4.068032636100791,4.051237443934687,4.046945521555964,4.03977514176242,4.026703481209608,4.024380624418113,4.002946358516056,4.014040069350734,4.013424876865189,4.0063902117195935,10.509306400254129,10.532137547240545,9.426549271231991,4.228776782668669,11.897780045644598,5.599897295923705,5.052121122334885,4.278878208689475,4.732197586589008,4.179333862171426,4.199011800104044,4.209853515738647,4.186555661625037,4.162621343873489,4.151139776882344,4.120622030590285,4.095924101987483,4.0546795860440685,4.006854913626044,4.013043439502432,4.1133726067420255,4.0242124925115075,3.9890818019635854,3.9859172249996817,4.003816967368804,3.985826841031348,3.98096741214918,3.977538658347894,3.9727953903614077,3.973449180063829,3.9714536045642617,3.9708448196275814,3.9733772125018163,3.9685557429544893,3.967105170201443,3.965512330694834,3.9630328574539395,3.9613134572399424,3.9556894983485007,3.9726845355247007,3.9644772348281605,3.959288390695506,3.956317291771395,3.955482058390335,3.9546821461401658,3.9540622381063617,3.9547499841043807,3.9537051418588027,3.9532946353895078,3.9536529367938034,3.9529050005229287,3.9529649510252365,3.952842680875366,3.9527503271393347,3.9527070296613003,3.9533668132848363,3.9526931245639343,3.9524787780491106,3.9523458691549083,3.952234945720393],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":342,"010":67,"100":103},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10137721299543045}],"circuit_evaluations":120,"status":"feasible","feasible_probability":1.0,"total_shots":512,"runtime_seconds":0.10153256199555472},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":4,"optimal_probability":0.48333905535946126,"feasible_probability":0.986861121539814,"uniform_optimal_probability":0.25,"uniform_feasible_probability":0.75,"shots_for_95_percent":5,"hit_curve":[{"shots":8,"quantum":0.9949225568524023,"uniform":0.8998870849609375},{"shots":16,"quantum":0.9999742195710829,"uniform":0.9899774042423815},{"shots":32,"quantum":0.9999999993353695,"uniform":0.9998995475742793},{"shots":64,"quantum":1.0,"uniform":0.9999999899093102},{"shots":128,"quantum":1.0,"uniform":0.9999999999999999},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.551115123125783e-17,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.663609479473369,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998360354387806,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999731156226,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999992,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.663609479473369,"diagnostic_seconds":0.0029395580058917403}
+{"instance":"n3-s1-r1.json","seed":3,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":6,"end":8,"reserved_end":9,"changed":true},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":9,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,1,0,0,0],"qubo_energy":10},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.469130758094223,2.8030825821904104],"expected_energy":16.231614783836747,"initial_expected_energy":24.405729308995614,"history":[24.405729308995614,23.246658195679892,21.267743164547806,28.06392985598344,21.17050770403154,22.590312471500944,21.182052910878838,21.491775799323975,21.370023707022618,21.26691305683444,21.17022078837961,21.167251035964075,21.16153475570317,21.151762177975563,21.143911082551753,21.235473855173502,21.221936325088034,21.137076563093846,21.14899013435214,21.139251219859688,21.137629162854658,21.136778225644555,21.136417273793363,21.136575143252017,21.13635552271211,21.13621337948776,21.135930398151036,21.135483762693223,21.134797766793344,21.133555576568217,21.131813658225397,21.129665640756727,21.128934508458727,21.136751189670765,21.144143009987978,21.128977124847534,21.126353740823625,21.12717988178203,21.126724092922082,21.12648116690304,21.126151573626498,21.126002810325588,21.126153651507714,21.125911632124215,21.125819780044772,21.125668843172406,21.12535904521758,21.12500921718172,21.12433161777764,21.123338440410734,21.139916290053726,21.133129231659172,21.123532938006466,21.12361414353587,21.123540706275705,21.12307194486843,21.12304187119748,21.123201468522517,21.122976419657128,21.122857514755115,25.993732181791316,27.418051000156197,20.873599236287,17.06217368956389,35.6181516606655,23.034383003389415,17.880274397126588,19.180380826325166,16.932993123967325,16.520768567831983,16.34053581580317,16.297377593062087,16.383830831963085,16.303859358257352,16.295040461624268,16.301654759574824,16.29397250675667,16.291444165389823,16.286770985884402,16.279943790120523,16.293382257125344,16.302386117154814,16.27694076810494,16.275605733040585,16.271598550791218,16.268465368801422,16.273882305965035,16.26522113289323,16.2635730321839,16.27327664296844,16.260859629050902,16.259193819403784,16.2575408215477,16.256148319584536,16.252244844904542,16.251858089956,16.24920059351135,16.247102037819182,16.244519551291056,16.24119383259883,16.26650339816338,16.23811546533819,16.240096798578,16.239742173023572,16.237811242287798,16.23841272301122,16.23751918317516,16.23724830433721,16.236780289454448,16.236912137011522,16.23633062108685,16.23623849535618,16.237121153540443,16.23619797979919,16.235844492520005,16.235321452023854,16.23429288936452,16.23316811594337,16.231614783836747,16.231789714205554],"feasible_probability":0.9830186848787699,"one_hot_probability":1.0,"sampled_feasible_fraction":0.98828125,"counts":{"000111":260,"001011":58,"010011":6,"100011":188},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1089725210040342},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[0,1],"fixed_cost":10,"removals":[{"variable":4,"forced_by":1,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[3],"max_component_qubits":3,"component_to_original":[[2,3,5]],"components":[{"qubits":3,"penalty":14,"objective_bound":13,"offset":14,"linear":[-14,-1,-3],"quadratic":[[0,1,28],[0,2,28],[1,2,28]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":9,"cost":0},{"index":1,"task":"t2","resource":"r1","start":15,"cost":13},{"index":2,"task":"t2","resource":"r0","start":15,"cost":11}],"conflicts":[]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":6,"end":8,"reserved_end":9,"changed":true},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":9,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,1,0,0,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":9,"end":11,"reserved_end":12,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":819382448,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.573164453715845,1.1904830864296199],"expected_energy":3.969359028797603,"initial_expected_energy":5.3752979069138735,"history":[5.3752979069138735,5.380703742593022,11.486174131675348,6.380339518677875,9.156307128193033,4.2543896301641855,4.097976129839869,4.494380182587948,4.082861520907182,4.258296708060508,4.0190234984795525,4.087780824138326,4.038664814701539,4.021334106485271,4.012957119429375,4.0158767366333965,4.01046022221329,4.009390169702896,4.0122589528499315,4.006616570246501,4.004071832247995,3.999316200817007,3.990894635531923,4.001326406212978,3.9996905725384755,3.9905942166578106,3.988026296789477,3.9842862319955934,3.9800470243931114,3.9777459698047224,3.972753732049298,3.970931167020837,3.9976562927176893,3.9923570005791347,3.971481584905133,3.9696527284268415,3.973790766942736,3.9697257789943325,3.970336636827633,3.9696366487184016,3.9694501774994917,3.9693655421966634,3.9693659738377596,3.969364761678582,3.969359605608507,3.969369883760721,3.9693603470004,3.9693606684854035,3.9693594742006777,3.969359265838671,3.9693592348616065,3.9693595552296035,3.969359150491167,3.9693590992712977,3.9693590561344774,3.9693590986357434,3.9693590470703795,3.9693590867586765,3.9693590464025994,3.969359028797603,7.888641737275925,8.427140998633117,8.097461965407764,6.4010767755382165,4.045378244634905,8.830417172263658,11.41681877700833,9.66941846623199,4.038699853949274,10.012387631633366,5.2706162359046616,4.330332736728717,4.173185274630895,4.255569454098715,4.053901006316262,3.9726378585162636,4.059504225784317,3.97837552017443,3.980310622060844,3.972128049509002,3.9717183017563817,3.9714409513023052,3.9729880609467925,3.971011290273955,3.970836200876721,3.970583119466844,3.9701771876833094,3.97137198223881,3.9705383184353575,3.970309017806719,3.9702413334922504,3.970114607024267,3.970198269826156,3.9700973658039223,3.970065652955424,3.9700312587425044,3.9699680953080727,3.969957274987708,3.9698573933654946,3.9697613465459605,3.969689438791721,3.969841335768218,3.969636834316712,3.969610908314589,3.9696845743110405,3.9695875615220406,3.9695677464744987,3.9695311250361396,3.969497202921553,3.9694512032935947,3.9694645168796714,3.9695240418732887,3.9694521526052053,3.969433739166177,3.969427709608758,3.9694164957921645,3.969406856080922,3.9693986735479525,3.969383602147916,3.9693903419080767],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":352,"010":66,"100":94},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09071828899323009}],"circuit_evaluations":120,"status":"feasible","feasible_probability":1.0,"total_shots":512,"runtime_seconds":0.09117895799863618},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":4,"optimal_probability":0.4875328838562761,"feasible_probability":0.9830186848787699,"uniform_optimal_probability":0.25,"uniform_feasible_probability":0.75,"shots_for_95_percent":5,"hit_curve":[{"shots":8,"quantum":0.9952430561687508,"uniform":0.8998870849609375},{"shots":16,"quantum":0.9999773714853863,"uniform":0.9899774042423815},{"shots":32,"quantum":0.9999999994879504,"uniform":0.9998995475742793},{"shots":64,"quantum":1.0,"uniform":0.9999999899093102},{"shots":128,"quantum":1.0,"uniform":0.9999999999999999},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6642454696082833,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998384990612413,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999739174468,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999993,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.6642454696082833,"diagnostic_seconds":0.0024409030011156574}
+{"instance":"n3-s1-r1.json","seed":4,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":6,"end":8,"reserved_end":9,"changed":true},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":9,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,1,0,0,0],"qubo_energy":10},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.5012247403924572,2.7964681949676327],"expected_energy":16.237930340714534,"initial_expected_energy":24.085675009312958,"history":[24.085675009312958,24.10654000715774,23.30717906323398,21.85880648202921,17.213806965203513,20.26509396543264,21.74167655852224,26.2727891057692,21.71146573843833,16.69876030486279,17.65879961931506,16.63855444948836,16.55296022179347,16.56115817129754,16.583850461019257,16.558147686371967,16.539823343788022,16.514234911434237,16.46612539219898,16.406841078828858,16.420699219836127,16.528902770961253,16.430172645988833,16.383930079711533,16.372967255444117,16.418005629445595,16.362129895534878,16.355488973113648,16.346552650397,16.330326080982772,16.30268117164194,16.34184715234727,16.411509872447954,16.309496284575744,16.300616624189722,16.30817026475118,16.299003838483177,16.296172752871666,16.291690454232477,16.305734019227035,16.288968378190873,16.28378030677869,16.274432074809408,16.258511850402478,16.377287254505575,16.316258735032573,16.255301337708698,16.274870786588174,16.2548737110062,16.251730899356872,16.24631022391614,16.258613931879783,16.25180800229234,16.2455777893849,16.25394324489704,16.243520656362364,16.242797236448087,16.24136804358042,16.24009300798234,16.237930340714534,18.145337221182082,18.654875231961267,20.77786306981087,28.81460184262552,16.821399661476775,20.57491102048585,16.692357410972384,16.906613829902838,16.77857842009648,16.618835120220133,16.600175256124633,16.80616760242912,16.55496987223399,16.538486006581167,16.512112927212158,16.46377227747315,16.407765016286795,16.492498392830218,16.591125728572933,16.391605115165255,16.369922591513557,16.365990688055092,16.41898478522795,16.35201495199618,16.344180752620503,16.33730015170336,16.345673892944625,16.332768713614726,16.32538203987585,16.311493081492536,16.294299497761347,16.38639016546843,16.28315382546858,16.29150247231914,16.294755094573485,16.28046221364879,16.280311516583485,16.282664272720957,16.278108522509488,16.273881733668798,16.266510675877093,16.285385052995256,16.26968678173979,16.268031828843494,16.26812741871425,16.264431986102807,16.264236007339598,16.266783942995087,16.262088235943654,16.25829299326427,16.251640339229052,16.240017928780887,16.367916923973535,16.304023495551572,16.254869361741665,16.242573408656312,16.240609303406874,16.24049429190952,16.239315764171888,16.240523950394596],"feasible_probability":0.9808734800763894,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.98046875,"counts":{"000111":278,"001011":55,"010011":10,"100011":169},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10492881800746545},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[0,1],"fixed_cost":10,"removals":[{"variable":4,"forced_by":1,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[3],"max_component_qubits":3,"component_to_original":[[2,3,5]],"components":[{"qubits":3,"penalty":14,"objective_bound":13,"offset":14,"linear":[-14,-1,-3],"quadratic":[[0,1,28],[0,2,28],[1,2,28]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":9,"cost":0},{"index":1,"task":"t2","resource":"r1","start":15,"cost":13},{"index":2,"task":"t2","resource":"r0","start":15,"cost":11}],"conflicts":[]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":6,"end":8,"reserved_end":9,"changed":true},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":9,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,1,0,0,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":9,"end":11,"reserved_end":12,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":367776961,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.770220142380151,2.7755992781199734],"expected_energy":3.954051535352427,"initial_expected_energy":9.792739768094743,"history":[9.792739768094743,10.449916768771782,8.921688596982168,6.6800776511636375,9.134256853097082,7.198557939062967,7.274421375377636,6.921301208088753,6.564690104908941,6.348574517140565,6.067626812018935,6.275482323348585,5.905478870494304,5.769007094164118,5.720844691772795,5.342632021657543,5.126425478989404,4.869813811847643,4.476385972922074,8.157666294342405,5.080841753585685,4.830235105287017,4.418684326542346,4.418279006259091,4.330673828156258,4.252074961206372,4.132380145789807,4.731222491823796,4.295795030302863,4.2174711415810915,4.1089894175801644,4.141197223406536,4.102968478324737,4.0919074024317,4.079768546622285,4.057478992458431,4.032558564942037,4.006689860473308,3.998274035028495,4.162902264234538,3.9725558563483343,3.983289260778459,3.9709912606138364,3.9793923981071293,3.9700856867519967,3.9684148157201524,3.966214873246549,3.9727812068219883,3.9645053156733057,3.9632329083056503,3.9618179212088203,3.959299543653067,3.9556267227335544,3.960117730553254,3.959840394567072,3.9550371493112677,3.9544295165465515,3.9546714263386633,3.954051535352427,3.9540833421335106,8.37962322394747,8.72163429055907,8.807133274459451,7.0454674708630405,8.02572423515759,8.305890267695876,6.253025245700315,5.098601145232566,8.319948344919418,7.722168731587324,7.535943425204611,4.866711004600324,4.6164908088893295,4.632868234121615,4.780386786905861,4.643133033003551,4.52027841309005,4.454001387173078,4.592260768941605,4.408467026459186,4.369914335696634,4.390250714418128,4.342738457798308,4.346544117318439,4.353660357278883,4.324398346221493,4.301405858490042,4.316729236220743,4.2823785532547936,4.270403240535907,4.276757063413891,4.267380091018838,4.260346990832504,4.24655129247407,4.220433482885274,4.192691645537067,4.138821396760147,4.0943250856074,4.05357942691594,4.036348915795289,4.4220969164290524,3.9856112297046744,4.0314454046402055,3.982640537023679,3.998503771948668,3.9820721945496134,3.9801232769065376,3.9773219207920456,3.974136626433638,3.9708267645531965,3.981615210566394,3.981536496419342,3.9720612395029278,3.9721911530811216,3.9712744538111497,3.9706361793838534,3.9704702098654203,3.970619343422358,3.9703539989120142,3.970353977301839],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":331,"010":81,"100":100},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09759121200477239}],"circuit_evaluations":120,"status":"feasible","feasible_probability":1.0,"total_shots":512,"runtime_seconds":0.09780503700312693},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":4,"optimal_probability":0.4897842409235052,"feasible_probability":0.9808734800763894,"uniform_optimal_probability":0.25,"uniform_feasible_probability":0.75,"shots_for_95_percent":5,"hit_curve":[{"shots":8,"quantum":0.9954076926276394,"uniform":0.8998870849609375},{"shots":16,"quantum":0.9999789107129977,"uniform":0.9899774042423815},{"shots":32,"quantum":0.999999999555242,"uniform":0.9998995475742793},{"shots":64,"quantum":1.0,"uniform":0.9999999899093102},{"shots":128,"quantum":1.0,"uniform":0.9999999999999999},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.163336342344337e-17,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6638844049556522,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998371044178143,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999734650293,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999993,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.6638844049556522,"diagnostic_seconds":0.0021794549975311384}
+{"instance":"n3-s1-r1.json","seed":5,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":6,"end":8,"reserved_end":9,"changed":true},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":9,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,1,0,0,0],"qubo_energy":10},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.2875923202931094,2.8111414021359034],"expected_energy":16.233498704737872,"initial_expected_energy":23.062155877530387,"history":[23.062155877530387,22.990115704581477,16.73872449664396,33.31220142227837,16.818914649861625,16.701969101285147,17.091415274471196,16.693963633577074,16.921397343629707,16.644967249920665,16.629975530978268,16.589761867380822,16.54165803570918,16.480076197686756,16.450017609097642,16.493152442409,16.747449606090164,16.385934931010414,16.375000556234006,16.35741107276626,16.342259551801604,16.54567224994691,16.311986294973583,16.328109699130675,16.308968390638505,16.31787210964602,16.307898633883354,16.30497435876215,16.30010446896996,16.318309038954542,16.29701534953949,16.291596009537155,16.28117587274481,16.264410300431173,16.483179303680018,16.30938283443173,16.289211169528905,16.261757149930524,16.26102061572504,16.25911403887306,16.257399238786245,16.254654900947738,16.25920371824604,16.25184926250535,16.251443978750913,16.262592871306992,16.248423936378565,16.246901765966538,16.24578312191372,16.24728454930092,16.24501461956848,16.24431928695545,16.244049818128385,16.24226640586357,16.24121332918584,16.239836615981215,16.23733640856783,16.233498704737872,16.252161730712235,16.256222169880388,23.469235803208754,24.470299176596182,24.762826783520733,25.403781498766932,24.043057226567782,23.317307747128257,23.30663423651012,23.33483024243797,23.365383793574058,23.243124574367403,23.25795597751476,23.22299507553386,23.20285769924386,23.16542680852962,23.24024799500512,23.003392566028303,22.84169786677201,22.51310743426292,21.94316537376308,19.546457268296066,26.67083058981329,21.978319253575183,21.029578127736542,19.163845985510683,19.93028482334128,19.07891087917437,18.878385702266005,18.576347506939253,18.391672633580757,17.595317359659465,19.817496743597427,18.835458531269452,18.168230662289677,17.697901983123614,17.495538082012366,17.397033519040598,17.48684393159347,17.334472235926462,17.35289112633983,17.305841568624555,17.28299315601465,17.27010627517079,17.388558545469223,17.24820616866294,17.2110341132968,17.156836959373877,17.06331055414586,17.261923028684574,17.046357932280326,16.977265561313583,16.868637799051815,16.730061765511778,16.697494482395186,16.508895279706753,17.136380622337985,16.851262492526462,16.488869369596102,16.683854449511635,16.46138765948648,16.460592781562745],"feasible_probability":0.9898148489207407,"one_hot_probability":1.0,"sampled_feasible_fraction":0.9921875,"counts":{"000111":229,"001011":76,"010011":4,"100011":203},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10690290800994262},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[0,1],"fixed_cost":10,"removals":[{"variable":4,"forced_by":1,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[3],"max_component_qubits":3,"component_to_original":[[2,3,5]],"components":[{"qubits":3,"penalty":14,"objective_bound":13,"offset":14,"linear":[-14,-1,-3],"quadratic":[[0,1,28],[0,2,28],[1,2,28]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":9,"cost":0},{"index":1,"task":"t2","resource":"r1","start":15,"cost":13},{"index":2,"task":"t2","resource":"r0","start":15,"cost":11}],"conflicts":[]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":6,"end":8,"reserved_end":9,"changed":true},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":9,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,1,0,0,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":9,"end":11,"reserved_end":12,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":803261128,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.803742235930756,2.7745487581035015],"expected_energy":3.9512900489059346,"initial_expected_energy":7.228728979614183,"history":[7.228728979614183,6.952830871687696,4.915220813806887,11.979748533347145,3.9735255074138944,3.98271781113659,4.08561971840976,4.537177384786149,4.043588101962176,3.9843148511272766,4.056175112316968,3.985469759801889,3.976455136585768,3.9724778582767604,3.9717844402485665,3.9741203085121186,3.9698739853774367,3.9681192134239898,3.9650819858737405,3.962783021635322,3.959627732395984,3.9653985577942215,3.9661112353004606,3.9579866231685115,3.9570072181214293,3.9575768385644143,3.955482113543373,3.9556508183090116,3.9558889909316246,3.9555708565042598,3.9552532370618714,3.954965815812619,3.9551058309981535,3.9547731601328744,3.9546509747744247,3.95471687462681,3.954611511247229,3.9545379304121435,3.9544118231792003,3.9542971283074406,3.9546396875614085,3.9542241587385054,3.9540724360571278,3.9539327057028513,3.953814161515931,3.953532630615755,3.9532871261445535,3.9528400273462556,3.9524088842415823,3.9520802719221026,3.951736011436055,3.9540016412743046,3.9520697501313027,3.9526077589324293,3.9518217851409236,3.951634245985745,3.9514759816188745,3.951343894679431,3.9512900489059346,3.951440228877714,9.237942698553436,10.746114368924903,7.724516313697474,8.004811970852568,6.649258285992593,5.170779306300051,6.772034158339084,7.540339552973476,4.684587175562419,4.4239367856918745,4.686232441992777,4.441728219026406,4.387220618600038,4.398419406832629,4.431650028939636,4.391644496777967,4.366322274472957,4.326142513333851,4.253608882947116,4.237965704780477,4.12009227141705,4.175423402403554,4.1948527317543185,4.13878248404418,4.110552504442227,4.145131606995035,4.0981138314000445,4.087575151319438,4.0751986728588765,4.124130905660151,4.068880799905996,4.054918758334276,4.045574924640162,4.052455719858719,4.041760903328184,4.039006948950859,4.039941120998984,4.035205162856247,4.031884073526769,4.028078906519561,4.034461892387245,4.026098447398692,4.022664733238727,4.019218913902274,4.01448594168564,4.008086574210417,4.00219851610294,3.9979912381858553,3.985627279079685,3.9842741831261552,3.973007305408501,3.9765805213679126,3.9722437883156823,3.9756840783354406,3.9698094184255854,3.96782183061654,3.964670245074407,3.9594390003725692,3.9622701610335973,3.9719345066701575],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":328,"010":70,"100":114},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08678812700964045}],"circuit_evaluations":120,"status":"feasible","feasible_probability":1.0,"total_shots":512,"runtime_seconds":0.08709664100024384},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":4,"optimal_probability":0.47908442363200976,"feasible_probability":0.9898148489207407,"uniform_optimal_probability":0.25,"uniform_feasible_probability":0.75,"shots_for_95_percent":5,"hit_curve":[{"shots":8,"quantum":0.9945782592040469,"uniform":0.8998870849609375},{"shots":16,"quantum":0.9999706047267415,"uniform":0.9899774042423815},{"shots":32,"quantum":0.9999999991359179,"uniform":0.9998995475742793},{"shots":64,"quantum":1.0,"uniform":0.9999999899093102},{"shots":128,"quantum":1.0,"uniform":0.9999999999999999},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6631177783345046,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998341082685508,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999724799334,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999992,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.7755575615628914e-17,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.6631177783345046,"diagnostic_seconds":0.0017977249954128638}
+{"instance":"n3-s1-r1.json","seed":6,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":6,"end":8,"reserved_end":9,"changed":true},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":9,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,1,0,0,0],"qubo_energy":10},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.005051766108264,1.0283303780226687],"expected_energy":19.788419716071246,"initial_expected_energy":28.80632162246815,"history":[28.80632162246815,28.839347959254994,21.50139152007896,22.17880658374233,21.666673030683544,20.804718474679525,20.760369272326024,20.704352030449694,20.72997180876203,20.914889070682495,20.488493401899504,20.564084124361546,20.521565879595933,20.498198036691587,20.473049590341834,20.461779909705953,20.47314425959874,20.456192098220377,20.45058648817993,20.441622488093735,20.421670047922603,20.40020098334525,20.359545858642086,20.369003366298216,20.390778190406124,20.37746616573793,20.367521538918936,20.35114243406654,20.35984577522002,20.345813234129714,20.341145201795896,20.330439886778553,20.309840726443433,20.269131135668665,20.19247977681082,20.215741766047216,20.574682512922486,20.173605932139505,20.280218148725186,20.174854950604995,20.162643892816448,20.16513674866431,20.1818088556216,20.16299013410388,20.15610861818569,20.151395013013545,20.142317522653748,20.133989413388903,20.11447302241733,20.12091760937429,20.12023022539781,20.111755281320107,20.116182829102293,20.107437418647432,20.10356190807423,20.10328939389239,20.097170534344148,20.088216689945668,20.077667597071063,20.060799574890627,36.18727059031159,34.69733445825462,23.224331412482346,23.102293835229492,21.65018856937317,21.175308971561886,24.527588502650428,25.5082332401523,22.819636902822694,20.045587121652193,22.295160143450282,20.099438474182577,21.165581353864265,19.951961801399488,19.955823398862243,19.951831661454026,19.998325618306286,19.9514652789515,19.9370304733453,19.915815322441098,19.8972692844247,19.920833503050716,19.89284332870992,19.889211137908777,19.8843732936228,19.874868910338428,19.859009970759207,20.212847491283334,19.90699765499012,19.899087395556386,19.855823469593876,19.852761646792786,19.85093469570909,19.86295205712358,19.847605012625653,19.846086489646193,19.844058862659676,19.840475665271356,19.844370150394766,19.84002015208557,19.837277717877367,19.832534888734838,19.825873000226927,19.820131794692077,19.81241824114088,19.804754578584003,19.816460880861516,19.849493743726825,19.79897255831388,19.80163313928254,19.800746237262537,19.798957974357194,19.798539503322328,19.79814095049874,19.797398211927195,19.796046251533653,19.793343613261477,19.788419716071246,19.808668258884985,19.81453222015856],"feasible_probability":0.8265059980955942,"one_hot_probability":1.0,"sampled_feasible_fraction":0.822265625,"counts":{"000111":207,"001011":83,"010011":91,"100011":131},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10077973498846404},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[0,1],"fixed_cost":10,"removals":[{"variable":4,"forced_by":1,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[3],"max_component_qubits":3,"component_to_original":[[2,3,5]],"components":[{"qubits":3,"penalty":14,"objective_bound":13,"offset":14,"linear":[-14,-1,-3],"quadratic":[[0,1,28],[0,2,28],[1,2,28]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":9,"cost":0},{"index":1,"task":"t2","resource":"r1","start":15,"cost":13},{"index":2,"task":"t2","resource":"r0","start":15,"cost":11}],"conflicts":[]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":6,"end":8,"reserved_end":9,"changed":true},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":9,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,1,0,0,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":9,"end":11,"reserved_end":12,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":3153149895,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7848284662904668,2.7748381521724963],"expected_energy":3.952377689233102,"initial_expected_energy":9.537082444712897,"history":[9.537082444712897,10.201812728206606,5.556656774019584,8.30972768979122,6.70822451968202,5.804224233347206,5.133006224321374,5.5531196407011665,5.005735091193501,4.981740603884246,4.837285833133594,4.649940571637502,4.4484165471715205,4.181698830865031,4.740896798100267,4.252954477217019,4.1993722173874675,4.30414279654772,4.139523543903039,4.123736342369736,4.096462223438045,4.072826487538974,4.05284079888422,4.015204000994738,4.033750247408463,4.008934568068703,4.024616474036733,4.00864412123888,4.00409248250742,3.998161634965414,3.992684635342026,3.9890327197940554,3.9837788419878475,3.9757388355065792,3.9688534841467784,3.962209361490565,3.9629125851467393,3.993262782505978,3.9623627723125003,3.9561713726496412,3.956468472444576,3.9557340932180525,3.9562250927450293,3.9568118699722206,3.9546259477826,3.955254004694459,3.9550214198167373,3.9546477536714812,3.9544408794391614,3.9541129871276195,3.953961993025161,3.953165382840731,3.9532758510952277,3.9530639761221993,3.95344227978017,3.9529816575631402,3.952859298914651,3.952736502781897,3.952670860468614,3.952377689233102,11.964611115925603,11.174951796917139,6.2481578036788985,6.484370484150972,7.016063746171516,6.846831204572522,5.274000308790019,5.158543864320656,4.820827606946837,4.6024300788825405,4.779777357982663,4.466848716002575,4.308331529173627,4.323897862319556,4.226775775150703,4.162609592102778,4.119676854631191,4.100039063666883,4.0665195004198935,3.9920074091166153,4.037065837563469,4.449632791618988,4.001215401597591,3.9928206478050106,3.990173161228603,3.9983095470242414,4.00139997638767,3.9748783154880316,3.9697263263670246,3.9714720496738636,3.9698065807503777,3.9699278869427914,3.9700402972977518,3.969827660919198,3.969755268158285,3.9697523468764015,3.9697204982023204,3.969695971133934,3.9696503725252628,3.969594541382753,3.9695413094351144,3.969512166032274,3.9697674809312153,3.9694585171281194,3.9694560455634393,3.9694381472006324,3.9694141183488645,3.9693979448373398,3.969436809307029,3.9693943198473995,3.9693869113982023,3.9693755048425476,3.9694133292444014,3.969388678719185,3.9693850151428336,3.9693725955196655,3.9693751791554375,3.9693720692679193,3.96937105439099,3.969369941945532],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":339,"010":66,"100":107},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.0842186549998587}],"circuit_evaluations":120,"status":"feasible","feasible_probability":1.0,"total_shots":512,"runtime_seconds":0.08436223601165693},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":4,"optimal_probability":0.4205655525091264,"feasible_probability":0.8265059980955942,"uniform_optimal_probability":0.25,"uniform_feasible_probability":0.75,"shots_for_95_percent":6,"hit_curve":[{"shots":8,"quantum":0.9872932500359461,"uniform":0.8998870849609375},{"shots":16,"quantum":0.999838538505351,"uniform":0.9899774042423815},{"shots":32,"quantum":0.9999999739301857,"uniform":0.9998995475742793},{"shots":64,"quantum":0.9999999999999993,"uniform":0.9999999899093102},{"shots":128,"quantum":1.0,"uniform":0.9999999999999999},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.0531133177191805e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6636324560458008,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998361250118901,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999731449882,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999993,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.3306690738754696e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.6636324560458008,"diagnostic_seconds":0.001712274010060355}
+{"instance":"n3-s1-r1.json","seed":7,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":6,"end":8,"reserved_end":9,"changed":true},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":9,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,1,0,0,0],"qubo_energy":10},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.3748734706132524,2.8043251886647047],"expected_energy":16.2239506469876,"initial_expected_energy":31.81961280457066,"history":[31.81961280457066,31.152036784437982,27.236074769679593,21.195816666372938,28.493989091242156,21.699176180861357,24.7786494796758,21.08260659257563,20.067829834973693,20.942479156405152,20.12108826009974,20.112776922102025,20.17094346001972,20.09593329938941,20.06677815453511,20.072729359622862,20.06838293754617,20.061580484003937,20.058852470419644,20.072584112575427,20.054188159904356,20.05031740085119,20.045416282218618,20.036444477861757,20.032217330359032,20.01417715566503,20.018045172209863,20.01159029513824,20.024614777728516,20.007080044635984,20.00315202560526,19.995842301451113,19.981865466490977,19.962740201055507,19.9522704408218,19.914954266411957,19.97847618797895,20.031809332215754,19.920822253428714,19.913725711416642,19.925900136547238,19.909808152415042,19.90768062000294,19.904789305763565,19.89934636658595,19.88959932783265,19.90830064253593,19.919122660306314,19.88802419111788,19.885224513467524,19.87954591417731,19.8688857001386,19.850204624760618,19.837497628940348,20.026535600517523,20.024175826970747,19.83700117034315,19.814191221205235,19.84037860479858,19.811522217737384,16.900928418923815,16.448779160451124,27.692693231411152,26.585319887448644,17.820716690615118,17.659088281061493,16.418636333068957,16.24134848457037,16.260099835274456,16.237724142884733,16.259161721231575,16.236201469230927,16.230360486667806,16.226549016935053,16.22539333963663,16.224449679477907,16.22500780468536,16.224620931300635,16.22449149618174,16.224438180526825,16.224430141236077,16.224468249678132,16.22440269748183,16.224382408255796,16.224339845194002,16.2242768404722,16.224448725806077,16.22452038151651,16.224252647875304,16.224246199275466,16.224227613394433,16.22419381847463,16.224140616961854,16.2244223233363,16.22416656611456,16.224171600349315,16.224158150846943,16.224116415481436,16.2241053578498,16.224125767040295,16.224097737487547,16.224090759558262,16.224080891255927,16.224066336983675,16.224051191964474,16.22402851454997,16.22402459672545,16.224121901415383,16.224002824756347,16.223997136383506,16.223987140609374,16.223970287855135,16.223996008107346,16.2239809259206,16.22396810107428,16.22398768374663,16.223961654650317,16.223958674176263,16.22395448432061,16.2239506469876],"feasible_probability":0.986281150248394,"one_hot_probability":1.0,"sampled_feasible_fraction":0.98828125,"counts":{"000111":245,"001011":80,"010011":6,"100011":181},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09889729900169186},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[0,1],"fixed_cost":10,"removals":[{"variable":4,"forced_by":1,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[3],"max_component_qubits":3,"component_to_original":[[2,3,5]],"components":[{"qubits":3,"penalty":14,"objective_bound":13,"offset":14,"linear":[-14,-1,-3],"quadratic":[[0,1,28],[0,2,28],[1,2,28]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":9,"cost":0},{"index":1,"task":"t2","resource":"r1","start":15,"cost":13},{"index":2,"task":"t2","resource":"r0","start":15,"cost":11}],"conflicts":[]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":6,"end":8,"reserved_end":9,"changed":true},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":9,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,1,0,0,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":9,"end":11,"reserved_end":12,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.5723788208355445,1.1904374279262881],"expected_energy":3.9693610878082968,"initial_expected_energy":5.471628755754461,"history":[5.471628755754461,5.527864851718816,11.56358007705309,6.238224035284269,9.299404608474326,4.278256259336828,4.048020230337996,4.488565618590741,4.091945535439357,4.005923866292789,4.102393121387361,3.9937266635085766,4.0133090070485515,3.9893097308810535,3.987084276338013,3.9980233402618452,3.984666584623609,3.98310133476791,3.981693652503931,3.9815439173090565,3.979220103281475,3.977301848057598,3.9756110818833528,3.9819003552401973,3.974943127476787,3.9741477036531907,3.9729743248720695,3.9768671053896263,3.972070773499926,3.9729739382422746,3.973672796022276,3.9715673243949183,3.9715197797061172,3.971687348650431,3.9715334089592247,3.971452835705564,3.971335439520512,3.9712654397714355,3.9710109266595497,3.9708064190244556,3.970430473334991,3.9701814739451766,3.9701052991657124,3.969741041822231,3.9693914289901633,3.9694248795735483,3.9701455055083263,3.969402126564094,3.96940512064267,3.9694281569413237,3.9693701916841833,3.9693646912752687,3.9693628558661467,3.969376387044787,3.969361522590883,3.969362351267946,3.969361939355001,3.969361414475845,3.969362290038699,3.9693610878082968,5.257299914781713,5.303684188199216,11.501056541920095,6.4912772668125545,9.035717490773923,5.266987963948287,4.18894854268052,4.096702777940114,4.074765974058768,4.262195998906801,3.987159568044958,4.05336436482739,3.987170835979768,3.989947267932724,3.9873890892588624,3.989247806828824,3.987798138527376,3.9854918675488427,3.983926901865696,3.9826453350753623,3.9793504741755523,3.978665881929258,3.9757697341462555,3.9759704975734085,3.9754470053114903,3.9766992153162937,3.976154768161322,3.974751050033868,3.9757130790459416,3.9742694968392582,3.974208362445056,3.973946172517245,3.97347157367542,3.972676413342608,3.9713400970026385,3.9726018714278366,3.9743148594375866,3.971578208436882,3.971288097658693,3.9719156335957084,3.971249696790279,3.9710448761318666,3.9709048511454945,3.970784678448866,3.970666366328321,3.970446070272226,3.970386035752196,3.9699551856613535,3.970572603483294,3.9698811007575316,3.9701947761135847,3.9698991975486,3.969800687681035,3.969809208988779,3.969778470600465,3.969763682317121,3.9697657075199606,3.9697357226012264,3.969716340126641,3.9697190687527715],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":338,"010":62,"100":112},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.0824269440054195}],"circuit_evaluations":120,"status":"feasible","feasible_probability":1.0,"total_shots":512,"runtime_seconds":0.08263715599605348},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":4,"optimal_probability":0.48408275102426046,"feasible_probability":0.986281150248394,"uniform_optimal_probability":0.25,"uniform_feasible_probability":0.75,"shots_for_95_percent":5,"hit_curve":[{"shots":8,"quantum":0.9949807319993103,"uniform":0.8998870849609375},{"shots":16,"quantum":0.9999748069487373,"uniform":0.9899774042423815},{"shots":32,"quantum":0.9999999993653101,"uniform":0.9998995475742793},{"shots":64,"quantum":1.0,"uniform":0.9999999899093102},{"shots":128,"quantum":1.0,"uniform":0.9999999999999999},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.885780586188048e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6642217099942761,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998384076098948,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999738878994,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999993,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.942890293094024e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.6642217099942761,"diagnostic_seconds":0.001707995994365774}
+{"instance":"n3-s1-r1.json","seed":8,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":6,"end":8,"reserved_end":9,"changed":true},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":9,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,1,0,0,0],"qubo_energy":10},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.316439519611533,2.8049493270872388],"expected_energy":16.228466414209116,"initial_expected_energy":21.663848813004705,"history":[21.663848813004705,21.066202429413888,25.432973839084838,35.389168817584036,23.533560436233103,22.332449343258723,21.030126631817243,21.026419791891158,20.957643441577467,20.82364253581434,20.582787177486527,21.909972814584137,22.318837610792883,20.5410808848907,21.45608082609209,20.51272524598841,20.537939134425933,20.590825050961516,20.486540359572786,20.47881621063221,20.496444455397505,20.477320120183435,20.471375070070618,20.460480185509045,20.437858209387002,20.393845805908022,20.339204525447425,20.348060480694592,20.44779628028149,20.33257818424098,20.347699188158796,20.322248368998913,20.323443131673223,20.324712197439347,20.31803766051847,20.3119250699293,20.32065869740873,20.302284682617625,20.294505600816173,20.31559138586611,20.286556633787214,20.27746146327279,20.264180910829143,20.404392652707706,20.251217018801604,20.242603839980486,20.290353851005975,20.22721191904957,20.21965086776648,20.210807558889385,20.199038028098038,20.21444455288644,20.187741625598015,20.190813389803704,20.183367295597154,20.180063193441555,20.180630178040776,20.17558880496639,20.172931033324836,20.174307571980417,25.531278875335666,25.30998431603357,20.973985853056828,17.40352522378149,23.64879929826342,19.86045673799913,23.02398156200509,16.422568250882684,16.83485124376067,16.443300750373524,16.590033078120687,16.439302161857093,16.447364639837488,16.413107257443663,16.402387244881563,16.38829545313419,16.4072745878145,16.37592636685735,16.381161357889106,16.374377755500632,16.370423666584433,16.366498006753602,16.36010816528615,16.34834354446957,16.33356373440816,16.306630383381606,16.2793769902432,16.396260805689003,16.40386198824894,16.26388596233622,16.27411192607769,16.26620786249836,16.26405774148307,16.26258946142424,16.262705307666614,16.263769092018446,16.26098878399394,16.260467510256618,16.264129307747314,16.25810360896064,16.25654047192052,16.254701127420077,16.25126838139768,16.248014796084107,16.245392133684966,16.24419116840142,16.28245341940391,16.236916911233017,16.23779914102903,16.236577348932457,16.237708571191895,16.2376460728962,16.235628449015294,16.23735319044224,16.23506655311304,16.234687550446566,16.234113093567185,16.233279407772493,16.23148398205336,16.228466414209116],"feasible_probability":0.9880363058642959,"one_hot_probability":1.0,"sampled_feasible_fraction":0.986328125,"counts":{"000111":250,"001011":74,"010011":7,"100011":181},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10088334001193289},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[0,1],"fixed_cost":10,"removals":[{"variable":4,"forced_by":1,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[3],"max_component_qubits":3,"component_to_original":[[2,3,5]],"components":[{"qubits":3,"penalty":14,"objective_bound":13,"offset":14,"linear":[-14,-1,-3],"quadratic":[[0,1,28],[0,2,28],[1,2,28]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":9,"cost":0},{"index":1,"task":"t2","resource":"r1","start":15,"cost":13},{"index":2,"task":"t2","resource":"r0","start":15,"cost":11}],"conflicts":[]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":6,"end":8,"reserved_end":9,"changed":true},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":9,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,1,0,0,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":9,"end":11,"reserved_end":12,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":3257320810,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.5717112113930747,1.1906315785030597],"expected_energy":3.969365091455322,"initial_expected_energy":10.262716551943782,"history":[10.262716551943782,10.609292830091416,9.781499743716315,5.286872621919721,8.177207148101544,7.647840261638535,5.898698397767209,5.709730080969921,4.861122746152457,4.924109346335363,4.91395269816355,4.834723035970943,5.001843183945579,4.705040671946504,4.605735828802615,4.419312044730762,4.335685084815275,4.39293319826492,4.92119811044784,4.425731774111906,4.1738503186814775,4.127934868076207,4.238616448730114,4.099730243606709,4.081205843352833,4.060998276113223,4.047954448387342,4.083989263909691,4.038012023041038,4.031345130566052,4.023147261398386,4.008975179658801,3.987125947395948,4.2121474302339,4.0699857680602225,4.000657636420366,3.989956006905677,3.9880836150293097,3.9864173767399236,3.9885804162176504,3.984630727189448,3.983017320003418,3.980222396863341,3.978204251058866,3.9738969333653027,3.9786274976314457,3.973329497927823,3.975006075940492,3.972421274971482,3.9718084751843428,3.9720178872761496,3.9711321077787516,3.972110095917354,3.9713981074768583,3.971099918851797,3.9709685800103505,3.9707528374038175,3.9712580871266647,3.970631199664531,3.970404180549169,6.915181161489551,6.96506348879429,11.550257880985566,5.003633136562212,11.677093705441349,4.124343573569025,4.437880131751802,4.079303087040748,4.572676058084668,4.0510536732139695,4.017273803276717,3.995036661504791,4.0202745124466785,4.083676097633184,3.9973590707165023,3.9957003112187106,3.996817099099128,3.9924654045370738,3.99136840802342,3.9986883409196023,3.9890987491728254,3.987116279982941,3.983666621081645,3.979123380235746,3.978680147975796,3.974483820243092,3.97253685783242,3.970041374708435,3.9705155553665663,3.9751565050442763,3.9700974136633658,3.9698295726743256,3.970657958803761,3.9700823368641465,3.969906129992615,3.969703839466158,3.9696425709852763,3.969714661119268,3.969621154631631,3.969602227176493,3.9695622609194707,3.969493764643083,3.969713903367299,3.969602201411797,3.969479599474238,3.969511941541206,3.969471129432427,3.969456618328099,3.969431798344928,3.969395303894359,3.969423552911382,3.9694302528392367,3.9694007173583468,3.9693950145172874,3.9693867880541402,3.9693797478999766,3.969370288921942,3.969405758347941,3.9693702438582585,3.969365091455322],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":353,"010":73,"100":86},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08601986200665124}],"circuit_evaluations":120,"status":"feasible","feasible_probability":1.0,"total_shots":512,"runtime_seconds":0.08621590099937748},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":4,"optimal_probability":0.4816687677408338,"feasible_probability":0.9880363058642959,"uniform_optimal_probability":0.25,"uniform_feasible_probability":0.75,"shots_for_95_percent":5,"hit_curve":[{"shots":8,"quantum":0.9947897444395776,"uniform":0.8998870849609375},{"shots":16,"quantum":0.9999728532369951,"uniform":0.9899774042423815},{"shots":32,"quantum":0.9999999992630533,"uniform":0.9998995475742793},{"shots":64,"quantum":1.0,"uniform":0.9999999899093102},{"shots":128,"quantum":1.0,"uniform":0.9999999999999999},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6641860461709314,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998382702538968,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999738434893,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999993,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.551115123125783e-17,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.6641860461709314,"diagnostic_seconds":0.0017175179964397103}
+{"instance":"n3-s1-r1.json","seed":9,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":6,"end":8,"reserved_end":9,"changed":true},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":9,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,1,0,0,0],"qubo_energy":10},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.589886860157895,1.025874551238096],"expected_energy":19.7815008674504,"initial_expected_energy":25.919762464294497,"history":[25.919762464294497,26.151234157688826,25.6459965785234,23.706283445377245,23.641183355527787,26.482491618608016,24.069580316874177,26.892994764307158,26.557285811473328,22.921576585784685,23.90359378122292,22.938888697497426,22.9953178482248,23.098994370898765,22.940217529460284,22.939317823975152,22.9186771633641,22.91375379976033,22.909459635755553,22.909666467319976,22.906182267763278,22.903520984885184,22.90176284825176,22.921898914288466,22.89815024878161,22.892262484365403,22.884899919076094,22.87715999124101,22.86857005668432,22.850870086902514,22.853172768631655,22.845526647906343,22.85053419995831,22.848083620772414,22.841974651177384,22.84180507873812,22.847178439775025,22.836858548358332,22.82787710041508,22.81170316263888,22.77833741294522,22.713863251238134,22.870059276331276,22.944168236411315,22.773718745947352,22.724487707187077,22.723021223640302,22.699320764813883,22.69279320424012,22.68361646883896,22.66658016136036,22.654195747774935,22.62491551506312,22.70318455050827,22.66826116523245,22.6315951708235,22.60850461617276,22.605539849709686,22.595563188472557,22.586680668757488,22.613796629161758,22.57701903979031,23.67216249052508,35.21707847597801,20.017467428558216,23.66850310453516,19.97574049144123,20.366351325048047,20.130368384929128,19.897723077825688,20.09393547390937,19.919304569894337,19.915829434064925,19.894345792870414,19.888552798023465,19.884742456888343,19.88529753970337,19.883364021878577,19.88205631184934,19.87952291337403,19.874721675317343,19.868423465262843,19.86540575760522,19.85523097811417,19.834189122032857,19.834075799196118,19.822906924731118,19.998516568254793,19.814728472715146,19.802047276795744,19.819600917004962,19.807076511593113,19.80365653646328,19.80005868072223,19.799092135647342,19.802141273140393,19.798295324670615,19.79767952275478,19.796243834529946,19.79350754442964,19.789349685516093,19.81228194560172,19.823995559399847,19.78807489816565,19.78941445096891,19.789608262409565,19.78686028983566,19.7866777736281,19.790549590135818,19.78564283106556,19.785108876719583,19.784667817464854,19.785812148963892,19.784262212024124,19.783776349222514,19.783141218359518,19.786387555771167,19.782395031554767,19.782086096701896,19.7815008674504],"feasible_probability":0.8217030461585126,"one_hot_probability":1.0,"sampled_feasible_fraction":0.806640625,"counts":{"000111":227,"001011":92,"010011":99,"100011":94},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10006307499133982},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":6,"fixed_variables":[0,1],"fixed_cost":10,"removals":[{"variable":4,"forced_by":1,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[3],"max_component_qubits":3,"component_to_original":[[2,3,5]],"components":[{"qubits":3,"penalty":14,"objective_bound":13,"offset":14,"linear":[-14,-1,-3],"quadratic":[[0,1,28],[0,2,28],[1,2,28]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":9,"cost":0},{"index":1,"task":"t2","resource":"r1","start":15,"cost":13},{"index":2,"task":"t2","resource":"r0","start":15,"cost":11}],"conflicts":[]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r2","start":6,"end":8,"reserved_end":9,"changed":true},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":9,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,1,0,0,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":9,"end":11,"reserved_end":12,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":747784396,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.5812052878014446,1.1910166595810794],"expected_energy":3.969469740557117,"initial_expected_energy":6.291195133638203,"history":[6.291195133638203,6.861926587213735,11.604798931753562,5.838759985964952,9.713903630434578,6.618999596814225,6.550599263991896,4.735179049629743,4.821037777508746,4.753590607484636,4.9079144176591,4.475854641844615,4.3537969318853955,4.749954470158528,4.285038456665976,4.325182905058458,4.225413178491705,4.334112141054695,4.191382226122107,4.168232780109868,4.137992406815167,4.098292076763745,4.068256023746678,4.0307725795090175,3.994868214239866,4.424562578173645,4.0024185930888745,4.013003321916412,4.004240965327524,3.9820004175473374,3.9800652983411364,3.983500561298558,3.979515615618182,3.979872741927582,3.978363188304098,3.978155208108452,3.9805102998410993,3.9766652926306993,3.9757480313914684,3.9747111346876856,3.973021499992791,3.9725970219291433,3.9738293171469525,3.9810469014700582,3.9707350354915354,3.9703186168104487,3.97027295054066,3.9721400422693427,3.969891965934893,3.9698519879699266,3.969689729565805,3.9694870225111214,3.9695360464524896,3.9696761808517587,3.9695102002847946,3.969514615378279,3.969489830985612,3.9694737444425083,3.969469740557117,3.9694940848421583,11.218610940547041,9.966248177712918,7.506872181205802,6.468949168137141,8.693767455860513,7.224953605127999,6.724246626376443,6.363531859589442,6.1958587434060135,6.14421435026925,6.487823893711307,6.061657420299551,5.908470664229359,5.619750273184311,5.1358728801370255,6.15750598131536,5.302995669795295,5.207649240751728,5.31407081375292,5.099406199573322,4.969938282494226,4.9326644383156095,4.804508084097417,4.698724811133777,4.500401707579105,4.282758990347672,4.449579374010291,4.759784798884326,4.281113130369787,4.442424764167372,4.233447915545293,4.3134238272597445,4.266162877953451,4.227772293303495,4.2109597691935265,4.190434197309193,4.202414706743831,4.174739515819358,4.167148885276933,4.180833841576105,4.164198597537958,4.158213013751157,4.146666432569392,4.124865295472765,4.091175439095634,4.09424599586505,4.122771052213395,4.075944693492254,4.095278029694391,4.071721825170368,4.063333581004848,4.046786875817445,4.017528072609206,4.041120109361561,4.053582575515697,4.011836254595744,4.026835726593882,4.010355821808164,4.00434947002292,3.9936904851227935],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":341,"010":75,"100":96},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08883256600529421}],"circuit_evaluations":120,"status":"feasible","feasible_probability":1.0,"total_shots":512,"runtime_seconds":0.08906962900073268},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":4,"optimal_probability":0.44091544307284636,"feasible_probability":0.8217030461585126,"uniform_optimal_probability":0.25,"uniform_feasible_probability":0.75,"shots_for_95_percent":6,"hit_curve":[{"shots":8,"quantum":0.9904540320812565,"uniform":0.8998870849609375},{"shots":16,"quantum":0.9999088744964943,"uniform":0.9899774042423815},{"shots":32,"quantum":0.9999999916961426,"uniform":0.9998995475742793},{"shots":64,"quantum":0.9999999999999999,"uniform":0.9999999899093102},{"shots":128,"quantum":1.0,"uniform":0.9999999999999999},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.664473327836956,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998393737962077,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999741992227,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999993,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.664473327836956,"diagnostic_seconds":0.0022341700096148998}
+{"instance":"n3-s1-r2.json","seed":0,"direct":{"status":"infeasible_domain","best":null,"seed":0,"mixer":"xy","runtime_seconds":4.817993612959981e-06,"circuit_evaluations":0},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":5,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.1202991269528866e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":2.215994754806161e-06}
+{"instance":"n3-s1-r2.json","seed":1,"direct":{"status":"infeasible_domain","best":null,"seed":1,"mixer":"xy","runtime_seconds":1.681997673586011e-06,"circuit_evaluations":0},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":5,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":2.007599687203765e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":9.849900379776955e-07}
+{"instance":"n3-s1-r2.json","seed":2,"direct":{"status":"infeasible_domain","best":null,"seed":2,"mixer":"xy","runtime_seconds":1.2509990483522415e-06,"circuit_evaluations":0},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":5,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.6021003830246627e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":8.369970601052046e-07}
+{"instance":"n3-s1-r2.json","seed":3,"direct":{"status":"infeasible_domain","best":null,"seed":3,"mixer":"xy","runtime_seconds":8.700008038431406e-07,"circuit_evaluations":0},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":5,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.4138000551611185e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":6.869959179311991e-07}
+{"instance":"n3-s1-r2.json","seed":4,"direct":{"status":"infeasible_domain","best":null,"seed":4,"mixer":"xy","runtime_seconds":8.720089681446552e-07,"circuit_evaluations":0},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":5,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.2710006558336318e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":6.199989002197981e-07}
+{"instance":"n3-s1-r2.json","seed":5,"direct":{"status":"infeasible_domain","best":null,"seed":5,"mixer":"xy","runtime_seconds":7.810012903064489e-07,"circuit_evaluations":0},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":5,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.1320997145958245e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":5.80010237172246e-07}
+{"instance":"n3-s1-r2.json","seed":6,"direct":{"status":"infeasible_domain","best":null,"seed":6,"mixer":"xy","runtime_seconds":7.33998604118824e-07,"circuit_evaluations":0},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":5,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.1384006938897073e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":5.530018825083971e-07}
+{"instance":"n3-s1-r2.json","seed":7,"direct":{"status":"infeasible_domain","best":null,"seed":7,"mixer":"xy","runtime_seconds":7.940107025206089e-07,"circuit_evaluations":0},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":5,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.109400182031095e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":5.010078893974423e-07}
+{"instance":"n3-s1-r2.json","seed":8,"direct":{"status":"infeasible_domain","best":null,"seed":8,"mixer":"xy","runtime_seconds":6.860063876956701e-07,"circuit_evaluations":0},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":5,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.0967996786348522e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":5.579931894317269e-07}
+{"instance":"n3-s1-r2.json","seed":9,"direct":{"status":"infeasible_domain","best":null,"seed":9,"mixer":"xy","runtime_seconds":7.049966370686889e-07,"circuit_evaluations":0},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":5,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.0503994417376816e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":4.960020305588841e-07}
+{"instance":"n3-s1-r3.json","seed":0,"direct":{"status":"infeasible_domain","best":null,"seed":0,"mixer":"xy","runtime_seconds":2.749991836026311e-06,"circuit_evaluations":0},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":4,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":2.7179004973731935e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":1.3039971236139536e-06}
+{"instance":"n3-s1-r3.json","seed":1,"direct":{"status":"infeasible_domain","best":null,"seed":1,"mixer":"xy","runtime_seconds":1.868000254034996e-06,"circuit_evaluations":0},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":4,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.7023994587361813e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":8.620118023827672e-07}
+{"instance":"n3-s1-r3.json","seed":2,"direct":{"status":"infeasible_domain","best":null,"seed":2,"mixer":"xy","runtime_seconds":9.310024324804544e-07,"circuit_evaluations":0},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":4,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.2855001841671765e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":6.920017767697573e-07}
+{"instance":"n3-s1-r3.json","seed":3,"direct":{"status":"infeasible_domain","best":null,"seed":3,"mixer":"xy","runtime_seconds":7.789931260049343e-07,"circuit_evaluations":0},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":4,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.1365002137608826e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":6.050104275345802e-07}
+{"instance":"n3-s1-r3.json","seed":4,"direct":{"status":"infeasible_domain","best":null,"seed":4,"mixer":"xy","runtime_seconds":7.600028766319156e-07,"circuit_evaluations":0},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":4,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.030000566970557e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":5.360052455216646e-07}
+{"instance":"n3-s1-r3.json","seed":5,"direct":{"status":"infeasible_domain","best":null,"seed":5,"mixer":"xy","runtime_seconds":6.710033630952239e-07,"circuit_evaluations":0},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":4,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":9.683004464022815e-06},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":5.710026016458869e-07}
+{"instance":"n3-s1-r3.json","seed":6,"direct":{"status":"infeasible_domain","best":null,"seed":6,"mixer":"xy","runtime_seconds":1.267006155103445e-06,"circuit_evaluations":0},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":4,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.0082003427669406e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":4.750036168843508e-07}
+{"instance":"n3-s1-r3.json","seed":7,"direct":{"status":"infeasible_domain","best":null,"seed":7,"mixer":"xy","runtime_seconds":7.179914973676205e-07,"circuit_evaluations":0},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":4,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":9.812007192522287e-06},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":5.620095180347562e-07}
+{"instance":"n3-s1-r3.json","seed":8,"direct":{"status":"infeasible_domain","best":null,"seed":8,"mixer":"xy","runtime_seconds":7.130001904442906e-07,"circuit_evaluations":0},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":4,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":9.206996764987707e-06},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":5.609908839687705e-07}
+{"instance":"n3-s1-r3.json","seed":9,"direct":{"status":"infeasible_domain","best":null,"seed":9,"mixer":"xy","runtime_seconds":8.319912012666464e-07,"circuit_evaluations":0},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":4,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":9.88300598692149e-06},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":4.879984771832824e-07}
+{"instance":"n3-s2-r0.json","seed":0,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":10,"violation_count":2,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["resource","precedence"]},{"kind":"conflict","tasks":["t0","t2"],"variables":[0,4],"reasons":["group"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":5,"end":8,"reserved_end":9,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":64},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.057897039915644,1.2505772093182166],"expected_energy":73.78237365540517,"initial_expected_energy":78.92988193281786,"history":[78.92988193281786,79.34534158597216,79.87098055382009,79.30913512225281,76.53505145233325,80.49920157648683,78.87018517498308,76.98391023271458,77.26606839637168,76.57555139707044,76.47677624614136,76.86902307502218,76.4385025733738,76.44744276284084,76.43063191645678,76.41816576649262,76.40829866802187,76.42179653470183,76.40308621634387,76.40190255712224,76.39457869603766,76.38422097276506,76.36126034430723,76.3172831665882,76.40152399745682,76.36789879686465,76.34857610341004,76.3005804342267,76.28588314362135,76.32745791119754,76.26406503836698,76.25506677075788,76.24045733255727,76.21133897407499,76.15119970742259,76.01651534983941,76.28893738066922,76.5051274302636,75.99061506872954,76.22275841691925,75.9757367412667,75.95572509599427,76.03094021663112,75.93347119994664,75.91764432929027,75.89928633148583,75.86173622441778,75.78232723145025,75.66022557174175,75.61297305621225,75.5991943117019,75.07203856038427,74.83240262723584,74.15314613895578,76.3406107673937,76.13198009077396,74.66933378632248,74.10914921380902,74.32723151290624,74.09442556641035,84.13089708633795,83.11488529572048,80.03368853820044,78.70419299752531,77.31583313460322,81.29868233971189,76.08616323555775,80.55872370393831,76.79574265338067,75.45300451542859,75.70501899478339,75.93084007018638,75.40174614421576,75.33851110024867,75.79532659061984,75.25185002994425,75.18574620232053,75.10299013814317,75.00560613502063,75.00827614052601,75.15705039755318,74.96620081198529,74.95311868336555,74.98646470893564,74.94626373348909,74.93335752259436,74.90823007688766,74.85873249108566,74.76328527959129,74.69572940730247,74.58800871973601,74.93762045721371,74.86275245176395,74.63819114299415,74.47239694179316,74.44188125945988,74.3901456960037,74.36355427694384,74.3004828329997,74.25938501138106,74.1311408703493,74.22489774250468,74.19256123804688,74.13024871633382,74.18135299718465,74.13318339047798,74.1085244575945,74.07690300596522,74.10532343065941,74.05042910059476,74.02970619095282,74.03540579001069,74.00500441073439,73.99451120663582,74.02126715887859,73.97991884511916,73.96601546861032,73.93909446121091,73.88687189522781,73.78237365540517],"feasible_probability":0.0,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.0,"counts":{"00010011":60,"00010101":35,"00011001":1,"00100011":1,"00100101":9,"00101001":32,"01000011":65,"01000101":43,"01001001":82,"10000011":179,"10000101":4,"10001001":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1295461840054486},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[{"variable":1,"forced_by":0,"reasons":["resource","precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["resource"]},{"variable":7,"forced_by":0,"reasons":["group"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.194100620225072e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":12,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.0018854259978979826}
+{"instance":"n3-s2-r0.json","seed":1,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":10,"violation_count":2,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["resource","precedence"]},{"kind":"conflict","tasks":["t0","t2"],"variables":[0,4],"reasons":["group"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":5,"end":8,"reserved_end":9,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":64},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.0825360347195865,1.206774274476875],"expected_energy":76.11730969984539,"initial_expected_energy":79.68968023525406,"history":[79.68968023525406,79.18661292016242,77.6122726470745,80.02404193785111,80.12941392772245,78.46610322586668,76.58972713962649,77.71349244536017,76.62917964214648,76.64703480743623,76.6451121163534,76.6679037183261,76.57109447305265,76.57274677590043,76.5725802201141,76.57050374696362,76.57745302289719,76.56537171706402,76.56190074887488,76.55792436317367,76.55005651429522,76.53555980982594,76.6597610326087,76.5416198536511,76.53328462105605,76.54491590971647,76.52650941318265,76.52270008669618,76.51803641776462,76.5097249836488,76.50081361672181,76.4832465413806,76.49808015826267,76.5032688940349,76.47791639456973,76.47883931290052,76.47281004749998,76.46799851651932,76.45964973709835,76.47582101168624,76.45297723175696,76.44472342121264,76.43957596558661,76.53141227407639,76.4179194326127,76.41062251638738,76.40002346037673,76.38246832970736,76.46329221687654,76.37343309584415,76.36339718484953,76.3416757672675,76.28854791796564,76.1681090179089,76.44877657513716,76.56775187695331,76.14543764123833,76.41334722698635,76.11816440460207,76.11730969984539,77.42720109517637,78.10426147841815,80.62443348348154,80.38852942514686,78.18998183398956,79.03228016221689,77.57783287549009,76.90049704239865,76.863460124239,77.09630469541001,77.05578418980897,76.69171769341193,76.82061349602462,76.69971234190251,76.69572066445242,76.69195148044246,76.69630183246471,76.69049808510144,76.69165040764997,76.69143162066308,76.69049446338632,76.69018766473323,76.68995451606852,76.6903305701463,76.68968369878601,76.68938178654918,76.68881792698053,76.68865176565299,76.68697791122574,76.68780220618427,76.6867294582905,76.68790546466946,76.68662557167087,76.6862535763866,76.68597257624495,76.68657053612593,76.6856889522873,76.68536277406147,76.68471688374899,76.68342848387132,76.68081513957301,76.67776465732638,76.68091520819928,76.69184520429191,76.67521344696854,76.67551026450144,76.67547865900144,76.67519160865785,76.67583546829793,76.67520238266451,76.67497463232198,76.67461993974975,76.67448694132023,76.67393321709042,76.67341477943125,76.67251379796554,76.67489250350079,76.67209082963298,76.67102595332915,76.66873197590735],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"00010011":30,"00010101":12,"00011001":71,"00100011":3,"00100101":3,"00101001":58,"01000011":57,"01000101":60,"01001001":65,"10000011":136,"10000101":3,"10001001":14},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12706517000333406},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[{"variable":1,"forced_by":0,"reasons":["resource","precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["resource"]},{"variable":7,"forced_by":0,"reasons":["group"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.5195003622211516e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":12,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.3306690738754696e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.0018530170054873452}
+{"instance":"n3-s2-r0.json","seed":2,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":10,"violation_count":2,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["resource","precedence"]},{"kind":"conflict","tasks":["t0","t2"],"variables":[0,4],"reasons":["group"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":5,"end":8,"reserved_end":9,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":64},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[5.083554748149017,1.2730394119967787],"expected_energy":72.10963229830523,"initial_expected_energy":80.84028897980762,"history":[80.84028897980762,80.11782785440036,79.99152200376246,77.82686254347027,74.70155014712375,76.81751486753447,77.69284039894418,77.62004489788211,75.21089705804239,76.35637174321678,72.36608625724325,76.23885682958513,73.57739671496918,72.57794989813227,72.17394036664136,72.25680330084316,72.22894602915865,72.1764076759394,72.1724368892173,72.17172472411117,72.18119688921743,72.16588875176977,72.16405184784533,72.16076464917722,72.15785906497221,72.15584234482796,72.14965881945199,72.15457048075248,72.14815656187822,72.15324889049354,72.14526734259792,72.14270890425331,72.14025203241194,72.13580659434353,72.13818012554805,72.1344761084361,72.13917552452021,72.13209440466252,72.13011243549987,72.12831121828918,72.12422210885072,72.1361610498702,72.12879643762523,72.1270698058599,72.12564184828344,72.12413159483376,72.12963230055279,72.12290713340406,72.12201301284942,72.1215485434875,72.12052412323327,72.12047936211387,72.11913655785548,72.11826648773463,72.1168014472406,72.11415588374251,72.11035585502295,72.2337048216654,72.15059574407437,72.10963229830523,76.05284305672345,76.37638267842368,79.18253986819033,80.42847639996688,81.0577939753316,76.6130852169134,76.0524699881402,76.56036668554734,75.99469474496391,76.32991049944056,75.97364705853583,75.98547272505527,75.97081295163542,75.96728184430282,75.96760384065311,75.96689932889828,75.96676339337645,75.96686135452518,75.96692514200943,75.96677840085059,75.96674644827142,75.96672440283993,75.96669663671769,75.9666434040867,75.9665627124754,75.96711770398292,75.9670786054919,75.96653494389064,75.96652477406118,75.96650167773308,75.96646044302744,75.9664109000561,75.96693792276622,75.96633369071986,75.96639314808549,75.96632360378939,75.96634491443893,75.96631168331889,75.966326421845,75.96630043654666,75.96630142989426,75.96629861615719,75.96629330761888,75.96628314974686,75.96626443585052,75.96633308966906,75.96626074409764,75.96624769693753,75.96622507501593,75.96619225490089,75.9661447319007,75.96606259398068,75.96645106812402,75.96631639951562,75.96605009680518,75.96618119222146,75.96604240880518,75.96603900364252,75.96608407592979,75.96602709998157],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"00010011":108,"00010101":44,"00011001":8,"00100011":7,"00100101":19,"00101001":4,"01000011":46,"01000101":39,"01001001":72,"10000011":140,"10000101":6,"10001001":19},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1242317330033984},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[{"variable":1,"forced_by":0,"reasons":["resource","precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["resource"]},{"variable":7,"forced_by":0,"reasons":["group"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.05870086979121e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":12,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.85722573273506e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.0017097749951062724}
+{"instance":"n3-s2-r0.json","seed":3,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":14,"violation_count":2,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["resource","precedence"]},{"kind":"conflict","tasks":["t0","t2"],"variables":[0,6],"reasons":["resource"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":5,"end":8,"reserved_end":9,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":8,"end":10,"reserved_end":11,"changed":true}],"bits":[1,1,0,0,0,0,1,0],"qubo_energy":68},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.8128381889281315,1.8504971952737155],"expected_energy":76.15841981749966,"initial_expected_energy":77.30097438228151,"history":[77.30097438228151,77.11939805925303,77.91087689290862,79.37923234232377,80.68711212851409,76.96717136450167,77.51726021809317,77.0108083081459,76.72828187345624,76.88608624119152,76.72445149063644,76.74459253438866,76.72398413204132,76.72307981517255,76.72458266870598,76.72356598643381,76.72316194589303,76.72301917614521,76.72292501935306,76.72286582888049,76.72301259693273,76.72280868545056,76.72276250463793,76.72275027110376,76.72257534482716,76.72248737375298,76.7221677415794,76.7219142824181,76.72131856347775,76.72300208972645,76.72188745957888,76.72162483162654,76.72141317673945,76.72123033534243,76.72138791184533,76.7211625224281,76.72110479027008,76.72107347101158,76.72089836727757,76.72073998995174,76.72041343599889,76.7200011989518,76.71932977505182,76.71970844160914,76.72011632779842,76.71946939022656,76.71961900860276,76.71923596875459,76.71907753364246,76.71877501392578,76.71820376310592,76.71706982684458,76.71450062921747,76.71650240015818,76.73740660809824,76.71698309675196,76.71423867242763,76.7165864962976,76.71395092729294,76.71367433969662,78.28365902773385,79.1521188312817,79.58079332706383,80.25136594837763,79.97923679109904,78.12399515197774,78.04416626656162,79.18791010964712,77.77223153241124,77.62495893981193,77.5429601571514,77.76120597497862,77.47137349820534,77.41007686727701,77.28984278448647,77.14598746347242,77.04455762964508,76.88761131593724,76.64371929183316,80.7841826713169,77.66084946405091,78.03003447960302,76.57523297524999,76.38575176803388,76.48282521343272,76.42125245609654,76.39441307984754,76.38242051312585,76.37790804018547,76.37893721642723,76.3714511183141,76.36599177774156,76.36165886927566,76.38202995276556,76.35856087162352,76.35096853149447,76.34453863743045,76.34528644469913,76.33909890633463,76.33427914952917,76.32741827427462,76.35275860403733,76.31440159265459,76.30623839960859,76.32197038761957,76.29989045831117,76.29394915729219,76.28231848967299,76.26341637620968,76.24478986179507,76.19158513667983,76.3343349025607,76.27585924835321,76.18381112995223,76.22964074250115,76.17751702270823,76.17080623416585,76.17719800759787,76.16416620550748,76.15841981749966],"feasible_probability":0.0,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.0,"counts":{"00010101":10,"00011001":39,"00100011":47,"00100101":18,"00101001":1,"01000011":82,"01000101":140,"01001001":111,"10000011":27,"10000101":19,"10001001":18},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12389670500124339},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[{"variable":1,"forced_by":0,"reasons":["resource","precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["resource"]},{"variable":7,"forced_by":0,"reasons":["group"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.1804989450611174e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":12,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.249000902703301e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.0018041250004898757}
+{"instance":"n3-s2-r0.json","seed":4,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":10,"violation_count":2,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["resource","precedence"]},{"kind":"conflict","tasks":["t0","t2"],"variables":[0,4],"reasons":["group"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":5,"end":8,"reserved_end":9,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":64},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.942437209477264,1.2420493703444673],"expected_energy":74.08851227160147,"initial_expected_energy":79.50989414067325,"history":[79.50989414067325,79.39189643320407,75.80573324180915,80.18723679739489,75.9443691485019,75.66698732262688,76.66752906603763,75.65689228391265,76.10054184048853,75.58860453286569,75.59288636827262,75.57447267926594,75.58127019303755,75.58134523952424,75.56328685299724,75.55134589038269,75.56856232236062,75.5457418905597,75.53444308876631,75.5121830568629,75.46758301152215,75.37652363518376,75.19684019915441,74.80730786365388,75.85084092524262,77.51916327511536,75.15729950531686,75.00698846885427,74.84493602363756,74.78148585816449,74.73427786491699,74.7034636649492,74.78737932693525,74.66906413998906,74.64411983802572,74.59697056908028,74.60275794689119,74.57528398151796,74.61722361287717,74.59280320392651,74.55069014583404,74.55282513480749,74.53816079236826,74.5261296863566,74.50328517776495,74.46512628671181,74.54559159893603,74.4227223053874,74.38864138432822,74.44112313787555,74.35814280632422,74.33400787941932,74.28297046962354,74.19773262317383,74.27903590717888,74.3541065392751,74.15317096036583,74.11834647672558,74.17359257761518,74.08851227160147,80.18544437340051,80.38127727920819,80.86787464247412,79.06111955558454,76.83292183444982,80.46811747070862,80.85353793055097,78.69160395973674,79.67491141532298,77.15572901274382,76.47104118458896,77.6822291545711,76.49658567031773,76.6920525431594,76.51997902847522,76.47894421222237,76.46870438194244,76.4681507796922,76.47634881340451,76.46171043881212,76.45226132810967,76.43219352745038,76.3970420926511,76.99988276538036,76.44064184083246,76.45641187843509,76.37973175384457,76.37413293472218,76.3601397029262,76.33485890906454,76.28497434914487,76.17905478244239,76.21574309692706,76.80148546853881,76.21709276193243,76.21270236331821,76.19469897754769,76.15901975417006,76.16366937183477,76.15105650811171,76.14399078788884,76.13270777981512,76.154660417138,76.11803209647185,76.10647948986914,76.11890146209751,76.09788277926712,76.08982244938164,76.07348978885835,76.04353859384774,76.02883524628888,75.92968164035544,76.10646947507308,76.03004636874117,75.91485722285827,75.96848900070847,75.89937361663249,75.88363214330417,75.87614800345388,75.82520201849988],"feasible_probability":0.0,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.0,"counts":{"00010011":47,"00010101":34,"00011001":7,"00100101":8,"00101001":36,"01000011":58,"01000101":66,"01001001":104,"10000011":148,"10000101":2,"10001001":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13292235499829985},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[{"variable":1,"forced_by":0,"reasons":["resource","precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["resource"]},{"variable":7,"forced_by":0,"reasons":["group"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.260899731889367e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":12,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.0018340920069022104}
+{"instance":"n3-s2-r0.json","seed":5,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":10,"violation_count":2,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["resource","precedence"]},{"kind":"conflict","tasks":["t0","t2"],"variables":[0,4],"reasons":["group"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":5,"end":8,"reserved_end":9,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":64},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.2575771797665973,2.9664377840068634],"expected_energy":72.25106166109175,"initial_expected_energy":79.60771824111168,"history":[79.60771824111168,79.63030314581877,73.86829186622096,89.4463975706307,76.85678743934702,75.2412790647614,72.4008636517552,77.18214262401986,72.56679512587024,72.36947626588722,72.59411794127016,72.35052024775223,72.48134583315652,72.31283564356264,72.2686716040528,72.2850123894584,72.26521320832404,72.26423017892984,72.2613415552737,72.26931989912327,72.26367781792572,72.26251913721178,72.26176507870687,72.26094338116285,72.26159563588155,72.26082762992102,72.2606139233937,72.26034958538362,72.2598520596421,72.25915761053602,72.25826817120789,72.25689970991954,72.2570646094036,72.26015046902754,72.25666296463851,72.25626567675141,72.25549389816726,72.25419720047196,72.25298498171807,72.25752666388824,72.25993477159612,72.25212416657715,72.25262348610116,72.25224014696539,72.25226113905383,72.2520566620643,72.25212679483533,72.25196084119445,72.25187986273906,72.25200655092516,72.25181422771725,72.25172505334041,72.25155991751991,72.25142530815253,72.25125141420769,72.25165542559637,72.2516762428516,72.25131704645237,72.25109485379984,72.25106166109175,80.30462429478197,82.76154523177411,78.65523529867309,80.37871970999966,79.46588545544745,78.7604354247213,78.58852202250408,78.5361809376325,78.65985142350488,78.4403580759074,78.34643031758125,78.14113617339964,77.21538320751827,81.03716486700219,77.06463910214231,75.98474238867844,75.12251343736892,76.4785066413416,77.57219120765653,75.40730842420791,74.4490144382018,74.57153077854993,74.28783370695753,74.17577568551516,74.22773777198071,74.08572948989692,74.0379713065452,74.07701285165203,74.02497108852694,73.99694173805104,73.94630244221169,73.89477677602814,73.7716903622132,73.67892129042384,73.4759038067141,73.1249061167614,74.55160605877244,74.4994219523735,73.04020312065867,73.28475221213124,73.03454651561944,72.97447372226043,72.90534193903376,72.85673177240932,72.9698166100798,72.81854392041913,72.79288602296988,72.75936981726873,72.69771051843358,72.59711409681708,72.70700108813793,72.99716747838735,72.58551741665893,72.54910025963794,72.55672170654188,72.52532806714486,72.53972677181291,72.53128616176068,72.51965815802674,72.53114652076161],"feasible_probability":0.0,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.0,"counts":{"00010011":69,"00010101":79,"00011001":41,"00100101":42,"01000011":70,"01000101":84,"01001001":49,"10000011":47,"10000101":29,"10001001":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12012141199375037},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[{"variable":1,"forced_by":0,"reasons":["resource","precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["resource"]},{"variable":7,"forced_by":0,"reasons":["group"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.026399983558804e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":12,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.8041124150158794e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.0017625280015636235}
+{"instance":"n3-s2-r0.json","seed":6,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":10,"violation_count":2,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["resource","precedence"]},{"kind":"conflict","tasks":["t0","t2"],"variables":[0,4],"reasons":["group"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":5,"end":8,"reserved_end":9,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":64},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.473242342981752,1.2898379920829417],"expected_energy":72.85350245248475,"initial_expected_energy":78.78004818259883,"history":[78.78004818259883,78.29606227217027,76.51335629192177,79.84356757946551,79.4535494858812,77.29958322531084,76.57705236970958,76.41853548891731,76.46506450187309,76.75819569799447,76.0803047114089,76.23694029777634,76.1304685672485,76.09217932071356,76.06179700987708,76.08364668495486,76.05328286680039,76.04513469556888,76.02771930677065,75.99349382589986,75.92074270838079,75.8331676338057,75.7365497022303,75.74555698443962,76.14032334444914,75.64898404459522,75.63992162122982,75.7120218114634,75.64330125702475,75.61590874569917,75.60505067333906,75.63331092662712,75.5933587185424,75.58212058053124,75.5599632655933,75.51575193728779,75.42658020028087,75.25768174228567,74.95851586076698,74.1926601093431,80.42788817814946,79.6584675920824,76.93807959689225,74.06836840320432,74.10331924612188,74.24307546026692,73.90432883986571,73.94719685069481,73.96531411380658,73.91222532439672,73.87803696609137,73.82573557772406,73.72209926155492,73.51974968038685,74.24235080199577,74.1916611843049,73.6049235705287,73.49930368263988,73.5379643361043,73.47740951546352,85.77217109195715,82.50629845458582,79.84639484448198,76.54881235186926,81.4575887122503,79.47216516847669,76.00639309932819,78.59916845327544,75.6935395942613,75.98072819276886,75.32009153967938,74.75931629508855,74.76999673350338,74.75522994931082,74.96588758560165,74.78056830597825,74.88457397616808,74.72312301534541,74.71683354636612,74.76572675071873,74.71276392336384,74.69737421179751,74.67184763558517,74.63692727271172,74.72621983045745,74.60814735763779,74.58283235740416,74.53140381267237,74.43947182302772,74.46163456553997,74.5546213413925,74.40542087283659,74.36181221120285,74.31603992726426,74.6650831691537,74.23171250071105,74.20036273405246,74.145721347733,74.03785739883787,73.82637555562488,73.45519517961067,77.25643631057333,76.50581262489119,73.72877771442579,73.42478651603959,73.75853145171727,73.35411885723441,73.3389571640473,73.28235191161954,73.23941021421304,73.14433105156175,72.97190553514908,73.36935146479391,73.65136516238941,72.97916391139307,72.91673645462012,72.91257545441913,73.08402325210821,72.91418181175094,72.85350245248475],"feasible_probability":0.0,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.0,"counts":{"00010011":76,"00010101":52,"00011001":3,"00100011":4,"00100101":18,"00101001":14,"01000011":75,"01000101":37,"01001001":74,"10000011":156,"10000101":1,"10001001":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1210752129991306},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[{"variable":1,"forced_by":0,"reasons":["resource","precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["resource"]},{"variable":7,"forced_by":0,"reasons":["group"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":3.953500709030777e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":12,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.942890293094024e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.0017507010052213445}
+{"instance":"n3-s2-r0.json","seed":7,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":10,"violation_count":2,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["resource","precedence"]},{"kind":"conflict","tasks":["t0","t2"],"variables":[0,4],"reasons":["group"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":5,"end":8,"reserved_end":9,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":64},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3981819151240547,2.9706707221177155],"expected_energy":72.32815796378411,"initial_expected_energy":86.82023116312075,"history":[86.82023116312075,82.9272504206417,78.45927530911881,78.10482732010736,78.9194563836773,79.93921457973332,76.27720332239375,77.24856010052225,75.77513675794262,75.44932062162098,75.97262627651504,75.563118482352,75.42943308700573,75.2688221789086,75.51297608529752,75.42213812224462,75.4173187198831,75.33179351315191,75.26847524425231,75.23994542689036,75.18474958487653,75.09523946343738,75.37473817443923,75.10079873613842,75.08579273832014,75.14736077983497,75.12793149662863,75.02084597605942,74.992586239866,75.07506131543066,74.965376708976,74.94854103151651,74.98089860797948,74.93951026615773,74.92255603779029,74.89555625682887,74.85146973147165,74.99180968284541,74.82547759858629,74.7706707501216,74.66249798182926,74.47464722936317,74.25800414379208,74.03603759024207,73.98733297282934,78.19425186060732,73.29896979534712,73.87323149695777,73.25305404456581,73.43671818869628,73.25211366584654,73.20234247497535,73.10990824671235,72.93308500441503,72.94966423393942,73.43605649264205,72.98014820284031,72.95923361097189,72.97874669591303,72.92795698807214,78.22398693144747,79.94818089439177,86.20879444631663,81.51049451588943,73.47117935478857,88.060089413529,77.28021947493093,73.15984659885149,77.72215454599706,73.08254972613891,72.89151034768975,72.78684131076324,72.82447315858937,72.94237534256871,72.7887174326056,72.8064141834749,72.75385543402638,72.71323081476203,72.69824076506222,72.66754220419315,72.64233135223398,72.59245125908052,72.49769117786609,72.5214708660148,72.75657113123395,72.48149170331754,72.62779797674267,72.47100221583558,72.45512217065988,72.4380209678027,72.60521924636492,72.40606144753083,72.40980059480161,72.40347936142811,72.40590812355572,72.4093158923653,72.3970891673147,72.40062400734617,72.40170758780786,72.3971030520768,72.39489064161296,72.3907007510714,72.38277675270655,72.36766738262128,72.38205177494379,72.37456389825631,72.367716743153,72.37220671449488,72.36807036807886,72.36568517908256,72.36200899670487,72.35483318837991,72.34449018773799,72.34817516538794,72.3660039360946,72.33859634280638,72.33479367670836,72.34573986066485,72.3309424785106,72.32815796378411],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"00010011":72,"00010101":71,"00011001":38,"00100101":42,"01000011":72,"01000101":91,"01001001":44,"10000011":42,"10000101":37,"10001001":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11486549300025217},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[{"variable":1,"forced_by":0,"reasons":["resource","precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["resource"]},{"variable":7,"forced_by":0,"reasons":["group"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.494799941312522e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":12,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.0018538870062911883}
+{"instance":"n3-s2-r0.json","seed":8,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":10,"violation_count":2,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["resource","precedence"]},{"kind":"conflict","tasks":["t0","t2"],"variables":[0,4],"reasons":["group"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":5,"end":8,"reserved_end":9,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":64},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3824553113982205,1.8573927353687236],"expected_energy":75.96616598290316,"initial_expected_energy":77.80088435289196,"history":[77.80088435289196,78.39203889727938,80.88032331801017,81.6282117248707,77.46892598002606,80.3582487527467,78.20442433207435,76.61258882209637,77.1950725786107,76.67955061849565,76.66848372600057,76.61468574358312,76.71013000570122,76.61222860050268,76.59624027319691,76.60307197365053,76.59583863988188,76.60040709504435,76.59465835847999,76.5961134126187,76.59430055549007,76.59514622244711,76.59421910745179,76.59398422416508,76.5937932744437,76.59419752523749,76.59360751471834,76.59338092386957,76.59294609412856,76.59233718574094,76.5918403691896,76.59140597443232,76.5933406079801,76.59055427502051,76.59043743333166,76.58991005796983,76.58907308133666,76.58738016028789,76.58434897360243,76.62629459319488,76.616626073183,76.58983505924414,76.58668118964678,76.58413574804588,76.58426056117817,76.58403494549371,76.58411135303352,76.58397975262777,76.5838925062449,76.58382777651305,76.58400293840467,76.58381477546851,76.5837363026537,76.58359799694378,76.58331470186334,76.58281296811658,76.58329689436283,76.58401503756627,76.58270270673947,76.5824298349799,76.79406384634459,77.19048401436045,78.22192719547624,80.71212329307734,81.71921109434857,76.03580219847495,77.51793351854076,76.0233282280119,76.01622360392923,76.10695595508571,76.02066251455545,76.04564817585089,75.97823196249827,75.96745872691578,75.97203754591953,75.96766651700922,75.97048646470293,75.96849703330697,75.96830931698541,75.96731799870885,75.9673457916098,75.9673362386208,75.9673056752134,75.96726324504662,75.96720235176406,75.96706434165876,75.96680863595307,75.9672104941424,75.96802906468147,75.96712072966545,75.96677976713002,75.96686537715138,75.96676946603428,75.96673535302979,75.96668542756086,75.96657419122627,75.96637696962628,75.96783479730317,75.96776878457132,75.96644228185295,75.96658885447883,75.96642870444782,75.96637846768024,75.96636883877254,75.9663669802183,75.96638644697926,75.96636553348246,75.96635792306508,75.966346707172,75.96632493583263,75.96630574097257,75.96626245432688,75.96618600349422,75.96645780626872,75.96656525433667,75.96622476723975,75.96617939949,75.96621257285969,75.96617428979695,75.96616598290316],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"00010011":3,"00010101":13,"00011001":23,"00100011":32,"00100101":15,"00101001":5,"01000011":98,"01000101":119,"01001001":138,"10000011":32,"10000101":25,"10001001":9},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11603125599503983},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[{"variable":1,"forced_by":0,"reasons":["resource","precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["resource"]},{"variable":7,"forced_by":0,"reasons":["group"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":3.9174992707557976e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":12,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.0017204780015163124}
+{"instance":"n3-s2-r0.json","seed":9,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":10,"violation_count":2,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["resource","precedence"]},{"kind":"conflict","tasks":["t0","t2"],"variables":[0,4],"reasons":["group"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":5,"end":8,"reserved_end":9,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":64},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.2623249590749717,1.8622404990098307],"expected_energy":75.97339317174448,"initial_expected_energy":80.09840480667282,"history":[80.09840480667282,80.5975280727246,76.22828171907128,78.97892204431882,76.88793300474893,76.1926073267172,76.07372408464784,76.01658755510695,77.0691693759351,76.25850598012217,76.0094228655308,76.16657097330784,76.08920634617535,76.00715264378218,76.00806612607613,76.0100695514329,76.00420884675194,76.00560538122342,76.00505343526083,76.00429187942353,76.00380762934839,76.00319536365471,76.00548898259389,76.00257998523799,76.00185536961776,76.00072345932983,76.01039844405511,75.99997762840357,75.99895148308082,75.99940071294563,75.99775001715685,75.9979139368779,75.99906297982778,75.997811571658,75.997311562205,75.99696695349317,75.99622470027813,75.99482745262482,75.99211347734052,75.98676002099691,75.97945013484346,76.05612552330544,76.02933492988029,75.97859301543903,75.97958937285014,75.9809955801013,75.97686471656671,75.97848875772053,75.97746025987445,75.97687269317828,75.97661869072974,75.97620342680545,75.97531103580775,75.97371145389035,75.98330552923599,75.98301213668728,75.97501160957106,75.97356308801946,75.97440201500456,75.97339317174448,80.02439959833167,80.16363371475916,78.19321438629034,77.85253717480592,76.72778158192973,77.56988299078945,79.76226705128789,76.76784209696761,76.9283199601254,77.08752795501276,76.62907283123145,76.69691219479408,76.60857269686814,76.6913083147773,76.58444780003948,76.56346143385852,76.52805435923689,76.59486733163875,76.51631349776696,76.49530700198132,76.45374258314557,76.38108449747322,76.26906386278392,77.49686104223628,77.08830059707721,76.3519870635153,76.26160109897279,76.35557461724562,76.24190234498877,76.23772466584069,76.22224262347304,76.21073936094038,76.18598953586026,76.14166988632005,76.61689832403958,76.29922519559219,76.19362244097401,76.13618922229112,76.14412279103003,76.1365966998657,76.13239240173291,76.12716790563421,76.1397685395644,76.12266514475839,76.11927846680705,76.11152968848407,76.09689619121026,76.1026771297987,76.11303074364429,76.09442572086851,76.1070002809894,76.0911591180329,76.08844538675524,76.09415886722317,76.08582067528306,76.08270363028649,76.07767384745091,76.10820114317599,76.07457045105947,76.06956705833574],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"00010011":4,"00010101":16,"00011001":14,"00100011":45,"00100101":17,"00101001":6,"01000011":103,"01000101":100,"01001001":133,"10000011":31,"10000101":29,"10001001":14},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11507220800558571},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":10,"removals":[{"variable":1,"forced_by":0,"reasons":["resource","precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["resource"]},{"variable":7,"forced_by":0,"reasons":["group"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":3.896700218319893e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":12,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.0017964699945878237}
+{"instance":"n3-s2-r1.json","seed":0,"direct":{"status":"feasible","best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":7},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[5.371186654978109,1.1900483538833437],"expected_energy":23.455902402654832,"initial_expected_energy":32.12466548895837,"history":[32.12466548895837,31.146834976305627,30.894439000434694,32.748984870264024,31.399370883907068,31.097139608439022,31.14881763485213,30.45362241108029,29.938423481339832,30.067272252304193,29.738713829218128,29.55260401116093,29.204617557201097,28.794616892381995,31.185930481421007,28.41133489342271,28.06456138045625,27.774944190492526,28.309165764493095,27.526465153649227,27.337953357928043,26.897576466461572,26.045090811354832,25.149961202720405,28.873969422268075,29.805659165010145,24.511729570443627,25.010721781005934,24.70905047807723,24.509456325521455,24.468104643416154,24.428164049297706,24.35228502133664,24.21359912517245,23.994164820935367,24.85397901962892,24.959970988163438,24.013108239299687,23.980439947711808,24.008570072964297,23.941735855896464,23.917802381131132,23.891842079788873,23.85177022358112,23.775417054251005,23.69332007609782,23.586472081715073,24.654072911360633,23.60827536436763,23.581700059313935,23.687768182593857,23.560383367054072,23.535358197551183,23.527092975499055,23.550005515631515,23.52163330483335,23.516884280231906,23.50898505097339,23.4981053435871,23.480224639406636,37.34731215933262,35.155455336346755,32.04522152826778,31.289712959920113,32.04428547513154,30.472350137748634,30.27419330663243,29.324705456758284,31.10878312281308,27.007258394077223,33.68979541501532,28.11367916184011,27.24372458888712,26.866797868928494,28.623054952819746,26.502865609951492,26.27678117105819,26.10515502309338,26.689611287881757,25.97233802554004,25.77797851957932,25.404241135612892,24.867986112232245,30.056743499866514,25.93433682257928,24.810623305089248,26.411556659890508,24.491075158667336,24.490882538717198,24.29910615248292,24.170564537607348,24.045850179699023,23.89781434209517,23.96445791252461,24.159725333233155,23.899354898999924,23.930216982664618,23.847340139943825,23.803501722789534,23.781945978823003,23.897354185992626,23.751430360157578,23.733897321797965,23.71409402731203,23.683594057415405,23.725451306428592,23.67236054788964,23.652431933512084,23.613539429738758,23.550162725701064,23.544988826969625,23.48712807031161,23.801092709981898,23.470647107142632,23.466783261382123,23.46720226581454,23.472089934228276,23.459156704665148,23.455902402654832,23.467744917019385],"feasible_probability":0.5586158720301976,"one_hot_probability":1.0,"sampled_feasible_fraction":0.525390625,"counts":{"00010011":133,"00010101":28,"00011001":45,"00100011":61,"00100101":56,"00101001":19,"01000011":68,"01000101":20,"01001001":5,"10000011":37,"10000101":19,"10001001":21},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1178840069915168},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":7,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":16,"objective_bound":15,"offset":32,"linear":[-16,-8,-10,-16,-9,-9,-11],"quadratic":[[0,1,32],[0,2,32],[0,5,16],[0,6,16],[1,2,32],[1,3,16],[1,5,16],[1,6,16],[2,3,16],[2,5,16],[2,6,16],[3,4,32],[3,5,32],[3,6,32],[4,5,32],[4,6,32],[5,6,32]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":8},{"index":2,"task":"t1","resource":"r1","start":6,"cost":6},{"index":3,"task":"t2","resource":"r2","start":6,"cost":0},{"index":4,"task":"t2","resource":"r2","start":11,"cost":7},{"index":5,"task":"t2","resource":"r0","start":3,"cost":7},{"index":6,"task":"t2","resource":"r2","start":3,"cost":5}],"conflicts":[{"i":0,"j":5,"reasons":["precedence"]},{"i":0,"j":6,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":1,"j":6,"reasons":["precedence"]},{"i":2,"j":3,"reasons":["precedence"]},{"i":2,"j":5,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":7},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false}],"bits":[1,0,0,1,0,0,0],"qubo_energy":0},"seed":3757552657,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[-1.3083251684108295,0.3118966180105744],"expected_energy":13.40973183522419,"initial_expected_energy":25.118868492799688,"history":[25.118868492799688,23.363100017451618,19.940163459415874,19.386181048889924,20.08421704374672,18.811927876649996,17.260049936446997,15.285053435188244,18.64471494373658,20.6447189462296,15.059335070107753,14.579787940401786,18.62854980515099,15.130522211869344,14.978167280364278,14.011214084802916,13.792799451071591,13.768607359446637,14.014796431559692,13.752945850297806,13.763853547248136,13.760159584207116,13.746236682730004,13.754482704633503,13.743841797635204,13.740527118557262,13.738481485377296,13.741002416429929,13.737406049606909,13.73629030762077,13.734367098993287,13.731490919206173,13.727532270454287,13.724236680368968,13.730894954244292,13.737592817788551,13.723524189824154,13.721961813948035,13.722540431305568,13.722549369054123,13.722019112425562,13.721726201605643,13.72128630968596,13.720674798622882,13.720304594973028,13.71958928047319,13.719163715019292,13.72162422637388,13.722196917029976,13.7191693049542,13.718896177340435,13.71947411574233,13.718933907486559,13.718882228795025,13.718868109150055,13.71885197792756,13.718837793762749,13.718819445736397,13.71884478607656,13.718854057201657,19.987603887165285,20.865653243479088,21.914207715755474,22.21790139266735,20.71610308116078,20.708446503408144,20.091620474887147,19.83484489143734,19.80246607960314,19.943306305234355,19.764730657726005,19.73306707263413,19.66581787902854,19.517188326891368,19.410517199793958,18.88612208318817,21.254288441176328,18.81998716588911,18.268916601370087,17.244111241557864,15.864286747424782,14.49809065165391,18.967354573580966,22.304231082733462,13.965548177976736,13.693701472863669,16.280777246156074,13.566981463299754,13.846279975413399,13.637112689749255,13.46113640259514,13.455794851969667,13.458674021034259,13.45802041832469,13.453621606694503,13.455653151948738,13.450047684931153,13.448723714616332,13.444835718772268,13.441754770420939,13.435654050443482,13.427430234491283,13.428955323281043,13.433894623779347,13.429839047908025,13.424969970622442,13.42737594644382,13.422801590115608,13.421253440421468,13.419128390699683,13.415955240461857,13.41562613004582,13.410115113188922,13.43319987439936,13.415997211534965,13.40973183522419,13.412406651099987,13.410174917182673,13.410051838428743,13.409901865771332],"feasible_probability":0.6930780605374163,"one_hot_probability":1.0,"sampled_feasible_fraction":0.697265625,"counts":{"0001001":80,"0001010":9,"0001100":9,"0010001":133,"0010010":71,"0010100":73,"0100001":13,"0100010":12,"0100100":8,"1000001":64,"1000010":26,"1000100":14},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1091944380023051}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.6930780605374163,"total_shots":512,"runtime_seconds":0.10935730300843716},"direct_metrics":{"exact_objective":7,"optimal_count":1,"combinations":12,"optimal_probability":0.2938321247893916,"feasible_probability":0.5586158720301976,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.3333333333333333,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9381608295570737,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9961759169989307,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9999853763892009,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999997861501,"uniform":0.9961846700381721},{"shots":128,"quantum":1.0,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.3306690738754696e-16,"independent_samples":[{"shots":8,"best_objective":7},{"shots":16,"best_objective":7},{"shots":32,"best_objective":7},{"shots":64,"best_objective":7},{"shots":128,"best_objective":7},{"shots":512,"best_objective":7}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":12,"optimal_probability":0.1520422614831047,"feasible_probability":0.6930780605374163,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.3333333333333333,"shots_for_95_percent":19,"hit_curve":[{"shots":8,"quantum":0.732703259130685,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9285524523206423,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9948952479306059,"uniform":0.9382316427138628},{"shots":64,"quantum":0.99997394150631,"uniform":0.9961846700381721},{"shots":128,"quantum":0.999999999320955,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.1520422614831047,"diagnostic_seconds":0.0036362079990794882}
+{"instance":"n3-s2-r1.json","seed":1,"direct":{"status":"feasible","best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":7},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[5.369660646062166,1.1883454906113107],"expected_energy":23.455790041122423,"initial_expected_energy":34.21789313051411,"history":[34.21789313051411,33.44323217622534,32.75855910032443,31.13713398044703,35.840612746756904,32.16130269216684,30.84162237041798,29.743127120073616,31.307302561607678,30.958031734088213,29.53147415008896,29.929055888827293,29.47666150523905,29.276014152058185,28.866829427808575,27.99889704503355,26.808723524228704,26.30663485635545,24.309222761016997,34.03928957896104,30.891349340776188,24.22312286828587,28.50163371517468,23.83690199490281,24.19801230926265,23.961908319251073,24.041486683472844,23.781895042559526,23.845720325555433,23.75988523553538,23.754664602739442,23.728690170921233,23.69799945005943,23.656571879693143,23.593062351831147,23.60532061755458,23.794246551742958,23.59965549469183,23.58940557015917,23.600704015286524,23.585267879668663,23.578305992301047,23.568361733930836,23.559309565101934,23.584915805655534,23.552188323427767,23.543410050635426,23.53556527076975,23.61119327018847,23.519653816411733,23.515326170187514,23.50565970731511,23.489294544625217,23.46630464992311,23.4999959667154,23.513911954230927,23.462567667853058,23.459845913365413,23.472871217341492,23.455790041122423,33.68925367999853,32.908234453259745,31.735469540858666,32.889227941149585,31.752842497247755,32.149377101834574,31.73113220070686,31.722044624743567,31.751227266957,31.73519157000227,31.719975137057332,31.72680857246009,31.717907582926856,31.71423970334715,31.70901826997506,31.703786704954034,31.717465149310286,31.699747572984016,31.69578929414576,31.687224878451786,31.671012925841243,31.623829859978315,31.679944068004765,31.7378070745427,31.604087455801206,31.61359732166232,31.605380894833267,31.58768968744279,31.568539123616883,31.638851561806813,31.54403988071514,31.523038095381466,31.48156072617028,31.39173777306795,31.629303701030064,31.32561535793043,31.197897595028376,30.81026434614204,29.809264075728812,31.359387283239265,30.668856839168882,30.285020004056474,30.025654137456776,29.614132246844626,29.910013481489926,29.534872209773123,29.384051535778234,29.165026236433086,30.068880757266484,28.846550722119808,28.571676429835218,29.206625939224146,28.348884958059593,28.037204920209916,27.496285571036076,28.786012640545692,27.364840287190717,26.962868656029485,26.114706088675533,24.90681018929331],"feasible_probability":0.5586365768982963,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.56640625,"counts":{"00010011":156,"00010101":19,"00011001":48,"00100011":71,"00100101":54,"00101001":9,"01000011":63,"01000101":12,"01001001":6,"10000011":39,"10000101":16,"10001001":19},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11777273600455374},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":7,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":16,"objective_bound":15,"offset":32,"linear":[-16,-8,-10,-16,-9,-9,-11],"quadratic":[[0,1,32],[0,2,32],[0,5,16],[0,6,16],[1,2,32],[1,3,16],[1,5,16],[1,6,16],[2,3,16],[2,5,16],[2,6,16],[3,4,32],[3,5,32],[3,6,32],[4,5,32],[4,6,32],[5,6,32]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":8},{"index":2,"task":"t1","resource":"r1","start":6,"cost":6},{"index":3,"task":"t2","resource":"r2","start":6,"cost":0},{"index":4,"task":"t2","resource":"r2","start":11,"cost":7},{"index":5,"task":"t2","resource":"r0","start":3,"cost":7},{"index":6,"task":"t2","resource":"r2","start":3,"cost":5}],"conflicts":[{"i":0,"j":5,"reasons":["precedence"]},{"i":0,"j":6,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":1,"j":6,"reasons":["precedence"]},{"i":2,"j":3,"reasons":["precedence"]},{"i":2,"j":5,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":7},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false}],"bits":[1,0,0,1,0,0,0],"qubo_energy":0},"seed":1641411168,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[-1.2676688475892441,0.31331070798966226],"expected_energy":13.421507802795578,"initial_expected_energy":19.174712584335445,"history":[19.174712584335445,18.035181243507605,20.5699277263087,20.16599342068922,17.17732930458292,19.323158772114265,17.604052445243266,17.09765613565797,16.937952670058053,16.813725579418307,16.755973767959404,17.794947577786523,16.719631319253608,16.32241625760156,16.024671079926737,15.641311139470819,15.440078434697359,15.100411008925995,15.532886788881019,15.23634342104269,15.0606816076109,15.272216977961875,14.914365132870877,15.064417604140175,14.852325775166346,14.895359112952903,14.838188299834556,14.80066076750182,14.729278396856836,14.6057421035686,14.693846908233406,14.707685237549462,14.583417327903042,14.523022503878579,14.484614503365396,14.776431786747118,14.387146042500294,14.329581316832943,14.27628351031506,14.274269516922203,14.170222989757203,14.132296874924167,14.017101260993263,13.881166682619153,13.820826219215569,13.838098825379776,14.082839866213234,13.791392841797563,13.808309622106297,13.801855411920366,13.777899557698166,13.768079961168379,13.758617512212986,13.746402802931481,13.751748122627415,13.769772944973266,13.746382974592116,13.74254668937807,13.741456155773864,13.745111807174819,21.077034443841654,23.517558222784736,19.31190338340867,22.080232867137834,19.97148148322786,19.855608620688574,19.200834063628275,19.06120380290665,18.934943569841295,18.930227495469662,18.73634060882668,18.451922326488845,17.76948675213466,15.606026739335551,24.045665672519675,19.173424255683916,16.670831371057417,15.641525818250493,15.741415037347025,15.431636082067449,15.414241456644685,15.798369723965422,15.134405170673757,14.808148741079936,14.413826076966771,13.827161012171597,17.443264218353537,16.38393874788712,14.37345492720624,13.915990442529793,13.94594414078368,13.832156341439001,13.841441268738777,13.806440880004075,13.79776099000666,13.924103076150462,13.758843878329778,13.730010430679336,13.689672669289138,13.643472508081874,13.566674482638469,13.472897412454222,13.87470289457676,13.73869140865186,13.462214239042972,13.458654811070037,13.451983498720022,13.44913719858921,13.478222899507806,13.445169558000622,13.436776466836463,13.431391452835413,13.43150078112097,13.429645553924004,13.428147157789802,13.425741033288393,13.421507802795578,13.429045185291468,13.424585912676838,13.422248054239713],"feasible_probability":0.6940397016801237,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.66015625,"counts":{"0001001":65,"0001010":5,"0001100":6,"0010001":120,"0010010":88,"0010100":65,"0100001":12,"0100010":17,"0100100":8,"1000001":82,"1000010":29,"1000100":15},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11281954699370544}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.6940397016801237,"total_shots":512,"runtime_seconds":0.11302984399662819},"direct_metrics":{"exact_objective":7,"optimal_count":1,"combinations":12,"optimal_probability":0.29372675437697277,"feasible_probability":0.5586365768982963,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.3333333333333333,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9380869726385571,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9961667770429412,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9999853064017615,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999997840981,"uniform":0.9961846700381721},{"shots":128,"quantum":1.0,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.3021142204224816e-16,"independent_samples":[{"shots":8,"best_objective":7},{"shots":16,"best_objective":7},{"shots":32,"best_objective":7},{"shots":64,"best_objective":7},{"shots":128,"best_objective":7},{"shots":512,"best_objective":7}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":12,"optimal_probability":0.15244872273796836,"feasible_probability":0.6940397016801237,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.3333333333333333,"shots_for_95_percent":19,"hit_curve":[{"shots":8,"quantum":0.7337265522876167,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9290984510433608,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9949729703555493,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999747289729538,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999993613752,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.249000902703301e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.15244872273796836,"diagnostic_seconds":0.0033169210073538125}
+{"instance":"n3-s2-r1.json","seed":2,"direct":{"status":"feasible","best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":7},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3995696849086268,2.844439256767927],"expected_energy":22.840063633091326,"initial_expected_energy":33.66502972592314,"history":[33.66502972592314,31.461795688179233,31.338648153774542,30.067984566039804,27.826365203740128,33.22223540727253,30.693784836766806,31.08325784243003,26.008615864676123,27.39921701565706,25.88716611363865,27.777676965270118,25.64988528933433,25.361369704542394,25.24898114862833,25.594089430667605,25.143642811267686,25.051636819333233,24.878150124615942,24.6512997424162,24.41511627023438,24.284210520194996,25.64318911485777,24.056019750306387,24.14056176298286,24.03467103859446,24.091680213240217,24.008904900351933,23.98289263440749,23.952997202378228,23.89719252210561,23.87164626776914,23.817572729908413,23.794935443725933,23.744631861075273,23.741484219757996,23.66048643837856,23.71330580110099,23.705409414937034,23.67307622599664,23.65237387264929,23.677074722994917,23.652050302574544,23.643787808888664,23.631007988871502,23.6045218827343,23.566866882230503,23.566145497700347,23.52208443216395,23.51599714449568,23.481611527470655,23.513810842190498,23.520604352125964,23.486048421847624,23.482471175901477,23.479123655976416,23.477475514796886,23.479106692303017,23.472822832835575,23.47209405519812,33.02677103082112,32.37140878788888,31.515795549078373,25.41240399363494,29.93120974287161,36.51653674440081,27.572504914488487,25.078727794743937,25.367765581220027,25.215804065794888,25.039927990591725,25.577044796866232,24.76692296244795,24.563200427405434,24.221119636397667,23.81129589808968,23.493430841365363,25.05712857946025,25.208008030153685,23.209587302073036,23.34586923460639,23.18379690609786,23.58742076623375,23.134995902119062,23.127906942751228,23.297281815495708,23.08424596450726,23.063979071189443,23.047035405291762,23.058021967097048,23.03810276054748,23.034569766733938,23.04330264321839,23.026061184256278,23.017914449075626,23.002589863372705,22.98574289862742,22.958800976755573,22.958627479713716,23.0000553795675,22.96026717566114,22.94379816805531,22.92862386487341,22.94112361534318,22.923153646727346,22.917685393830602,22.906864396044103,22.888804877887196,22.916568900813406,22.934833627137138,22.887206003676948,22.881622485302245,22.872049985697107,22.858609151509356,22.854932114932964,22.845918877104154,22.869367932579,22.841780038924085,22.852969976225765,22.840063633091326],"feasible_probability":0.702205393870847,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.67578125,"counts":{"00010011":64,"00010101":5,"00011001":9,"00100011":124,"00100101":85,"00101001":73,"01000011":5,"01000101":20,"01001001":11,"10000011":74,"10000101":29,"10001001":13},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12098583600891288},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":7,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":16,"objective_bound":15,"offset":32,"linear":[-16,-8,-10,-16,-9,-9,-11],"quadratic":[[0,1,32],[0,2,32],[0,5,16],[0,6,16],[1,2,32],[1,3,16],[1,5,16],[1,6,16],[2,3,16],[2,5,16],[2,6,16],[3,4,32],[3,5,32],[3,6,32],[4,5,32],[4,6,32],[5,6,32]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":8},{"index":2,"task":"t1","resource":"r1","start":6,"cost":6},{"index":3,"task":"t2","resource":"r2","start":6,"cost":0},{"index":4,"task":"t2","resource":"r2","start":11,"cost":7},{"index":5,"task":"t2","resource":"r0","start":3,"cost":7},{"index":6,"task":"t2","resource":"r2","start":3,"cost":5}],"conflicts":[{"i":0,"j":5,"reasons":["precedence"]},{"i":0,"j":6,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":1,"j":6,"reasons":["precedence"]},{"i":2,"j":3,"reasons":["precedence"]},{"i":2,"j":5,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":7},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false}],"bits":[1,0,0,1,0,0,0],"qubo_energy":0},"seed":2001025171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.3545304964776044,1.930109091524885],"expected_energy":19.858742422657826,"initial_expected_energy":21.244601837614354,"history":[21.244601837614354,20.867898132810094,20.455343973027993,20.967035005373727,20.164163326289408,20.31808438311429,20.394990241782562,20.066194228245948,20.09358882493339,20.11334694019947,20.072210544968797,20.06634928321733,20.19392824926386,20.05216236388531,20.072153236871827,20.05189179973929,20.05109982652344,20.051113788347585,20.051107564006035,20.051447246350605,20.051117843205688,20.051151823182362,20.051036403437642,20.051032243470353,20.05108492271952,20.051035486143792,20.05098613784334,20.05091750538249,20.050997472384402,20.050857079764818,20.050833367372046,20.05094003240381,20.05078996666926,20.05071655728638,20.050599721686545,20.050330194035453,20.049828816348768,20.04879182841833,20.04689598813092,20.14503029666843,20.06920066463184,20.046501619654638,20.05593796416983,20.04623222848928,20.04715966400779,20.04654854317945,20.04620004746576,20.04651449893589,20.04614856643214,20.04607007026223,20.045987203245485,20.045862865415977,20.04562351514988,20.045163161106768,20.04431181016393,20.052487421789305,20.05183695885008,20.045366404576896,20.04423045698376,20.044926386878988,20.507488403293095,20.074543775324205,20.39697323913345,20.15523623539541,20.083193252542397,20.179561836980447,20.063150290047798,20.03728517706489,20.015971915429486,20.02501601748505,19.991624145509657,19.964956795621468,19.91584878106356,19.996527894936,19.99419813113972,19.92285695663928,19.890363107825404,19.87199387920919,19.89594631182131,19.87145687141674,19.898492381372318,19.85959052968775,19.8618536137466,19.863586063542193,19.860235655370044,19.859364797320374,19.85913036328646,19.859053204779272,19.859478979109387,19.85880803118396,19.858776380932838,19.858749739828912,19.858833059468136,19.858779392916052,19.85875501127461,19.858752531823086,19.85874994548191,19.85874673421683,19.858744230751977,19.858754281134672,19.858742675593575,19.85874254223318,19.858744403708016,19.858742522539416,19.85874261606855,19.85874256228407,19.858742464414373,19.858742434393942,19.85874246070776,19.858742428942772,19.858742442576666,19.858742425417272,19.858742423449055,19.858742424701443,19.858742423119406,19.858742424323946,19.85874242266514,19.858742422657826,19.858742423500356],"feasible_probability":0.3824214976736535,"one_hot_probability":1.0,"sampled_feasible_fraction":0.384765625,"counts":{"0001001":25,"0001010":68,"0001100":84,"0010001":24,"0010010":50,"0010100":98,"0100001":5,"0100010":20,"0100100":14,"1000001":19,"1000010":20,"1000100":85},"circuit_evaluations":119,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":59}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.114887797011761}],"circuit_evaluations":119,"status":"feasible","feasible_probability":0.3824214976736535,"total_shots":512,"runtime_seconds":0.11508147299173288},"direct_metrics":{"exact_objective":7,"optimal_count":1,"combinations":12,"optimal_probability":0.12903066465181673,"feasible_probability":0.702205393870847,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.3333333333333333,"shots_for_95_percent":22,"hit_curve":[{"shots":8,"quantum":0.6688514034167055,"uniform":0.5014697532613109},{"shots":16,"quantum":0.8903406069809144,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9879748175226857,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9998553949863873,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999790893901,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":7},{"shots":16,"best_objective":7},{"shots":32,"best_objective":14},{"shots":64,"best_objective":7},{"shots":128,"best_objective":7},{"shots":512,"best_objective":7}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":12,"optimal_probability":0.054167874612930045,"feasible_probability":0.3824214976736535,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.3333333333333333,"shots_for_95_percent":54,"hit_curve":[{"shots":8,"quantum":0.3595098035693263,"uniform":0.5014697532613109},{"shots":16,"quantum":0.5897723082761971,"uniform":0.7514675930866618},{"shots":32,"quantum":0.8317132409429605,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9716795667260779,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9991979530591774,"uniform":0.9999854432572823},{"shots":512,"quantum":0.9999999999995862,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.054167874612930045,"diagnostic_seconds":0.0033687579998513684}
+{"instance":"n3-s2-r1.json","seed":3,"direct":{"status":"feasible","best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":7},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3924593036897994,2.8418987376430285],"expected_energy":22.83644064384268,"initial_expected_energy":34.55586506354058,"history":[34.55586506354058,33.793504096823035,31.930186450165287,32.002922659510745,32.16613469971285,31.808705634421436,31.74711384699458,32.78938865049987,31.814003206118365,31.861753928204248,31.738545878097614,31.72007125941024,31.75267429553081,31.73193186215854,31.720664086282554,31.71857701670199,31.716141031072453,31.7136834063582,31.716455605991364,31.712139603758153,31.7108106790012,31.70744267779744,31.700598197504746,31.687652574349215,31.639820529215044,31.80459635837309,31.740950621458282,31.625498677648977,31.650471148778493,31.61611213303976,31.59842144352139,31.56390406710981,31.495155714197622,31.32617551135249,32.13768423355942,31.110636130730022,31.09840797385473,31.738883748253,31.109317827211814,30.845363333097545,30.525596034151725,30.66523529881436,30.38785594107197,30.250104529085643,29.96019239523499,29.33188715956176,28.67411901657666,27.387029278980027,34.63555056654209,28.8836338677394,29.356670610030147,27.706041455245824,26.985777420016802,26.77343064333295,27.406957434555494,26.573552989856843,26.41375719588386,26.081683445394575,25.528201610749207,27.70628108843238,32.931903831825764,34.48193522200509,31.346092368431254,26.756472615138865,29.88431507909481,34.30832548787757,26.793632185358874,26.368913901721236,27.155728080528952,26.489196283614866,26.48001397328543,26.192426012463734,26.333886396882562,26.06371805213032,26.03083147620622,26.187509956008704,25.96187859994509,25.82878356582582,25.57572893825451,25.098787752428585,24.226336550421617,30.660945567250778,26.957344043008774,24.495841042339578,24.539432049379048,24.443113486533427,24.166076163430837,24.06090910863697,23.89325583640201,23.563561072605665,23.10263375356182,24.79519177244753,24.575955803769297,23.051778039951976,23.163420644110246,23.10521668987256,23.0265917869721,22.999015536212635,23.033772269907253,22.973172391227454,22.96816560504938,22.94768718300697,22.935164768645492,22.919465531479204,22.896415948395028,22.938981679244023,22.980278216375265,22.893953848330753,22.888165918364283,22.877554493540664,22.86191473427335,22.853641601744677,22.902982915084674,22.94073598566731,22.853341110864847,22.83886793663038,22.845158908286088,22.83806023759069,22.844259080072895,22.83644064384268],"feasible_probability":0.7026325381768311,"one_hot_probability":1.0,"sampled_feasible_fraction":0.6875,"counts":{"00010011":62,"00010101":10,"00011001":8,"00100011":136,"00100101":90,"00101001":64,"01000011":9,"01000101":23,"01001001":10,"10000011":55,"10000101":29,"10001001":16},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12042787700193003},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":7,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":16,"objective_bound":15,"offset":32,"linear":[-16,-8,-10,-16,-9,-9,-11],"quadratic":[[0,1,32],[0,2,32],[0,5,16],[0,6,16],[1,2,32],[1,3,16],[1,5,16],[1,6,16],[2,3,16],[2,5,16],[2,6,16],[3,4,32],[3,5,32],[3,6,32],[4,5,32],[4,6,32],[5,6,32]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":8},{"index":2,"task":"t1","resource":"r1","start":6,"cost":6},{"index":3,"task":"t2","resource":"r2","start":6,"cost":0},{"index":4,"task":"t2","resource":"r2","start":11,"cost":7},{"index":5,"task":"t2","resource":"r0","start":3,"cost":7},{"index":6,"task":"t2","resource":"r2","start":3,"cost":5}],"conflicts":[{"i":0,"j":5,"reasons":["precedence"]},{"i":0,"j":6,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":1,"j":6,"reasons":["precedence"]},{"i":2,"j":3,"reasons":["precedence"]},{"i":2,"j":5,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":7},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false}],"bits":[1,0,0,1,0,0,0],"qubo_energy":0},"seed":819382448,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.2588013819319568,2.8287879848317945],"expected_energy":13.425242085004754,"initial_expected_energy":20.316452099966025,"history":[20.316452099966025,20.31572371394264,20.212241072489334,19.817589480717036,21.97517372259224,19.361244824858034,16.882501522955327,20.5979797772006,18.496281353033208,18.89871632605457,16.69953271135565,17.360816158810724,16.661818108761484,16.519842888498594,16.377668976069266,17.476376648270225,16.13007008714692,16.023910125749133,15.849640931821213,15.4980741501225,14.848720382076205,14.150152434333544,19.019236441555755,17.333195384693262,13.799641306873305,14.484233611281077,14.002469478294186,13.797331420481465,13.73908465410908,13.686448076588668,13.672947448277013,13.779434940190566,13.643958491841508,13.625910031489315,13.60937744466264,13.610125357800452,13.599823048579282,13.606289907685085,13.604109166688003,13.593300105335281,13.589446199047238,13.611052873360237,13.581512788621456,13.574249643819508,13.560889283037909,13.536501188189206,13.515572339203825,13.488935690200359,13.51023269389994,13.555077678154458,13.486962395339088,13.473166157864181,13.47344325690176,13.476772573253484,13.47020724486127,13.46603832849129,13.47601137049013,13.457918185679642,13.456891203690606,13.475408156753742,21.038835826285656,21.046347269060213,17.68985824843176,20.112487218393213,18.686655712119034,17.4336266607081,16.990245811896898,17.54061465706721,16.722735121433875,16.463832000043574,15.960283057998467,15.033116846199913,17.020596058102885,16.3772192005405,15.27876998368582,14.945730869753662,14.997517991078997,15.05739335217473,14.812670627050792,14.871086377553032,14.936386698700353,14.813740853133725,14.757427782689772,14.659312538661583,14.481757195891538,14.523295237747543,14.437151807757347,14.73191897336522,14.3778063480909,14.279048818524316,14.126031169860761,13.86294954893604,14.393834759879542,14.367265667798836,13.817419444619798,14.05138221956333,13.780132867531815,13.73750208722527,13.722494733580842,14.1348941721326,13.6336282707265,13.611944228143658,13.5729626819142,13.512070869374366,13.701451983002247,13.610560558034239,13.540067166594351,13.504385812391273,13.472881828623976,13.439049525353045,13.447435395412903,13.49479740042224,13.445536305414144,13.437525016784026,13.435136810076106,13.433715332880027,13.436029597370528,13.42935795257701,13.427743167129222,13.425242085004754],"feasible_probability":0.6941522191648848,"one_hot_probability":1.0,"sampled_feasible_fraction":0.6875,"counts":{"0001001":81,"0001010":9,"0001100":2,"0010001":134,"0010010":77,"0010100":60,"0100001":16,"0100010":16,"0100100":10,"1000001":47,"1000010":41,"1000100":19},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12796355099999346}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.6941522191648848,"total_shots":512,"runtime_seconds":0.12817191099748015},"direct_metrics":{"exact_objective":7,"optimal_count":1,"combinations":12,"optimal_probability":0.1287100752657153,"feasible_probability":0.7026325381768311,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.3333333333333333,"shots_for_95_percent":22,"hit_curve":[{"shots":8,"quantum":0.6678750237413591,"uniform":0.5014697532613109},{"shots":16,"quantum":0.8896930001451971,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9878323657830326,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9998519486775621,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999780808059,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.7755575615628914e-16,"independent_samples":[{"shots":8,"best_objective":7},{"shots":16,"best_objective":7},{"shots":32,"best_objective":7},{"shots":64,"best_objective":7},{"shots":128,"best_objective":7},{"shots":512,"best_objective":7}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":12,"optimal_probability":0.1526325214777365,"feasible_probability":0.6941522191648848,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.3333333333333333,"shots_for_95_percent":19,"hit_curve":[{"shots":8,"quantum":0.7341881512047933,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9293440610400742,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9950077382896912,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999750773230158,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999993788602,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":7},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.1526325214777365,"diagnostic_seconds":0.003850098990369588}
+{"instance":"n3-s2-r1.json","seed":4,"direct":{"status":"feasible","best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":7},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[5.025174350777935,2.6348401504310806],"expected_energy":27.41064105304803,"initial_expected_energy":31.75763167420105,"history":[31.75763167420105,31.75767006203017,32.08228533445615,35.258880474804,32.370438217520174,32.307771835471385,31.757414968166433,31.769157090452346,31.878137131479754,31.74831130412297,31.76917986027737,31.747545811756616,31.747501232222238,31.747426692351006,31.74749508101615,31.74773636174057,31.74741584500189,31.74737584433062,31.747418160657787,31.74736905514024,31.747369091274987,31.747365626653572,31.747365934694493,31.747371881962195,31.74736575131645,31.747363223876004,31.747359699008292,31.747352858713533,31.747348088839395,31.747333063958006,31.747341934426586,31.74732956889838,31.74734272861666,31.747328382128803,31.747324687169943,31.747321917270703,31.74732996475744,31.747318972834172,31.74731553629453,31.747308744791027,31.747295884071303,31.747336217581765,31.7473027139412,31.747298322596514,31.747298368952364,31.747292724065698,31.747292583891333,31.747294838416227,31.747292758512764,31.74729136934844,31.74728928731141,31.7472882637188,31.747283869281162,31.747279792444306,31.747271840055383,31.74725586763,31.74722373580166,31.747173074921314,31.748007699569264,31.747889751222896,30.49211021107285,30.19681977716114,31.91303237309991,35.37181018910003,31.086314081870675,30.79793662083056,30.160153927793452,30.153172587208296,30.09826911864725,29.971363205386798,29.591100058056355,32.58014398339266,30.894659166689078,29.965894066925628,29.545156492499515,29.641416882634584,29.53054556671941,29.770054250032725,29.459011786452834,29.41176464296026,29.36585872436168,29.326816648483323,29.205575771404945,29.203497472356577,29.110388558219555,29.029681637890313,28.950471008325113,29.07099077327244,28.881920095907468,28.838665926092848,29.147571639528813,28.74660898598366,28.703749963002018,28.653379550620677,28.59102926510892,28.71610375946455,28.517247462261807,28.534967121557088,28.49011871357596,28.467918839473825,28.449330199070488,28.571210797294246,28.407762338872452,28.376103707445047,28.32863919942483,28.214912806754697,27.994785066722358,27.573093607734492,30.118464461769996,29.99043320642384,28.193229095542595,27.68255730136238,27.551646995209545,27.591942588953806,27.544974772479232,27.52140784411181,27.481041967870752,27.564406586906365,27.45698836890638,27.41064105304803],"feasible_probability":0.4041593912479244,"one_hot_probability":1.0,"sampled_feasible_fraction":0.40625,"counts":{"00010011":123,"00010101":70,"00011001":4,"00100011":57,"00100101":26,"00101001":2,"01000011":20,"01000101":6,"01001001":19,"10000011":109,"10000101":54,"10001001":22},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13210870200418867},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":7,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":16,"objective_bound":15,"offset":32,"linear":[-16,-8,-10,-16,-9,-9,-11],"quadratic":[[0,1,32],[0,2,32],[0,5,16],[0,6,16],[1,2,32],[1,3,16],[1,5,16],[1,6,16],[2,3,16],[2,5,16],[2,6,16],[3,4,32],[3,5,32],[3,6,32],[4,5,32],[4,6,32],[5,6,32]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":8},{"index":2,"task":"t1","resource":"r1","start":6,"cost":6},{"index":3,"task":"t2","resource":"r2","start":6,"cost":0},{"index":4,"task":"t2","resource":"r2","start":11,"cost":7},{"index":5,"task":"t2","resource":"r0","start":3,"cost":7},{"index":6,"task":"t2","resource":"r2","start":3,"cost":5}],"conflicts":[{"i":0,"j":5,"reasons":["precedence"]},{"i":0,"j":6,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":1,"j":6,"reasons":["precedence"]},{"i":2,"j":3,"reasons":["precedence"]},{"i":2,"j":5,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":7},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false}],"bits":[1,0,0,1,0,0,0],"qubo_energy":0},"seed":367776961,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3943419501134808,-0.29943116321225616],"expected_energy":13.422108554565261,"initial_expected_energy":20.961715569193874,"history":[20.961715569193874,20.586564788257956,20.851022600064034,20.18985447041553,20.052848844057355,19.902761269905618,16.56170567969773,20.11161426999093,20.167192112938768,18.54400086429313,17.480864645065193,16.17764053965294,15.390727459867641,14.361896195743533,14.564605409446962,14.16516349502254,14.035385780024097,14.019478226252687,13.87227353197174,14.270601725723415,13.949496465622541,13.887295065178288,13.886646329344863,13.855851098764523,13.86124375542644,13.861319775613726,13.84633211776415,13.832271193113971,13.839007309107014,13.8154688364742,13.796376080710456,13.761838882851675,13.774955064968193,13.745820296247494,13.794554567469348,13.72464689189281,13.706317941946299,13.672738315165125,13.633737713930703,13.589249587827544,13.582210472275241,13.846313621575833,13.52623500566531,13.521632567021863,13.508049919624352,13.485198157094214,13.452091894333538,13.596882716559296,13.567869710334776,13.445407174813646,13.477258973224362,13.447366642059517,13.444264273116291,13.448234654462802,13.4406958866272,13.438274735871254,13.435288764885195,13.429968684714604,13.4239307498718,13.422108554565261,20.256985741798186,20.257699410505804,22.296409170174627,22.235104123533542,22.089953862584128,20.110524215235763,20.76309258624294,20.11578730148082,20.063861351511928,20.15573104347809,20.05998098038129,20.062778140178644,20.059870910153304,20.060993292132625,20.059745593319604,20.059287054414874,20.058726417097205,20.057827012495917,20.058498591345156,20.060463845601177,20.058172618001898,20.057666808846115,20.05825355974214,20.057556554501495,20.057420906148234,20.05745094089042,20.057285737394277,20.05718563561934,20.057480471652582,20.05706317702395,20.056982123942884,20.056895059251204,20.05675932320465,20.056994859743824,20.05664783302008,20.0564989303157,20.05633921904017,20.057859579707443,20.05603095865209,20.055974091294715,20.05575441652035,20.055416613821986,20.054666936046317,20.0534092035008,20.062589794524648,20.067173249261845,20.05451391937025,20.054540977845974,20.0535586884187,20.053211648812724,20.053109206996872,20.05346901701853,20.053003662488024,20.05292196801566,20.05274967189435,20.052446005431037,20.052542519607545,20.052562711768783,20.052404374423716,20.0526364168977],"feasible_probability":0.6889075509281503,"one_hot_probability":1.0,"sampled_feasible_fraction":0.712890625,"counts":{"0001001":62,"0001010":3,"0001100":7,"0010001":142,"0010010":77,"0010100":84,"0100001":9,"0100010":9,"0100100":8,"1000001":71,"1000010":27,"1000100":13},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1233348859968828}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.6889075509281503,"total_shots":512,"runtime_seconds":0.12350728099409025},"direct_metrics":{"exact_objective":7,"optimal_count":1,"combinations":12,"optimal_probability":0.23610124596505713,"feasible_probability":0.4041593912479244,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.3333333333333333,"shots_for_95_percent":12,"hit_curve":[{"shots":8,"quantum":0.884045818845426,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9865546278727723,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9998192219683604,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999673193033,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999999989,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.3021142204224816e-16,"independent_samples":[{"shots":8,"best_objective":7},{"shots":16,"best_objective":7},{"shots":32,"best_objective":7},{"shots":64,"best_objective":7},{"shots":128,"best_objective":7},{"shots":512,"best_objective":7}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":12,"optimal_probability":0.1518118269740249,"feasible_probability":0.6889075509281503,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.3333333333333333,"shots_for_95_percent":19,"hit_curve":[{"shots":8,"quantum":0.7321215979767262,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9282411617294574,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9948506691300621,"uniform":0.9382316427138628},{"shots":64,"quantum":0.999973484391592,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999992969225,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.942890293094024e-16,"independent_samples":[{"shots":8,"best_objective":7},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.1518118269740249,"diagnostic_seconds":0.003328474995214492}
+{"instance":"n3-s2-r1.json","seed":5,"direct":{"status":"feasible","best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":7},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3549413604784597,2.838327006110649],"expected_energy":22.8297867471812,"initial_expected_energy":31.615877277589597,"history":[31.615877277589597,31.66950068128193,22.961497883694875,38.60504140782786,23.939468993978117,22.890047579054283,22.85635252055784,22.991218287570852,22.907751592145992,22.9283512654661,22.947556893977634,22.84855873602207,22.86353383439427,22.850059941589222,22.845908686594107,22.849491799151792,22.844726928279517,22.843778793731097,22.842620568342152,22.84058856707154,22.837470785919525,22.835276083308262,22.83223368566733,22.832890733357086,22.841723869496676,22.834349394755712,22.832495802038217,22.83280108748487,22.832128348198438,22.831851342789538,22.83154725305427,22.831099716068948,22.830774160912455,22.830923205736898,22.831770515772416,22.83073235131923,22.830816468606145,22.83068896296141,22.830601498949356,22.830597895016094,22.83052992176558,22.83046615966618,22.830349786608075,22.830153496345336,22.830351986332115,22.83039456344884,22.830121897873628,22.83029184689412,22.83008290608616,22.830053234449682,22.830088033399996,22.83003236325785,22.830013333030276,22.83000144352048,22.829957070619134,22.829927186742957,22.8298923418589,22.829830045334923,22.829810374043355,22.8297867471812,31.90355803169507,33.34466030219029,28.935221338496223,35.14064286671213,29.76784141052699,29.78197611599512,28.804872803771087,28.699333701780102,28.474343052657968,28.01384767477127,27.027969548046023,24.901690270499806,23.2004959366994,33.85119571991937,29.524812678602,23.550416055175823,28.91222884745064,23.06420519171688,23.271587850286743,23.32037362220379,22.86198451389307,23.13578568370172,22.857111552516383,22.903455477754772,22.85687552659993,22.84737225309462,22.843110023659385,22.840900263394577,22.84209785867415,22.84059609900703,22.842524880658928,22.84041690891541,22.839786308880072,22.83932172126206,22.840054971952707,22.838889318157122,22.83843837080571,22.837584033619514,22.836932967244508,22.835324152499513,22.836006231466115,22.83497377945894,22.836312372236616,22.834764030653353,22.834410447400153,22.833816265408867,22.834011866060333,22.833656281696566,22.835072667423262,22.833451180153745,22.833109857194486,22.832533435310197,22.83161580012113,22.83568030348717,22.834556091528636,22.83181884026025,22.831611308685115,22.831790655538732,22.831623770752067,22.83146900841414],"feasible_probability":0.7038860270713324,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.712890625,"counts":{"00010011":65,"00010101":4,"00011001":5,"00100011":127,"00100101":111,"00101001":62,"01000011":11,"01000101":15,"01001001":8,"10000011":48,"10000101":41,"10001001":15},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11737579699547496},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":7,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":16,"objective_bound":15,"offset":32,"linear":[-16,-8,-10,-16,-9,-9,-11],"quadratic":[[0,1,32],[0,2,32],[0,5,16],[0,6,16],[1,2,32],[1,3,16],[1,5,16],[1,6,16],[2,3,16],[2,5,16],[2,6,16],[3,4,32],[3,5,32],[3,6,32],[4,5,32],[4,6,32],[5,6,32]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":8},{"index":2,"task":"t1","resource":"r1","start":6,"cost":6},{"index":3,"task":"t2","resource":"r2","start":6,"cost":0},{"index":4,"task":"t2","resource":"r2","start":11,"cost":7},{"index":5,"task":"t2","resource":"r0","start":3,"cost":7},{"index":6,"task":"t2","resource":"r2","start":3,"cost":5}],"conflicts":[{"i":0,"j":5,"reasons":["precedence"]},{"i":0,"j":6,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":1,"j":6,"reasons":["precedence"]},{"i":2,"j":3,"reasons":["precedence"]},{"i":2,"j":5,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":7},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false}],"bits":[1,0,0,1,0,0,0],"qubo_energy":0},"seed":803261128,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3242289621822254,2.831839006615167],"expected_energy":13.407657377012395,"initial_expected_energy":19.042003131065613,"history":[19.042003131065613,19.24892439759171,14.681784065560084,24.627381776168598,14.302638021021764,14.894967935271062,14.412016108607178,14.153215624153194,14.049085243114911,13.918780765122353,13.750333009366612,14.77874149129319,13.688973908363499,13.689885043813902,13.973376666832724,13.649387651475962,13.686330456849454,13.661185042687828,13.64057564130298,13.669084481297638,13.638396778824534,13.629160661632024,13.613594137000309,13.583818096641224,13.536872247776312,13.513958853636233,13.526690694336104,13.727094120970913,13.539608733113795,13.46385690895298,13.458184113333548,13.475286396440776,13.460228172832252,13.451766227637396,13.44902390648673,13.445620674577533,13.44287169243783,13.439594381925914,13.433668952197241,13.426338334743743,13.423999300083654,13.412804621809482,13.442820543227127,13.441936865929579,13.418378156925936,13.41227476545456,13.414820382458917,13.412065622630006,13.410540190375137,13.411336768569821,13.411912114927773,13.410506511273653,13.410943584611113,13.41053624234215,13.41035358561745,13.410133165172898,13.410375341294593,13.409947621916203,13.409811076854279,13.4098729332717,22.390397656973708,21.87042207794355,19.08307508039928,14.380525740166844,19.861714954184066,15.553688467556224,20.516041460545598,14.212822096751442,13.804082347892138,15.15857027771564,13.702658800110669,13.953335410705398,13.601931060692914,13.688398117195668,13.669188431657387,13.58764307824681,13.570301891053617,13.562077078050105,13.542879487109122,13.524993661918142,13.494590989968284,13.492314695634537,13.446239632554702,13.47698726258869,13.44313542381096,13.460465247567628,13.44183289579995,13.438968787608701,13.437859620457411,13.430672171503785,13.431412957635144,13.429719739426691,13.432539245927442,13.4269701534526,13.424960140002142,13.420861568852459,13.41405569122114,13.46378296724862,13.438264957269443,13.412923030925587,13.423606638343399,13.412509791847189,13.412007525806061,13.415657368479017,13.411177124658558,13.41086760762283,13.410311719378662,13.40943347155575,13.408530945694213,13.409742405538257,13.411983845576033,13.4083191504063,13.4079982897991,13.408115062578023,13.408193325838642,13.408003867756426,13.407944231786333,13.407898869467907,13.407807159640278,13.407657377012395],"feasible_probability":0.6925137657787752,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.6875,"counts":{"0001001":79,"0001010":4,"0001100":15,"0010001":121,"0010010":83,"0010100":69,"0100001":12,"0100010":19,"0100100":13,"1000001":68,"1000010":20,"1000100":9},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11213187300018035}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.6925137657787752,"total_shots":512,"runtime_seconds":0.11230693499965128},"direct_metrics":{"exact_objective":7,"optimal_count":1,"combinations":12,"optimal_probability":0.1289573537161543,"feasible_probability":0.7038860270713324,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.3333333333333333,"shots_for_95_percent":22,"hit_curve":[{"shots":8,"quantum":0.6686283510942287,"uniform":0.5014697532613109},{"shots":16,"quantum":0.8901928303014702,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9879423854827983,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9998546139321546,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999788628913,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.5265566588595902e-16,"independent_samples":[{"shots":8,"best_objective":7},{"shots":16,"best_objective":7},{"shots":32,"best_objective":7},{"shots":64,"best_objective":7},{"shots":128,"best_objective":7},{"shots":512,"best_objective":7}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":12,"optimal_probability":0.15205960787549383,"feasible_probability":0.6925137657787752,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.3333333333333333,"shots_for_95_percent":19,"hit_curve":[{"shots":8,"quantum":0.7327470000104869,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9285758339966053,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9948985885107196,"uniform":0.9382316427138628},{"shots":64,"quantum":0.999973975600817,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999993227306,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.15205960787549383,"diagnostic_seconds":0.003193753000232391}
+{"instance":"n3-s2-r1.json","seed":6,"direct":{"status":"feasible","best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":7},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[5.438396251597136,1.181515397452757],"expected_energy":23.432999880838857,"initial_expected_energy":32.597209916404125,"history":[32.597209916404125,32.11069927844973,31.873820748470852,29.87980322034732,28.66568919349698,30.762156134404222,27.25216290463515,30.409628336891195,27.856054675844216,26.9858262076329,31.76920154925052,27.73619981203347,28.627746039950694,26.993905501136304,26.577712022368566,26.374285621035064,26.16331368879193,26.025218335685068,25.7994288071908,25.489874058664824,25.091691308194065,24.811251881594018,25.078649924430582,26.207942775143746,24.984113699510864,24.481934787081876,24.40562822079309,24.71567671481422,24.316402726655177,24.243100180120667,24.11822521072444,23.995081919240278,24.00751394994172,24.142616544830563,24.07512627042244,23.894836434853065,23.90762443813947,23.88452000997902,23.859303877282724,23.840179833228092,23.8556166817392,23.830614546787547,23.82462588669584,23.82926811195238,23.81516185169916,23.80651363338387,23.794827301146498,23.77608027587921,23.759431247830975,23.72535319560096,23.663114166642288,23.702556581335518,23.761604016512273,23.670463079899513,23.657699027946364,23.65666073516602,23.669624034257318,23.64615067566885,23.63074853855634,23.61389551569663,35.81901189119602,32.63323621927295,31.749804065740584,31.1237721781119,28.49592012098712,31.499617050276136,26.162800843574175,32.51128415768261,27.233392867709988,27.207988753221088,26.43003386989986,25.78938185833461,25.829745393850168,25.55552862437771,25.365246715678033,25.000746522785484,24.61816535907015,25.076400654632696,25.904607139531826,24.339506321163043,24.32914158865175,24.14566443828272,24.12009385366172,23.88705615897093,24.23367975037046,24.0855876918411,23.836439844206968,24.023802744412876,23.833876530105293,23.797860464957175,23.75385901107005,23.72415173472379,23.810159592670033,23.702216101107144,23.68834463122887,23.713192316939637,23.68015073771775,23.67243942770776,23.657579740166746,23.63064111511208,23.589216952636505,23.54269138925349,23.50469527537853,23.50309762458179,23.43783654586153,23.83721315473642,23.536907134269132,23.435523513912795,23.484197768893026,23.433607881134115,23.439444181120706,23.43464589288007,23.433756830570434,23.433506439845694,23.433733075894672,23.433456448803664,23.433373191415136,23.433286755430842,23.433165983055233,23.432999880838857],"feasible_probability":0.5580275115575114,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.51953125,"counts":{"00010011":155,"00010101":31,"00011001":49,"00100011":56,"00100101":40,"00101001":15,"01000011":61,"01000101":22,"01001001":4,"10000011":55,"10000101":13,"10001001":11},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11539860900666099},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":7,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":16,"objective_bound":15,"offset":32,"linear":[-16,-8,-10,-16,-9,-9,-11],"quadratic":[[0,1,32],[0,2,32],[0,5,16],[0,6,16],[1,2,32],[1,3,16],[1,5,16],[1,6,16],[2,3,16],[2,5,16],[2,6,16],[3,4,32],[3,5,32],[3,6,32],[4,5,32],[4,6,32],[5,6,32]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":8},{"index":2,"task":"t1","resource":"r1","start":6,"cost":6},{"index":3,"task":"t2","resource":"r2","start":6,"cost":0},{"index":4,"task":"t2","resource":"r2","start":11,"cost":7},{"index":5,"task":"t2","resource":"r0","start":3,"cost":7},{"index":6,"task":"t2","resource":"r2","start":3,"cost":5}],"conflicts":[{"i":0,"j":5,"reasons":["precedence"]},{"i":0,"j":6,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":1,"j":6,"reasons":["precedence"]},{"i":2,"j":3,"reasons":["precedence"]},{"i":2,"j":5,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":7},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false}],"bits":[1,0,0,1,0,0,0],"qubo_energy":0},"seed":3153149895,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.339418818822741,2.831839427360671],"expected_energy":13.407133982203316,"initial_expected_energy":21.66594662496975,"history":[21.66594662496975,21.037778878000992,15.02655327703808,21.072711124095655,17.465674663786544,16.007257134979003,13.511633311968428,13.937020782728553,13.48176052064023,13.752849593745694,13.462909834729459,13.612225908658807,13.449702280068848,13.495079678363526,13.420427727725755,13.414857509907161,13.412730919188526,13.431750467366191,13.41068443598951,13.41163139838309,13.411971421297345,13.41085977689615,13.41080509015417,13.410569990999292,13.410750405736156,13.4105139489714,13.41040672698018,13.410208675449415,13.409848716755437,13.409225260256834,13.40862303896119,13.408529555897154,13.407522552239012,13.408633473287288,13.409289626908675,13.407607206787764,13.407517572562899,13.407456338173088,13.407354617776003,13.407295113122085,13.409284488394608,13.407187809877227,13.407625571597261,13.407164325012149,13.407170226860325,13.407155684333896,13.407156764262048,13.407177788198425,13.407139226880911,13.407160293708284,13.40714240247027,13.407138850996851,13.407137365214075,13.407134955249475,13.407147676069258,13.407135559780512,13.407135066103944,13.407135556535469,13.407134175498232,13.407133982203316,24.43834140797351,23.669943345888615,19.93218869923406,20.119105268322738,19.8590861759422,20.108169204811006,19.849273929495297,19.84304100332561,19.8308560716713,19.816744426314163,19.738776172503247,19.621970385448503,19.36438919894582,18.255977474459257,22.124815315315182,18.650334871819844,18.371771156623062,18.86931461665366,17.95232134811844,18.131225688876995,18.119228372578824,17.833928415295603,17.858502890203532,17.676436924885678,17.579270428480697,17.711915859763497,17.394379072616882,17.224994417326208,16.864208178386235,16.12585114602438,14.823520543181647,21.139223712522156,19.772138173355426,14.524154530246623,16.392858448509166,14.806746967628749,14.69438574986197,14.622122974592592,14.439117222266443,14.361985230232087,14.500005128302348,14.280228861322644,14.247627258441696,14.188268353556456,14.087186364238672,13.949533236123878,13.996289210871705,14.149914486585608,13.984813301778479,13.92082310555228,13.897551204167836,13.95394768341098,13.878294089909591,13.867669982045836,13.851276126286226,13.82467974219032,13.789952293198034,13.766339448777426,13.72886911799179,13.767151203826938],"feasible_probability":0.691993112965518,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.70703125,"counts":{"0001001":77,"0001010":13,"0001100":4,"0010001":139,"0010010":71,"0010100":75,"0100001":7,"0100010":22,"0100100":5,"1000001":66,"1000010":24,"1000100":9},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1112431390065467}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.691993112965518,"total_shots":512,"runtime_seconds":0.11141065499396063},"direct_metrics":{"exact_objective":7,"optimal_count":1,"combinations":12,"optimal_probability":0.2980440771262179,"feasible_probability":0.5580275115575114,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.3333333333333333,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9410506877570601,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9965249785860844,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9999879242261728,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999998541756,"uniform":0.9961846700381721},{"shots":128,"quantum":1.0,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":7},{"shots":16,"best_objective":7},{"shots":32,"best_objective":7},{"shots":64,"best_objective":7},{"shots":128,"best_objective":7},{"shots":512,"best_objective":7}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":12,"optimal_probability":0.15175843989684978,"feasible_probability":0.691993112965518,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.3333333333333333,"shots_for_95_percent":19,"hit_curve":[{"shots":8,"quantum":0.73198668078434,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9281688607230048,"uniform":0.7514675930866618},{"shots":32,"quantum":0.994840287430169,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999733773661967,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999992912354,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":7},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.15175843989684978,"diagnostic_seconds":0.0036801579990424216}
+{"instance":"n3-s2-r1.json","seed":7,"direct":{"status":"feasible","best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":7},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4171515349304524,2.8447869496721814],"expected_energy":22.847350821246177,"initial_expected_energy":36.166017079673274,"history":[36.166017079673274,33.7572765576461,31.964128061772595,31.375621177819006,30.86357692832575,34.87866640222431,31.285992987945924,31.211457975680347,30.451420820695795,30.230630752939874,29.70714411095438,28.878659898653645,27.051187508409583,23.764906205601267,29.13086563425248,30.846960746563425,34.626060072976045,23.457799868950367,27.459537427796267,24.39273622607805,23.64516514995212,23.446136621470817,23.639920568373764,23.497887931965845,23.456676470545997,23.447249905846643,23.447110283602566,23.446193214067073,23.447131461075145,23.446298343716368,23.445655991336793,23.444719712476143,23.442965189144466,23.443785563933915,23.443848226981586,23.442533252790817,23.443583408969744,23.442318762650395,23.441929842332186,23.441537906834487,23.44109519568256,23.440253693527193,23.439623914301293,23.438227836359296,23.43587515939459,23.455925345391186,23.440899953506143,23.43859367485592,23.435521094483246,23.435489474860525,23.43518746647095,23.43461974968869,23.433618477996294,23.432431945019893,23.435386159760956,23.436145595595324,23.432196033378084,23.431879492674707,23.431914898322965,23.432149877564942,25.067131464637896,27.010861496341413,35.54331844186568,32.19917273105588,25.08823440659937,25.41367964449192,25.58620102779697,24.21393885470035,23.71654863986355,24.761785387584524,23.636584320863825,24.28108755281543,23.47218459524221,23.63138212264772,23.58057777637554,23.44580403973255,23.411923996390733,23.388502085863838,23.35318616521751,23.297531630766606,23.18856751291234,22.997670136102347,23.82249104869962,23.903409874192185,23.261023320989363,23.04029045123066,23.006619659749546,23.008399646640466,22.99633879074609,22.98893592761767,22.9748372617867,22.95289926490007,22.9888437144243,23.004619102417884,22.94461429182585,22.943074440607624,22.93652783671765,22.93034529177035,22.91886901979614,22.900327992069702,22.99275310253418,22.908782256225113,22.89779674389383,22.913934809447753,22.890504469117737,22.88688138113671,22.882409751164957,22.878510678104732,22.870867726095373,22.85694103884763,22.876189267524385,22.887835515751185,22.85457196289457,22.871040251037904,22.852699405728604,22.850630810572625,22.85235502688048,22.848790168841184,22.847350821246177,22.851230638420294],"feasible_probability":0.7015307371668615,"one_hot_probability":1.0,"sampled_feasible_fraction":0.70703125,"counts":{"00010011":67,"00010101":3,"00011001":9,"00100011":120,"00100101":106,"00101001":69,"01000011":7,"01000101":14,"01001001":5,"10000011":71,"10000101":32,"10001001":9},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11530109899467789},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":7,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":16,"objective_bound":15,"offset":32,"linear":[-16,-8,-10,-16,-9,-9,-11],"quadratic":[[0,1,32],[0,2,32],[0,5,16],[0,6,16],[1,2,32],[1,3,16],[1,5,16],[1,6,16],[2,3,16],[2,5,16],[2,6,16],[3,4,32],[3,5,32],[3,6,32],[4,5,32],[4,6,32],[5,6,32]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":8},{"index":2,"task":"t1","resource":"r1","start":6,"cost":6},{"index":3,"task":"t2","resource":"r2","start":6,"cost":0},{"index":4,"task":"t2","resource":"r2","start":11,"cost":7},{"index":5,"task":"t2","resource":"r0","start":3,"cost":7},{"index":6,"task":"t2","resource":"r2","start":3,"cost":5}],"conflicts":[{"i":0,"j":5,"reasons":["precedence"]},{"i":0,"j":6,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":1,"j":6,"reasons":["precedence"]},{"i":2,"j":3,"reasons":["precedence"]},{"i":2,"j":5,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":7},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false}],"bits":[1,0,0,1,0,0,0],"qubo_energy":0},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3376817738529692,2.8318594567474134],"expected_energy":13.407125002918573,"initial_expected_energy":20.28313990069868,"history":[20.28313990069868,20.29431135684157,20.992098249627496,20.323089292604678,20.242913030738386,21.288019587513404,20.239791228042723,20.136493843384677,20.058116096078535,20.091387980898112,20.540529688750507,20.06014127479961,20.047658609647996,20.145954222976126,20.046732058167045,20.061245257863213,20.046261131130436,20.042395977480066,20.039666183705613,20.037839378441767,20.03844514472904,20.03777665521484,20.038959600095257,20.037657885953738,20.038524257304086,20.037675018936806,20.03772262103078,20.037581229340656,20.03757519543622,20.03757469901291,20.037592488390104,20.037567720908918,20.037571881955195,20.037567722717135,20.037568000688342,20.037567590789273,20.037568036894182,20.037567714513525,20.037567463068232,20.03756761668425,20.037567294019354,20.037567252262686,20.037567041268836,20.03756681662845,20.037566432395067,20.037566015316163,20.037565381687372,20.037566469008624,20.03756611400285,20.03756592077759,20.037565505000003,20.03756526047715,20.037565125172005,20.037565111084255,20.03756489868711,20.037564821972296,20.03756442785246,20.037564472006224,20.03756462521833,20.03756439816933,20.344005367133086,20.33090898599248,20.16616402236598,19.906245642152328,25.319091986814303,20.06251557659072,16.869187290066545,18.920968924623608,16.962673288957507,15.77222377631255,14.165723342235944,16.981710859973163,15.00366796203982,14.319249068296077,13.9517988066088,14.130663672550625,13.89673996822375,13.88867108540985,13.851338647135645,13.800697414444222,13.764961418730444,13.844155791935666,13.741973683523048,13.723245838357753,13.7538894416186,13.707483510502787,13.686610971391175,13.64746996870035,13.598416399116308,13.593901350576594,13.53586756119843,13.47910494029159,13.441861690178197,13.5910954106116,13.46079393605153,13.453974774092615,13.444870951767916,13.438151558121042,13.439927426256443,13.435200217396183,13.432498813272723,13.428401944807549,13.423713930115296,13.418279332786927,13.411257783250717,13.408438974212036,13.549165026576901,13.426240065954955,13.408888222106295,13.421734037944056,13.407197419483271,13.409592602710383,13.407144512969428,13.407317150740461,13.407155106381945,13.407125125458307,13.407139600921692,13.407125002918573,13.407125692112405,13.407125037656506],"feasible_probability":0.6920552668952827,"one_hot_probability":1.0,"sampled_feasible_fraction":0.70703125,"counts":{"0001001":76,"0001010":6,"0001100":4,"0010001":143,"0010010":81,"0010100":62,"0100001":11,"0100010":15,"0100100":6,"1000001":68,"1000010":34,"1000100":6},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11317328500445001}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.6920552668952827,"total_shots":512,"runtime_seconds":0.11333963299694005},"direct_metrics":{"exact_objective":7,"optimal_count":1,"combinations":12,"optimal_probability":0.1285929669681232,"feasible_probability":0.7015307371668615,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.3333333333333333,"shots_for_95_percent":22,"hit_curve":[{"shots":8,"quantum":0.6675177337833729,"uniform":0.5014697532613109},{"shots":16,"quantum":0.8894555426514559,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9877799229495159,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9998506697168802,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999777004666,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.498001805406602e-16,"independent_samples":[{"shots":8,"best_objective":7},{"shots":16,"best_objective":7},{"shots":32,"best_objective":7},{"shots":64,"best_objective":7},{"shots":128,"best_objective":7},{"shots":512,"best_objective":7}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":12,"optimal_probability":0.15179695474248975,"feasible_probability":0.6920552668952827,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.3333333333333333,"shots_for_95_percent":19,"hit_curve":[{"shots":8,"quantum":0.7320840195784784,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9282210274347749,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9948477790974807,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999734546197716,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999992953428,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.15179695474248975,"diagnostic_seconds":0.0031376609986182302}
+{"instance":"n3-s2-r1.json","seed":8,"direct":{"status":"feasible","best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":7},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4224288729231294,2.822923266908034],"expected_energy":22.88563440031357,"initial_expected_energy":33.60946453524931,"history":[33.60946453524931,33.0103182213988,32.0372844413637,32.33861331762316,31.758905946316915,31.75285729311918,32.25570629914692,31.752131098099174,31.784974782575603,31.8446741791184,31.754606523255568,31.76180457771558,31.750192470274435,31.74950323214692,31.749927488660397,31.749511653162237,31.74967714260778,31.749509321280865,31.749523000654065,31.749507889093397,31.749501342264317,31.74950015131166,31.74951014200842,31.749497930481063,31.74949817340566,31.749497744730895,31.749497813806617,31.74949741303772,31.749497240112305,31.7494974693305,31.749496902950078,31.749496572892866,31.74949591141494,31.749494595728905,31.749491959437982,31.749486690241884,31.749476763017846,31.749769674717896,31.749621247061523,31.74949693958382,31.749488639748357,31.749475903226752,31.74947559887319,31.74947500007979,31.749474496012482,31.74947406420774,31.749479283431043,31.749473268759306,31.749472270970813,31.749471871994523,31.749471153598186,31.7494698134014,31.749467201172664,31.749462024676298,31.749451058789028,31.749473944418288,31.749572394535136,31.74948005591939,31.749449740894633,31.749458279991345,33.01825944213967,32.30644795006727,30.899092821626162,25.030102104367405,30.749188037415514,38.82998543729674,26.098733290011122,25.891964674369376,25.034618418986458,25.10799697077876,24.759772341082588,24.720023163378617,24.440153307981944,24.47802174975282,24.50322448348396,24.38823709760764,24.475198228596877,24.359263660136726,24.304782443076174,24.20364328021498,24.012651539551115,23.672054993849535,24.520344343993113,24.767314180770704,23.776827105273263,23.6424937386987,23.708003122048165,23.625917234386748,23.58918977385841,23.564735541935075,23.47833305531493,23.434768613342392,23.35868433188339,23.28030101394125,23.17861129235835,23.172620817157622,23.414203767257657,23.176789473637843,23.10024685881267,23.06139599469887,23.074306793263283,23.05793362877384,23.048266914690174,23.040167461166607,23.044152497191956,23.033141640039,23.028596680076816,23.031586948843664,23.019838111910037,23.014506128317535,23.020122363962237,23.006624172925278,22.99888389061105,22.984629784348105,22.95838988954774,22.910371908482414,22.88563440031357,23.170349431687526,23.19565864053071,22.888267413949087],"feasible_probability":0.7009185864857491,"one_hot_probability":1.0,"sampled_feasible_fraction":0.712890625,"counts":{"00010011":47,"00010101":12,"00011001":4,"00100011":138,"00100101":109,"00101001":71,"01000011":5,"01000101":16,"01001001":6,"10000011":63,"10000101":35,"10001001":6},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11596919200383127},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":7,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":16,"objective_bound":15,"offset":32,"linear":[-16,-8,-10,-16,-9,-9,-11],"quadratic":[[0,1,32],[0,2,32],[0,5,16],[0,6,16],[1,2,32],[1,3,16],[1,5,16],[1,6,16],[2,3,16],[2,5,16],[2,6,16],[3,4,32],[3,5,32],[3,6,32],[4,5,32],[4,6,32],[5,6,32]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":8},{"index":2,"task":"t1","resource":"r1","start":6,"cost":6},{"index":3,"task":"t2","resource":"r2","start":6,"cost":0},{"index":4,"task":"t2","resource":"r2","start":11,"cost":7},{"index":5,"task":"t2","resource":"r0","start":3,"cost":7},{"index":6,"task":"t2","resource":"r2","start":3,"cost":5}],"conflicts":[{"i":0,"j":5,"reasons":["precedence"]},{"i":0,"j":6,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":1,"j":6,"reasons":["precedence"]},{"i":2,"j":3,"reasons":["precedence"]},{"i":2,"j":5,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":7},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false}],"bits":[1,0,0,1,0,0,0],"qubo_energy":0},"seed":3257320810,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[-0.7731973334557787,0.37076327567019585],"expected_energy":14.439083500187653,"initial_expected_energy":24.143789662061774,"history":[24.143789662061774,24.681862774193505,20.466619673853167,21.49754859686579,20.69749713601906,21.114230658472827,20.07162429772457,20.60312829596159,20.073744551923692,20.083188911883184,20.20517842000698,20.055871891662562,20.081070283234332,20.053476873691686,20.051593669085964,20.048485131239303,20.042019949854843,20.027782374247323,20.141215089816455,20.059231265337992,20.046973143839136,20.025161881098818,20.024516905970827,20.02220559080834,20.01754268075334,20.00768067878827,19.986138682678625,19.9680856170838,19.945027119846124,20.01038327086988,20.056543579314617,19.909034393313544,19.879311509215462,19.831796238068375,19.74235772609147,19.49999221218166,21.039600098605938,20.114137631088802,19.437377955025358,19.707432401857567,19.388136005897444,19.309834975938976,19.118080392513168,18.7015198180418,18.289848321886858,16.5611959265864,22.250793102968537,17.119456895177326,17.29764726959435,16.845690298689085,16.291010139936933,16.699609579195872,16.209811530417095,16.014002243714977,15.642296994998933,15.586588714153642,14.929375822253647,14.683571507658826,14.439083500187653,14.685309723872395,20.085712109908375,20.141583560354295,20.96625980878913,20.70357002800597,20.502218207414494,20.36222031078478,20.081063796283328,20.073762731446443,20.103000016751757,20.076946664479138,20.07856219058305,20.072831124233005,20.070938094897766,20.068766512885507,20.069449623346436,20.0682521454343,20.06780102433968,20.067115911747322,20.06615391719305,20.065865521078578,20.064324388011727,20.069989493524275,20.063291467457724,20.06359032107436,20.0635668781578,20.063008918333246,20.063775206763736,20.06254924619957,20.062309101427324,20.063185201117967,20.062031574664704,20.061807527761705,20.061383960669207,20.061255149676498,20.06009268834995,20.060678764146527,20.05992991687774,20.060798867748396,20.05987272850475,20.059597393074128,20.05940424795143,20.05919435226867,20.058968420588094,20.058520728372045,20.057632032899726,20.05593051024924,20.05417163110121,20.059003182585784,20.06706157608079,20.053770037608555,20.052139715232343,20.05315786585343,20.052585619618036,20.05218532078043,20.051938970598293,20.051555660570948,20.051041175807885,20.05063242623922,20.050186512416325,20.052139358325984],"feasible_probability":0.6671965221714796,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.6875,"counts":{"0001001":80,"0001010":42,"0001100":1,"0010001":132,"0010010":106,"0010100":34,"0100001":26,"0100010":34,"0100100":10,"1000001":26,"1000010":20,"1000100":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11679872599779628}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.6671965221714796,"total_shots":512,"runtime_seconds":0.11696998499974143},"direct_metrics":{"exact_objective":7,"optimal_count":1,"combinations":12,"optimal_probability":0.1236033267428613,"feasible_probability":0.7009185864857491,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.3333333333333333,"shots_for_95_percent":23,"hit_curve":[{"shots":8,"quantum":0.6519787498738991,"uniform":0.5014697532613109},{"shots":16,"quantum":0.878881209460666,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9853302385782889,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9997847980998301,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999536881422,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.7755575615628914e-16,"independent_samples":[{"shots":8,"best_objective":7},{"shots":16,"best_objective":7},{"shots":32,"best_objective":7},{"shots":64,"best_objective":7},{"shots":128,"best_objective":7},{"shots":512,"best_objective":7}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":12,"optimal_probability":0.13523121873711105,"feasible_probability":0.6671965221714796,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.3333333333333333,"shots_for_95_percent":21,"hit_curve":[{"shots":8,"quantum":0.6872480521283487,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9021862191024879,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9904324642665335,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999084622599889,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999916208422,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":9.71445146547012e-17,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.13523121873711105,"diagnostic_seconds":0.0030753199971513823}
+{"instance":"n3-s2-r1.json","seed":9,"direct":{"status":"feasible","best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":7},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[5.306356299250153,1.1846522208580499],"expected_energy":23.499099532521186,"initial_expected_energy":32.638377251617364,"history":[32.638377251617364,32.55158909000427,33.1351179950973,33.40268852553357,31.970819516835615,32.83843819984959,31.92125015479335,31.749640032441803,32.09771844536647,32.1855640219212,31.749531191564255,31.80592595814962,31.814041007720803,31.764541603677003,31.75323159514604,31.74952082680707,31.750218684978577,31.750039816859122,31.749718844765226,31.749535246106667,31.74952005151451,31.74953510380501,31.74951596715085,31.74952194173283,31.749517524105627,31.749516245414867,31.749515400379643,31.749515681980874,31.749515101537575,31.749514953641587,31.74951536339987,31.749514591967184,31.749514276756692,31.749513640957893,31.749512580825623,31.749512964839433,31.74951401497559,31.74951216674435,31.749512163133353,31.749511788386066,31.74951142257052,31.749510717845435,31.749509384931223,31.749506756031067,31.749502575975207,31.749547543014653,31.74954505487635,31.749503701913852,31.74950235236212,31.749506558090935,31.749500992845665,31.749500435594854,31.749499785293516,31.749499378847048,31.749498627645757,31.74949789429426,31.749496392363604,31.749496433305815,31.74949690170087,31.74949630591771,31.783548678702363,31.746169042131196,30.70959991677982,33.84484056966788,30.375481448246575,29.186711049816054,30.429034188844497,30.517568193024204,28.84109636707214,28.856109089522384,28.859996427351767,28.614007272761814,28.3979857221418,29.275587047385983,28.128810589156327,27.90418715914995,27.483862109706713,26.593821969005194,25.1502122812235,32.47837636012871,34.45785608904906,26.29528914972903,26.165249011835748,25.29772454563036,24.9953065454255,24.88789608806346,25.169977860280362,24.790422469665202,24.722914249066186,24.641771731509778,24.488351746079804,24.269849232310847,24.251167219832325,23.999302454230783,23.919997110969085,23.682302362131338,24.71085651834065,24.200614753435545,23.95085467675626,23.655309586646947,23.659632377683426,23.639921224198524,23.62743875256223,23.61954591220212,23.759771780767473,23.58406371876373,23.570398884184037,23.56014985864078,23.57520691912076,23.554164714919356,23.54916673876791,23.538919785960918,23.522829198972932,23.54028672672105,23.559097660394396,23.516413572190924,23.509901152987158,23.520737808560646,23.504200298076867,23.499099532521186],"feasible_probability":0.5584501363929073,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.607421875,"counts":{"00010011":163,"00010101":16,"00011001":42,"00100011":70,"00100101":64,"00101001":14,"01000011":63,"01000101":16,"01001001":6,"10000011":41,"10000101":10,"10001001":7},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11877376701158937},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0],"fixed_cost":7,"removals":[],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,4,5,6,7]],"components":[{"qubits":7,"penalty":16,"objective_bound":15,"offset":32,"linear":[-16,-8,-10,-16,-9,-9,-11],"quadratic":[[0,1,32],[0,2,32],[0,5,16],[0,6,16],[1,2,32],[1,3,16],[1,5,16],[1,6,16],[2,3,16],[2,5,16],[2,6,16],[3,4,32],[3,5,32],[3,6,32],[4,5,32],[4,6,32],[5,6,32]],"domains":[[0,1,2],[3,4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":8},{"index":2,"task":"t1","resource":"r1","start":6,"cost":6},{"index":3,"task":"t2","resource":"r2","start":6,"cost":0},{"index":4,"task":"t2","resource":"r2","start":11,"cost":7},{"index":5,"task":"t2","resource":"r0","start":3,"cost":7},{"index":6,"task":"t2","resource":"r2","start":3,"cost":5}],"conflicts":[{"i":0,"j":5,"reasons":["precedence"]},{"i":0,"j":6,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":1,"j":6,"reasons":["precedence"]},{"i":2,"j":3,"reasons":["precedence"]},{"i":2,"j":5,"reasons":["precedence"]},{"i":2,"j":6,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":3,"reserved_end":3,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":7},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":5,"reserved_end":5,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false}],"bits":[1,0,0,1,0,0,0],"qubo_energy":0},"seed":747784396,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3110094786817486,2.831099002572958],"expected_energy":13.409176751888982,"initial_expected_energy":20.203826088703668,"history":[20.203826088703668,19.9990246948557,19.980563914227936,20.835112489378965,19.8627281589874,19.98616899261695,19.902388410216673,19.902830417137675,19.864655322136354,19.861625446945258,19.873639767672607,19.861619762793932,19.86499473682445,19.86173088757413,19.860638217352456,19.859339021494087,19.858862950225546,19.858949995218364,19.858877823800913,19.859000211651036,19.858859168650117,19.85881298074951,19.85878165345536,19.85878024384165,19.858773067653484,19.858767404945137,19.85876193688339,19.85877617835876,19.85875594315503,19.858751261426054,19.858745386994745,19.8587451379712,19.858743301473716,19.858742641542523,19.858743836788932,19.858742957921468,19.858743026199114,19.85874271369441,19.858742578128727,19.85874248990482,19.85874246464435,19.8587424368994,19.858742453841558,19.858742430735425,19.858742443020073,19.858742429064076,19.8587424261957,19.858742424161164,19.858742425563403,19.858742423439363,19.85874242411687,19.858742422884017,19.858742423358322,19.86018869136851,20.33466697463975,19.81864857952292,19.195280270166243,17.58906478907228,20.78642758905577,23.981287118902806,22.325652850481614,15.721862821547397,20.445425389771337,17.85212843175668,14.842456310539635,15.609908132364893,14.74785923841742,14.626110069393182,14.424584251767758,14.157183522648854,13.889252249515577,13.5369140138163,15.418511058479965,14.037530360691228,13.771913322039559,13.498285625737093,13.632006239385401,13.524012004292818,13.491366924949947,13.512939012771476,13.490513963706352,13.484829416038105,13.480537418107001,13.471717166333937,13.45609595117449,13.43745359804242,13.439934915931904,13.474940787229237,13.444355964280597,13.430957344089936,13.428488091850415,13.443934780558795,13.425196281872054,13.423783397491194,13.421446151564616,13.41771261065879,13.413948866992465,13.417072619438969,13.427230203941185,13.413400183443011,13.415396528608927,13.41294555838601,13.41669960800586,13.41212148378663,13.411476826765195,13.410556766788096,13.41247386895958,13.41033245832267,13.41004379732237,13.410922860755779,13.409787397699095,13.409579268007501,13.409176751888982],"feasible_probability":0.6929468587824659,"one_hot_probability":1.0,"sampled_feasible_fraction":0.7421875,"counts":{"0001001":79,"0001010":5,"0001100":4,"0010001":137,"0010010":94,"0010100":70,"0100001":9,"0100010":18,"0100100":6,"1000001":58,"1000010":18,"1000100":14},"circuit_evaluations":113,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":53},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11128375800035428}],"circuit_evaluations":113,"status":"feasible","feasible_probability":0.6929468587824659,"total_shots":512,"runtime_seconds":0.11145968799246475},"direct_metrics":{"exact_objective":7,"optimal_count":1,"combinations":12,"optimal_probability":0.2890181366843596,"feasible_probability":0.5584501363929073,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.3333333333333333,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9347067662260466,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9957367936233399,"uniform":0.7514675930866618},{"shots":32,"quantum":0.99998182507139,"uniform":0.9382316427138628},{"shots":64,"quantum":0.999999999669672,"uniform":0.9961846700381721},{"shots":128,"quantum":1.0,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.8041124150158794e-16,"independent_samples":[{"shots":8,"best_objective":7},{"shots":16,"best_objective":7},{"shots":32,"best_objective":7},{"shots":64,"best_objective":7},{"shots":128,"best_objective":7},{"shots":512,"best_objective":7}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":12,"optimal_probability":0.15219686383166986,"feasible_probability":0.6929468587824659,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.3333333333333333,"shots_for_95_percent":19,"hit_curve":[{"shots":8,"quantum":0.733092885557197,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9287605922598164,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9949249467848279,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999742438348632,"uniform":0.9961846700381721},{"shots":128,"quantum":0.99999999933662,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":7},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.15219686383166986,"diagnostic_seconds":0.0032164959993679076}
+{"instance":"n3-s2-r2.json","seed":0,"direct":{"status":"feasible","best":{"feasible":true,"objective":27,"raw_cost":27,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":3,"end":6,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r2","start":12,"end":14,"reserved_end":15,"changed":true}],"bits":[1,0,1,0,0,0,0,1],"qubo_energy":27},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.3168952956791946,1.3198542137826874],"expected_energy":44.096891947721936,"initial_expected_energy":55.11577177129619,"history":[55.11577177129619,57.314355115343716,54.52826877861068,61.36924894138851,57.21397013203616,56.01958169503941,52.554478183212936,51.05562474298326,48.34374155479432,56.5625778054324,46.2269996863494,48.16351446799124,51.892731395289786,45.98000353919047,45.01311707711234,44.9455763912587,44.534394711238505,44.30246288319012,44.73167494707273,44.28226350748942,44.12686985743156,44.16363778510645,44.3642728994343,44.1297554805397,44.09693778228993,44.12280595065977,44.09783756895341,44.09829191438981,44.100883665628764,44.09816536396299,44.09696203648124,44.0969973200597,44.09703080804299,44.09690858791403,44.09691247661526,44.09693055604417,44.09690997151466,44.096903455924426,44.09690033943147,44.09690590463828,44.0968982674644,44.09689652995422,44.096896399603224,44.09689422344579,44.09689293793624,44.09689207078586,44.09689469596019,44.09689230303994,44.09689229809343,44.09689215676518,44.0968919616019,44.09689196331293,44.096891947721936,44.09689194892429,44.09689195545493,44.09689195265635,53.40853216253408,53.93745852954575,56.17868392367021,60.89166390953855,55.816019305624586,50.78510940053661,55.46215342749615,51.80059607004959,51.908427989216115,50.436711446109776,49.78860188012901,50.03393769304979,49.59532037869581,49.57665433433042,49.43749724948588,49.23961035675601,49.082182914907584,49.01396127031223,48.95645411948185,49.00971532023623,49.175250308976324,48.95431779630264,48.92260015575786,48.94524225130522,48.92603444332293,48.92442013809468,48.922835440574445,48.92276273474472,48.92301375789101,48.92209292502234,48.92204015918415,48.922859475297216,48.92191078198959,48.92167853833042,48.92129508208721,48.92078819428788,48.92077660767649,48.920528891817725,48.92073830110973,48.92077069952629,48.920556797793246,48.92051172136488,48.920500290830546,48.920577341715735,48.92048412890989,48.92048483411012,48.92048383452488,48.92048857114874,48.92048179413682,48.92048081971902,48.92047982300758,48.92047924846902,48.920479018635994,48.920478699060396,48.92047879876512,48.920478867506574,48.92047877736747,48.920478701496386,48.92047869921607],"feasible_probability":0.08631641902999418,"one_hot_probability":1.0,"sampled_feasible_fraction":0.083984375,"counts":{"00010011":113,"00010101":30,"00011001":57,"00100011":36,"00100101":11,"00101001":76,"01000011":5,"01000101":8,"01001001":2,"10000011":7,"10000101":43,"10001001":124},"circuit_evaluations":115,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":56},{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":59}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12121499700879212},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0,2,7],"fixed_cost":27,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":4,"forced_by":2,"reasons":["resource","precedence"]},{"variable":5,"forced_by":2,"reasons":["precedence"]}],"infeasible_task":null,"component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":{"feasible":true,"objective":27,"raw_cost":27,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":3,"end":6,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r2","start":12,"end":14,"reserved_end":15,"changed":true}],"bits":[1,0,1,0,0,0,0,1],"qubo_energy":27},"components":[],"circuit_evaluations":0,"status":"classical_propagation","feasible_probability":1.0,"total_shots":0,"runtime_seconds":9.034598770085722e-05},"direct_metrics":{"exact_objective":27,"optimal_count":1,"combinations":12,"optimal_probability":0.08631641902999418,"feasible_probability":0.08631641902999418,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.08333333333333333,"shots_for_95_percent":34,"hit_curve":[{"shots":8,"quantum":0.514301720389843,"uniform":0.5014697532613109},{"shots":16,"quantum":0.7640971811837337,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9443498600745398,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9969030619262768,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999904089745675,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.8041124150158794e-16,"independent_samples":[{"shots":8,"best_objective":27},{"shots":16,"best_objective":27},{"shots":32,"best_objective":27},{"shots":64,"best_objective":27},{"shots":128,"best_objective":27},{"shots":512,"best_objective":27}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":1,"diagnostic_seconds":0.0018575530120870098}
+{"instance":"n3-s2-r2.json","seed":1,"direct":{"status":"feasible","best":{"feasible":true,"objective":27,"raw_cost":27,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":3,"end":6,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r2","start":12,"end":14,"reserved_end":15,"changed":true}],"bits":[1,0,1,0,0,0,0,1],"qubo_energy":27},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.316898700314007,1.319853275671754],"expected_energy":44.09689194740318,"initial_expected_energy":55.535552810523455,"history":[55.535552810523455,56.492133203598485,52.56703320544621,53.19731544407861,56.66456275938047,54.39781215495819,47.57595268304797,46.42702578925502,47.79012693888432,46.8966583421414,49.5353994917614,44.885146798128076,44.306724270936165,44.147265348488446,44.70393329565296,44.14787159646563,44.1471744385112,44.223169742735614,44.13711726405824,44.12230961409603,44.11170669286738,44.100876906482725,44.098440064555554,44.10403113587121,44.107937907901544,44.09805658267011,44.09798257131109,44.09931026617422,44.09821390750858,44.098604551006034,44.09715911458165,44.09689597640778,44.097025921955264,44.09690463479464,44.09691294291635,44.096913476212364,44.09690655785073,44.09689761536424,44.09689695999119,44.096895159473235,44.09689600982797,44.096893918706776,44.096893339358424,44.09689526966079,44.09689286010034,44.09689255108839,44.0968923147024,44.096892127432824,44.0968920113221,44.09689199220573,44.09689194740318,44.096891966402524,44.096891951881304,44.09689195294855,55.0770696815962,53.436481373957776,51.421097219099906,72.88154341286587,52.14797642301066,59.3543537550133,50.51872977846957,47.87723327380896,45.57371492236132,46.79719234857892,45.01805959005949,44.675471673365095,44.351064367338736,44.16127204757274,44.54792358053621,44.17846092639023,44.154174900568634,44.18834322463811,44.145345072337086,44.13171674683329,44.117004558377516,44.10606258809584,44.127475498836006,44.1030654245128,44.103595493006296,44.10033903339375,44.099876929834366,44.11131714351583,44.09728597027214,44.102662066433595,44.097037678727204,44.09690329076802,44.09697922617708,44.09689317011628,44.096913313349546,44.09691079985334,44.09690324906913,44.09689258647861,44.0968959905236,44.096892742024735,44.096892579317156,44.09689288349965,44.09689258828571,44.0968924458759,44.09689227174425,44.09689232207274,44.09689220923213,44.09689215701938,44.09689208437298,44.09689218928814,44.096892046915606,44.096892018859606,44.09689203081659],"feasible_probability":0.0863161766378908,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.0859375,"counts":{"00010011":105,"00010101":25,"00011001":56,"00100011":44,"00100101":6,"00101001":76,"01000011":4,"01000101":8,"01001001":1,"10000011":5,"10000101":44,"10001001":138},"circuit_evaluations":107,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":54},{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":53}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11488103099691216},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0,2,7],"fixed_cost":27,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":4,"forced_by":2,"reasons":["resource","precedence"]},{"variable":5,"forced_by":2,"reasons":["precedence"]}],"infeasible_task":null,"component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":{"feasible":true,"objective":27,"raw_cost":27,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":3,"end":6,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r2","start":12,"end":14,"reserved_end":15,"changed":true}],"bits":[1,0,1,0,0,0,0,1],"qubo_energy":27},"components":[],"circuit_evaluations":0,"status":"classical_propagation","feasible_probability":1.0,"total_shots":0,"runtime_seconds":9.593099821358919e-05},"direct_metrics":{"exact_objective":27,"optimal_count":1,"combinations":12,"optimal_probability":0.0863161766378908,"feasible_probability":0.0863161766378908,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.08333333333333333,"shots_for_95_percent":34,"hit_curve":[{"shots":8,"quantum":0.5143006895775192,"uniform":0.5014697532613109},{"shots":16,"quantum":0.7640961798551266,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9443493876410552,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9969030093440745,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999904086488771,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.942890293094024e-16,"independent_samples":[{"shots":8,"best_objective":27},{"shots":16,"best_objective":27},{"shots":32,"best_objective":27},{"shots":64,"best_objective":27},{"shots":128,"best_objective":27},{"shots":512,"best_objective":27}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":1,"diagnostic_seconds":0.00179353600833565}
+{"instance":"n3-s2-r2.json","seed":2,"direct":{"status":"feasible","best":{"feasible":true,"objective":27,"raw_cost":27,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":3,"end":6,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r2","start":12,"end":14,"reserved_end":15,"changed":true}],"bits":[1,0,1,0,0,0,0,1],"qubo_energy":27},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.316898257027868,1.319853765139821],"expected_energy":44.09689194767503,"initial_expected_energy":57.24681804789639,"history":[57.24681804789639,64.23955137275716,55.2358654565455,50.22720472892448,47.05323593313065,64.6195282938354,57.694604052014604,54.732181288850796,50.301219537879675,47.36783549096539,46.24409175213402,45.56055209009384,46.008934069752634,45.327689921476825,46.19715364726152,44.75174465478207,44.39792543139274,44.34857161259021,44.1215515012247,44.3188613013794,44.169850345527664,44.12882474065414,44.16716806578765,44.117044178640896,44.11055285306931,44.10706155652686,44.11741049150626,44.10250268762629,44.100214321337305,44.10866813035445,44.09866586941335,44.09807437142399,44.10035589224195,44.09758019788455,44.09730259653534,44.09711555346047,44.09695339983565,44.09690894964375,44.09701998424181,44.09700490032209,44.09690480080501,44.096901730596066,44.09692847760678,44.096905860116664,44.09690764847248,44.09689405886374,44.096891996103125,44.09689286230947,44.09689296701868,44.096892023543575,44.096892000597606,44.09689212298957,44.09689195871019,44.096891955119496,44.09689194767503,44.096891950293596,52.50013983425171,68.52022997290398,55.989463868613974,44.13603557316766,55.890893889591,54.522762031065696,44.386222126570885,46.212716995706536,44.84912402139055,44.38111694214393,44.387786503008954,44.128619620676304,44.12829327891915,44.12486297703379,44.12336588471329,44.132534451425514,44.11428320702014,44.11795104098522,44.11500906040803,44.11469769907764,44.114022307525275,44.114369360534795,44.114043790053785,44.11400690835954,44.11410796604466,44.113990095903546,44.113983439280844,44.11400114458131,44.11398189900662,44.11398377615305,44.113981697308624,44.11398482902252,44.11398104748374,44.113982515243066,44.11398091126388,44.11398105476995,44.113980919862215,44.113980879394035,44.11398090036985],"feasible_probability":0.0863163583074239,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0625,"counts":{"00010011":94,"00010101":29,"00011001":65,"00100011":40,"00100101":7,"00101001":73,"01000011":4,"01000101":8,"01001001":2,"10000011":12,"10000101":32,"10001001":146},"circuit_evaluations":95,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":56},{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":39}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1023079729930032},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0,2,7],"fixed_cost":27,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":4,"forced_by":2,"reasons":["resource","precedence"]},{"variable":5,"forced_by":2,"reasons":["precedence"]}],"infeasible_task":null,"component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":{"feasible":true,"objective":27,"raw_cost":27,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":3,"end":6,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r2","start":12,"end":14,"reserved_end":15,"changed":true}],"bits":[1,0,1,0,0,0,0,1],"qubo_energy":27},"components":[],"circuit_evaluations":0,"status":"classical_propagation","feasible_probability":1.0,"total_shots":0,"runtime_seconds":0.0005027650040574372},"direct_metrics":{"exact_objective":27,"optimal_count":1,"combinations":12,"optimal_probability":0.0863163583074239,"feasible_probability":0.0863163583074239,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.08333333333333333,"shots_for_95_percent":34,"hit_curve":[{"shots":8,"quantum":0.514301462157296,"uniform":0.5014697532613109},{"shots":16,"quantum":0.7640969303374594,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9443497417237905,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9969030487537912,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999904088929786,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":27},{"shots":64,"best_objective":27},{"shots":128,"best_objective":27},{"shots":512,"best_objective":27}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":1,"diagnostic_seconds":0.0020244909974280745}
+{"instance":"n3-s2-r2.json","seed":3,"direct":{"status":"feasible","best":{"feasible":true,"objective":27,"raw_cost":27,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":3,"end":6,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r2","start":12,"end":14,"reserved_end":15,"changed":true}],"bits":[1,0,1,0,0,0,0,1],"qubo_energy":27},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.777552191217838,2.8575832384131346],"expected_energy":39.932430039231434,"initial_expected_energy":55.84640902826266,"history":[55.84640902826266,46.997317379261,67.13876861951209,56.43490167285794,45.400926681143936,46.06015906796328,48.194983340564974,44.364227488058916,47.43742510229852,44.260410295297916,44.18592673236864,44.72716473411974,44.13750890580616,44.2185530502216,44.098287500207505,44.11436575391554,44.0973095940906,44.10204473771671,44.09931753024753,44.09803078996531,44.09767032619334,44.09694365653347,44.096988457787454,44.09695205628721,44.097020889278674,44.09691699560948,44.09697286016018,44.096908910392045,44.096900055741436,44.09689988216313,44.09689407782925,44.09689307895166,44.09689226942203,44.096894629992704,44.09689213603595,44.096892310371025,44.09689314546699,44.096892104600556,44.096892320269575,44.09689208314108,44.09689200298871,44.09689195917733,44.09689194958885,44.09689195224465,73.36292869483255,59.54966948009894,54.75151105399032,46.08244697239251,44.62119175955315,72.92604651508249,51.24092751006348,53.51955614526176,44.45876686750646,45.41323789538177,44.30051522941554,43.683169396633296,43.53360458889509,42.97149299175615,42.468044982719256,41.49291147491879,40.543991701009816,41.368197758826284,43.914102611608506,40.44330372278758,40.992339560352235,40.299026284676316,40.84731953345036,40.157705896473615,40.07365617891725,40.1609209622752,40.045130338304354,40.0208447763387,40.06209997621977,40.01836268498914,40.00470293558119,39.98181142341331,39.95492740509927,39.94428953219958,39.933658545391104,39.94686731101361,39.955230523690716,39.934777483845096,39.934614897684334,39.93459299038584,39.935519236532485,39.93347341651719,39.93300685301803,39.93307435403056,39.932914215942944,39.93286377596392,39.93294006924336,39.93275072013876,39.93267869918137,39.932610171207585,39.932555576277174,39.932510031988485,39.93247311399362,39.932453190395734,39.93243875076287,39.932430039231434,39.93246012414393,39.93243474345572,39.932430102280215,39.9324352349016],"feasible_probability":0.2487517269518881,"one_hot_probability":1.0,"sampled_feasible_fraction":0.259765625,"counts":{"00010011":127,"00010101":25,"00011001":61,"00100011":28,"00100101":38,"00101001":17,"01000011":3,"01000101":5,"01001001":2,"10000011":29,"10000101":133,"10001001":44},"circuit_evaluations":104,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":44},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11439204499765765},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0,2,7],"fixed_cost":27,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":4,"forced_by":2,"reasons":["resource","precedence"]},{"variable":5,"forced_by":2,"reasons":["precedence"]}],"infeasible_task":null,"component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":{"feasible":true,"objective":27,"raw_cost":27,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":3,"end":6,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r2","start":12,"end":14,"reserved_end":15,"changed":true}],"bits":[1,0,1,0,0,0,0,1],"qubo_energy":27},"components":[],"circuit_evaluations":0,"status":"classical_propagation","feasible_probability":1.0,"total_shots":0,"runtime_seconds":9.36479918891564e-05},"direct_metrics":{"exact_objective":27,"optimal_count":1,"combinations":12,"optimal_probability":0.2487517269518881,"feasible_probability":0.2487517269518881,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.08333333333333333,"shots_for_95_percent":11,"hit_curve":[{"shots":8,"quantum":0.8985462992944346,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9897071466131455,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9998940571691567,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999887761166,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999999999,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":27},{"shots":16,"best_objective":27},{"shots":32,"best_objective":27},{"shots":64,"best_objective":27},{"shots":128,"best_objective":27},{"shots":512,"best_objective":27}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":1,"diagnostic_seconds":0.0021872170036658645}
+{"instance":"n3-s2-r2.json","seed":4,"direct":{"status":"feasible","best":{"feasible":true,"objective":27,"raw_cost":27,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":3,"end":6,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r2","start":12,"end":14,"reserved_end":15,"changed":true}],"bits":[1,0,1,0,0,0,0,1],"qubo_energy":27},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.777590874731127,2.8576731020544193],"expected_energy":39.93242941534137,"initial_expected_energy":56.73104093444502,"history":[56.73104093444502,56.8270085289231,51.033404607316484,68.1012024067133,51.005482025627956,47.457021042506064,45.64981505112465,45.75893182172345,52.87460670682868,45.7692119078646,44.5268192124003,44.317278919665284,44.134672259228964,44.36578858938167,44.16323556099333,44.140936687465484,44.143893282151275,44.12228841848005,44.118486287857216,44.12833965812662,44.11141572884093,44.10696002020663,44.11468767731558,44.10322940684167,44.10050207974942,44.1054550695089,44.09897492526807,44.09831304010261,44.10063335964048,44.09777778295486,44.097451157435174,44.097217548194564,44.09701696360925,44.09692624798029,44.09699325329228,44.09699596776528,44.09695112309262,44.096919620736934,44.0970028234293,44.09690547171104,44.09690456830283,44.09689646559437,44.096893488648575,44.0968929800993,44.096898329547926,44.09689214540415,44.09689244039369,44.09689214787339,44.09689286070715,44.096892167793925,44.096892232524645,44.09689216524764,44.09689210060354,44.096892036497024,44.09689199543983,44.096891956887546,44.09689195290225,44.096891948755896,44.09689197117438,44.09689195624482,54.66400235592007,48.77743948884465,49.693097874865174,49.549517655737816,55.411615538100236,44.13092041985953,41.49698314103901,58.312910694387206,42.618154212051955,40.342809936492166,43.09782247652119,40.1807633538551,40.923430534687284,39.96315962467949,40.388797082936605,40.03966815608933,39.9985547366944,39.95508538820761,39.94377228684001,39.93806297048212,39.94176134611911,39.93653683642793,39.936876724755706,39.93633639145857,39.9356388612358,39.93475393780987,39.93679148373644,39.93417849423506,39.9337315744932,39.93423761609132,39.93352167094244,39.93405787558495,39.933432649063406,39.933273332433316,39.933009766714015,39.93269279954518,39.93267557797301,39.932485128432084,39.932519451186366,39.93272783488111,39.9325149570661,39.93245348734478,39.932454191285004,39.93247097864861,39.932455566664615,39.932448331402355,39.932443656215,39.93244153461914,39.93243340241741,39.93243632132901,39.93243327377561,39.93243568846212,39.93243162323714,39.932430546586446,39.93242989711884,39.93243056435174,39.93242983410099,39.93242957109304,39.93242948795397,39.93242941534137],"feasible_probability":0.24876590057425046,"one_hot_probability":1.0,"sampled_feasible_fraction":0.234375,"counts":{"00010011":135,"00010101":15,"00011001":66,"00100011":23,"00100101":41,"00101001":22,"01000011":4,"01000101":5,"01001001":2,"10000011":30,"10000101":120,"10001001":49},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1295367230050033},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0,2,7],"fixed_cost":27,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":4,"forced_by":2,"reasons":["resource","precedence"]},{"variable":5,"forced_by":2,"reasons":["precedence"]}],"infeasible_task":null,"component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":{"feasible":true,"objective":27,"raw_cost":27,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":3,"end":6,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r2","start":12,"end":14,"reserved_end":15,"changed":true}],"bits":[1,0,1,0,0,0,0,1],"qubo_energy":27},"components":[],"circuit_evaluations":0,"status":"classical_propagation","feasible_probability":1.0,"total_shots":0,"runtime_seconds":9.10889939405024e-05},"direct_metrics":{"exact_objective":27,"optimal_count":1,"combinations":12,"optimal_probability":0.24876590057425046,"feasible_probability":0.24876590057425046,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.08333333333333333,"shots_for_95_percent":11,"hit_curve":[{"shots":8,"quantum":0.898561611105904,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9897102532585701,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9998941211119973,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999887896611,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999999999,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.7755575615628914e-16,"independent_samples":[{"shots":8,"best_objective":27},{"shots":16,"best_objective":27},{"shots":32,"best_objective":27},{"shots":64,"best_objective":27},{"shots":128,"best_objective":27},{"shots":512,"best_objective":27}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":1,"diagnostic_seconds":0.001779439000529237}
+{"instance":"n3-s2-r2.json","seed":5,"direct":{"status":"feasible","best":{"feasible":true,"objective":27,"raw_cost":27,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":3,"end":6,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r2","start":12,"end":14,"reserved_end":15,"changed":true}],"bits":[1,0,1,0,0,0,0,1],"qubo_energy":27},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.7640625351534652,-0.22329900679252185],"expected_energy":41.61062259251234,"initial_expected_energy":56.32388656022151,"history":[56.32388656022151,56.355343154410455,48.469825503249425,75.54141364694567,49.658427320866195,50.24066873351119,46.88240807592633,52.45535396528935,47.4438232588856,46.351023645135854,45.509040993595015,44.703535964861345,47.95222336116362,43.609305433198834,43.0667584728394,42.511604482044234,42.25913186056311,42.34992359860094,43.29553358413172,42.87852673963634,41.822864953565315,42.69698754999625,41.719758309020456,41.695406380206954,41.67424816321435,41.730695548626194,41.65662146204306,41.64729686948561,41.63779449404659,41.63188825059036,41.62491905524515,41.62067751005109,41.632570196867235,41.61809129346037,41.61652933708847,41.61962856280802,41.61550644270072,41.61465410346672,41.61502263161691,41.61417731006209,41.61450175082227,41.614366838926436,41.6138752025887,41.61360888276374,41.61433062581516,41.613300874619334,41.61302272828661,41.61253148357912,41.61203492605968,41.61140038187246,41.61139921342974,41.612387805439596,41.611438759728955,41.611082254003165,41.61090198811758,41.61094233745217,41.610811159194085,41.610770516407264,41.6107116534303,41.61068516074805,57.908334138602285,63.61847892849565,60.21990280925429,65.11900757352355,56.579180759186016,43.96302963117876,56.44507158736823,42.95836581179046,52.826625771974165,42.89206198315528,41.68551264170978,41.94722200772445,41.755133753395725,41.74981565883749,41.621654480790696,41.636006758672394,41.62286749944424,41.636252378598165,41.617855780110794,41.61852670865822,41.622131774446984,41.61676577881677,41.61649058532188,41.61777534625605,41.61626943483461,41.6158613990343,41.61510469124574,41.61380772315162,41.613154660204614,41.61178732588297,41.61507389319674,41.613574849416715,41.612067173630365,41.61121975468247,41.61127661688444,41.61109502803236,41.61100741164998,41.61100138475157,41.61084540043563,41.610800046820465,41.610732469732966,41.610692749482354,41.61067402955649,41.610642733220956,41.61063877664114,41.610772016757664,41.610645898479646,41.6106875926179,41.61063837115658,41.61062742838941,41.610625108867175,41.610628807332304,41.61062463472274,41.610628446468056,41.61062311611477,41.610623428456044,41.61062293344806,41.61062367743886,41.61062281059007,41.61062259251234],"feasible_probability":0.23050833843827676,"one_hot_probability":1.0,"sampled_feasible_fraction":0.203125,"counts":{"00010011":58,"00010101":54,"00011001":35,"00100011":80,"00100101":82,"00101001":50,"01000101":1,"01001001":1,"10000011":37,"10000101":104,"10001001":10},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13005995799903758},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0,2,7],"fixed_cost":27,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":4,"forced_by":2,"reasons":["resource","precedence"]},{"variable":5,"forced_by":2,"reasons":["precedence"]}],"infeasible_task":null,"component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":{"feasible":true,"objective":27,"raw_cost":27,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":3,"end":6,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r2","start":12,"end":14,"reserved_end":15,"changed":true}],"bits":[1,0,1,0,0,0,0,1],"qubo_energy":27},"components":[],"circuit_evaluations":0,"status":"classical_propagation","feasible_probability":1.0,"total_shots":0,"runtime_seconds":8.940600673668087e-05},"direct_metrics":{"exact_objective":27,"optimal_count":1,"combinations":12,"optimal_probability":0.23050833843827676,"feasible_probability":0.23050833843827676,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.08333333333333333,"shots_for_95_percent":12,"hit_curve":[{"shots":8,"quantum":0.87707751131095,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9848900617744903,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9997716897668213,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999478744375,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999999973,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":27},{"shots":16,"best_objective":27},{"shots":32,"best_objective":27},{"shots":64,"best_objective":27},{"shots":128,"best_objective":27},{"shots":512,"best_objective":27}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":1,"diagnostic_seconds":0.0017843730020103976}
+{"instance":"n3-s2-r2.json","seed":6,"direct":{"status":"feasible","best":{"feasible":true,"objective":27,"raw_cost":27,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":3,"end":6,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r2","start":12,"end":14,"reserved_end":15,"changed":true}],"bits":[1,0,1,0,0,0,0,1],"qubo_energy":27},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.3170105321903987,1.3198521041485118],"expected_energy":44.09689232975775,"initial_expected_energy":56.49724105737723,"history":[56.49724105737723,58.158869396467836,49.6120180121636,60.536292803952435,54.09424981739416,51.498990859105646,46.070239774180756,51.23670515409923,48.43078962258092,46.47797068325603,45.216242504672,45.12667188762464,44.670867203533625,44.39689641426131,44.85919503631826,44.32856929294374,44.17000776328485,44.21903084032893,44.433136315356094,44.16951765934745,44.11660301381413,44.11707765122134,44.12198538496723,44.122983130494546,44.10834118339051,44.104958646322395,44.10123011613217,44.09856560128556,44.10142382033667,44.09818133081511,44.09739058234422,44.097127490150605,44.09916214651628,44.096957863518,44.09698645069989,44.09697161828501,44.096917171224256,44.09693393525667,44.09693556294443,44.09691863164112,44.09691080510687,44.096905477057334,44.096901947610576,44.0968944242324,44.09689570258584,44.09689505976225,44.09689490461196,44.09689452629158,44.09689515666122,44.09689445019713,44.09689411667162,44.0968935945407,44.096892770073886,44.096893475357845,44.096893251567636,44.096892662698096,44.096893250892236,44.09689262910095,44.096892446672406,44.09689232975775,51.667652563323955,63.863046422193705,56.49353376047275,51.73408999372376,55.75850327921147,53.549084121879226,52.14373873887669,51.021665112863275,51.38960210602522,50.34509115620747,50.013601131836296,50.909621813353084,49.49073106564666,49.229373299273846,49.9858660019603,49.09478882979482,49.013249470916506,49.145729361890524,48.98127995994275,48.954663351911194,48.9641962275477,48.94677890619772,48.94868776821207,48.93946491740756,48.9360836407938,48.94785965040724,48.92937342622292,48.92621188162352,48.923216069420974,48.92136254448958,48.92606633248651,48.9209727374207,48.920767522948324,48.92260903773481,48.92049173121542,48.920686539943475,48.9204873136673,48.92055130899273,48.920492779516564,48.920503920989255,48.92048284231432,48.92048111876977,48.92047953192039,48.92047875379791,48.920481216267945,48.92047928301274,48.92047897347514,48.920478798048244,48.92047873274352,48.920478715581325,48.92047879519154,48.920478698125876,48.92047870414481,48.92047871343475],"feasible_probability":0.08632032767170592,"one_hot_probability":1.0,"sampled_feasible_fraction":0.07421875,"counts":{"00010011":103,"00010101":33,"00011001":60,"00100011":34,"00100101":3,"00101001":92,"01000011":5,"01000101":4,"01001001":1,"10000011":5,"10000101":38,"10001001":134},"circuit_evaluations":114,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":54}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1274811379989842},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0,2,7],"fixed_cost":27,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":4,"forced_by":2,"reasons":["resource","precedence"]},{"variable":5,"forced_by":2,"reasons":["precedence"]}],"infeasible_task":null,"component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":{"feasible":true,"objective":27,"raw_cost":27,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":3,"end":6,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r2","start":12,"end":14,"reserved_end":15,"changed":true}],"bits":[1,0,1,0,0,0,0,1],"qubo_energy":27},"components":[],"circuit_evaluations":0,"status":"classical_propagation","feasible_probability":1.0,"total_shots":0,"runtime_seconds":8.751401037443429e-05},"direct_metrics":{"exact_objective":27,"optimal_count":1,"combinations":12,"optimal_probability":0.08632032767170592,"feasible_probability":0.08632032767170592,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.08333333333333333,"shots_for_95_percent":34,"hit_curve":[{"shots":8,"quantum":0.5143183422678799,"uniform":0.5014697532613109},{"shots":16,"quantum":0.7641133273425798,"uniform":0.7514675930866618},{"shots":32,"quantum":0.944357477662611,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9969039097079332,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999904142249034,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.0531133177191805e-16,"independent_samples":[{"shots":8,"best_objective":27},{"shots":16,"best_objective":null},{"shots":32,"best_objective":27},{"shots":64,"best_objective":27},{"shots":128,"best_objective":27},{"shots":512,"best_objective":27}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":1,"diagnostic_seconds":0.0017127669998444617}
+{"instance":"n3-s2-r2.json","seed":7,"direct":{"status":"feasible","best":{"feasible":true,"objective":27,"raw_cost":27,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":3,"end":6,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r2","start":12,"end":14,"reserved_end":15,"changed":true}],"bits":[1,0,1,0,0,0,0,1],"qubo_energy":27},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.463221952431994,0.2257874225277702],"expected_energy":48.92047870007602,"initial_expected_energy":49.65487710697988,"history":[49.65487710697988,57.19083057983859,56.51398711318491,62.986954536512485,53.693716650035185,51.47698592782531,49.52628633105927,49.46783255741873,50.17205200897573,48.952141266078776,49.27631984256568,49.040645229909686,48.96895776323289,48.935607975252,48.97866828280331,48.928956401563966,48.92671478415902,48.92273571102907,48.92328688365288,48.92458313613304,48.922463056044364,48.922900713619406,48.92233637556035,48.922104092781915,48.92170277995597,48.92122912340425,48.920864504637535,48.920692783306755,48.921937884342285,48.920508649424725,48.92059379577494,48.92054949717779,48.92051760169088,48.920505062556295,48.92050136599899,48.920508284093536,48.9204975776515,48.92049426619679,48.92048883083182,48.92048715193707,48.92047951993023,48.92048490656073,48.92048113092136,48.92047978865405,48.920480757221355,48.920479240141375,48.92047904870927,48.920479347455874,48.92047894039874,48.92047886016615,48.92047889249546,48.92047882564992,48.92047882332716,48.9204788827508,48.920478779822,48.920478733834,48.92047870007602,48.920478711468846,48.92047871130925,60.24759216687572,62.386540567222454,56.29484534122655,59.19012216674182,52.517497603507266,49.47511049221056,54.648743817288945,53.74488082812505,49.25954903200322,53.41394642128191,49.034720411786374,49.12287682265588,49.08920400380224,49.07220327385937,48.99863934240028,49.02990382694246,48.991306376027005,48.980936098404435,48.96801752406381,48.94719308417221,48.96295185478904,48.9489005812044,48.94422712236111,48.94235411354852,48.954751045956655,48.933310839323426,48.928998622787006,48.924585331611226,48.9220444706774,48.92231629379411,48.92254847814921,48.922411803937365,48.9221749751053,48.92179772052981,48.92140790468779,48.92086452948924,48.92134768935381,48.92081684794858,48.920990625425745,48.920698500751584,48.92061421039835,48.920515298759526,48.92059392818599,48.920529638883025,48.920495149895935,48.920550333551816,48.920486856164636,48.92048282200308,48.92050119332915,48.920480072658535,48.92048028140206,48.92048134114967,48.92047993141452,48.920480316905774,48.92047970040841,48.920479504965904,48.920479191275454,48.920479145870594,48.92047878965439,48.920478764108616],"feasible_probability":0.015108814213825376,"one_hot_probability":1.0,"sampled_feasible_fraction":0.009765625,"counts":{"00010011":6,"00010101":55,"00011001":13,"00100011":59,"00100101":115,"00101001":53,"01000011":2,"01000101":19,"10000011":121,"10000101":5,"10001001":64},"circuit_evaluations":119,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":59},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12842948899196927},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0,2,7],"fixed_cost":27,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":4,"forced_by":2,"reasons":["resource","precedence"]},{"variable":5,"forced_by":2,"reasons":["precedence"]}],"infeasible_task":null,"component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":{"feasible":true,"objective":27,"raw_cost":27,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":3,"end":6,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r2","start":12,"end":14,"reserved_end":15,"changed":true}],"bits":[1,0,1,0,0,0,0,1],"qubo_energy":27},"components":[],"circuit_evaluations":0,"status":"classical_propagation","feasible_probability":1.0,"total_shots":0,"runtime_seconds":8.79400031408295e-05},"direct_metrics":{"exact_objective":27,"optimal_count":1,"combinations":12,"optimal_probability":0.015108814213825376,"feasible_probability":0.015108814213825376,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.08333333333333333,"shots_for_95_percent":197,"hit_curve":[{"shots":8,"quantum":0.11466831737820038,"uniform":0.5014697532613109},{"shots":16,"quantum":0.21618781174605306,"uniform":0.7514675930866618},{"shots":32,"quantum":0.3856384535445593,"uniform":0.9382316427138628},{"shots":64,"quantum":0.6225598902368793,"uniform":0.9961846700381721},{"shots":128,"quantum":0.8575389635420034,"uniform":0.9999854432572823},{"shots":512,"quantum":0.9995881070119548,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":27},{"shots":512,"best_objective":27}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":1,"diagnostic_seconds":0.0017990269989240915}
+{"instance":"n3-s2-r2.json","seed":8,"direct":{"status":"feasible","best":{"feasible":true,"objective":27,"raw_cost":27,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":3,"end":6,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r2","start":12,"end":14,"reserved_end":15,"changed":true}],"bits":[1,0,1,0,0,0,0,1],"qubo_energy":27},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.7644722924190057,2.9182861794282675],"expected_energy":41.61062262015601,"initial_expected_energy":58.66977668358179,"history":[58.66977668358179,55.49875801408661,48.12605230165426,78.27413774147882,51.48443881368115,54.01823802549521,47.152777538333325,45.38879288171703,44.48724887041914,44.661203028957914,44.300243067983445,44.19038038213832,44.18539041358409,44.12717520034078,44.13849392471981,44.14884852007337,44.13505091957214,44.11785087534974,44.12076860987844,44.11065033297875,44.10570652236706,44.10964268881715,44.103090704536555,44.111794873159575,44.10088443270806,44.09936947546565,44.09936382458798,44.09840129922259,44.097599483599325,44.09732338237566,44.099562519667295,44.09699701185777,44.09707305363136,44.09701995442444,44.097034185750104,44.09702734639814,44.096980463199415,44.09708871809849,44.09695093704798,44.096930266527295,44.096915363737025,44.096913326458264,44.096906040148546,44.09689709494958,44.09689289189312,44.09690468822241,44.09689416005885,44.09689331126246,44.09689395941814,44.09689268547527,44.09689309659878,44.09689261366663,44.096892486531374,44.096892363497616,44.096892285575734,44.09689207602561,44.09689207979181,44.096892067050405,44.096892110734565,44.09689209210707,55.77192535856008,70.13770797543536,55.265709303852795,55.01040657300173,41.677965543756734,56.437473755592535,54.552039485359415,59.665365190557736,41.63599741413885,45.263247592334416,41.69762273388126,42.47217219116647,41.696668723754,41.64995732180467,41.673225659441364,41.62718820104136,41.6167993954812,41.6170695091116,41.621207041922204,41.61684801503006,41.618218769220135,41.6167992737506,41.61634941175598,41.61560347486629,41.615510916894785,41.614542535353564,41.613781224714714,41.61272624781206,41.61185941661308,41.61141875262929,41.61099020940752,41.61081155899747,41.61264987915003,41.610668981691525,41.61092151024019,41.61073710733724,41.61067999437151,41.61066029575237,41.610649268628755,41.61064926191043,41.610645830850764,41.61064275709437,41.610638241941786,41.61064948685764,41.610633351267396,41.61063162370801,41.61064535049258,41.610628280120814,41.610626642631075,41.610625110963866,41.610624699328035,41.61062318278729,41.610623223197706,41.61062303074628,41.6106234008483,41.61062320596973,41.61062277946814,41.61062274099315,41.610622985972725,41.61062262015601],"feasible_probability":0.23056138055796496,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.1953125,"counts":{"00010011":43,"00010101":65,"00011001":46,"00100011":78,"00100101":98,"00101001":40,"01000101":1,"10000011":24,"10000101":100,"10001001":17},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.126960509995115},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0,2,7],"fixed_cost":27,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":4,"forced_by":2,"reasons":["resource","precedence"]},{"variable":5,"forced_by":2,"reasons":["precedence"]}],"infeasible_task":null,"component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":{"feasible":true,"objective":27,"raw_cost":27,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":3,"end":6,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r2","start":12,"end":14,"reserved_end":15,"changed":true}],"bits":[1,0,1,0,0,0,0,1],"qubo_energy":27},"components":[],"circuit_evaluations":0,"status":"classical_propagation","feasible_probability":1.0,"total_shots":0,"runtime_seconds":8.600600995123386e-05},"direct_metrics":{"exact_objective":27,"optimal_count":1,"combinations":12,"optimal_probability":0.23056138055796496,"feasible_probability":0.23056138055796496,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.08333333333333333,"shots_for_95_percent":12,"hit_curve":[{"shots":8,"quantum":0.8771452806903378,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9849067179433441,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9997721928367582,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999481038964,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999999973,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.0531133177191805e-16,"independent_samples":[{"shots":8,"best_objective":27},{"shots":16,"best_objective":27},{"shots":32,"best_objective":27},{"shots":64,"best_objective":27},{"shots":128,"best_objective":27},{"shots":512,"best_objective":27}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":1,"diagnostic_seconds":0.0017308629903709516}
+{"instance":"n3-s2-r2.json","seed":9,"direct":{"status":"feasible","best":{"feasible":true,"objective":27,"raw_cost":27,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":3,"end":6,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r2","start":12,"end":14,"reserved_end":15,"changed":true}],"bits":[1,0,1,0,0,0,0,1],"qubo_energy":27},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.31689851611778,1.3198446869170262],"expected_energy":44.096891954902986,"initial_expected_energy":72.88629283077978,"history":[72.88629283077978,63.99610487199796,52.234161544340154,57.3096100633812,53.063075010146484,49.66133909461559,57.9398449417007,53.2415663431203,50.02967091020517,48.4783113689856,46.509115214937296,45.292147516512706,48.00848017530174,49.42400168101055,45.130569238504584,44.24059209864793,44.48783746081125,44.31487316950721,44.33856896573914,44.22826573703314,44.20112804837477,44.181435865410606,44.181998965213346,44.17381519308895,44.166705057686244,44.15402158267857,44.135234077171305,44.20721478115687,44.14031920705992,44.13468836582763,44.14365244847306,44.13454909809858,44.130978731611656,44.125832463210195,44.11988925062019,44.125231285114886,44.118855800680834,44.12276728580538,44.118243780091575,44.117260656060154,44.11586219895606,44.11521208639522,44.114341539746206,44.114160660474404,44.11678183657614,44.11403146365984,44.11412439698445,44.11408637997047,44.11398864076854,44.114075459389944,44.11398320191823,44.11398242796848,44.11398229014013,44.11398594491393,44.113981042880255,44.113982174687116,44.113981039457265,44.11398127556801,44.11398106405213,44.11398095035996,56.32029790723414,56.2792917908357,59.884559391021995,63.30406368346474,57.16732606937047,57.80005399248395,56.27695930134726,56.04306157174447,56.05536520586259,56.05891579529721,56.05864366792949,56.021447648507056,56.01157144068465,55.99940842956218,55.97967533976434,55.96835610671263,55.87301362635483,56.066945464025395,55.85539255116324,55.77922225867865,55.648704198359205,55.44336008669782,53.95292013889342,48.34515110910138,62.72896653043722,45.63892767421086,49.02425082432419,53.05479264072831,45.7335635654201,44.100190341392846,46.07764065781882,44.2319773999815,44.11985062749217,44.16988423160768,44.11226640776159,44.09926698123636,44.10685144583928,44.09908676266527,44.09697607400419,44.10142325873287,44.10237439486581,44.09953942554097,44.09849585102084,44.0970495430348,44.09702355181321,44.09702998513332,44.096918790417305,44.0969154958148,44.0969957607133,44.09689837116948,44.096894750790185,44.09689196820568,44.09689471987931,44.09689527715641,44.09689234186368,44.09689218458862,44.0968923290782,44.09689197615073,44.096891954902986,44.096891979787685],"feasible_probability":0.0863126590897069,"one_hot_probability":1.0,"sampled_feasible_fraction":0.072265625,"counts":{"00010011":112,"00010101":24,"00011001":47,"00100011":43,"00100101":12,"00101001":81,"01000011":4,"01000101":4,"10000011":9,"10000101":37,"10001001":139},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1259561129991198},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0,2,7],"fixed_cost":27,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":4,"forced_by":2,"reasons":["resource","precedence"]},{"variable":5,"forced_by":2,"reasons":["precedence"]}],"infeasible_task":null,"component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":{"feasible":true,"objective":27,"raw_cost":27,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":3,"end":6,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r2","start":12,"end":14,"reserved_end":15,"changed":true}],"bits":[1,0,1,0,0,0,0,1],"qubo_energy":27},"components":[],"circuit_evaluations":0,"status":"classical_propagation","feasible_probability":1.0,"total_shots":0,"runtime_seconds":0.00011056000948883593},"direct_metrics":{"exact_objective":27,"optimal_count":1,"combinations":12,"optimal_probability":0.0863126590897069,"feasible_probability":0.0863126590897069,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.08333333333333333,"shots_for_95_percent":34,"hit_curve":[{"shots":8,"quantum":0.5142857304093295,"uniform":0.5014697532613109},{"shots":16,"quantum":0.7640816483160013,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9443425313387052,"uniform":0.9382316427138628},{"shots":64,"quantum":0.996902246182217,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999904039212845,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":27},{"shots":16,"best_objective":27},{"shots":32,"best_objective":27},{"shots":64,"best_objective":27},{"shots":128,"best_objective":27},{"shots":512,"best_objective":27}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":1,"diagnostic_seconds":0.002008131006732583}
+{"instance":"n3-s2-r3.json","seed":0,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":9,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["resource","precedence"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":7,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":10,"reserved_end":10,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":36},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.393615443521093,1.0939758011510976],"expected_energy":43.20027730444467,"initial_expected_energy":44.3775823698585,"history":[44.3775823698585,44.024590317758296,45.29276782436267,48.964604194870454,44.2929534516671,44.605590898730284,44.086645395563096,43.917364891909855,43.882079279911764,43.95021708422885,43.86073202286738,43.843928797386695,43.8066786004485,43.75347601917547,44.10858237995575,43.71804443400241,43.718699542562234,43.729815788564146,43.70363477268295,43.71546517804432,43.692074069765226,43.68651406501593,43.6950251584075,43.68503428977161,43.68115601335539,43.673421422873005,43.658233352068876,43.62876698971472,43.69512743038264,43.62933517437348,43.620849282448276,43.61767560465057,43.6410320044331,43.61222206864687,43.60089014207209,43.58416749165603,43.5919493621698,43.576943110828225,43.57137571807724,43.57326960872754,43.564108935121084,43.55924331025954,43.55969672634636,43.555496859072605,43.55205604045081,43.54629891328404,43.54362175638481,43.57138388648301,43.54109040728263,43.53080004459605,43.522699320285795,43.50824282212977,43.49380015934115,43.4664647082594,43.4732065989241,43.465625634041984,43.49558043453588,43.46773533860632,43.45347464148185,43.439600269978214,47.89674379265548,48.491586016202334,45.09984358181208,45.346136793771635,45.44290764978129,45.36990730715124,44.86945275630249,44.91303069285356,44.88914145044862,44.86562988658798,44.81651682166196,44.7463869810786,44.586504683486766,44.248374155846804,44.52117912251332,46.765239213877535,44.689039412302094,44.320822541847406,44.23538592109972,44.29248920063625,44.20441083934814,44.252300419417196,44.18671652669873,44.16747515117753,44.13962272472917,44.21027005577847,44.112469446227806,44.0841721514631,44.14466344311035,44.05608755514433,44.03848979316854,44.12137933664714,44.00871585087919,43.99054124269452,43.972928076531616,43.967754395499114,43.9135708809074,43.912938052855104,43.88077119573776,43.844428156393036,43.81992366923839,43.917676405439366,43.79561651929524,43.78294319038339,43.762032403093784,43.72287220793726,43.64621686298054,43.57923948164732,43.73864627627727,44.11896421482498,43.489283637331496,43.49718380847632,43.48418451550954,43.493197217601846,43.47351604614433,43.46536375988714,43.44674186611276,43.411019400304426,43.34334842543217,43.20027730444467],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"00010011":118,"00010101":34,"00011001":76,"00100011":36,"00100101":4,"00101001":15,"01000011":96,"01000101":17,"01001001":46,"10000011":42,"10000101":12,"10001001":16},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1275179779913742},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0,3],"fixed_cost":18,"removals":[{"variable":1,"forced_by":0,"reasons":["resource","precedence"]},{"variable":2,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":3,"reasons":["precedence"]},{"variable":5,"forced_by":3,"reasons":["precedence"]},{"variable":6,"forced_by":3,"reasons":["precedence"]},{"variable":7,"forced_by":3,"reasons":["resource","precedence"]}],"infeasible_task":"t2","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.225400334689766e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":12,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.7755575615628914e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.0019841909961542115}
+{"instance":"n3-s2-r3.json","seed":1,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":9,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["resource","precedence"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":7,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":10,"reserved_end":10,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":36},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.982252695706589,1.0602798125976456],"expected_energy":42.833462977080124,"initial_expected_energy":47.323128910472576,"history":[47.323128910472576,47.81110027018079,44.94001608970565,45.559072259822294,45.12633383154498,44.92818746343408,44.82740630443517,44.61818383602767,44.24319577225249,44.914509351634834,45.90581848514876,44.79151624136499,44.23410944652634,44.59206810440017,44.187143611912035,44.13358350789569,44.12181170343089,44.21992065951105,44.092827609679446,44.07166569407738,44.03644641568847,43.95582441190844,43.84015460543394,44.718267154417745,45.15059457641084,43.79780218348232,43.81201578116975,43.78733098017505,43.86964082533428,43.736134468828524,43.70973684420629,43.69479602660833,43.71817803962277,43.6849661935057,43.675247006234116,43.65779535425294,43.62028768630205,43.54863467789539,43.62657344887691,43.67351607756923,43.608962999237875,43.535980764222295,43.562930187873185,43.53386574867211,43.523697946362006,43.50795757401512,43.473476865800166,43.40151614203359,43.267613906468284,45.748115812913966,43.83772017431512,43.651942313268826,43.24544060554921,43.257473906951176,43.2374632061511,43.25862238826751,43.2287671413558,43.215856875194646,43.20422060551415,43.18537153732726,45.064517037288184,44.681224420948745,45.43769964108143,47.7730837662333,44.96860578419192,44.64167634467535,44.98862088501189,44.61679888392937,44.58887847055075,44.57355341450328,44.653809126988165,44.52299252211783,44.50101576554569,44.453907698275486,44.389668457447435,44.29802006063849,44.262787658149094,44.19471207870275,44.51040581692913,44.414399753723515,44.116363600179184,44.04886869380749,43.93685980378035,43.77068395879012,44.52412746898234,44.37773822234893,43.74325537649845,44.02895847711096,43.70371407900994,43.71387293059807,43.73061156764394,43.70562548433007,43.69351613905923,43.67554399103764,43.636620986720885,43.56058042298119,43.43909029781794,44.606672606218225,44.283447952090185,43.48358029828654,43.4353472089853,43.57333966902174,43.413543916402496,43.38681303899792,43.375534969012925,43.40768916462902,43.36525298266419,43.35590762306245,43.33770864695016,43.3036529367815,43.246641433400946,43.132744814038105,42.86390754948296,44.03060058138935,47.91154591448601,43.54132222890134,43.3257551170336,42.841244690525265,42.851653393550286,42.833462977080124],"feasible_probability":0.0,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.0,"counts":{"00010011":142,"00010101":41,"00011001":56,"00100011":48,"00100101":9,"00101001":13,"01000011":75,"01000101":17,"01001001":31,"10000011":41,"10000101":16,"10001001":23},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12868968999828212},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0,3],"fixed_cost":18,"removals":[{"variable":1,"forced_by":0,"reasons":["resource","precedence"]},{"variable":2,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":3,"reasons":["precedence"]},{"variable":5,"forced_by":3,"reasons":["precedence"]},{"variable":6,"forced_by":3,"reasons":["precedence"]},{"variable":7,"forced_by":3,"reasons":["resource","precedence"]}],"infeasible_task":"t2","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.4280008296482265e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":12,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.0019860219908878207}
+{"instance":"n3-s2-r3.json","seed":2,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":9,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["resource","precedence"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":7,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":10,"reserved_end":10,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":36},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.7145059528026083,2.735269423768651],"expected_energy":42.596311569641806,"initial_expected_energy":48.56101078534668,"history":[48.56101078534668,49.11459322040345,44.487716812298956,45.25146621213393,44.891366484586314,44.76179030192692,44.322513292591594,44.37918138473697,44.354457412852156,44.30544241340393,44.387786027340695,44.26004607522098,44.21947267921449,44.16998212269861,44.106417675966306,44.1143863823808,44.19801476430281,44.08093245616058,44.07305709755046,44.09847944510875,44.06218877861009,44.05196519056178,44.032243677473396,43.99566965671261,44.00834674382699,43.98655305044934,44.02199913161308,43.98223880510446,43.968290022516555,43.948552779299476,43.936362445545846,43.96722378083601,43.931111128198225,43.920631710672296,43.90104858630859,43.86180057291326,43.79169042334425,44.016524970276635,44.00375938041901,43.77936922573727,43.758172734149554,43.71413009710202,43.63241291696155,43.482071284475936,43.21802708890188,45.80802903663605,47.83567097176817,43.1436677354121,43.742333314428805,43.28951412270747,43.23386987317237,43.232763689908694,43.12016984968115,43.11543237476903,43.151039632462464,43.10378133808428,43.09450622322451,43.07921826266333,43.04506851957727,42.98369666625537,47.54494841741828,47.774826465787115,45.38932346565514,44.18354915364395,45.88142406850803,45.30707367292777,45.01988651944781,43.79989710076163,43.798468539282666,43.91638748758806,43.84214892955165,43.70702075142949,43.68368995041076,43.75917229521965,43.63149988515406,43.584018000597,43.50635280276189,43.530453994302086,43.68864991424517,43.478864259311266,43.44786908012352,43.502796153121906,43.413903741478215,43.399650024006014,43.53008098677476,43.36374242508548,43.34347945333388,43.32489958660407,43.334940283417886,43.31008309830084,43.319778102167845,43.31620799601177,43.300926942982606,43.297353482371996,43.31039489171058,43.29492033355107,43.29016486748838,43.28092384185899,43.26321848704095,43.22908103095679,43.161101046646735,43.025736806777886,42.795720336736835,46.672423385383865,45.31337369617671,43.1388569182395,43.05794012408468,42.774073965497536,42.756472202261676,42.74006203860982,42.79280174966216,42.717958163081114,42.70833670154284,42.692726132639244,42.66238395614195,42.60425177241666,42.60555983995222,42.70370633960462,42.644494830393086,42.596311569641806],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"00010011":101,"00010101":114,"00100011":73,"00100101":82,"00101001":1,"01000011":37,"01000101":35,"01001001":2,"10000011":36,"10000101":30,"10001001":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13338096300140023},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0,3],"fixed_cost":18,"removals":[{"variable":1,"forced_by":0,"reasons":["resource","precedence"]},{"variable":2,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":3,"reasons":["precedence"]},{"variable":5,"forced_by":3,"reasons":["precedence"]},{"variable":6,"forced_by":3,"reasons":["precedence"]},{"variable":7,"forced_by":3,"reasons":["resource","precedence"]}],"infeasible_task":"t2","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.338099097367376e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":12,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.0017117680108640343}
+{"instance":"n3-s2-r3.json","seed":3,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":9,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["resource","precedence"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":7,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":10,"reserved_end":10,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":36},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.4027475033356556,2.7231580296056133],"expected_energy":42.14914148540651,"initial_expected_energy":45.53843113898548,"history":[45.53843113898548,45.12370829053749,46.34931007484512,46.193660602873635,45.341644967190646,44.907847743621204,44.997608634102946,44.95499076116338,44.94564028144659,44.848328706038345,44.80213964401649,44.70892390067951,44.56358085944585,44.22029270142248,44.22392759459893,45.24590511716785,44.71979481718812,44.19549402550762,44.41291441028662,44.172432951117514,44.14865929075616,44.13716760045541,44.271756252247314,44.08288625194025,44.08423533630855,44.07119485033241,44.069750166577066,44.11474517276168,44.0613383258939,44.046982836208855,44.02681074230295,43.99664621675962,44.05175631819202,43.9767979324233,43.95988989736694,43.98503259559415,43.94660974723626,43.927129141780256,43.88775824003502,43.80873837758746,43.65216662123211,43.38576580162881,50.39430375563537,45.3691099946243,43.98976426053378,43.72109755639252,43.36234246783963,43.33317226975898,43.33280383117918,43.397974224022974,43.3347617797857,43.310376487206774,43.29551574833002,43.29597884728368,43.294355028059336,43.28958780106747,43.28185552107941,43.267645087597295,43.255288450130706,43.226740088901764,48.38540565688949,48.52539782014016,44.63958171198424,43.512750862076516,45.33031100930129,45.992535171471246,44.323846062022575,44.08297997973089,43.31860743608484,42.94739266386761,42.55681404970809,42.603636732452514,42.529280379460396,42.54558687716471,42.620882423751894,42.51471289192478,42.539090137523075,42.50547681575242,42.498028849135544,42.488757108422234,42.472844132329016,42.43777701838755,42.375228813731795,42.608188802200075,42.7097111984595,42.395751911900724,42.38694542894036,42.38203284970039,42.36703351983846,42.36970825562272,42.36562202496937,42.36242277475494,42.35587125121228,42.34380985614087,42.334151872303806,42.29968543789539,42.314499718394416,42.32810248375465,42.29973183537262,42.3024707987555,42.29551731429832,42.29279531204665,42.3224256302532,42.28247712451419,42.275539338377676,42.270065239672235,42.28126470288669,42.26506140953852,42.25866520797863,42.245876158365895,42.22057671063961,42.17184157129205,42.25360883356142,42.359972954924125,42.159331506564335,42.20833785603128,42.16050440287044,42.15077313547562,42.14914148540651,42.185072622378435],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"00010011":113,"00010101":102,"00011001":6,"00100011":80,"00100101":62,"00101001":4,"01000011":27,"01000101":29,"10000011":43,"10000101":45,"10001001":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1194787419954082},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0,3],"fixed_cost":18,"removals":[{"variable":1,"forced_by":0,"reasons":["resource","precedence"]},{"variable":2,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":3,"reasons":["precedence"]},{"variable":5,"forced_by":3,"reasons":["precedence"]},{"variable":6,"forced_by":3,"reasons":["precedence"]},{"variable":7,"forced_by":3,"reasons":["resource","precedence"]}],"infeasible_task":"t2","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.3252992327325046e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":12,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.942890293094024e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.0018293159955646843}
+{"instance":"n3-s2-r3.json","seed":4,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":9,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["resource","precedence"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":7,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":10,"reserved_end":10,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":36},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.3702921486895265,2.76373610199433],"expected_energy":41.65898534522471,"initial_expected_energy":45.94504448712662,"history":[45.94504448712662,46.009091766590814,44.7717290302558,46.99578159282033,44.63541299676942,44.862542328040746,44.62322668907934,44.56873875507151,44.56763442136978,44.63008777759882,44.516180604767825,44.44232505473525,44.27881879092369,43.94674930143063,43.5112907334302,47.07192683802794,48.51684644888646,43.43873920056714,43.56379904223561,43.822585463734995,43.28572976263108,43.261270353572094,43.22642125204444,43.22738647649227,43.21088162363404,43.222408284336865,43.21561179896071,43.206465486115945,43.215420974264404,43.204630482790165,43.20101142926262,43.193943070983146,43.179997958059474,43.152654467668846,43.10891014980887,43.32313220502551,43.32993061921576,43.096878818922065,43.08722850626499,43.0793611154064,43.19758190253087,43.0623949571785,43.042997467401094,43.03720792470843,43.02215462659473,43.00977384764202,42.983316891858564,42.932364757035245,42.88693020962846,43.03665989319879,43.30306686631267,42.87597663422168,42.82043469566572,42.84656207058856,42.83262843534357,42.82251282385022,42.814555851790814,42.80655826896442,42.809903746747146,42.800180929490224,43.112517063360215,42.89539172512811,44.7083826279087,48.677866085479835,42.193855190545044,44.65687692887588,42.117088163752825,42.075452861287,42.11144306855867,42.18198625370523,41.97151830684659,42.02883618951925,41.98860038914491,41.97464312299373,41.96572193533225,41.97143614941185,41.96307271192112,41.96201338262662,41.959148158081625,41.95371094374497,41.94324868052387,41.92242059137287,41.88080767442416,41.80747966865937,43.55473192984208,42.74738310885642,41.937266590163475,41.88876550579462,41.801181307392774,41.79844010259781,41.79442734722219,41.79158996919649,41.7980488643934,41.7850350015354,41.78249430197761,41.7774489308672,41.77282825322845,41.76360108696792,41.74515648530415,41.709649007970604,41.80859212318795,41.92827487086868,41.7495961523209,41.70586272021871,41.72421378939717,41.70458113361916,41.701031198994,41.700904283858165,41.71450830784022,41.69993900875601,41.69519054414472,41.691780563887555,41.68706029773767,41.68422493066993,41.67997331625389,41.67213079637254,41.66630904480823,41.65898534522471,41.68367036884761,41.68320538994892],"feasible_probability":0.0,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.0,"counts":{"00010011":142,"00010101":94,"00011001":10,"00100011":65,"00100101":35,"00101001":6,"01000011":34,"01000101":19,"01001001":4,"10000011":62,"10000101":33,"10001001":8},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13499035200220533},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0,3],"fixed_cost":18,"removals":[{"variable":1,"forced_by":0,"reasons":["resource","precedence"]},{"variable":2,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":3,"reasons":["precedence"]},{"variable":5,"forced_by":3,"reasons":["precedence"]},{"variable":6,"forced_by":3,"reasons":["precedence"]},{"variable":7,"forced_by":3,"reasons":["resource","precedence"]}],"infeasible_task":"t2","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":6.196099275257438e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":12,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.7755575615628914e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.0039820429956307635}
+{"instance":"n3-s2-r3.json","seed":5,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":9,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["resource","precedence"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":7,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":10,"reserved_end":10,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":36},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.487857612351417,2.750692874420079],"expected_energy":42.0897107052591,"initial_expected_energy":45.5756896655694,"history":[45.5756896655694,45.5571599974292,43.721602097640385,46.97627838612567,43.183319345612226,43.045039451639624,43.58333488243539,43.67346940318979,43.02447452412609,42.95214057554994,42.9684115528903,42.97152400830903,42.95013071592864,42.964741479238086,42.94759373223637,42.9427998631586,42.933958831113145,42.91848759614785,42.88747440112499,42.84091225610518,43.0331632075765,43.086851556736136,42.82234024605486,42.81132177774532,42.79845093663542,42.78969040727706,42.80090551451371,42.78314128541922,42.77208205474879,42.758154122954004,42.74285124186297,42.71943949890837,42.684844782715956,42.61102761705869,42.629321357056284,42.78218977689114,42.62991962549305,42.6224628798734,42.59391304735326,42.57918188734305,42.55864626783196,42.532316317837314,42.53011289306773,42.57480319330339,42.53110670927927,42.514257090239916,42.49704769026745,42.51060188045674,42.490085710720635,42.48349236465663,42.469417897178104,42.44206137980564,42.39044626959915,42.29855285076575,42.24882868156499,43.32834445108888,43.54964281812824,42.27241499147518,42.0897107052591,42.32389445809991,45.66622998793216,45.80303609238495,45.29964622753613,46.72290733666941,45.516133167728086,45.35104071022717,45.18250771568307,45.267007486047916,45.10684804600241,44.95503128681745,44.73373285051477,44.19300106945657,43.414843946791684,44.15184728105294,47.240995953203836,45.53461864329611,43.47051764066045,45.15559333910498,43.24207303125252,43.39306398820443,43.30731208415928,43.28117551094473,43.20785409432461,43.24729873213048,43.236169040217575,43.20713966267776,43.19623165190338,43.1801350481987,43.23697456804198,43.16357425091123,43.143746947930985,43.108986724232864,43.19458484352488,43.09771693023827,43.074499698378354,43.02605265566626,42.94107912236459,42.78199531128536,43.06515384287095,43.67617272073609,43.00722895973812,42.76360190890778,42.833659936918934,42.758768069273636,42.735709667043686,42.70207494418214,42.626129984290365,42.48584870186284,42.496429723021215,43.5171472231322,42.516166612570025,42.63613266454358,42.52653364785822,42.489271061035595,42.500202550931064,42.4858352167401,42.48155217727895,42.4749305938597,42.48067563031698,42.46929373368408],"feasible_probability":0.0,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.0,"counts":{"00010011":120,"00010101":106,"00011001":5,"00100011":79,"00100101":54,"00101001":1,"01000011":29,"01000101":27,"01001001":1,"10000011":51,"10000101":38,"10001001":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1195059419987956},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0,3],"fixed_cost":18,"removals":[{"variable":1,"forced_by":0,"reasons":["resource","precedence"]},{"variable":2,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":3,"reasons":["precedence"]},{"variable":5,"forced_by":3,"reasons":["precedence"]},{"variable":6,"forced_by":3,"reasons":["precedence"]},{"variable":7,"forced_by":3,"reasons":["resource","precedence"]}],"infeasible_task":"t2","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":7.358899165410548e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":12,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.3592239273284576e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.001791187998605892}
+{"instance":"n3-s2-r3.json","seed":6,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":9,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["resource","precedence"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":7,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":10,"reserved_end":10,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":36},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.525073545969863,1.0608062407953298],"expected_energy":43.122016150202526,"initial_expected_energy":47.03925059425601,"history":[47.03925059425601,47.381459197734834,44.72768315025115,45.92670698153529,44.841222365273445,44.64108314611357,44.64330406991631,44.65575612927841,44.60538153233351,44.5771778734409,44.74109393237638,44.54667272592398,44.51846962147532,44.57180514117137,44.48405698642,44.45919916564378,44.52663790547908,44.434540333641024,44.416551325210236,44.39657602621469,44.359277791686644,44.34912918926109,44.241659116796285,44.347693428630606,44.231598693748886,44.264613185997376,44.232825714457505,44.21784778338544,44.198520770485345,44.24338335242115,44.18042194928721,44.15978056278223,44.12087381462443,44.040630495634325,43.88986655847319,44.70498118582384,44.47514840520857,43.865552698145386,44.133760410999244,43.82629963882181,43.83114899780822,43.85311667801977,43.82869972575211,43.81608533545662,43.7975865459408,43.75813899276177,43.68062326556501,43.52765165848561,43.8026473359819,44.118449417405515,43.758385312176536,43.50923650604922,43.56477465956472,43.50899136867435,43.48896637160881,43.45312851919354,43.379112611753555,43.23492857607145,43.191015666628445,45.498784573420934,48.20561597440705,48.70656758293292,45.65845962879859,44.943099624663354,45.29888099707697,46.73807487767041,44.53849703160517,45.57007060566366,44.48436922982579,44.66193612258728,44.48492695455167,44.450600000792235,44.410145323615126,44.60134777899607,44.350603082340314,44.331282545522484,44.283797354084484,44.208513770704656,44.041355472098644,43.77881282495669,45.862949166209646,47.82587952838668,44.04744311375349,44.18989707762582,43.81471668280031,43.72429420315958,43.718063561815484,43.8194720035818,43.686975563078846,43.667254066022565,43.651662200621786,43.705129164519484,43.63931644815902,43.62135519650927,43.58594954051674,43.52277465688307,43.901717446961015,43.597322797545374,43.59401651529518,43.507930390216835,43.49392494754382,43.47819924219189,43.479563369406875,43.469806084032555,43.466009378046635,43.4743407110768,43.46410621415292,43.46023572569864,43.452761566839,43.44426288640058,43.42870431196194,43.415360990849365,43.385561219971855,43.33134131672317,43.29025239571793,43.2866224357206,43.122016150202526,43.18075883954302,43.36067125250515,43.146067224333734],"feasible_probability":0.0,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.0,"counts":{"00010011":133,"00010101":16,"00011001":59,"00100011":42,"00100101":15,"00101001":20,"01000011":73,"01000101":23,"01001001":34,"10000011":53,"10000101":18,"10001001":26},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12824118199932855},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0,3],"fixed_cost":18,"removals":[{"variable":1,"forced_by":0,"reasons":["resource","precedence"]},{"variable":2,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":3,"reasons":["precedence"]},{"variable":5,"forced_by":3,"reasons":["precedence"]},{"variable":6,"forced_by":3,"reasons":["precedence"]},{"variable":7,"forced_by":3,"reasons":["resource","precedence"]}],"infeasible_task":"t2","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.188300226815045e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":12,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.0017883120017359033}
+{"instance":"n3-s2-r3.json","seed":7,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":9,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["resource","precedence"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":7,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":10,"reserved_end":10,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":36},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.400293056861639,2.744604609420529],"expected_energy":42.139678032182495,"initial_expected_energy":47.1994741863501,"history":[47.1994741863501,47.517392801520025,46.67324904411678,44.9378425637435,45.84045597350628,45.62715079708137,45.19677133711324,44.87519807916222,44.80140641816625,44.892220867356,44.740863620084944,44.722762483790845,44.677357060069276,44.59551457369934,44.43120232581044,44.12660128532059,45.97412373751347,47.45353534059163,44.406409659856045,44.39312693397531,44.16049027006357,44.102402021730256,44.073986753357005,44.097473729099136,44.05082481095205,44.04937506853602,44.061766953913065,44.05025767837034,44.04448279424351,44.035865582114525,44.028728123085685,44.0118115568517,43.99552275621762,43.96350115073891,43.90562168606445,43.87847703624205,43.77471796357156,44.09465355235943,43.69945995514581,43.79325277458365,43.7195802081811,43.692993471220724,43.79788119974607,43.69098613066161,43.66052470220751,43.644693269304284,43.62939144670955,43.61752805959057,43.60169961210279,43.57093823192244,43.51158613640003,43.42611980660067,43.40093829867047,43.242290032085336,44.23023174364523,43.63061314220129,43.22449553420916,43.50054580071827,43.19342647824721,43.179579873500906,43.287393559701556,42.86935677734991,46.46985967139776,47.05356233645599,44.097993255536664,42.82386659227959,43.28387317582212,42.81974120382469,42.7852980493257,42.7266650329207,43.03098552976445,42.798828543198184,42.827366089625755,42.69745185715474,42.68951553406303,42.66803957373157,42.63201972912568,42.558593905691204,42.42440237712241,44.463167939199096,43.58106255643203,42.450538143533564,42.55054993010824,42.469286242674144,42.424263654451394,42.44861743773337,42.42468124741431,42.416411510738456,42.40430805545384,42.402733026375444,42.39706403178678,42.39250647698009,42.389579747079395,42.42701527394988,42.387764505207706,42.37574332927972,42.3679472917106,42.36130988622908,42.35541191188347,42.342755608124214,42.32295791056528,42.358134909017934,42.384792823916435,42.3111523842006,42.304791412889976,42.33257376688687,42.29633390427688,42.290290320643834,42.27865707979425,42.27637842281905,42.25171002480887,42.243352343813434,42.2324660348426,42.218377686151875,42.306970213211414,42.20069884159427,42.19822270848526,42.18255714200803,42.16880417211649,42.139678032182495],"feasible_probability":0.0,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.0,"counts":{"00010011":122,"00010101":98,"00011001":4,"00100011":73,"00100101":63,"00101001":6,"01000011":27,"01000101":26,"01001001":1,"10000011":62,"10000101":29,"10001001":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12240301599376835},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0,3],"fixed_cost":18,"removals":[{"variable":1,"forced_by":0,"reasons":["resource","precedence"]},{"variable":2,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":3,"reasons":["precedence"]},{"variable":5,"forced_by":3,"reasons":["precedence"]},{"variable":6,"forced_by":3,"reasons":["precedence"]},{"variable":7,"forced_by":3,"reasons":["resource","precedence"]}],"infeasible_task":"t2","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":3.97080002585426e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":12,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.885780586188048e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.00167318299645558}
+{"instance":"n3-s2-r3.json","seed":8,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":9,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["resource","precedence"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":7,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":10,"reserved_end":10,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":36},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.055211709098446,2.7235571540239785],"expected_energy":42.36658194670964,"initial_expected_energy":45.316397435192215,"history":[45.316397435192215,44.99505726152783,45.39519085824572,47.50237652100465,45.143065693804985,45.22285256028823,45.0380217302116,44.94839925404314,44.91383026211537,44.9359654319232,44.895726613451494,44.888978831623966,44.916221559334204,44.877554668680034,44.85634491912245,44.81763044143303,44.738327340677664,44.58508564193886,44.85374887319118,44.90802432032696,44.563530412107426,44.753664727097224,44.513052741469195,44.4951384727853,44.44783537104605,44.413751283456165,44.328932724800744,44.20440662271133,44.5809764560316,45.293099113166136,44.180734944370556,44.145512124383956,44.071409452677074,43.9120814313665,43.55351376314431,45.4397727562586,45.153626128311245,44.491772757161705,43.72483543160601,43.535307686408416,43.59738383043859,43.53397579636122,43.514224011810434,43.476941511016165,43.40376650557188,43.343649500942306,43.57197030783864,43.93111601432657,43.253604212462626,43.27362313169209,43.24809981076365,43.269750657966156,43.23882828179208,43.231624580428246,43.24765388168417,43.224376371724304,43.21568276255515,43.19844885667203,43.165110494328,43.15574306727734,47.815398682292056,48.07383570039481,44.87868823241658,44.4733569449507,44.91982281688079,46.63458814636655,44.698618744694684,44.86224167888856,43.86679500718252,44.06757168589028,43.92781531437916,43.95874167240872,43.736722096613974,43.731629435510946,43.794267423016805,43.67661399155461,43.57003690587864,43.37147362732396,43.048478369322396,44.4212190087004,45.26966249997725,44.16079823405122,42.99641905335469,43.095312559478764,43.04102617723062,42.97026852068913,42.938454422524636,42.948542013241585,42.91423171395738,42.918694267586886,42.91885102150774,42.90754079495354,42.903769816449405,42.95154323972966,42.89544423068908,42.882041100390055,42.86568171212368,42.84723097095956,42.817998172232784,43.100095947405606,42.808457404551014,42.78744896500306,42.74168072050936,42.66167481540563,42.515962560592406,43.37702872189077,43.452163994485886,42.59497702866967,42.693365632842934,42.5515617763158,42.513895100019134,42.501579413205405,42.48255494493641,42.457517996316625,42.42405618321092,42.432187911466585,42.52302807351224,42.40839326666529,42.39150631868099,42.36658194670964],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"00010011":126,"00010101":119,"00011001":1,"00100011":72,"00100101":63,"00101001":3,"01000011":33,"01000101":31,"01001001":1,"10000011":33,"10000101":30},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11819379500229843},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0,3],"fixed_cost":18,"removals":[{"variable":1,"forced_by":0,"reasons":["resource","precedence"]},{"variable":2,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":3,"reasons":["precedence"]},{"variable":5,"forced_by":3,"reasons":["precedence"]},{"variable":6,"forced_by":3,"reasons":["precedence"]},{"variable":7,"forced_by":3,"reasons":["resource","precedence"]}],"infeasible_task":"t2","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":3.8556012441404164e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":12,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.0020580449927365407}
+{"instance":"n3-s2-r3.json","seed":9,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":9,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["resource","precedence"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":7,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":10,"reserved_end":10,"changed":false}],"bits":[1,1,0,0,1,0,0,0],"qubo_energy":36},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[5.13279550077773,1.09660542960847],"expected_energy":42.72567782695559,"initial_expected_energy":45.80807905990624,"history":[45.80807905990624,45.6397664281066,47.62839647841079,45.496282454494875,46.60853739179124,45.603833433784686,45.53409301402026,45.546828245959304,45.50889396291801,45.49488636261371,45.550553694631546,45.461558406629706,45.44696925878736,45.41295223482517,45.36966524654625,45.296111105710736,45.22814638102902,45.05746704291759,45.23615505987628,45.21962364722593,45.13807836598522,45.083430337122756,45.0258657135046,45.06899575719673,44.98727352914765,44.952141223888304,44.87105357930522,44.73197654533367,44.57996160967596,44.45149600200288,44.26373171850078,43.416330070069975,44.406823602253425,47.87570362001979,45.8685524941819,43.37210280846999,44.51948749997703,43.15923810085846,43.437397270927605,43.14628347817626,43.25841592459593,43.11155493777842,43.12114353885579,43.102954739028945,43.1319359491734,43.09862536914028,43.09177478354241,43.08448327657288,43.0806466728137,43.059131496772444,43.054810545228115,43.03370746641364,43.02448274256627,42.98471607079784,43.09049927618145,43.014726978730124,42.997548659724494,42.99018863136462,42.97906608894169,42.98644603776051,45.44990852593655,45.39445133830314,44.69467405394391,47.57419584129116,44.03422673786743,43.745582700146755,43.76494842749175,44.08409855506674,43.77454392813782,43.77388889787532,43.70545621836723,43.67871295272647,43.64060297521247,43.63618880961542,43.584084961226665,43.60123275206083,43.57771964256709,43.61045940376117,43.57380327079291,43.56282974727472,43.5541115421896,43.56611602084487,43.546130378711666,43.53643820550772,43.517682135005415,43.48052718236595,43.420017952609285,43.64388377189616,43.780234671918095,43.408904067821865,43.39150106028912,43.35454707648293,43.276956052715235,43.13295422458057,42.88496199732214,48.50229273151655,45.26920872782319,43.8138299694088,43.24842805807586,42.86801954411552,42.87315458802621,42.863331384312644,42.88335547631859,42.8535793881708,42.83947655848683,42.83745694701551,42.83080554691388,42.827451488278484,42.841110938333,42.826018343317656,42.822092115080515,42.81877703385625,42.818620295301194,42.81535789907198,42.81213880527751,42.805801671435205,42.79346558686892,42.76950655046915,42.72567782695559,42.743581782983355],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"00010011":160,"00010101":33,"00011001":56,"00100011":44,"00100101":10,"00101001":13,"01000011":81,"01000101":21,"01001001":38,"10000011":31,"10000101":8,"10001001":17},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12240424999617971},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[0,3],"fixed_cost":18,"removals":[{"variable":1,"forced_by":0,"reasons":["resource","precedence"]},{"variable":2,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":3,"reasons":["precedence"]},{"variable":5,"forced_by":3,"reasons":["precedence"]},{"variable":6,"forced_by":3,"reasons":["precedence"]},{"variable":7,"forced_by":3,"reasons":["resource","precedence"]}],"infeasible_task":"t2","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":3.993099380750209e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":12,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.0531133177191805e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.0016275129892164841}
+{"instance":"n4-s0-r0.json","seed":0,"direct":{"status":"feasible","best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":11,"end":14,"reserved_end":14,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":12,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":22},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.480034156529925,1.103165086613477],"expected_energy":58.19001144882404,"initial_expected_energy":66.65777818701322,"history":[66.65777818701322,68.9004219011002,68.63942046090276,76.00888352539685,68.36280541155413,66.83543340811282,66.18102489228278,65.04479919422238,63.036768691443186,65.01643490674478,63.083231100582424,63.43815111938898,62.68295333501729,63.008543527799524,62.63148464823426,63.01220537739044,62.65326142411105,62.64739374225846,62.608508071857315,62.581633597163396,62.529669210434506,62.47068956697071,62.39157288164332,62.51366416857489,62.565295926716765,62.411677401904456,62.328225548884014,62.30641765257955,62.26998664347873,62.2380459861555,62.16091242929579,62.03192464785751,61.763784691937815,61.21143283302282,60.53099053541272,68.01631351312402,60.324254691092484,60.84641640839902,60.83077998512536,59.55609561997345,59.55423411442855,59.73957123642931,59.72120826850035,59.317284220703556,59.21356978936089,59.13691669834927,59.169690319834494,59.107004983456875,59.113316389909144,59.09900469892068,59.08526056607192,59.06602664843979,59.07295764480128,59.05742886203062,59.04254604668297,59.022596280449875,59.037048285967344,59.0067811272407,58.994297396229314,58.98913154690388,82.62934784345352,85.31979315159779,65.02394920551222,66.19744279137768,66.07269278753273,66.87585248096441,62.276961298493816,62.32104599549301,62.98366792569641,62.77555998631508,61.34406455933873,60.499157664796776,60.7478686010154,60.90340429263179,60.47056963581127,60.62772620676732,60.468106917098005,60.406712618696744,60.331853113555994,60.229871566656996,60.036346980192576,59.70358854453991,59.75978840145142,60.90155701614288,59.59021783528692,59.811208369430034,59.54679153768878,59.439228702444936,59.3924105822187,59.181947910580206,59.490354795037604,59.30840124174827,59.20003369288878,59.20468727336199,59.1545442072748,59.15630495718684,59.162959471994114,59.13927418478301,59.11454551158842,59.09889293365403,59.23960800370273,59.0536234159037,59.01882110534818,58.96543895697502,58.84389941871371,58.623659685232504,58.2933949163124,64.44940664397895,61.67926108908188,58.31993200578177,58.40875413137275,58.42128787675153,58.281830166334615,58.38713847270091,58.26231616908183,58.22704705799003,58.20556371865446,58.217366736784314,58.19677229039761,58.19001144882404],"feasible_probability":0.24681596962908045,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.21875,"counts":{"0100010011":18,"0100010101":6,"0100011001":51,"0100100011":32,"0100100101":6,"0100101001":10,"0101000011":34,"0101000101":10,"0101001001":31,"0110000011":12,"0110000101":2,"0110001001":30,"1000010011":81,"1000010101":13,"1000011001":7,"1000100011":10,"1000100101":12,"1000101001":4,"1001000011":38,"1001000101":8,"1001001001":38,"1010000011":38,"1010000101":12,"1010001001":9},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13389510399429128},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":11,"removals":[{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,6,7,8,9]],"components":[{"qubits":7,"penalty":30,"objective_bound":29,"offset":90,"linear":[-30,-20,-21,-19,-23,-30,-22],"quadratic":[[0,1,60],[0,2,60],[1,2,60],[1,4,30],[1,5,30],[3,4,60],[3,6,30],[4,5,30],[5,6,60]],"domains":[[0,1,2],[3,4],[5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":6,"cost":0},{"index":1,"task":"t1","resource":"r0","start":11,"cost":10},{"index":2,"task":"t1","resource":"r1","start":9,"cost":9},{"index":3,"task":"t2","resource":"r1","start":11,"cost":11},{"index":4,"task":"t2","resource":"r0","start":9,"cost":7},{"index":5,"task":"t3","resource":"r0","start":11,"cost":0},{"index":6,"task":"t3","resource":"r1","start":13,"cost":8}],"conflicts":[{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource","group"]},{"i":3,"j":6,"reasons":["resource"]},{"i":4,"j":5,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":11,"end":14,"reserved_end":14,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":12,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":22},"components":[{"status":"feasible","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r1","start":11,"end":14,"reserved_end":14,"changed":true},{"variable":5,"task":"t3","group":"g1","resource":"r0","start":11,"end":12,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,0,1,0],"qubo_energy":11},"seed":3757552657,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.4476514190986296,0.9733379209584351],"expected_energy":40.112959858356746,"initial_expected_energy":52.54039481920291,"history":[52.54039481920291,52.28898735725993,43.52109682809212,47.810079759096574,45.56558930104502,44.5570068674959,44.40219716929427,43.5431072223067,43.35215212183672,43.7470215026659,43.47920961901075,43.331949324754845,43.2704870529999,43.21411801907388,43.34948707181901,43.143134018472196,43.11938511806065,43.0564185607728,42.994361665185295,42.8705974021415,42.62389092458074,42.16453314790839,45.05111353797395,42.46233242511498,42.378838172359046,42.271591348737225,42.02799527537467,42.07312551151667,41.96480010740178,41.91450732291585,41.88776668947924,41.71990561969233,41.613490315015476,41.49087823824857,41.272662747848685,41.65270634583564,41.25542634106003,41.10017681245941,40.84991770461758,40.5303381525318,40.51170481923575,40.21415039021822,40.59514917567736,40.551616977494994,40.245550078715596,40.226594673746675,40.20091906023889,40.20946574718647,40.19270679263975,40.18001052699487,40.171627728941786,40.19562100367125,40.162611587789144,40.154866135715395,40.145251045926486,40.175703763519294,40.13471802993744,40.126844805388735,40.112959858356746,40.12294313849264,43.162826853156474,41.82578925232141,42.7843022709271,63.51589526836065,42.43227766934722,46.69750561779777,41.306386959100664,41.206664789226785,41.72974919084227,41.138539618932825,41.22756811877485,41.090986829654824,41.070661983674626,41.07476667757729,41.07978102377882,41.06581774391678,41.07836200051162,41.065890508686834,41.07014792884346,41.07002704437175,41.065307070888025,41.065826503989655,41.06527030465848,41.06535568117945,41.06525525273784,41.06541724918483,41.06520323945857,41.06517565730947,41.06514352637299,41.06509266158642,41.065472258203194,41.06507133022343,41.06503989382545,41.064973461024024,41.06484942772417,41.064658604588935,41.065266723014616,41.065909122746234,41.06462372566688,41.06508887513259,41.064616368365535,41.064595568442385,41.06464165691317,41.064570160690806,41.064573098262095,41.06457428458189,41.06456724184745,41.06457598480132,41.06456114903309,41.06455598411645,41.06454663383014,41.0645278362664,41.06449423621321,41.06458735075324,41.06461609614955,41.06450464578034,41.06449612408613,41.06449684105553,41.06449087335904,41.06449038606218],"feasible_probability":0.3790113474711465,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.359375,"counts":{"0101001":28,"0101010":14,"0101100":66,"0110001":76,"0110010":7,"1001001":38,"1001010":77,"1001100":94,"1010001":15,"1010010":22,"1010100":75},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10386078899318818}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.3790113474711465,"total_shots":512,"runtime_seconds":0.10403328899701592},"direct_metrics":{"exact_objective":22,"optimal_count":1,"combinations":24,"optimal_probability":0.07913740261043127,"feasible_probability":0.24681596962908045,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":37,"hit_curve":[{"shots":8,"quantum":0.48291889412122757,"uniform":0.2885690504976606},{"shots":16,"quantum":0.7326271299431857,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9285117483575819,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9948894298771103,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999738820730191,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.942890293094024e-16,"independent_samples":[{"shots":8,"best_objective":26},{"shots":16,"best_objective":26},{"shots":32,"best_objective":26},{"shots":64,"best_objective":22},{"shots":128,"best_objective":22},{"shots":512,"best_objective":22}]},"component_metrics":[{"exact_objective":11,"optimal_count":1,"combinations":12,"optimal_probability":0.0603848584255456,"feasible_probability":0.3790113474711465,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.3333333333333333,"shots_for_95_percent":49,"hit_curve":[{"shots":8,"quantum":0.3924247792664951,"uniform":0.5014697532613109},{"shots":16,"quantum":0.6308523511506328,"uniform":0.7514675930866618},{"shots":32,"quantum":0.8637300133489842,"uniform":0.9382316427138628},{"shots":64,"quantum":0.981430490738132,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9996551733257734,"uniform":0.9999854432572823},{"shots":512,"quantum":0.9999999999999859,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":11},{"shots":16,"best_objective":11},{"shots":32,"best_objective":11},{"shots":64,"best_objective":11},{"shots":128,"best_objective":11},{"shots":512,"best_objective":11}]}],"reduced_single_joint_draw_p_opt":0.0603848584255456,"diagnostic_seconds":0.004071171002578922}
+{"instance":"n4-s0-r0.json","seed":1,"direct":{"status":"feasible","best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":11,"end":14,"reserved_end":14,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":12,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":22},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0030270158471097,1.0895534374007152],"expected_energy":57.77952814258127,"initial_expected_energy":81.92495682525103,"history":[81.92495682525103,83.88452190601245,61.39628875479371,68.95381975465173,61.856237659498234,62.65844276322787,60.34460001858751,62.87323192389961,60.445541169324805,60.342422118008386,60.107181071749984,59.692515265159436,59.00902038421759,58.56557159075642,66.03819235051218,65.67842565767043,58.58908457415008,58.22287721128127,58.89754600341503,58.256126377464,58.090311235267656,58.423505120950054,58.148854270843465,58.11223743666764,58.06220858598331,58.05184855150842,58.08896741068881,58.043422981738175,58.036368141132826,58.023179395544005,57.9993809180415,57.96111549383023,57.938680411399304,58.08059252750343,58.30113388086053,57.94295247406113,57.881703614888025,57.91682277033608,57.890108289151485,57.88358121831489,57.87857594209923,57.8823264249208,57.87667008244699,57.87475193875469,57.871191838484364,57.86398116880483,57.850411106534814,57.86445605784573,57.88502235791853,57.86100687766073,57.84878752357653,57.850655828177764,57.848738079254716,57.84705646232862,57.844045030350095,57.83811550171694,57.8302309100513,57.83887486535205,57.84916432394611,57.82632532352577,61.34235329532024,64.01876423258238,68.75658731616454,80.31736591845677,61.3407945312659,60.671245196753965,59.49745165783649,58.61006044483128,68.34862965730989,61.206495047837606,61.74063849321708,58.51738957824726,57.919804901296104,57.84012013917292,57.81061271528969,58.21755725206237,57.80242547175918,57.82076623400383,57.808766234633666,57.792431741651214,57.78851719787977,57.78965369001584,57.7893106858257,57.78909957746072,57.78877958563503,57.78821395669074,57.78839656843826,57.78815371257615,57.78805196614424,57.78797023302319,57.78768994731483,57.7873377365411,57.78684738512105,57.785993633880054,57.784344645550014,57.781876317400965,57.83144693301527,57.81822581193718,57.785264826362706,57.78529012298736,57.781635183801235,57.78126872337332,57.78126895148901,57.78149107959639,57.781293883268205,57.78118900603781,57.781111960388124,57.781010961915,57.780844833342385,57.78072389882172,57.78043367810538,57.77998412466465,57.78787820590624,57.7805720449932,57.77992785025007,57.781005067558254,57.77978107248735,57.77962414774819,57.77952814258127,57.77973799806354],"feasible_probability":0.26030944464781597,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.25390625,"counts":{"0100010011":24,"0100010101":4,"0100011001":47,"0100100011":21,"0100100101":6,"0100101001":15,"0101000011":22,"0101000101":10,"0101001001":53,"0110000011":25,"0110000101":4,"0110001001":26,"1000010011":55,"1000010101":5,"1000011001":11,"1000100011":13,"1000100101":2,"1000101001":2,"1001000011":52,"1001000101":17,"1001001001":35,"1010000011":55,"1010000101":8},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13092024500656407},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":11,"removals":[{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,6,7,8,9]],"components":[{"qubits":7,"penalty":30,"objective_bound":29,"offset":90,"linear":[-30,-20,-21,-19,-23,-30,-22],"quadratic":[[0,1,60],[0,2,60],[1,2,60],[1,4,30],[1,5,30],[3,4,60],[3,6,30],[4,5,30],[5,6,60]],"domains":[[0,1,2],[3,4],[5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":6,"cost":0},{"index":1,"task":"t1","resource":"r0","start":11,"cost":10},{"index":2,"task":"t1","resource":"r1","start":9,"cost":9},{"index":3,"task":"t2","resource":"r1","start":11,"cost":11},{"index":4,"task":"t2","resource":"r0","start":9,"cost":7},{"index":5,"task":"t3","resource":"r0","start":11,"cost":0},{"index":6,"task":"t3","resource":"r1","start":13,"cost":8}],"conflicts":[{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource","group"]},{"i":3,"j":6,"reasons":["resource"]},{"i":4,"j":5,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":11,"end":14,"reserved_end":14,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":12,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":22},"components":[{"status":"feasible","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r1","start":11,"end":14,"reserved_end":14,"changed":true},{"variable":5,"task":"t3","group":"g1","resource":"r0","start":11,"end":12,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,0,1,0],"qubo_energy":11},"seed":1641411168,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[-0.918947640804202,0.9905899298364692],"expected_energy":28.37607692450908,"initial_expected_energy":43.73707044005526,"history":[43.73707044005526,41.61543118034656,43.098206358680685,43.23762626418379,40.34678463173293,48.05264554523527,41.14526557656325,40.903460280563266,40.798011647672645,40.184976466452106,40.54794730242752,40.14129862941111,40.119725165388694,40.08031076591858,40.09451341493893,40.12628918944392,40.08964024630818,40.083418328542024,40.078369507219904,40.08621240120908,40.072438558661254,40.06714559130319,40.057773944573306,40.05446291923838,40.03989306313621,40.072977115718736,40.03601885195408,40.035128413039274,40.06143291788783,40.029783394377006,40.0292602286453,40.02707518075953,40.02421855737974,40.02491914716558,40.02646376566606,40.02493876309049,40.024352436542465,40.02400360624641,40.023752140117026,40.02337056939503,40.02370380054634,40.02404392782789,40.02331470451572,40.02315524068914,40.02314878264444,40.022815550928236,40.02274911347027,40.02261929309373,40.02243395263721,40.023731988724315,40.02281114895301,40.02267854055017,40.02241000824812,40.02239172722846,40.022371998335245,40.02239466827048,40.02235706076295,40.02234655012009,40.02233407072733,40.02231178170439,58.64719690639661,72.94225517924475,45.552257160342506,35.985556268629594,45.11669941000835,36.03179209334658,39.4496827037024,36.15139934626549,35.44203778701425,35.24991310694489,36.23358527831863,34.90497817566651,34.618545170721625,34.16063556976517,33.039947213811956,30.989326810162538,33.088167350749046,42.58447440044621,30.523790459282313,33.96537805982389,30.700552424547602,30.723253507731435,30.76619985946236,30.45004455498177,30.532804440213084,30.42610584812418,30.386916793591208,30.377818618704758,30.33483323551355,30.29267878578069,30.209849278522004,30.05107733573493,29.886575502733375,29.646502353761093,29.77855685629044,29.995155297331355,29.64658932856466,29.545550829553566,29.494533123003272,29.424637932057493,29.359195995962395,29.236067351457898,28.99259983395541,28.623899744103568,34.035516799789036,31.894156469034,28.951384909618195,28.88444588294444,28.659293288231986,28.586535252120225,28.55953293029561,28.62732999478533,28.535184250404054,28.518183632003293,28.497773920674838,28.45881378535779,28.397256702780844,28.563948460044912,28.633509997221555,28.37607692450908],"feasible_probability":0.7441665250677978,"one_hot_probability":1.0,"sampled_feasible_fraction":0.751953125,"counts":{"0101001":19,"0101010":15,"0101100":156,"0110001":33,"0110010":5,"0110100":18,"1001001":8,"1001010":13,"1001100":14,"1010001":14,"1010010":21,"1010100":196},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10903087101178244}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.7441665250677978,"total_shots":512,"runtime_seconds":0.10920810999232344},"direct_metrics":{"exact_objective":22,"optimal_count":1,"combinations":24,"optimal_probability":0.05084010754104578,"feasible_probability":0.26030944464781597,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":58,"hit_curve":[{"shots":8,"quantum":0.3412584950221136,"uniform":0.2885690504976606},{"shots":16,"quantum":0.5660596296194693,"uniform":0.49386600409019976},{"shots":32,"quantum":0.8116957549540078,"uniform":0.7438283781843783},{"shots":64,"quantum":0.964541511297659,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9987426955789459,"uniform":0.9956935037719361},{"shots":512,"quantum":0.999999999997501,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":6.938893903907228e-17,"independent_samples":[{"shots":8,"best_objective":26},{"shots":16,"best_objective":26},{"shots":32,"best_objective":22},{"shots":64,"best_objective":22},{"shots":128,"best_objective":22},{"shots":512,"best_objective":22}]},"component_metrics":[{"exact_objective":11,"optimal_count":1,"combinations":12,"optimal_probability":0.02698994732516219,"feasible_probability":0.7441665250677979,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.3333333333333333,"shots_for_95_percent":110,"hit_curve":[{"shots":8,"quantum":0.19658743850864102,"uniform":0.5014697532613109},{"shots":16,"quantum":0.3545282560378933,"uniform":0.7514675930866618},{"shots":32,"quantum":0.5833662277465166,"uniform":0.9382316427138628},{"shots":64,"quantum":0.8264162998178325,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9698686990310674,"uniform":0.9999854432572823},{"shots":512,"quantum":0.9999991757261277,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":20},{"shots":16,"best_objective":15},{"shots":32,"best_objective":11},{"shots":64,"best_objective":11},{"shots":128,"best_objective":11},{"shots":512,"best_objective":11}]}],"reduced_single_joint_draw_p_opt":0.02698994732516219,"diagnostic_seconds":0.003798500998527743}
+{"instance":"n4-s0-r0.json","seed":2,"direct":{"status":"feasible","best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":11,"end":14,"reserved_end":14,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":12,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":22},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[5.073931327374184,1.2511443986126403],"expected_energy":49.75335244707699,"initial_expected_energy":86.86985538733451,"history":[86.86985538733451,83.92773124005471,69.33414555109772,67.52889207509526,64.0197195292164,67.89705769385985,62.58014022912474,69.99178367882837,64.23326032029351,63.079724612517666,61.56032012218114,60.226174871978344,60.20195500817859,60.06547407582611,60.27703690975576,60.4953693054827,60.01913349037529,59.848319696290986,59.69834071643531,59.90585703796633,59.5975493509912,59.552164103185824,59.44444160560428,59.23633035062187,58.83021799736697,57.92631557428012,58.863079123520286,60.39605851106762,57.670747383095915,58.28552099657196,57.55494211333128,57.26086538998375,56.897225046283154,56.30707075473048,55.620883471506886,54.325632976658056,57.229429762203075,56.205338256741555,54.116470725293226,55.36042762084397,53.858837389031436,53.67931681179209,54.059430810490866,53.5154969322534,53.376130013017125,53.0988675265844,52.72459767705661,52.258559424345215,52.07632858247099,54.14342422980729,51.569219592044014,51.37494608113761,51.114288451624006,50.72977352844628,54.46136043169302,50.50683359814522,50.31532603204609,50.0748397640903,51.43171394711462,49.75335244707699,56.542192618827514,57.094122973334066,69.69429921169868,65.02177292731945,57.682755405248706,63.06590273602322,56.30791475771332,54.450557778954476,53.93768805421103,54.004069306796,55.47897198062436,53.59052216206122,54.44854587646449,53.58013608859409,53.98018989635951,53.840685326643246,53.562683621335324,53.62208460551252,53.562233083051254,53.560912974479024,53.5710646135855,53.5603217321944,53.56107253052339,53.56014570358621,53.559823145809986,53.55961261379714,53.55955949050333,53.55951456199159,53.55961668112378,53.55948180424001,53.559451853405534,53.55942514567427,53.55935886814332,53.559341852085254,53.559223397647855,53.559406352045286,53.559197893938865,53.55929322223134,53.5592024276592,53.55917241344412,53.55917129058044,53.55918898101788,53.55917298081398,53.55916218471786,53.55914880307465,53.55916670372883,53.559136679227464,53.559130109658,53.55911555091754,53.55909441228482,53.55904638692159,53.5589618751379,53.55887823587898,53.55952209387128,53.55945028472078,53.55882623505604,53.558896064260445,53.55884733561966,53.55882628464387,53.55882394082241],"feasible_probability":0.3962760744095787,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.4296875,"counts":{"0100010011":113,"0100011001":87,"0100100011":4,"0100101001":3,"0101000011":55,"0101000101":2,"0101001001":111,"0110000011":9,"0110000101":10,"0110001001":12,"1000010011":8,"1000010101":11,"1000100011":2,"1000101001":6,"1001000011":6,"1001000101":13,"1001001001":6,"1010000011":26,"1010001001":28},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.14030261000152677},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":11,"removals":[{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,6,7,8,9]],"components":[{"qubits":7,"penalty":30,"objective_bound":29,"offset":90,"linear":[-30,-20,-21,-19,-23,-30,-22],"quadratic":[[0,1,60],[0,2,60],[1,2,60],[1,4,30],[1,5,30],[3,4,60],[3,6,30],[4,5,30],[5,6,60]],"domains":[[0,1,2],[3,4],[5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":6,"cost":0},{"index":1,"task":"t1","resource":"r0","start":11,"cost":10},{"index":2,"task":"t1","resource":"r1","start":9,"cost":9},{"index":3,"task":"t2","resource":"r1","start":11,"cost":11},{"index":4,"task":"t2","resource":"r0","start":9,"cost":7},{"index":5,"task":"t3","resource":"r0","start":11,"cost":0},{"index":6,"task":"t3","resource":"r1","start":13,"cost":8}],"conflicts":[{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource","group"]},{"i":3,"j":6,"reasons":["resource"]},{"i":4,"j":5,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":11,"end":14,"reserved_end":14,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":12,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":22},"components":[{"status":"feasible","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r1","start":11,"end":14,"reserved_end":14,"changed":true},{"variable":5,"task":"t3","group":"g1","resource":"r0","start":11,"end":12,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,0,1,0],"qubo_energy":11},"seed":2001025171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9252023102594215,1.3497840154015786],"expected_energy":28.203267687942542,"initial_expected_energy":42.605623991331186,"history":[42.605623991331186,47.4552943985213,37.07338132378342,39.32681256601743,40.72721353953955,35.110478732677684,35.109156914887585,35.564764298137064,35.595482819326335,34.30767594858103,33.86613042761634,32.04342745064194,31.13437344536311,30.06998465466299,30.01673564969252,32.519189096342345,30.149788801338566,29.03173406607069,29.74102493480395,29.222389886128315,29.05307756723425,28.957369392498137,28.954766142833897,29.167399473494925,28.93918389144169,28.87523522076456,28.786449018517715,28.743571123738924,28.81468809103164,28.714483962481278,28.688502389738034,28.65881320953876,28.600279694980205,28.55054722867522,28.45770766548758,28.44467784515076,28.360701547562485,28.476034371321962,28.34361521996562,28.40661832845618,28.344486354264813,28.327879042894885,28.324342557746856,28.348821732770755,28.307654669167334,28.29527386583558,28.27097470097717,28.245505288968825,28.265222879426872,28.30763340300455,28.255124066553083,28.23197459925914,28.227284641122566,28.246384147136066,28.222475905280085,28.218847003014545,28.211921129168886,28.203267687942542,28.203571563558526,28.211144728786753,54.80527174496922,49.68550213236438,35.544826709306385,48.671302488364844,37.31584825885592,34.32453667593683,40.16966911669947,34.4854502944427,33.416238874614976,34.1328885577321,33.16954714337405,33.21719892279575,33.140413123769164,33.08962800600925,33.020618592640886,33.063393460781384,32.96671139046192,32.92030206064179,32.86352897678616,32.97266970996354,32.836897507195445,32.78126571752376,32.673470206848705,32.46528399808816,32.0535396087336,31.32686666143131,32.764137142069984,34.172468323690396,31.400859852274838,31.299342704544085,31.75880536405363,31.133598541636516,31.020469114297434,30.93860113334274,30.847932632848448,30.680423836396805,30.35755552497073,29.719289087909175,29.034977163510426,34.743769782933526,33.57262211921675,28.954845355918597,28.714392265907783,29.449593833010496,28.86853455551521,28.77861975486754,28.62538585051177,28.59477700195292,28.67376952294466,28.570496545520083,28.54899713286949,28.514833127434017,28.463495076908192,28.378158100967838,28.316548723429662,28.351092991434616,28.632751743688146,28.35250178362154,28.259362159302462,28.257244282899986],"feasible_probability":0.655768515750346,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.662109375,"counts":{"0101001":107,"0101010":49,"0101100":46,"0110001":10,"0110010":2,"0110100":21,"1001001":20,"1001010":34,"1001100":3,"1010001":117,"1010010":34,"1010100":69},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11647142900619656}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.655768515750346,"total_shots":512,"runtime_seconds":0.116651546995854},"direct_metrics":{"exact_objective":22,"optimal_count":1,"combinations":24,"optimal_probability":0.0947493257849561,"feasible_probability":0.3962760744095787,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":31,"hit_curve":[{"shots":8,"quantum":0.5490266735826423,"uniform":0.2885690504976606},{"shots":16,"quantum":0.7966230588600633,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9586378198125628,"uniform":0.7438283781843783},{"shots":64,"quantum":0.998289170050142,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999970730608827,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":26},{"shots":16,"best_objective":26},{"shots":32,"best_objective":22},{"shots":64,"best_objective":22},{"shots":128,"best_objective":22},{"shots":512,"best_objective":22}]},"component_metrics":[{"exact_objective":11,"optimal_count":1,"combinations":12,"optimal_probability":0.23983382538973594,"feasible_probability":0.655768515750346,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.3333333333333333,"shots_for_95_percent":11,"hit_curve":[{"shots":8,"quantum":0.8885016794352637,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9875681245112433,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9998454484718321,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999761138252,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999999994,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":11},{"shots":16,"best_objective":11},{"shots":32,"best_objective":11},{"shots":64,"best_objective":11},{"shots":128,"best_objective":11},{"shots":512,"best_objective":11}]}],"reduced_single_joint_draw_p_opt":0.23983382538973594,"diagnostic_seconds":0.0038264139875536785}
+{"instance":"n4-s0-r0.json","seed":3,"direct":{"status":"feasible","best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":11,"end":14,"reserved_end":14,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":12,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":22},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.5105446521219483,1.9938261917439866],"expected_energy":53.69399690093145,"initial_expected_energy":59.29079561836263,"history":[59.29079561836263,60.61148586204712,66.23659258847891,73.50622073644234,67.1014255682342,58.95078222338466,59.34001158068518,59.247336667963225,58.6289829914944,58.885322850508324,58.56765085116869,58.55114310121337,58.473377203712005,58.42513554609207,58.30719597632145,58.71515127849314,58.43014898981758,58.292838738837645,58.4338960709256,58.27432241754365,58.25316471541518,58.231491699788094,58.221974683246785,58.16708155217199,58.20058899384863,58.15850768681931,58.199138799541956,58.15317745108541,58.14382658917606,58.12672538890177,58.09526376747621,58.05473364257129,58.04375809464908,57.96259398468338,58.119263406625365,58.14527408161257,57.95189424274621,57.99999480434986,57.95346310898097,57.949376011401206,57.95077795789828,57.95321692682042,57.94436759480989,57.94379586121993,57.95195202636026,57.93757037043848,57.9287754355468,57.91002432922815,57.88033877083383,58.03130460516235,57.99987476196897,57.876002771810946,57.95875693931703,57.86658517949691,57.872765218810514,57.87128129257984,57.865709095056246,57.86760297869062,57.86479177654011,57.86392076238754,62.47788689423929,65.34605674843161,70.57123329315655,68.35463447497557,65.11000701762359,62.25735473387779,64.63537181763614,61.96850086441698,61.57334111617702,61.280727565157704,61.737611484700146,61.06655341149903,60.86766049021003,60.45438269745486,59.65270654871458,59.940064180835854,60.01655855307793,59.90470534544815,59.31704751351096,58.93443941863093,58.43424375312764,61.48406239117964,57.87753522126249,57.852825170063376,57.537341283592674,57.155657996379105,56.89723534093269,57.76358722411552,56.67901355104122,56.55855002175008,56.36012755583708,56.029467362039284,55.38995620564431,54.43404443086695,64.73224728565093,63.19911613929484,55.70641106815566,55.36446121189664,54.36384507092289,54.33287752161322,54.29491128867629,54.27934478075358,54.400414463487365,54.25895895600815,54.2249139162775,54.18255698286626,54.15327029816764,54.18518140652062,54.13673347991943,54.119755859040986,54.09242227526268,54.044052452049684,53.97857667331664,53.86526064388795,53.73458200422031,54.35936414743351,54.37785526637863,53.71810016193497,53.69399690093145,53.70921978305594],"feasible_probability":0.46169892738748725,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.453125,"counts":{"0100010011":6,"0100010101":11,"0100011001":36,"0100100011":4,"0100100101":4,"0100101001":25,"0101000011":37,"0101000101":5,"0101001001":103,"0110000011":18,"0110000101":3,"0110001001":32,"1000010011":2,"1000011001":38,"1000100011":3,"1000100101":1,"1000101001":2,"1001000011":15,"1001000101":4,"1001001001":63,"1010000011":6,"1010000101":8,"1010001001":86},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13907404500059783},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":11,"removals":[{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,6,7,8,9]],"components":[{"qubits":7,"penalty":30,"objective_bound":29,"offset":90,"linear":[-30,-20,-21,-19,-23,-30,-22],"quadratic":[[0,1,60],[0,2,60],[1,2,60],[1,4,30],[1,5,30],[3,4,60],[3,6,30],[4,5,30],[5,6,60]],"domains":[[0,1,2],[3,4],[5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":6,"cost":0},{"index":1,"task":"t1","resource":"r0","start":11,"cost":10},{"index":2,"task":"t1","resource":"r1","start":9,"cost":9},{"index":3,"task":"t2","resource":"r1","start":11,"cost":11},{"index":4,"task":"t2","resource":"r0","start":9,"cost":7},{"index":5,"task":"t3","resource":"r0","start":11,"cost":0},{"index":6,"task":"t3","resource":"r1","start":13,"cost":8}],"conflicts":[{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource","group"]},{"i":3,"j":6,"reasons":["resource"]},{"i":4,"j":5,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":11,"end":14,"reserved_end":14,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":12,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":22},"components":[{"status":"feasible","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r1","start":11,"end":14,"reserved_end":14,"changed":true},{"variable":5,"task":"t3","group":"g1","resource":"r0","start":11,"end":12,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,0,1,0],"qubo_energy":11},"seed":819382448,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0424922088412159,2.1491757249948424],"expected_energy":28.08778474708482,"initial_expected_energy":31.074753228295616,"history":[31.074753228295616,37.723384619615125,48.3439775900037,50.60438838229392,50.490703330730845,32.854368847998046,30.95754631036054,33.327464751514405,30.151111725541867,30.864762550445082,29.963401880408316,30.10942160112269,29.941172571914166,29.89175136071038,29.844898546253987,29.790658813889117,29.698269716695975,29.61124500748417,29.445903704063316,29.17598530049584,28.97100382377992,28.80405073253464,28.643049522470733,29.972200477175228,28.241368928192564,29.02021940805641,28.217340238193156,28.296035907962732,28.244439662019452,28.21389837891031,28.20767880395964,28.204749527281972,28.22263800098921,28.19438646527636,28.201226030886254,28.19361480340303,28.19583393551128,28.19355021988862,28.19290475831891,28.192027171081833,28.19129253730096,28.190851370193048,28.190137152643665,28.18888734268836,28.186831946013434,28.189934414164426,28.193492844552765,28.187146765892724,28.18682365889511,28.18736263403425,28.186416526427415,28.18597008143732,28.18573504499792,28.18662473268231,28.18548476763173,28.185306543880095,28.185121973059076,28.184831033040073,28.184647716139793,28.183844512528236,40.25492783929276,36.48738011517333,43.94229245400282,53.5535395647213,58.03806470056825,30.308630319608458,34.66262684490113,30.132330340777695,31.50996491083411,30.355941215944725,30.324254725222637,30.022707896388546,29.95323566488027,30.069795882103698,29.91215342533247,29.872725839357614,29.796110804052603,29.650897333028944,29.42421254579206,29.14865678835516,28.714496736773626,31.673696691358693,30.203435047280173,28.676423855473182,30.047409137155093,28.49192373779668,28.620183055692763,28.475292318861236,28.515739241542903,28.4490439771159,28.431587608877418,28.41449134648081,28.397107181191306,28.360906852796205,28.358823427992803,28.329437407951907,28.312623299760002,28.282323957200003,28.2245516993732,28.14011147311973,30.683161718067133,28.754753641036267,28.363475438597202,28.130137044787478,28.15502675804033,28.13818854000514,28.126359428633023,28.130236675784605,28.12540825591252,28.123539408358358,28.121501491582485,28.117519046376565,28.110069539614656,28.10668476415668,28.09565036714217,28.129894541344537,28.08901978971541,28.093362256094426,28.094168466675356,28.08778474708482],"feasible_probability":0.7517848801808252,"one_hot_probability":1.0,"sampled_feasible_fraction":0.76953125,"counts":{"0101001":10,"0101010":14,"0101100":180,"0110001":31,"0110010":1,"0110100":17,"1001001":22,"1001010":3,"1001100":10,"1010001":17,"1010010":20,"1010100":187},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10991698900761548}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.7517848801808252,"total_shots":512,"runtime_seconds":0.11008508400118444},"direct_metrics":{"exact_objective":22,"optimal_count":1,"combinations":24,"optimal_probability":0.04785201564598019,"feasible_probability":0.46169892738748725,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":62,"hit_curve":[{"shots":8,"quantum":0.32448403273923493,"uniform":0.2885690504976606},{"shots":16,"quantum":0.5436781779757529,"uniform":0.49386600409019976},{"shots":32,"quantum":0.7917703947444714,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9566404314951268,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9981199478190712,"uniform":0.9956935037719361},{"shots":512,"quantum":0.9999999999875067,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.942890293094024e-16,"independent_samples":[{"shots":8,"best_objective":31},{"shots":16,"best_objective":31},{"shots":32,"best_objective":22},{"shots":64,"best_objective":22},{"shots":128,"best_objective":22},{"shots":512,"best_objective":22}]},"component_metrics":[{"exact_objective":11,"optimal_count":1,"combinations":12,"optimal_probability":0.020446954090177195,"feasible_probability":0.7517848801808252,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.3333333333333333,"shots_for_95_percent":146,"hit_curve":[{"shots":8,"quantum":0.1523361250364112,"uniform":0.5014697532613109},{"shots":16,"quantum":0.2814659550817133,"uniform":0.7514675930866618},{"shots":32,"quantum":0.48370882629336553,"uniform":0.9382316427138628},{"shots":64,"quantum":0.7334434239526257,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9289475917659005,"uniform":0.9999854432572823},{"shots":512,"quantum":0.9999745132059509,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":20},{"shots":16,"best_objective":20},{"shots":32,"best_objective":15},{"shots":64,"best_objective":11},{"shots":128,"best_objective":11},{"shots":512,"best_objective":11}]}],"reduced_single_joint_draw_p_opt":0.020446954090177195,"diagnostic_seconds":0.003572732995962724}
+{"instance":"n4-s0-r0.json","seed":4,"direct":{"status":"feasible","best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":11,"end":14,"reserved_end":14,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":12,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":22},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.6394326848121814,1.1779794347882746],"expected_energy":62.044265772634915,"initial_expected_energy":69.9076359565959,"history":[69.9076359565959,69.2909259668696,63.16192434742881,66.84077358297522,63.64337055875477,63.14661031002839,63.09308819071839,62.994021588247975,65.92928931610115,64.99046237501628,63.359870880215496,62.967078955594765,63.305915764612905,63.06066045966428,62.97180646776501,62.96521538953561,63.01795934400583,62.9540927880346,62.947265112486605,62.942520985747734,62.93572595628927,62.92242899171241,62.897267684825444,62.830560466351955,63.08783232638072,62.99858120855392,62.81680959089367,62.90328452312386,62.805462046646205,62.79001784049808,62.76267172801074,62.81629203781419,62.74270871252081,62.72177240781768,62.76270540226202,62.687678341273774,62.673312522097945,62.65189167451786,62.61047222063396,62.542349173503766,62.81543146669652,62.547706516154065,62.53693527398963,62.6177496911606,62.5071423988564,62.461522031219175,62.45698512320416,62.44519923459484,62.4359236229152,62.43102827380385,62.4812697709791,62.43001577993373,62.41015053172278,62.382733817470964,62.35508871359434,62.31639223397093,62.25265414271509,62.183545757270636,62.044265772634915,62.13950183975328,77.85542387509149,79.29462793819482,69.6437363019543,86.55578827185299,73.5050425154297,70.96890259891063,68.8581044595877,69.14903027834222,69.10893139929185,68.8063889441367,68.97690634500627,68.82092297607937,68.95921294749897,68.79946288208957,68.76566404161032,68.76527006160082,68.76025530587117,68.75532927037727,68.74526207527654,68.72342076789582,68.67391268780598,68.68789711879978,68.83002023338611,68.7227728274558,68.66732780601609,68.6719084234645,68.66352161923201,68.66539334497216,68.65689808309271,68.65419442334108,68.66378230540889,68.646692760717,68.63984433590521,68.62599236434477,68.59806439249328,68.5511351171331,68.75627800331577,68.8535469648727,68.52399422105518,68.5324227350938,68.53896778847478,68.51128027318386,68.52597373380245,68.5162394934757,68.50476660369165,68.50926299686508,68.4956494091262,68.48900599736412,68.50614255664006,68.4799966907797,68.47066943036124,68.45496619101053,68.46846603837889,68.44186421725351,68.46047480183502,68.4308994607318,68.42023077211367,68.39983529400286,68.36455020690774,68.30832827427406],"feasible_probability":0.1698449723946879,"one_hot_probability":1.0,"sampled_feasible_fraction":0.17578125,"counts":{"0100010011":11,"0100010101":2,"0100011001":83,"0100100011":23,"0100100101":9,"0100101001":18,"0101000011":33,"0101000101":24,"0101001001":3,"0110000011":6,"0110001001":48,"1000010011":61,"1000010101":19,"1000011001":2,"1000100011":3,"1000100101":8,"1000101001":26,"1001000011":33,"1001000101":10,"1001001001":36,"1010000011":4,"1010001001":50},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13213382799585816},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":11,"removals":[{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,6,7,8,9]],"components":[{"qubits":7,"penalty":30,"objective_bound":29,"offset":90,"linear":[-30,-20,-21,-19,-23,-30,-22],"quadratic":[[0,1,60],[0,2,60],[1,2,60],[1,4,30],[1,5,30],[3,4,60],[3,6,30],[4,5,30],[5,6,60]],"domains":[[0,1,2],[3,4],[5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":6,"cost":0},{"index":1,"task":"t1","resource":"r0","start":11,"cost":10},{"index":2,"task":"t1","resource":"r1","start":9,"cost":9},{"index":3,"task":"t2","resource":"r1","start":11,"cost":11},{"index":4,"task":"t2","resource":"r0","start":9,"cost":7},{"index":5,"task":"t3","resource":"r0","start":11,"cost":0},{"index":6,"task":"t3","resource":"r1","start":13,"cost":8}],"conflicts":[{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource","group"]},{"i":3,"j":6,"reasons":["resource"]},{"i":4,"j":5,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":11,"end":14,"reserved_end":14,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":12,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":22},"components":[{"status":"feasible","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r1","start":11,"end":14,"reserved_end":14,"changed":true},{"variable":5,"task":"t3","group":"g1","resource":"r0","start":11,"end":12,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,0,1,0],"qubo_energy":11},"seed":367776961,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.1631034049640618,2.1484037803782887],"expected_energy":28.083464752866973,"initial_expected_energy":56.3603959117036,"history":[56.3603959117036,55.497130791267324,32.23097138204531,48.19280280321849,30.14796649829087,36.3255084017305,30.387575158250904,30.72237638032624,30.70670483258498,30.448004116609404,30.07823604087267,29.99004827252739,29.956649480898847,29.837579264362763,29.76488789345094,29.544325612306206,29.56351524217945,29.646600704243177,29.53190565941249,29.5940926529703,29.531512078355426,29.478454211906474,29.41421720468982,29.348100482099362,29.299978872089234,29.231425444454704,29.12950671217782,28.939466143451753,28.716895686894983,28.408552164194017,29.161208538940652,29.411252162122853,28.369815406676828,28.41212109782515,28.413105913145436,28.336465287593423,28.331352106396494,28.440547941010188,28.303680093341683,28.29118004407256,28.27970931569967,28.295898550747694,28.27071587571264,28.25913393230235,28.24611997542479,28.343096802737048,28.22615495235905,28.221395424677457,28.207118705215233,28.186263893390127,28.14679143884903,28.09476025902419,28.376368390369898,28.35727784257685,28.089668160001512,28.093273730866255,28.095529258886565,28.094045501186336,28.087418583895747,28.083464752866973,48.20421070278151,50.231902433432744,31.527458709484584,55.554685953217074,36.75208631929094,32.41837450186938,34.564086334213826,32.06983533088071,31.871775920495104,31.514345310365893,31.763346781408657,31.520782614276296,31.430808529508745,31.298859385873293,31.294931252767267,31.20088157840707,31.10899057607542,30.931304041363603,30.610344715573593,30.568374567955235,29.809105558439757,30.11403647861423,29.756842764580668,29.991793577521953,29.723001407713173,29.65714244602347,29.689055871127156,29.611665642991795,29.634751417692183,29.632635225732407,29.57877311081871,29.553363396462743,29.66215856992519,29.512112429034758,29.47470188169542,29.40555484052406,29.27481510290108,29.02940825657329,29.34061799816517,29.567387862406292,29.128214511471196,29.02139817424757,29.07066061323316,28.982512024718947,28.923127308286002,28.843472595324023,28.74529659555137,28.677827523251622,28.418092474937886,29.560295169240945,28.905453180412003,28.578001858702027,28.411507331240465,28.454080708457127,28.38316738818599,28.366201494995924,28.35249076439524,28.38568770936112,28.342006589509236,28.326848825127694],"feasible_probability":0.7501224506499812,"one_hot_probability":1.0,"sampled_feasible_fraction":0.7578125,"counts":{"0101001":7,"0101010":20,"0101100":178,"0110001":42,"0110100":15,"1001001":17,"1001010":6,"1001100":5,"1010001":12,"1010010":19,"1010100":191},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10259761899942532}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.7501224506499812,"total_shots":512,"runtime_seconds":0.10276322299614549},"direct_metrics":{"exact_objective":22,"optimal_count":1,"combinations":24,"optimal_probability":0.07022669065360145,"feasible_probability":0.1698449723946879,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":42,"hit_curve":[{"shots":8,"quantum":0.4415084595550047,"uniform":0.2885690504976606},{"shots":16,"quantum":0.6880871992513762,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9027104047291493,"uniform":0.7438283781843783},{"shots":64,"quantum":0.990534734652034,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999104087518926,"uniform":0.9956935037719361},{"shots":512,"quantum":0.9999999999999999,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.249000902703301e-16,"independent_samples":[{"shots":8,"best_objective":22},{"shots":16,"best_objective":22},{"shots":32,"best_objective":22},{"shots":64,"best_objective":22},{"shots":128,"best_objective":22},{"shots":512,"best_objective":22}]},"component_metrics":[{"exact_objective":11,"optimal_count":1,"combinations":12,"optimal_probability":0.016612564306154196,"feasible_probability":0.7501224506499812,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.3333333333333333,"shots_for_95_percent":179,"hit_curve":[{"shots":8,"quantum":0.1254246317462136,"uniform":0.5014697532613109},{"shots":16,"quantum":0.23511792524375388,"uniform":0.7514675930866618},{"shots":32,"quantum":0.41495541171658035,"uniform":0.9382316427138628},{"shots":64,"quantum":0.657722829720284,"uniform":0.9961846700381721},{"shots":128,"quantum":0.8828463387053103,"uniform":0.9999854432572823},{"shots":512,"quantum":0.9998116249142617,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":20},{"shots":16,"best_objective":15},{"shots":32,"best_objective":11},{"shots":64,"best_objective":20},{"shots":128,"best_objective":11},{"shots":512,"best_objective":11}]}],"reduced_single_joint_draw_p_opt":0.016612564306154196,"diagnostic_seconds":0.004461787990294397}
+{"instance":"n4-s0-r0.json","seed":5,"direct":{"status":"feasible","best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":11,"end":14,"reserved_end":14,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":12,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":22},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0441459265976445,-0.1554553629032536],"expected_energy":52.67191712806908,"initial_expected_energy":69.16854432095977,"history":[69.16854432095977,69.05945521122327,63.22619936096907,85.69864468255726,75.23518060216499,67.4292193328297,57.260514247803414,64.42124187609724,57.560180200147585,58.87983443337028,57.774744100074514,57.53056087428891,57.3518044321608,57.106677029011664,56.97315243181457,57.091543858371395,56.87496550952743,56.96914466010022,56.8451307071512,56.78340709265048,56.66417394420714,56.43811893143689,56.30313372213902,55.83854999836545,56.40376758355329,55.6967732123282,56.11698021183529,55.677993297976236,55.55535279755386,55.482982999345964,55.380025867902944,55.28075291020194,55.156239162761,54.96182204508729,54.89042408188676,54.67583043850162,54.70860425171124,54.631597856199555,54.710458247434424,54.65915228054007,54.59138021141618,54.59623012080844,54.54850313609562,54.50842432559624,54.44174769905496,54.581921769495196,54.37765668941775,54.31384226057927,54.37506171189484,54.254249358471384,54.19270458944689,54.23530623670161,54.13429083447163,54.077571077830996,54.18178457033973,54.0189501347748,53.96865800500602,54.029217297933684,53.924158001430555,53.89098120354676,70.89866402669247,78.06161481547264,75.1047818599443,82.10638837284651,68.79760709593899,59.36917549577343,72.215833110294,54.68274525053791,67.55167782406593,65.02770409038202,54.40286263300291,55.58301572917414,55.73380778719084,54.70699268073183,54.4497793441153,54.30497948440545,54.40355084278599,54.25418074938767,54.204105170723395,54.119215821720644,53.94081031340766,53.61275742280763,54.17641738264961,54.34020186205811,53.73225178068433,53.61299917709598,53.66808149130556,53.57235460026071,53.53540163723264,53.46281654372978,53.33122108664806,53.21546997387889,53.17725723787619,52.82481362078104,53.99553888581181,54.06482855683751,52.986035155975856,52.816322883151315,52.94197149232794,52.798532036129714,52.796080153727644,52.77491036682291,52.77080048762592,52.75173455767124,52.74889478817178,52.722174954326725,52.73535067383634,52.73605839512764,52.733383177022404,52.7173796534063,52.7120455175199,52.70858568813228,52.69452707304242,52.70149882956639,52.691795553528,52.701294379701224,52.69014475044611,52.687195041947035,52.681742018510775,52.67191712806908],"feasible_probability":0.40955860690068,"one_hot_probability":1.0,"sampled_feasible_fraction":0.41015625,"counts":{"0100010011":41,"0100010101":3,"0100011001":29,"0100100011":18,"0100101001":15,"0101000011":63,"0101000101":4,"0101001001":51,"0110000011":2,"0110000101":16,"0110001001":2,"1000010011":31,"1000010101":23,"1000011001":18,"1000100011":21,"1000100101":27,"1000101001":15,"1001000011":3,"1001000101":27,"1001001001":7,"1010000011":53,"1010001001":43},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12668580499303062},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":11,"removals":[{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,6,7,8,9]],"components":[{"qubits":7,"penalty":30,"objective_bound":29,"offset":90,"linear":[-30,-20,-21,-19,-23,-30,-22],"quadratic":[[0,1,60],[0,2,60],[1,2,60],[1,4,30],[1,5,30],[3,4,60],[3,6,30],[4,5,30],[5,6,60]],"domains":[[0,1,2],[3,4],[5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":6,"cost":0},{"index":1,"task":"t1","resource":"r0","start":11,"cost":10},{"index":2,"task":"t1","resource":"r1","start":9,"cost":9},{"index":3,"task":"t2","resource":"r1","start":11,"cost":11},{"index":4,"task":"t2","resource":"r0","start":9,"cost":7},{"index":5,"task":"t3","resource":"r0","start":11,"cost":0},{"index":6,"task":"t3","resource":"r1","start":13,"cost":8}],"conflicts":[{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource","group"]},{"i":3,"j":6,"reasons":["resource"]},{"i":4,"j":5,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":11,"end":14,"reserved_end":14,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":12,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":22},"components":[{"status":"feasible","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r1","start":11,"end":14,"reserved_end":14,"changed":true},{"variable":5,"task":"t3","group":"g1","resource":"r0","start":11,"end":12,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,0,1,0],"qubo_energy":11},"seed":803261128,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0591994621173282,2.9624532970822135],"expected_energy":26.042571316234806,"initial_expected_energy":53.75119206845725,"history":[53.75119206845725,53.58958908372581,30.415856024467814,68.58385925742071,41.36912349562107,32.7092677292554,33.8870801498095,31.156965014016265,30.224818734152613,29.56810061998193,28.514868351074806,33.03066735008688,30.675762439650605,31.03392416262619,28.19541464668924,28.35111826898678,30.238383280463445,27.8749986374743,28.28783643628743,27.94408956766323,27.84920870494249,27.699845274435926,27.45590865586019,27.017277715913117,28.41830295352551,28.104822766648006,27.42054576636311,26.961413654258596,27.00287104068105,26.964747789728627,26.922875235936836,26.868398430386765,27.156276671363038,26.8099539796425,26.74964384461414,26.74976972573718,26.706482200294097,26.758810809519552,26.72840234420643,26.68097438766965,26.701461849132343,26.646857763768427,26.624552501560117,26.588776435218346,26.529545601787124,26.408478763353386,26.20311747565814,27.820570437516047,27.20420569522027,26.422755287081678,26.18261890852812,26.255258191040753,26.180336367229955,26.15922896607009,26.119494826262997,26.05895963341203,26.60675267565228,26.40302709555372,26.042571316234806,26.058473453040236,41.92802562176029,44.630087048980236,50.873018659558795,37.78167100288385,36.67652782219112,44.61425927229223,38.12859916524283,36.98372752738369,37.58517709318306,36.26929432934381,36.54890786695598,36.08942081981591,36.00335336716134,35.754481963091436,35.28926640940023,34.37656052501449,32.16807141666827,53.966215738442976,43.47613898683596,33.515241220141064,32.89386558194137,32.397204765399536,31.9301068137865,32.19860336682559,31.805274148873792,31.742209131907718,31.60339867625827,31.367926574399718,30.90428139759014,30.421922126748914,31.027193032469697,32.197646510583894,30.238854404266746,29.951041566254375,29.895324194153268,30.396145122360082,29.756207143467048,29.662626949676827,29.580280949000677,29.62605669799866,29.537311114346398,29.633836938070722,29.517381613319202,29.487361670564983,29.45378895902127,29.40550995845233,29.484793869826827,29.354136192535492,29.293957436572914,29.207841610330718,30.118237843683023,29.13896739925236,29.07507281980434,29.236965481417563,28.98443248700218,28.949825664248433,28.892720686109353,28.78909621667261,28.68426981935388,28.714790352629826],"feasible_probability":0.816910407697391,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.830078125,"counts":{"0101001":134,"0101010":5,"0101100":95,"0110001":5,"0110010":23,"0110100":5,"1001001":9,"1001010":34,"1001100":3,"1010001":114,"1010010":3,"1010100":82},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.17923644100665115}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.816910407697391,"total_shots":512,"runtime_seconds":0.17940683499909937},"direct_metrics":{"exact_objective":22,"optimal_count":1,"combinations":24,"optimal_probability":0.1303643537341752,"feasible_probability":0.40955860690068,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":22,"hit_curve":[{"shots":8,"quantum":0.6728863515188099,"uniform":0.2885690504976606},{"shots":16,"quantum":0.8929966609773244,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9885502854379984,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9998689040364487,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999999828138484,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":22},{"shots":16,"best_objective":22},{"shots":32,"best_objective":22},{"shots":64,"best_objective":22},{"shots":128,"best_objective":22},{"shots":512,"best_objective":22}]},"component_metrics":[{"exact_objective":11,"optimal_count":1,"combinations":12,"optimal_probability":0.23725946653781646,"feasible_probability":0.816910407697391,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.3333333333333333,"shots_for_95_percent":12,"hit_curve":[{"shots":8,"quantum":0.8854448522496404,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9868771181238933,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9998277899712658,"uniform":0.9382316427138628},{"shots":64,"quantum":0.999999970343706,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999999991,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":11},{"shots":16,"best_objective":11},{"shots":32,"best_objective":11},{"shots":64,"best_objective":11},{"shots":128,"best_objective":11},{"shots":512,"best_objective":11}]}],"reduced_single_joint_draw_p_opt":0.23725946653781646,"diagnostic_seconds":0.005634774002828635}
+{"instance":"n4-s0-r0.json","seed":6,"direct":{"status":"feasible","best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":11,"end":14,"reserved_end":14,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":12,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":22},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.6942307697219134,1.1659162128217777],"expected_energy":62.269899721545244,"initial_expected_energy":78.61455063473733,"history":[78.61455063473733,77.4896329665777,63.915828745710925,68.36865107971512,66.60627951834795,65.3153970903114,63.19745899737997,64.04055480092296,63.26122795051777,63.91989823512371,62.94680483192455,63.33724156855331,62.991936405595254,62.98340245361713,62.941092789127865,62.93327102749676,62.92713594352968,62.92968603678701,62.92407559463527,62.92207904115748,62.92341627815641,62.92024906432968,62.91863612930926,62.91635466659335,62.9181657348348,62.91547720586769,62.91375957593063,62.910889078335565,62.91079888343427,62.90597525810148,62.90164824607011,62.89424567251281,62.880998156931554,62.85389780146828,62.8452161072471,62.78763196695937,63.06492465159833,62.73304856056915,62.738548585562434,62.75821876862973,62.72702693208595,62.72711976037978,62.72966839233224,62.722100090359795,62.71364409142255,62.70477974084206,62.74319164664227,62.691164948086325,62.68008940265544,62.66050170166488,62.61515492446806,62.5219415239203,62.37612974149384,62.89623465001134,63.63724395331366,62.30796355234574,62.30506018346905,62.388301014934996,62.304841102123035,62.269899721545244,79.19848174402337,78.58555992654847,68.82104414293724,63.649881180290365,68.67030819844278,68.80516288774211,67.2931259850273,63.56403949330402,66.66341128759947,63.22841893811767,63.12021775061265,63.25179922098236,63.38169537135006,63.165504391451776,63.16140731181163,63.07201718979303,63.073707712325266,63.07274351044538,63.074661526967006,63.07736985915332,63.06695714587353,63.06955224675659,63.067126588391034,63.067152120933244,63.06688981948034,63.06685769106665,63.067463368075536,63.06672939794839,63.06666794810471,63.066631437122055,63.06672035532171,63.06659794801884,63.066567487631005,63.0665069075058,63.06638068534901,63.06611687220155,63.06566796868273,63.06752182932689,63.069640657124076,63.06545252029715,63.06538985378778,63.06520989571115,63.06485024017158,63.064059086635396,63.06168209190605,63.07425662418285,63.07236567007333,63.0610308076123,63.06355044413999,63.061134611343775,63.060651116478525,63.06102668535449,63.06029068626093,63.06026886808668,63.0604710662052,63.06028471324377,63.06017004593478,63.059996501937846,63.059868715744344,63.05949846411812],"feasible_probability":0.1621840382711142,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.154296875,"counts":{"0100010011":18,"0100010101":8,"0100011001":77,"0100100011":23,"0100100101":11,"0100101001":20,"0101000011":38,"0101000101":6,"0110000011":5,"0110000101":1,"0110001001":36,"1000010011":67,"1000010101":31,"1000011001":3,"1000100011":2,"1000100101":11,"1000101001":36,"1001000011":38,"1001000101":2,"1001001001":35,"1010000011":4,"1010000101":3,"1010001001":37},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1279473019967554},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":11,"removals":[{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,6,7,8,9]],"components":[{"qubits":7,"penalty":30,"objective_bound":29,"offset":90,"linear":[-30,-20,-21,-19,-23,-30,-22],"quadratic":[[0,1,60],[0,2,60],[1,2,60],[1,4,30],[1,5,30],[3,4,60],[3,6,30],[4,5,30],[5,6,60]],"domains":[[0,1,2],[3,4],[5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":6,"cost":0},{"index":1,"task":"t1","resource":"r0","start":11,"cost":10},{"index":2,"task":"t1","resource":"r1","start":9,"cost":9},{"index":3,"task":"t2","resource":"r1","start":11,"cost":11},{"index":4,"task":"t2","resource":"r0","start":9,"cost":7},{"index":5,"task":"t3","resource":"r0","start":11,"cost":0},{"index":6,"task":"t3","resource":"r1","start":13,"cost":8}],"conflicts":[{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource","group"]},{"i":3,"j":6,"reasons":["resource"]},{"i":4,"j":5,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":11,"end":14,"reserved_end":14,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":12,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":22},"components":[{"status":"feasible","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r1","start":11,"end":14,"reserved_end":14,"changed":true},{"variable":5,"task":"t3","group":"g1","resource":"r0","start":11,"end":12,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,0,1,0],"qubo_energy":11},"seed":3153149895,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0612159083319384,2.1498603225987716],"expected_energy":28.069183665353073,"initial_expected_energy":28.70976196150007,"history":[28.70976196150007,29.02309099603449,56.30530959579227,53.90273514918829,52.272013075082526,32.496521141210216,28.816094874086335,30.85320239747776,28.637012771758847,28.843260865743424,28.93677981330164,28.60603563083292,28.710759340596088,28.555402267657946,28.46944243623873,28.3605811498738,28.319930765671103,28.373642282129055,28.30437283107122,28.296661108118926,28.27952488472665,28.260667262341805,28.230533582962202,28.21851240660785,28.200879942330197,28.294685763527724,28.27842457860701,28.177405332311345,28.159305195951553,28.13414558219586,28.125919717950662,28.115904418490288,28.141286479511923,28.134907647430158,28.12416135846542,28.106192275200534,28.112441443928926,28.110557730353232,28.10636742132083,28.104344840292548,28.10096651364846,28.094421778522285,28.086750876829317,28.09083613722744,28.102839531011416,28.08681452639143,28.08865449093772,28.083789243412607,28.081221834717944,28.08006507562361,28.086869070997206,28.07827425669959,28.077208394276436,28.07606870460863,28.074530108521994,28.072486659639928,28.071722745471824,28.0787562650092,28.070001530383863,28.069183665353073,54.35219700178837,53.81844268886883,47.15564600105762,44.173090667391335,43.21329361964972,41.26507679691041,48.662637748597774,43.48774230178834,41.63449153251386,41.97528094618138,41.47925391808806,41.17401444678771,41.94561721196614,40.90645633293322,40.66698981872958,40.24220122731859,39.39236491306128,37.74383538408915,45.6656069621729,42.212114670805846,40.93457990495219,37.387497968538234,36.907131607355424,36.68607860849538,38.252695981776725,36.28226931780925,36.06029887659664,35.80530500737716,35.4031060386621,38.24551270377389,35.109763283251866,34.75069929376671,35.343912883182924,34.322778383885705,34.382531967033685,34.78834068519745,34.34458525951838,34.16032815689164,34.03118575201505,33.7551430104575,33.25273730861754,32.36519443444331,30.446950761898105,29.121635130153944,51.17075592217945,49.5848446818444,29.087494668390462,29.368662102145628,32.14297491619622,28.30831852265073,28.097881893011987,28.19999346094983,28.106891253015025,28.200410373765635,28.09308140903547,28.094292146636448,28.099577527212514,28.093167793755235,28.09109564479015,28.089857262611517],"feasible_probability":0.7520173153478276,"one_hot_probability":1.0,"sampled_feasible_fraction":0.76171875,"counts":{"0101001":9,"0101010":15,"0101100":172,"0110001":47,"0110100":15,"1001001":14,"1001010":4,"1001100":8,"1010001":8,"1010010":19,"1010100":201},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10818905600172002}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.7520173153478276,"total_shots":512,"runtime_seconds":0.10836782499973197},"direct_metrics":{"exact_objective":22,"optimal_count":1,"combinations":24,"optimal_probability":0.06777008838678183,"feasible_probability":0.1621840382711142,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":43,"hit_curve":[{"shots":8,"quantum":0.4295937584348999,"uniform":0.2885690504976606},{"shots":16,"quantum":0.6746367195835767,"uniform":0.49386600409019976},{"shots":32,"quantum":0.8941387357566639,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9887933927328025,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9998744119535588,"uniform":0.9956935037719361},{"shots":512,"quantum":0.9999999999999998,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":35},{"shots":16,"best_objective":22},{"shots":32,"best_objective":35},{"shots":64,"best_objective":22},{"shots":128,"best_objective":22},{"shots":512,"best_objective":22}]},"component_metrics":[{"exact_objective":11,"optimal_count":1,"combinations":12,"optimal_probability":0.019986144271301652,"feasible_probability":0.7520173153478277,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.3333333333333333,"shots_for_95_percent":149,"hit_curve":[{"shots":8,"quantum":0.14914074456133877,"uniform":0.5014697532613109},{"shots":16,"quantum":0.276038527434367,"uniform":0.7514675930866618},{"shots":32,"quantum":0.47587978624060023,"uniform":0.9382316427138628},{"shots":64,"quantum":0.7252980015288011,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9245388120359295,"uniform":0.9999854432572823},{"shots":512,"quantum":0.9999675739124039,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":15},{"shots":16,"best_objective":20},{"shots":32,"best_objective":11},{"shots":64,"best_objective":15},{"shots":128,"best_objective":11},{"shots":512,"best_objective":11}]}],"reduced_single_joint_draw_p_opt":0.019986144271301652,"diagnostic_seconds":0.0037809149944223464}
+{"instance":"n4-s0-r0.json","seed":7,"direct":{"status":"feasible","best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":11,"end":14,"reserved_end":14,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":12,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":22},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.4616018435942868,2.033836119431573],"expected_energy":55.97363093735158,"initial_expected_energy":74.07225106980184,"history":[74.07225106980184,71.98710839214908,74.64744563569049,75.7235269654505,86.02531206259633,68.95452039053777,69.60550143874555,68.94609885689543,69.62976401190377,68.84045968056009,69.21392223159548,68.80922188873653,68.81451806871823,68.80672070251342,68.80567850529437,68.8099057902338,68.80261154219149,68.79980495942536,68.79634806094236,68.81059469060713,68.79325047054579,68.79046374329317,68.78728782456461,68.78724095336966,68.7817910234653,68.77858386294663,68.76801652176137,68.75817912598356,68.73422590886565,68.79277158840755,68.76204598871402,68.74178753820131,68.73712844704619,68.73221326330575,68.73952436727606,68.72648045375564,68.72096546426096,68.70975301679519,68.68677791766368,68.6527479077398,68.78124587894412,69.01036909061483,68.63566114878199,68.6276415024237,68.61630673120254,68.609144271209,68.6272778138709,68.59350061837044,68.58257506677207,68.57450795861993,68.57755926279722,68.57055589066596,68.56692590653186,68.56082640107167,68.56323036933435,68.55311142717339,68.54988910222457,68.5595557555927,68.54504264813627,68.54042494384692,74.2429564174495,77.45617973601698,77.9714921381759,68.69168617473085,68.46135593950396,62.22184080461709,57.407354400270606,75.00664894388632,68.78140755190451,70.4361445433595,60.78503976718719,59.76219057135701,57.13078822859976,57.047689661697675,57.0890823808229,57.20899219175416,57.038738504631766,57.000681388802604,57.004312404271445,56.99036764599028,56.98270742342821,56.98147547589384,57.00640395915261,56.960879455435695,56.93143964390376,56.90247022697098,56.842562794831835,56.808941034151054,56.74269794508655,56.72143934388501,56.57753804096326,57.14206253933408,56.660481451451304,56.625594040435075,56.60023704031771,56.55139229230106,56.56967460275281,56.53587327081634,56.52382613530651,56.53060785789573,56.509158663407376,56.49871257418214,56.503799711974196,56.48388705855618,56.468007365426985,56.43749395857353,56.40278045554721,56.33021429568103,56.301943953286,56.22054405443261,56.202205002648164,56.02429777611878,56.658131364818054,56.137489646505145,56.07179035232209,56.047786589122026,55.99957614302485,56.025591377884695,55.99107743760823,55.97363093735158],"feasible_probability":0.37981926619301565,"one_hot_probability":1.0,"sampled_feasible_fraction":0.39453125,"counts":{"0100010011":20,"0100010101":6,"0100011001":33,"0100100011":2,"0100100101":1,"0100101001":3,"0101000011":24,"0101000101":7,"0101001001":107,"0110000011":12,"0110000101":6,"0110001001":42,"1000010011":11,"1000010101":2,"1000011001":47,"1000100011":2,"1000100101":1,"1000101001":6,"1001000011":16,"1001000101":5,"1001001001":87,"1010000011":10,"1010000101":1,"1010001001":61},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1405795510072494},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":11,"removals":[{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,6,7,8,9]],"components":[{"qubits":7,"penalty":30,"objective_bound":29,"offset":90,"linear":[-30,-20,-21,-19,-23,-30,-22],"quadratic":[[0,1,60],[0,2,60],[1,2,60],[1,4,30],[1,5,30],[3,4,60],[3,6,30],[4,5,30],[5,6,60]],"domains":[[0,1,2],[3,4],[5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":6,"cost":0},{"index":1,"task":"t1","resource":"r0","start":11,"cost":10},{"index":2,"task":"t1","resource":"r1","start":9,"cost":9},{"index":3,"task":"t2","resource":"r1","start":11,"cost":11},{"index":4,"task":"t2","resource":"r0","start":9,"cost":7},{"index":5,"task":"t3","resource":"r0","start":11,"cost":0},{"index":6,"task":"t3","resource":"r1","start":13,"cost":8}],"conflicts":[{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource","group"]},{"i":3,"j":6,"reasons":["resource"]},{"i":4,"j":5,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":11,"end":14,"reserved_end":14,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":12,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":22},"components":[{"status":"feasible","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r1","start":11,"end":14,"reserved_end":14,"changed":true},{"variable":5,"task":"t3","group":"g1","resource":"r0","start":11,"end":12,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,0,1,0],"qubo_energy":11},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9910803278630754,1.3502065502575167],"expected_energy":28.1974096520512,"initial_expected_energy":31.85895085391457,"history":[31.85895085391457,38.53914400934005,47.32407641944852,50.96386812087989,51.07410302656972,30.759453013794655,33.5066842854708,31.47724693211122,30.34773470593592,30.034932632067893,31.19368948237173,29.701779632849085,29.681845203043057,29.520868249960092,29.32244697440994,29.17758864991214,29.492978665819102,29.092074900104834,29.03393486995722,29.140664272351334,28.996829025781864,28.963758581885585,28.900840582299885,28.834826057581438,28.719220689061657,28.693023866312892,28.572421258541393,28.64050733177142,28.552781118484294,28.64130406621341,28.52601703535073,28.502954290889804,28.461492053724292,28.408786085751245,28.367842288198375,28.320045734610794,28.34314295230501,28.326961761160824,28.32522113912627,28.340390698839506,28.2928063802213,28.28412054670651,28.300658955310098,28.272705627961503,28.26772613274305,28.25495221828007,28.25374641463454,28.235906964122037,28.23568714196595,28.220124550410205,28.214048709267413,28.1980698007321,28.22222058271459,28.2321727685869,28.204815815555712,28.203823585695766,28.19900174887004,28.197579135233557,28.1974096520512,28.1995408190714,31.183601156651058,38.13369193633066,48.989678587845574,50.52989348094803,49.610734709675306,33.64095052046723,31.027877371290938,33.09006717268119,30.490675140796093,31.00609639893048,30.905335696045938,30.38376285011762,30.468837136737072,30.358911979656337,30.30992696186916,30.232940992674415,30.377387691211986,30.143947925703976,30.05170368412802,29.91905575428875,29.72456509083154,29.346240363226865,28.820623957795014,28.502560127443658,28.721694652445304,29.452968260311938,28.57213336612321,28.43206379406587,28.451432825493185,28.51300400258637,28.43291604684091,28.40889098192032,28.396090704611776,28.378711126714126,28.36239692632945,28.337733180084562,28.299711076915866,28.24473069845979,28.249615789004984,28.394184070239895,28.275665004052016,28.2504710384233,28.243014347224367,28.230816336162007,28.240896243626338,28.2338211191323,28.229041660819874,28.23382019932899,28.227931250953947,28.226058959857706,28.224173214322732,28.22217787424161,28.21819885300234,28.21520008351105,28.208875096897216,28.198169233065812,28.262086629612167,28.22799475206778,28.2022225850431,28.199642561479607],"feasible_probability":0.6610971223274503,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.623046875,"counts":{"0101001":117,"0101010":37,"0101100":41,"0110001":10,"0110010":4,"0110100":33,"1001001":21,"1001010":36,"1001100":9,"1010001":116,"1010010":43,"1010100":45},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11823639800422825}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.6610971223274503,"total_shots":512,"runtime_seconds":0.11843274701095652},"direct_metrics":{"exact_objective":22,"optimal_count":1,"combinations":24,"optimal_probability":0.05534993619565372,"feasible_probability":0.37981926619301565,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":53,"hit_curve":[{"shots":8,"quantum":0.3658855265553381,"uniform":0.2885690504976606},{"shots":16,"quantum":0.5978988345679992,"uniform":0.49386600409019976},{"shots":32,"quantum":0.8383146527582268,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9738578484873072,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9993165879142875,"uniform":0.9956935037719361},{"shots":512,"quantum":0.9999999999997818,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":31},{"shots":16,"best_objective":22},{"shots":32,"best_objective":22},{"shots":64,"best_objective":22},{"shots":128,"best_objective":22},{"shots":512,"best_objective":22}]},"component_metrics":[{"exact_objective":11,"optimal_count":1,"combinations":12,"optimal_probability":0.2429807642651741,"feasible_probability":0.6610971223274503,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.3333333333333333,"shots_for_95_percent":11,"hit_curve":[{"shots":8,"quantum":0.8921412656230749,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9883664934186079,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9998646615246207,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999816834971,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999999997,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":11},{"shots":16,"best_objective":11},{"shots":32,"best_objective":11},{"shots":64,"best_objective":11},{"shots":128,"best_objective":11},{"shots":512,"best_objective":11}]}],"reduced_single_joint_draw_p_opt":0.2429807642651741,"diagnostic_seconds":0.003772809010115452}
+{"instance":"n4-s0-r0.json","seed":8,"direct":{"status":"feasible","best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":11,"end":14,"reserved_end":14,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":12,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":22},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3685293894316497,2.004739520478985],"expected_energy":53.55977508270127,"initial_expected_energy":61.34310778036273,"history":[61.34310778036273,63.24189819374509,67.50999928888058,80.19623649569982,59.45473134559457,66.4575510632155,60.21095535552871,58.7469009321336,59.43545709717411,59.138466943447355,58.646128829614014,58.62427845190042,59.02481617580807,58.51528741919195,58.44288610214194,58.38775636192675,58.35926471134333,58.254833107193996,58.91941486291283,58.34157697022282,58.349999241047826,58.27673888093305,58.228542726606904,58.20952830321963,58.22878191119707,58.20111139514919,58.19241537623168,58.178628074577034,58.151878730536666,58.119150527783276,58.057112228446584,57.970351523921465,58.37165177334434,58.24187813772634,57.957490263341015,57.95566530473123,57.944882294198116,57.925121277304456,57.89533755417526,58.20981050174393,57.967168894747275,57.9837133068563,57.87898099636516,57.881070735361575,57.88228224470946,57.87864947234512,57.881596126578664,57.877356561912464,57.87620553057532,57.874234796056,57.8708022006723,57.87689966527719,57.869215845399445,57.86513897340777,57.85815004578119,57.84542517714898,57.88373167467469,57.87828765098874,57.85835172883883,57.84457300269874,54.233191666458396,55.59142516648623,70.99195162950002,67.10745012125481,61.53798062228867,59.67131996139482,54.18001652061315,53.57196529799475,54.18763288003916,53.57503643795396,53.58230743509138,53.60753180496132,53.57327456333606,53.57863156930857,53.57491164473625,53.573334049741575,53.572234292374084,53.57183930930667,53.57165724851468,53.57162327284314,53.57133722537535,53.57107713038622,53.57060124388729,53.569654665311745,53.56806007657356,53.570091650427585,53.57246856125834,53.56755936268753,53.568063236396085,53.56732196176128,53.56770392876685,53.56706604906101,53.56686042601818,53.56649223816891,53.56667319908853,53.56629770998392,53.56662400517554,53.56608308866841,53.565888983103676,53.56551800709953,53.56482667327916,53.563814565075965,53.5628220297929,53.56200994640647,53.57141252763621,53.563064136112736,53.56190945468575,53.56429504023946,53.56134658505803,53.56122689710955,53.56099170192661,53.5608119685386,53.56149003760173,53.5607717355537,53.560653792639094,53.56043292439749,53.56008917173991,53.55977508270127,53.560505294939304,53.561751828177776],"feasible_probability":0.4633680431311412,"one_hot_probability":1.0,"sampled_feasible_fraction":0.462890625,"counts":{"0100010011":9,"0100010101":2,"0100011001":40,"0100100011":3,"0100100101":6,"0100101001":12,"0101000011":21,"0101000101":4,"0101001001":103,"0110000011":17,"0110000101":7,"0110001001":41,"1000010011":5,"1000011001":37,"1000100011":1,"1000100101":1,"1000101001":11,"1001000011":12,"1001000101":1,"1001001001":55,"1010000011":10,"1010000101":11,"1010001001":103},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.14536623800813686},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":11,"removals":[{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,6,7,8,9]],"components":[{"qubits":7,"penalty":30,"objective_bound":29,"offset":90,"linear":[-30,-20,-21,-19,-23,-30,-22],"quadratic":[[0,1,60],[0,2,60],[1,2,60],[1,4,30],[1,5,30],[3,4,60],[3,6,30],[4,5,30],[5,6,60]],"domains":[[0,1,2],[3,4],[5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":6,"cost":0},{"index":1,"task":"t1","resource":"r0","start":11,"cost":10},{"index":2,"task":"t1","resource":"r1","start":9,"cost":9},{"index":3,"task":"t2","resource":"r1","start":11,"cost":11},{"index":4,"task":"t2","resource":"r0","start":9,"cost":7},{"index":5,"task":"t3","resource":"r0","start":11,"cost":0},{"index":6,"task":"t3","resource":"r1","start":13,"cost":8}],"conflicts":[{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource","group"]},{"i":3,"j":6,"reasons":["resource"]},{"i":4,"j":5,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":11,"end":14,"reserved_end":14,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":12,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":22},"components":[{"status":"feasible","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r1","start":11,"end":14,"reserved_end":14,"changed":true},{"variable":5,"task":"t3","group":"g1","resource":"r0","start":11,"end":12,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,0,1,0],"qubo_energy":11},"seed":3257320810,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0798096520341272,2.1501074104085816],"expected_energy":28.05702169659594,"initial_expected_energy":71.06676726616797,"history":[71.06676726616797,61.25402220716309,42.163959548742476,48.67897711226669,42.45268774350376,48.60731878354252,42.41945023329219,41.97388058513613,42.23095558123163,42.17810165922996,41.99730414940696,41.94770504784749,41.905111440843825,41.86397970856425,41.90129156333799,41.85499875013778,41.840718876281514,41.822170306578066,41.785407695923155,41.7146808634307,41.641468960756164,41.65869002030043,41.77855880161273,41.68743312419626,41.58524195062583,41.60717169627665,41.56784426236671,41.5527270995984,41.538714180221454,41.5032494877142,41.51072051878921,41.50631909274004,41.49824059704991,41.495631166922955,41.52144841241118,41.477185271644885,41.4651915886754,41.45150976479418,41.426780305938884,41.45504675876069,41.42328817914155,41.40556062902894,41.37554593155868,41.33424228100618,41.29787812631178,41.25377477509315,41.177044776342036,41.2622498069706,41.73836124814946,41.29374945825503,41.17029202414592,41.21569839237958,41.16888872994067,41.15967878842589,41.14747463093905,41.13341777343207,41.11355390755715,41.356247929914616,41.2855317294797,41.12585341579579,38.638436509079966,41.91764203052997,37.63949585642576,28.113817264247967,39.98242349059323,62.023333469488975,33.64796293462143,29.632107457442952,28.9280483404645,28.194453359723326,28.80256064756064,28.420674925623487,28.13201470298382,28.12456340949977,28.119290251355146,28.116054659512965,28.11714429873114,28.114913831530778,28.111719106414252,28.108641783158927,28.10170004846943,28.08904107512391,28.11932482271863,28.123503109609956,28.09344261309843,28.090529671556364,28.091591717385626,28.08768000240676,28.086263153572837,28.083999347556208,28.080970690663626,28.074677913651954,28.073784271122936,28.065165588513025,28.100668286000694,28.073419768396754,28.064405944211114,28.068464541886648,28.06384886394221,28.06317801699334,28.063024198301683,28.069905830760995,28.06137360017506,28.060787944872715,28.060201273089092,28.0609021484238,28.059765453064678,28.05923942268493,28.059355782507346,28.05876202894393,28.05841731745094,28.05965652117259,28.058028226924584,28.057768806256355,28.057539793139618,28.057592492377225,28.057366010197075,28.05733260421274,28.057770805497555,28.05702169659594],"feasible_probability":0.7520884812032376,"one_hot_probability":1.0,"sampled_feasible_fraction":0.74609375,"counts":{"0101001":10,"0101010":16,"0101100":164,"0110001":42,"0110010":1,"0110100":11,"1001001":18,"1001010":6,"1001100":17,"1010001":4,"1010010":19,"1010100":204},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11885365900525358}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.7520884812032376,"total_shots":512,"runtime_seconds":0.11906988100963645},"direct_metrics":{"exact_objective":22,"optimal_count":1,"combinations":24,"optimal_probability":0.040034472616669446,"feasible_probability":0.4633680431311412,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":74,"hit_curve":[{"shots":8,"quantum":0.2788176298593434,"uniform":0.2885690504976606},{"shots":16,"quantum":0.479895988998305,"uniform":0.49386600409019976},{"shots":32,"quantum":0.7294918177399488,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9268253233303628,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9946454666942941,"uniform":0.9956935037719361},{"shots":512,"quantum":0.9999999991779722,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.8041124150158794e-16,"independent_samples":[{"shots":8,"best_objective":31},{"shots":16,"best_objective":22},{"shots":32,"best_objective":22},{"shots":64,"best_objective":22},{"shots":128,"best_objective":22},{"shots":512,"best_objective":22}]},"component_metrics":[{"exact_objective":11,"optimal_count":1,"combinations":12,"optimal_probability":0.019429036446802505,"feasible_probability":0.7520884812032376,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.3333333333333333,"shots_for_95_percent":153,"hit_curve":[{"shots":8,"quantum":0.14526353772281572,"uniform":0.5014697532613109},{"shots":16,"quantum":0.26942558005388356,"uniform":0.7514675930866618},{"shots":32,"quantum":0.46626101692039545,"uniform":0.9382316427138628},{"shots":64,"quantum":0.7151226979411496,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9188449227716705,"uniform":0.9999854432572823},{"shots":512,"quantum":0.9999566226734911,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.7755575615628914e-16,"independent_samples":[{"shots":8,"best_objective":20},{"shots":16,"best_objective":15},{"shots":32,"best_objective":20},{"shots":64,"best_objective":11},{"shots":128,"best_objective":11},{"shots":512,"best_objective":11}]}],"reduced_single_joint_draw_p_opt":0.019429036446802505,"diagnostic_seconds":0.004703397004050203}
+{"instance":"n4-s0-r0.json","seed":9,"direct":{"status":"feasible","best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":11,"end":14,"reserved_end":14,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":12,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":22},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4705289338383047,1.9989979979097923],"expected_energy":53.62772294727845,"initial_expected_energy":65.22128267423639,"history":[65.22128267423639,65.72750500574244,57.01782865408293,70.74336432527966,63.92548216978959,59.3127074730155,54.61066493091823,56.338250369563006,54.86003030665986,54.86616618947659,54.476191681100666,54.36533475165788,55.333942168801855,54.37726119742271,54.38539957377476,54.414179027290594,54.39212306646039,54.3164420328215,54.24984872362744,54.214405360556356,54.24261717837555,54.199813799937786,54.1902539801888,54.1744128005064,54.14770350245634,54.09206343466181,53.99285831056682,54.0338738766755,54.223249663820056,53.97750289962262,54.145668338066926,53.961578336632925,53.947644134967575,53.92097693817351,53.8761607349283,53.80110910135231,53.874040875476666,54.25553487161518,53.82438119409022,53.796929400664496,53.84702396179567,53.782040652073576,53.77545373370492,53.76588959225938,53.757148789342075,53.75191596347207,53.73062508668239,53.734298443223366,53.72718163788973,53.73745735630311,53.71821580309864,53.71085785493316,53.695357405338676,53.66734479572505,53.83125504309389,53.73657326104484,53.69476464200312,53.66354547307088,53.66517628747342,53.65929230584311,68.06222071809256,68.58603502139182,64.22830059468846,63.79287946288609,62.45726033592034,57.014013048375915,59.121892072840325,66.52331660873159,67.44967644336454,55.768121829058956,54.22230201957129,56.607116607985816,54.73603698622437,54.73400104312396,53.96675368777918,54.0999472606965,54.22538617773876,53.90612793838831,53.930972200567766,53.900305664959845,53.889675064348715,53.878171186980175,53.866224067278104,53.83919846322243,53.83138287543472,53.80310730452135,53.79484931307533,53.76851129618767,53.76612337339022,53.7266678488848,53.74682050030742,53.746807464599485,53.733091961345394,53.72210774182791,53.734776819841386,53.71287113690419,53.70502128195199,53.705935416993036,53.69990425644407,53.70451370222671,53.70517735773748,53.695105869442564,53.705855144112505,53.690540241263875,53.68636810972493,53.6786863604891,53.66692061680399,53.67295976819253,53.69070186442703,53.66046981695186,53.6564827740158,53.66935869600805,53.652181002195796,53.649058393900745,53.6427137076446,53.63568853416312,53.62772294727845,53.628412333917254,53.64393345607836,53.62809612572214],"feasible_probability":0.4627999637065199,"one_hot_probability":1.0,"sampled_feasible_fraction":0.466796875,"counts":{"0100010011":7,"0100010101":7,"0100011001":35,"0100100011":5,"0100101001":20,"0101000011":26,"0101000101":8,"0101001001":117,"0110000011":7,"0110000101":6,"0110001001":41,"1000010011":2,"1000011001":30,"1000100011":7,"1000101001":8,"1001000011":8,"1001000101":2,"1001001001":66,"1010000011":7,"1010000101":14,"1010001001":89},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.14455468399683014},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":11,"removals":[{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[1,2,3,6,7,8,9]],"components":[{"qubits":7,"penalty":30,"objective_bound":29,"offset":90,"linear":[-30,-20,-21,-19,-23,-30,-22],"quadratic":[[0,1,60],[0,2,60],[1,2,60],[1,4,30],[1,5,30],[3,4,60],[3,6,30],[4,5,30],[5,6,60]],"domains":[[0,1,2],[3,4],[5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":6,"cost":0},{"index":1,"task":"t1","resource":"r0","start":11,"cost":10},{"index":2,"task":"t1","resource":"r1","start":9,"cost":9},{"index":3,"task":"t2","resource":"r1","start":11,"cost":11},{"index":4,"task":"t2","resource":"r0","start":9,"cost":7},{"index":5,"task":"t3","resource":"r0","start":11,"cost":0},{"index":6,"task":"t3","resource":"r1","start":13,"cost":8}],"conflicts":[{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":5,"reasons":["resource","group"]},{"i":3,"j":6,"reasons":["resource"]},{"i":4,"j":5,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":11,"end":14,"reserved_end":14,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":12,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":22},"components":[{"status":"feasible","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r1","start":11,"end":14,"reserved_end":14,"changed":true},{"variable":5,"task":"t3","group":"g1","resource":"r0","start":11,"end":12,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,0,1,0],"qubo_energy":11},"seed":747784396,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0082062748408551,1.3486205430161131],"expected_energy":28.216488677966332,"initial_expected_energy":41.686982430965735,"history":[41.686982430965735,45.87368242844876,43.88493043640954,39.873987672928884,43.08623899911754,32.822132383540335,54.85520225299436,42.42426573527277,32.51176786821819,41.614721233188945,31.653465499093393,31.116615691667814,30.854100527560192,32.66562062733121,30.43039363120276,30.316253844930568,30.03167289573597,29.59023398885227,28.94599782303724,29.209734732178156,30.206576882883574,29.082497218757915,28.90305722958282,28.845371594455603,28.829298122333473,29.05160641600163,28.81617286799464,28.75508049980392,28.70962598382153,28.650605196819292,28.61507537902186,28.570485711806754,28.526507262314766,28.694749428464384,28.46697750318593,28.453460074851122,28.40768623809566,28.37017064167769,28.311416621162458,28.32887910743527,28.387025414146443,28.298499144453892,28.30697630054157,28.286569333482397,28.285020790386817,28.26950416402186,28.265422188597924,28.239228423039712,28.28898690210582,28.261995750213803,28.24447647334446,28.25025132965464,28.236754046342178,28.241433611236538,28.234435416618716,28.232271482710694,28.228296379467135,28.2247723912686,28.216488677966332,28.216574730381332,45.62938051703527,44.64797507262523,45.58178659054811,44.41590094717688,45.658666384911385,40.50081700606291,45.66756516860271,47.29689607966165,40.803684941765944,40.64455705527497,40.89252455969124,40.10790991887637,40.15912648216161,40.20812150254151,40.09206473847315,40.140057872545,40.080024715377476,40.056287075786955,40.0125875938639,39.98188976401825,39.89571629836041,39.82362409525219,39.69533378384404,39.60483348142242,39.66895443340487,40.02502376687553,39.65550043240729,39.51500802540997,39.50143603490761,39.59053464397516,39.47731094166504,39.4604170892089,39.44719785146718,39.454450585526615,39.452565663928475,39.44416575975701,39.45082020873297,39.43814406539822,39.43296385528102,39.424653346689965,39.41647395112295,39.40557816791487,39.448606283835176,39.41708445337958,39.40484342637684,39.410108329767176,39.40565276085434,39.405535332008164,39.404432817795566,39.404607815708644,39.40437123749884,39.40421956732018,39.403924348981924,39.403504341502256,39.40308209514697,39.40273459354133,39.40418084464666,39.4026194150715,39.4024308172051,39.40209531776504],"feasible_probability":0.6616138598574611,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.64453125,"counts":{"0101001":125,"0101010":35,"0101100":51,"0110001":9,"0110010":5,"0110100":38,"1001001":20,"1001010":32,"1001100":6,"1010001":113,"1010010":37,"1010100":41},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11019727498933207}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.6616138598574611,"total_shots":512,"runtime_seconds":0.11039249500026926},"direct_metrics":{"exact_objective":22,"optimal_count":1,"combinations":24,"optimal_probability":0.04588791295442904,"feasible_probability":0.4627999637065199,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":64,"hit_curve":[{"shots":8,"quantum":0.3132555133309618,"uniform":0.2885690504976606},{"shots":16,"quantum":0.5283820100296792,"uniform":0.49386600409019976},{"shots":32,"quantum":0.7775764715363545,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9505277739857818,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9975524988531981,"uniform":0.9956935037719361},{"shots":512,"quantum":0.9999999999641168,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":9.71445146547012e-17,"independent_samples":[{"shots":8,"best_objective":22},{"shots":16,"best_objective":22},{"shots":32,"best_objective":31},{"shots":64,"best_objective":22},{"shots":128,"best_objective":22},{"shots":512,"best_objective":22}]},"component_metrics":[{"exact_objective":11,"optimal_count":1,"combinations":12,"optimal_probability":0.2434873293615476,"feasible_probability":0.6616138598574611,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.3333333333333333,"shots_for_95_percent":11,"hit_curve":[{"shots":8,"quantum":0.8927173109858272,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9884904246378883,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9998675296749838,"uniform":0.9382316427138628},{"shots":64,"quantum":0.999999982451613,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999999997,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":11},{"shots":16,"best_objective":11},{"shots":32,"best_objective":11},{"shots":64,"best_objective":11},{"shots":128,"best_objective":11},{"shots":512,"best_objective":11}]}],"reduced_single_joint_draw_p_opt":0.2434873293615476,"diagnostic_seconds":0.004101917002117261}
+{"instance":"n4-s0-r1.json","seed":0,"direct":{"status":"feasible","best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":11,"end":14,"reserved_end":16,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":18},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.55257033621503,1.0261993928209734],"expected_energy":46.326219905447786,"initial_expected_energy":47.560974670791026,"history":[47.560974670791026,46.74959071815373,61.133674067654056,71.48564408615883,56.441374803427124,53.71037322081557,46.71253702049735,46.456921198790006,47.710831589299744,46.478324047982014,46.64218438718309,46.45031430470446,46.40327294977722,46.37223460560492,46.36112824582585,46.35430336624891,46.35680345615677,46.35639860547842,46.35447643069011,46.3536017720902,46.35291943527041,46.351578664704384,46.34887769679308,46.34369259145981,46.383158815929164,46.376441123340136,46.342464986284824,46.351567439920466,46.343428243008866,46.342608053872006,46.34259810241248,46.34228225599845,46.34222442340883,46.342555975001844,46.34194044160693,46.34168763408432,46.34121490066225,46.34022821078357,46.338306473804366,46.33454749768271,46.34236292585676,46.354209997380146,46.33593586046497,46.33721294526096,46.33552191178472,46.33454527502322,46.33405106208815,46.33322100237267,46.33139363269238,46.32849129974549,46.3570935251427,46.35656315271843,46.32991514939472,46.328317906393465,46.33140445283905,46.32753449768781,46.32728336243305,46.32684436229145,46.326450147173084,46.326219905447786,68.51606540809362,68.54262270288078,54.74476434966647,56.99543610484017,57.50179837880397,57.680220587446186,51.172345943731116,51.410594572835194,51.017836023391325,51.09171586221599,51.488483721656344,50.49523943995064,50.57456791058928,50.719094214040226,50.52101695579115,50.38249237378187,50.169187370097156,49.85492660930267,49.5865066983697,48.64860725795211,49.579354036654806,50.40253722642838,48.81624275284632,48.714610447540814,48.68384191102393,48.59233034992382,48.575976819508085,48.68353550207733,48.568826164917354,48.53236468933361,48.47106995655812,48.359879903980065,48.28489423469465,48.05506560915846,48.067114575104995,48.02273731467589,48.13705477970498,48.054043822644104,47.98072313911001,48.00703683851037,47.957950243967815,47.93717000451326,47.90611861387213,47.94813471391139,47.86849100621062,47.875659621591566,47.848892472793466,47.83295393468363,47.819149455995536,47.89190998782502,47.79195435134565,47.768857851303494,47.730162888730014,47.65421223849437,47.5729966797122,47.50327900364162,47.47084934012626,48.30628893848161,47.3075437888799,47.3175139568769],"feasible_probability":0.2114639560753428,"one_hot_probability":1.0,"sampled_feasible_fraction":0.21484375,"counts":{"0100010011":63,"0100010101":37,"0100011001":1,"0100100011":71,"0100100101":13,"0100101001":10,"0101000011":38,"0101000101":30,"0101001001":35,"0110000011":2,"0110000101":17,"0110001001":6,"1000010011":43,"1000010101":30,"1000011001":1,"1000100011":26,"1000100101":6,"1000101001":8,"1001000011":28,"1001000101":14,"1001001001":14,"1010000011":2,"1010000101":14,"1010001001":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.14628121399437077},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0,6],"fixed_cost":18,"removals":[{"variable":3,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[2,2],"max_component_qubits":2,"component_to_original":[[1,2],[8,9]],"components":[{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":5,"cost":7}],"conflicts":[]},{"qubits":2,"penalty":4,"objective_bound":3,"offset":4,"linear":[-4,-1],"quadratic":[[0,1,8]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":11,"cost":0},{"index":1,"task":"t3","resource":"r1","start":11,"cost":3}],"conflicts":[]}]},"best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":11,"end":14,"reserved_end":16,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":18},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":6,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":3757552657,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7968815601992114,1.1779080836262465],"expected_energy":4.8094377859408006e-06,"initial_expected_energy":6.714866041004643,"history":[6.714866041004643,5.932387483721171,3.0039654618262825,1.6329219870831246,2.977657002603741,4.803919256391352,1.4442276557061575,1.3024997498608832,1.5678755951207914,1.1777208024151562,0.9922219904029013,0.934017762650426,0.8338765378852826,0.7860715963560414,0.6814641510283184,0.5423648946201254,0.3838227425878739,0.19210489687214646,0.056000505046490456,0.2555952754791305,0.15026134190498358,0.0824932897805766,0.02908342326975777,0.0733108450295887,0.09234097081208259,0.019573242053156702,0.03545369887688236,0.014228902088726004,0.01382769596858716,0.016765144988089564,0.014245495479518658,0.011749757429981182,0.010945053024855305,0.012308653330973347,0.009829667073773508,0.009112982432533362,0.007951230753026898,0.007186306328929361,0.0062341557314000515,0.005408588934764946,0.00617666589220987,0.005134027607864642,0.006788597427890303,0.0042170711325865765,0.0035466954150817206,0.002405432871143385,0.0010975546213305475,0.002786591460975698,0.005875583821203359,0.0005769685046906498,0.0008009366523021548,0.0012483438663781251,0.0005829848652718257,0.00063171182360317,0.0005925697266403134,0.0005455362367848334,0.0004935870682898999,0.00039884809637778784,0.0004132430367952401,0.0004115864103778992,4.685152227765449,5.260698842436202,1.4692020014492324,3.8942936340654284,2.307620490243168,1.5393471606045783,1.2573149230759841,1.558503028716244,1.1349208493202636,1.022961602131014,0.8901391691685548,0.6809971490277539,0.5041549614678963,0.4653061921444039,0.23244111561399727,0.08091322747113128,0.017475729801162236,0.4488823111593946,0.4075833129097442,0.01694819842683743,0.013351959371506792,0.031707309249552826,0.03158624700326794,0.011586272732715345,0.014792644794169758,0.01173830363387946,0.010516339631207329,0.009858270101549122,0.016472167221127744,0.008162512242606695,0.007240795477717517,0.006392439305266232,0.006646517289324147,0.005947207200621854,0.00685140267760702,0.006504424129471168,0.005477689952084282,0.0063562222360833975,0.005024942734220789,0.0049476626793615065,0.004518116284334094,0.004123692563346546,0.0034080808347851464,0.00253764055965802,0.0019892410892025686,0.0010317471092124097,2.4233265510656677e-05,0.006662948233746296,0.0027945917481857377,0.0006525291876630592,1.5883972714795738e-05,0.00023089483066822077,1.2686282770144284e-05,1.5648884422630075e-05,2.538686216919199e-05,8.217462310606633e-06,6.7966492437427855e-06,4.8094377859408006e-06,9.171373568138126e-06,7.726889963316014e-06],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08932326300418936},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":673228719,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.0978362077037684,1.1782193140459634],"expected_energy":5.174315249544603e-06,"initial_expected_energy":0.48292374744461164,"history":[0.48292374744461164,0.4276277901992126,2.8976171358938427,0.9944304842661321,1.7937696247889625,0.4063081405044525,0.05250747611211303,0.05338095052341878,0.060369286799743155,0.09643242044900388,0.007891392768432674,0.021684332572907576,0.008930054060586775,0.010264982483837708,0.005782743978876766,0.007475506514441371,0.006030733482017734,0.005766195402315939,0.005164029470567308,0.004451374956619518,0.003583687458062283,0.0021643327680061727,0.005815964292439181,0.006422339086375025,0.003060937700191564,0.0020289325504431605,0.0023402138906833602,0.0019004353460068514,0.0022675756109795196,0.0017389510193088435,0.001627859313994544,0.0014970562785911027,0.0012572536258348423,0.0011043280166058273,0.0008573595328842407,0.0014592988173077425,0.0014202129138927919,0.000932033308539195,0.0006715863293743,0.0006474851877897069,0.0005698023154443844,0.0005203901138614511,0.0006408385744112054,0.00047383545404677244,0.00044567528849150475,0.0004118541026636228,0.00035299707359145576,0.00029015081634710784,0.00026860039194686035,0.00020799773646105508,9.19133962467154e-05,5.759701082356402e-05,0.0006456745113892612,0.0005845723084340212,8.577237745324527e-06,8.796567761706622e-05,5.174315249544603e-06,2.007939369715018e-05,6.147941398766274e-06,5.494894523387871e-06,1.7514871030206574,1.8376206154350185,2.272257696412267,0.5838146406204692,1.9682527403425012,1.1316091523724034,1.1187058738126248,0.5298798159486685,0.5325691332163763,0.5487732697020888,0.4881625913569425,0.44779617276947004,0.6298061971404436,0.3978230785972757,0.36268714150583514,0.3276900321511755,0.2813687541034435,0.23188534925110377,0.20824451375652944,0.4301342632630442,0.1615265923622367,0.1546143134807472,0.12556236070907767,0.08984657674867098,0.057244529080954634,0.010754953807089289,0.21385368783800368,0.13083993280205156,0.0076359905731954916,0.03687169217860562,0.03423323743961677,0.014369061527747843,0.00859651582333294,0.007441259429326631,0.008310163597227338,0.006823285299151644,0.006321593424901334,0.005332090163635249,0.003945722140914413,0.004035538849404382,0.004745168404838635,0.004343285660967216,0.0035362969757465413,0.0038885560870057304,0.0031605208924562105,0.0029759108490396433,0.002576976304139703,0.0022278811964351612,0.0016381460875356589,0.001671090854559056,0.0015535593190273843,0.0020515835140197678,0.0017220796539957378,0.0014626852733021607,0.0012145911551855319,0.001016125210900231,0.0011559060062232137,0.0009647076367582534,0.0007575417541361753,0.00041816349777254317],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07992902399564628}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.16949326101166662},"direct_metrics":{"exact_objective":18,"optimal_count":1,"combinations":24,"optimal_probability":0.08089622814059329,"feasible_probability":0.2114639560753428,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":36,"hit_curve":[{"shots":8,"quantum":0.4907671788730304,"uniform":0.2885690504976606},{"shots":16,"quantum":0.7406819338870678,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9327541405874489,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9954779943918675,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999795514652801,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":25},{"shots":16,"best_objective":18},{"shots":32,"best_objective":18},{"shots":64,"best_objective":18},{"shots":128,"best_objective":18},{"shots":512,"best_objective":18}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999993129374591,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999982752282501,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.120314166152246e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.9999975881668943,"diagnostic_seconds":0.004044408997287974}
+{"instance":"n4-s0-r1.json","seed":1,"direct":{"status":"feasible","best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":11,"end":14,"reserved_end":16,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":18},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.131873554963645,1.0333869446755701],"expected_energy":46.737690360181446,"initial_expected_energy":69.61643630175915,"history":[69.61643630175915,70.6078113117423,51.83567784504561,59.85231079168723,55.42086857455597,52.27237352101348,51.5545536761871,54.39032246883994,50.77783024790611,50.206618372256415,49.56056234310976,48.88886056126503,48.38368698695768,49.78069692018742,48.29846206390597,48.09742224931424,47.951419170836,51.97106520356614,47.53885543894637,48.10702480787852,47.444720173918725,48.047277408833736,47.48952232257571,47.449699286672306,47.45249715367872,47.43370763491004,47.42948994457245,47.501065661502054,47.426395140644054,47.40145563353166,47.383823374284674,47.35158961319264,47.32913780162984,47.29651636736982,47.240362482263635,47.134658193810424,46.96920956570915,48.62987918368085,48.8283599963417,46.9329834327493,47.11349672270902,47.01709225455431,46.90906527100001,46.92145975257891,46.97260041107048,46.90656481436693,46.89084137132642,46.88696636349595,46.89999528812148,46.87648903111718,46.85684342218469,46.8232744684257,46.83809902897438,46.8677016909879,46.85577785052985,46.830593606878196,46.8160966226632,46.808089349860005,46.80752064944975,46.79472281539713,54.124242826458456,49.3409013008395,58.42713711099927,70.581142777809,53.22890279210017,53.07212950540442,49.720513539471995,48.953780760084015,48.85116504706114,49.72329144568937,48.62149013656714,48.499447368720716,48.37304728042098,48.27451975191003,48.049140428743854,48.32497207391573,48.27533964854593,47.98601596693814,47.96585820465339,47.8789886043345,47.83458430586133,47.71127777499415,47.544660454161715,47.40981157935761,47.22901137934536,47.166703207641945,48.07538925315157,48.34502188255132,47.18101308782287,46.975838999935036,47.10568785288632,47.00533963577664,46.97997187954515,46.96607398490983,46.96674569983081,46.96133819802212,46.95789361401529,46.95837039261281,46.95280411628843,46.94757322071082,46.93943497362858,46.923424729849316,46.9029477674552,46.861169762790965,46.78610270090353,46.859090186123346,47.24022832629618,46.862762010911005,46.7791021065515,46.821024600537285,46.7730215770224,46.76659088975572,46.77080384532267,46.76032944702593,46.75448046187037,46.76940938711438,46.74784797136839,46.74265908479899,46.752223871892404,46.737690360181446],"feasible_probability":0.20096193322062514,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.23828125,"counts":{"0100010011":61,"0100010101":29,"0100011001":7,"0100100011":66,"0100100101":22,"0100101001":11,"0101000011":48,"0101000101":24,"0101001001":33,"0110000011":4,"0110000101":17,"0110001001":7,"1000010011":35,"1000010101":13,"1000011001":5,"1000100011":32,"1000100101":10,"1000101001":3,"1001000011":31,"1001000101":19,"1001001001":21,"1010000011":3,"1010000101":9,"1010001001":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1508318130072439},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0,6],"fixed_cost":18,"removals":[{"variable":3,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[2,2],"max_component_qubits":2,"component_to_original":[[1,2],[8,9]],"components":[{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":5,"cost":7}],"conflicts":[]},{"qubits":2,"penalty":4,"objective_bound":3,"offset":4,"linear":[-4,-1],"quadratic":[[0,1,8]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":11,"cost":0},{"index":1,"task":"t3","resource":"r1","start":11,"cost":3}],"conflicts":[]}]},"best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":11,"end":14,"reserved_end":16,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":18},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":6,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":1641411168,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.8020493790827408,1.1777510695682878],"expected_energy":6.628969540156735e-05,"initial_expected_energy":2.0910546300687476,"history":[2.0910546300687476,3.5126741336384355,3.7023339250532077,4.005750710774097,2.1347219071549706,1.93034318821013,1.961450417592319,2.0366391453197803,1.7517033391187784,1.5606421547607559,1.746719557265917,1.4971981099183405,1.402735954254569,1.4453061726024452,1.2879607212342976,1.2095613325142858,1.2798667749093207,1.0978280087798102,1.0546704346310838,0.9385174935396775,0.8380858878517157,0.6496193100931014,0.4689325216256909,0.439572071164409,0.1906693499519191,0.1310343621314563,0.1535540153664969,0.6421582570762091,0.059928320632133665,0.0639311833674217,0.10290873151655705,0.029994829415513194,0.06306416180473996,0.02999077736377742,0.03766948362572237,0.03174925061074551,0.026287475444166018,0.021770019304586816,0.018622475099158868,0.01664214305114495,0.013561646483393967,0.008641954455724505,0.007329375151600945,0.015972357992720128,0.0329736161270628,0.002472776571291773,0.002396070835022844,0.0015520265982720532,0.0005930612878335921,0.0001625192853093464,0.0026981316931527373,0.0007985368317359945,0.0003119941700166061,0.00014538246952991256,0.00019104194744321864,0.00014358778108768976,0.00012985892055720675,0.00010460990945248393,6.628969540156735e-05,0.00023567460728510063,4.09225092880434,4.985898943442335,3.862843282360501,3.5457699691037847,5.141078861559205,2.8773539784506426,2.358990597504869,3.699008538518555,3.0972751562357246,2.0259948384207633,1.8182844289363413,2.3069552513708365,1.7447202060457798,1.5943229688867238,1.4646827196642207,1.4788910415058307,1.3662421623683796,1.2901941882713432,1.2778220894302716,1.53560478370989,1.0784652567678228,0.8709453331976801,0.7848337271332801,1.2845759343509393,0.6548215951686387,0.5812739316166476,0.502660641813294,0.40945785393104994,0.3185320151676235,0.29766137283357896,0.8939070628623791,0.17470732286344887,0.1664140553801676,0.1127381339860264,0.049776973817045995,0.04754614422195067,0.009576172539540424,0.25826648982082134,0.053243518311104174,0.006927498715198057,0.10805620278942032,0.007759126918320935,0.009962217917218385,0.007523830876030557,0.00870316737686637,0.004349032612303193,0.0031236083012803643,0.001958696033434326,0.003305874483018583,0.0017234451613396997,0.0013794502271104907,0.0014723343336259245,0.0011149320406623883,0.0011881183501517866,0.0011600402109964996,0.0010674821688922253,0.0011175525883639487,0.0010455976603267747,0.0010034381676544866,0.0009289010747022945],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08090951800113544},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":1454127163,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.1021975179344943,1.179353993063995],"expected_energy":4.463532248752459e-05,"initial_expected_energy":0.7716794192560994,"history":[0.7716794192560994,0.7382291375511063,0.6458902187356445,2.9060925598342378,0.666202950214244,1.2740747497212346,0.5971072696483356,0.3786428078284826,0.08279815400398648,0.02943675492342742,0.0175139929931944,0.051140008579712515,0.009575586449887884,0.03303640888019057,0.009513609886320197,0.0077135828116027,0.004697471606183706,0.001438095001715519,0.028418564502288232,0.004839763192412014,0.0012810488272809032,0.005195349956774984,0.0009252955897638268,0.0006320466316513719,0.0006135862044895642,0.0012220540251394007,0.0004736163629090321,0.000431405950322705,0.00036664261929053127,0.0002613288514125025,0.0006053207023069978,0.0003810803615820662,0.0003458984240586243,0.00024238768373084348,0.00023194549167309005,0.00020946692592111891,0.0001948102855151931,0.0002291683694325585,0.00018886240537822245,0.0001792035821855908,0.00017054035641642296,0.00016942499220492014,0.00015847587980533188,0.00014900374024880728,0.00013352204052993633,0.00010606662940130783,0.0001511794971443965,0.00012551196356610033,0.0001016479435993466,0.00011819732185942828,9.524893132029202e-05,9.004131761129795e-05,9.889719623691517e-05,8.543735249925071e-05,7.961553710819325e-05,6.882223372923527e-05,5.775835753562789e-05,4.922461042254789e-05,4.463532248752459e-05,0.0001386736660124099,2.448654713024689,2.497202081257172,2.071713969527546,0.09943126156718177,2.990977595751239,0.6155891753419198,0.5496799856690178,0.09109002940086908,0.3260549950856844,0.07587220241276536,0.06996582530005051,0.049216837280892545,0.047330487626279616,0.021998526453025934,0.1069356446870091,0.0463271309525152,0.018053840522514193,0.05420886174307142,0.01907666275653815,0.01818774672692789,0.019360657885867348,0.01806973482740279,0.017004283492259194,0.015643837503692224,0.01401977930865708,0.011173395298774756,0.007635396718718202,0.012214893305686073,0.01573843561653533,0.00677735666271416,0.005893951047050653,0.0054716997948158624,0.008123534365264107,0.004809178365286337,0.004466656774214726,0.004050392790414447,0.0033647953982422203,0.006502723647041644,0.003446872191123619,0.0032841236542087886,0.0037281889006863874,0.0027669554695451256,0.002648720521242919,0.0022684242160012523,0.0017797847049658862,0.0012729242736967002,0.0006052109263221713,0.005722819590443613,0.001020830163610012,0.000571337429648918,0.0012524719392893978,0.00042120273298637263,0.0006844299310899265,0.0005278611404358259,0.0004046573868880819,0.0003567730158481931,0.00033505828511256437,0.00026602213577414126,0.00022265854674957317,0.00017908193227584448],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08089506300166249}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.16201876199920662},"direct_metrics":{"exact_objective":18,"optimal_count":1,"combinations":24,"optimal_probability":0.08193908785926791,"feasible_probability":0.20096193322062514,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":36,"hit_curve":[{"shots":8,"quantum":0.49537126573012796,"uniform":0.2885690504976606},{"shots":16,"quantum":0.745349840549187,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9351532962916754,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9957949050181648,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999823171761938,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.8041124150158794e-16,"independent_samples":[{"shots":8,"best_objective":18},{"shots":16,"best_objective":18},{"shots":32,"best_objective":18},{"shots":64,"best_objective":18},{"shots":128,"best_objective":18},{"shots":512,"best_objective":18}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.999990530043514,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":6.640738306473715e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999851215591709,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.371692252312041e-20,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.999975651743583,"diagnostic_seconds":0.003827401000307873}
+{"instance":"n4-s0-r1.json","seed":2,"direct":{"status":"feasible","best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":11,"end":14,"reserved_end":16,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":18},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0286979165155867,1.8598042448933418],"expected_energy":40.29134628764142,"initial_expected_energy":70.73528476766234,"history":[70.73528476766234,72.12556503714347,48.64011028037556,58.56739604734218,53.649543467276395,51.65703284168958,47.66842151614852,48.906115662896646,47.74113601337497,49.04002521457338,47.11908488756858,47.74600369611208,47.073614733518795,47.16175461563721,47.069957089685154,47.05182740756479,47.04172089551886,47.031002823522,47.01911842645696,46.99619093495588,46.951892268814,47.000799475184955,47.01532317443797,46.96972538736693,46.946553442116425,46.94715419368816,46.938302638220264,46.93319672788666,46.94453625839758,46.92096332946727,46.914041663586524,46.90296401835624,46.88378304562638,46.84455709538437,46.77191987156162,47.28269743315178,47.164575672292756,46.893030648455124,46.78270144530659,46.76863409576775,46.774451642595736,46.762093468374005,46.766135160716715,46.75831540835789,46.7578867651774,46.763843660700346,46.75807670443428,46.75535778013434,46.75149777583888,46.75659106684128,46.74801255826934,46.743683258184916,46.73546592871832,46.71914488133474,46.690511412304055,46.80451403993788,46.83414856226913,46.681847116613255,46.69591831660847,46.68629364931974,43.11942550309809,55.06449778295871,60.08037804471486,66.75228486112192,52.814579927111346,44.800202074526865,43.46471547825534,43.60229924408645,42.58159472863924,42.62532908984279,43.09499869629386,42.61427942238248,42.38158687763204,42.061591871599376,41.48510244515049,41.0119708689028,41.07466027099264,41.8339918306307,41.25315446615737,40.70455136661312,40.82622546185421,40.621424720021984,40.55583886077097,40.51166531805495,40.45466709265789,40.3698121710216,40.7815645089957,40.52836021816053,40.35500863840565,40.414702792871545,40.35245516253977,40.34166383658924,40.327768817249854,40.38043017403431,40.31824725576227,40.3146710571134,40.33300693984729,40.30993743452177,40.306893484816904,40.303986514025894,40.301186781704544,40.29725121359845,40.29779477672311,40.30161419442675,40.29743368236298,40.2961497685058,40.2955450822723,40.29480270486069,40.294088738352954,40.29329677406537,40.292505574716046,40.292240860720305,40.296522478831015,40.29151093352835,40.29163215136837,40.29148309603623,40.29161198216208,40.2913832024855,40.29143179652369,40.29134628764142],"feasible_probability":0.501158461054853,"one_hot_probability":1.0,"sampled_feasible_fraction":0.505859375,"counts":{"0100010011":12,"0100010101":43,"0100011001":3,"0100100011":3,"0100100101":5,"0100101001":2,"0101000011":55,"0101000101":72,"0101001001":45,"0110000011":1,"0110000101":2,"0110001001":7,"1000010011":13,"1000010101":47,"1000011001":9,"1000100011":2,"1000100101":3,"1001000011":51,"1001000101":81,"1001001001":45,"1010000011":4,"1010000101":2,"1010001001":5},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.14304133800033014},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0,6],"fixed_cost":18,"removals":[{"variable":3,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[2,2],"max_component_qubits":2,"component_to_original":[[1,2],[8,9]],"components":[{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":5,"cost":7}],"conflicts":[]},{"qubits":2,"penalty":4,"objective_bound":3,"offset":4,"linear":[-4,-1],"quadratic":[[0,1,8]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":11,"cost":0},{"index":1,"task":"t3","resource":"r1","start":11,"cost":3}],"conflicts":[]}]},"best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":11,"end":14,"reserved_end":16,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":18},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":6,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":2001025171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7720977413774452,2.74762329056313],"expected_energy":0.0007599815359148505,"initial_expected_energy":3.178398985157925,"history":[3.178398985157925,2.5697427900610594,2.163554211201846,4.722797024772923,2.718156709708172,2.311475228063123,2.334874994492609,1.853663171221238,1.426006144190393,1.3756557803993614,1.6187644456229382,1.2828258271739483,1.1695867032069045,1.4117687407135993,1.0150144990275318,0.9131499403818812,0.8198493319691952,0.8102833934515145,0.6531978883153534,0.5274540213786081,0.4138721158006947,0.8756140376996178,0.37550029170206617,0.31984081067878584,0.23138538929408262,0.34770288937666105,0.1917564658023948,0.18939775447936427,0.41093953871484934,0.09308184399065254,0.12248729567028166,0.088629489589081,0.10854456194645928,0.08766437815753572,0.08150626194780417,0.07232168441234463,0.05932195732175133,0.059037526662607774,0.05136387483086615,0.04046964571813408,0.028594237151202784,0.02540842724278798,0.007249650427651647,0.044252669838075034,0.05313553671803816,0.005391373364921738,0.016214536117170737,0.007130101639796058,0.005436550419647721,0.005802604516207656,0.005455002075687573,0.005181022383271722,0.004778887723736716,0.004164867962279195,0.0034559498715723224,0.00192138722937013,0.0022048769222768228,0.004293208985223605,0.0022175012135313248,0.0024091456213497847,5.635653339122772,5.720413483183306,4.943193142879845,0.22515110325990312,6.894147182093018,1.5513511115819933,1.1349331284362274,0.6428193960265478,0.2548484206941165,0.2594976141209732,0.2147528439051896,0.37872511976744283,0.17310609678910277,0.1517897221875191,0.13400953837922408,0.17208758275377334,0.12262190661307293,0.10446887371568495,0.0749406968173516,0.15872056099503246,0.08719353263857638,0.08318134153326615,0.08234679970404132,0.06555475477485576,0.06512425724824121,0.06851041761717984,0.06595978222282603,0.06185665072203929,0.057495289154559474,0.06288112865661045,0.05475410826684343,0.052103888900605334,0.04710769666432216,0.03768223748940008,0.023887490890585332,0.021200247629108597,0.008343315361501463,0.09778067595254449,0.031485398492861943,0.026057776610960547,0.006711449621976421,0.005571305185763854,0.005094693847280608,0.011486426994466472,0.003697974969724186,0.003360962286245117,0.0026733382101488136,0.0015968932547828017,0.0031199017611042773,0.0033815957458703783,0.002209391929523392,0.0014892016847813296,0.0018478055874603507,0.0014256012214485868,0.0013154387459651498,0.0011291640134567156,0.0011248976622286542,0.0007599815359148505,0.0008315021549786079,0.0008323856694492252],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07851719799509738},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":2240297063,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.033066545519745,1.1764170293040324],"expected_energy":0.0016203146371328832,"initial_expected_energy":2.1906020993744386,"history":[2.1906020993744386,2.0135012839428024,2.0595758101489086,1.5210117386952275,1.6827424492558916,0.8826432059169025,1.8962160867172697,1.1058105564284424,1.3548073096179059,1.2460206779118344,0.9637773480280747,0.8548341487899302,0.7994843984405146,0.7039257250701887,0.5279530778575238,0.6968914431153859,0.6742846203960975,0.564066900514772,0.5762531624145119,0.5002666474895091,0.5193945255566569,0.4609494511168115,0.4451622595485611,0.5087377057131691,0.4006768954567398,0.3664102847041669,0.2956513721310337,0.18892295368249057,0.9458419803161621,0.7099617903429357,0.19798410780039982,0.18340829518993168,0.20686555404409002,0.2124401700949698,0.15588062728850305,0.19035260450471542,0.14353663141199718,0.13669074172593718,0.12382574413669234,0.10520550265614542,0.0680581511094035,0.01811408062212137,0.28262100554844005,0.15548994348385245,0.03283282532961121,0.016991222886326957,0.03177248238062714,0.014332153720357173,0.013985283755968803,0.011668463062249761,0.010492268399799751,0.008719649768687573,0.006664201808640561,0.005439180296964933,0.0027338158139417687,0.002753636751191605,0.011134007627359764,0.003413914333417545,0.0029963426595599283,0.0024767119288400695,1.4141773072901251,1.1798640332161816,2.225549442105615,0.9439165644302387,2.0775115342914097,1.2628885426824616,0.911347068369762,1.2807205983734269,0.8670650367913193,0.7328784471624916,0.5464746676027413,0.4773033341204006,0.5895836298330339,0.4380919567101915,0.41743814782906696,0.3716646404809695,0.33258576717902394,0.25624682564090373,0.2253219801468726,0.1982165206039346,0.2665037650370228,0.40369031826523827,0.1423730977249947,0.1002654405669412,0.04872681057406049,0.0432979014512021,0.018555853477883917,0.04744108063504326,0.014547168737020609,0.04862532386813778,0.016338210467881708,0.015381672256384387,0.015369455286058473,0.014445658708335946,0.013709274226067946,0.012527017972647006,0.015482187009947194,0.011704182104094234,0.010432346403914494,0.008238691358419866,0.010607135756850508,0.008901362531562176,0.007974101846194181,0.009461444581610672,0.007107228581078274,0.006645197178404208,0.006126039001061233,0.0057119124946023855,0.004807436967464292,0.0033420470561086116,0.017480165324179345,0.0056983089785438154,0.0049296919671831425,0.00301968162110712,0.0027869500460095914,0.003222722772190747,0.00259965398874578,0.0024540916566796944,0.002142131090306349,0.0016203146371328832],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08148684799380135}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.16022001300007105},"direct_metrics":{"exact_objective":18,"optimal_count":1,"combinations":24,"optimal_probability":0.08578330354689398,"feasible_probability":0.501158461054853,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":34,"hit_curve":[{"shots":8,"quantum":0.5120299257892027,"uniform":0.2885690504976606},{"shots":16,"quantum":0.7618852066747089,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9433013451996539,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9967852625438312,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999896654630879,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":18},{"shots":16,"best_objective":21},{"shots":32,"best_objective":18},{"shots":64,"best_objective":18},{"shots":128,"best_objective":18},{"shots":512,"best_objective":18}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.999891431209155,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.1277467635028025e-18,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9994598951209557,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":6.505213034913027e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.9993513849686444,"diagnostic_seconds":0.0033704460074659437}
+{"instance":"n4-s0-r1.json","seed":3,"direct":{"status":"feasible","best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":11,"end":14,"reserved_end":16,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":18},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.243563984654438,2.631861729089631],"expected_energy":43.89774104436893,"initial_expected_energy":60.000108107627426,"history":[60.000108107627426,53.33918653267058,62.678825239484084,60.433298478882186,57.10741494051659,51.16451118415005,52.379295978457094,50.94805962496038,51.17412863835919,50.5797913967207,50.619215181060675,50.851708683824725,50.60187136819796,50.45978532659476,50.23780686187207,49.820584467231356,49.481247175057845,48.91079791083827,49.56349814728655,49.787180878369945,48.68358409082503,48.532572042862206,48.54968651936599,48.44094548646843,48.39829171758899,48.448436058325896,48.38537304538612,48.360283723519444,48.30788605965299,48.21143856051492,48.101073906000885,47.96351187409927,47.96493081334678,48.16276978373156,47.910733954317905,47.8914294916446,47.92953936516691,47.868662266696845,47.84724764236384,47.807018756412944,47.7451697305583,47.6909351777147,47.486163426158235,47.59449116709686,47.806505627493515,47.45140643913487,47.53818682724282,47.436466808007594,47.3979700573138,47.348318868820286,47.28105983074815,47.192283372695286,47.12852731259307,47.00032195743779,47.093010212277406,47.4932957690955,47.04613894372737,47.02014854876334,46.97656201229189,46.974270452677814,76.3255517997128,76.0244395084156,55.680704005628996,56.0714629525361,55.02631866923414,57.334827598955165,56.61370484259132,52.137381008535726,48.35951917583395,47.9173350198995,47.63229768394457,48.69856716112691,46.90178125537747,46.64105298808602,46.23635622775798,45.53584174882398,46.112260995852594,46.26522896559247,45.932844796732994,45.40318783472395,45.583424016825276,45.322772830130276,45.25856417261316,45.105491970803826,44.84977707657766,44.39821948642772,49.84511281576074,45.76001760496398,44.63436163563111,44.53384137764681,44.47201420731217,44.349655240937054,44.31552761897238,44.36282924426985,44.29674948203227,44.2791891032889,44.26048312492672,44.224451444333226,44.194872394823875,44.1360118936151,44.036833778845676,44.40468667268979,44.38828038623232,44.08201838340482,44.02888650708528,44.05993805903532,44.01895361203272,44.010616323287124,44.02464418991594,44.00328035550678,43.99403449618992,43.97796570629592,43.999420389388916,43.97483423756553,43.96425115900297,43.945808331600375,43.92066507289562,43.92042005079191,43.89774104436893,43.95050352639447],"feasible_probability":0.3675691712762409,"one_hot_probability":1.0,"sampled_feasible_fraction":0.3828125,"counts":{"0100010011":90,"0100010101":25,"0100011001":39,"0100100011":14,"0100100101":41,"0100101001":6,"0101000011":106,"0101000101":32,"0101001001":2,"0110000011":4,"0110000101":3,"0110001001":4,"1000010011":40,"1000010101":10,"1000011001":9,"1000100011":3,"1000100101":11,"1000101001":2,"1001000011":44,"1001000101":14,"1001001001":3,"1010000011":4,"1010000101":3,"1010001001":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.14714269500109367},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0,6],"fixed_cost":18,"removals":[{"variable":3,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[2,2],"max_component_qubits":2,"component_to_original":[[1,2],[8,9]],"components":[{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":5,"cost":7}],"conflicts":[]},{"qubits":2,"penalty":4,"objective_bound":3,"offset":4,"linear":[-4,-1],"quadratic":[[0,1,8]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":11,"cost":0},{"index":1,"task":"t3","resource":"r1","start":11,"cost":3}],"conflicts":[]}]},"best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":11,"end":14,"reserved_end":16,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":18},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":6,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":819382448,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.799836831409256,2.749356255788664],"expected_energy":3.485314829899204e-05,"initial_expected_energy":1.3873337865581123,"history":[1.3873337865581123,1.2415851347880924,6.860999013644899,2.0178130106219188,4.459940001546553,1.1341574299425052,0.2030994751456356,0.0809435412313928,0.14917569059155372,0.15914053131060296,0.02413000621046372,0.0842565297747938,0.0548312458734696,0.03218479157145862,0.021898282296733088,0.025546854432393847,0.021453028829982443,0.01973962601824914,0.01674171578532786,0.011794172220513013,0.006840379750502018,0.009663986844709507,0.02593569090226369,0.00548286639139518,0.006881683123140008,0.005072187242994412,0.004452075902222397,0.00531616282698554,0.004089659483403914,0.003739312203727507,0.0033788896644646686,0.00269091753718168,0.002434519462846721,0.001844433790711909,0.0017994206956778178,0.0013857850771970377,0.0012295257713603863,0.0007674102575259887,0.0003889551131166945,0.0007240527445287422,0.001571337482299423,0.0004778931291017304,0.00026275799982554063,0.000296299167316365,0.00033498073282388043,0.0002660831848528958,0.00024333015012547741,0.00022645639370375613,0.0001931774940156664,0.00013669383085034286,0.00013942595162859755,0.00022394505743436848,0.00013245607917912222,0.0001155973789464109,8.902865029213195e-05,5.532557661068774e-05,5.7982040027448324e-05,7.791838109229076e-05,6.262750962254991e-05,4.999060717118947e-05,3.5899658208369485,4.05779669995524,3.222230314334021,3.711596993876018,2.6318222507761417,2.4723488204465274,5.592826792355298,2.4926757793496397,1.2015043544471578,4.256236074940538,1.8648124332977465,1.268544097089228,1.1560104713609753,1.1169373287588114,1.2398669653212133,0.9826534073969009,0.8905890379718302,0.7919900943806155,0.6403384460423164,0.6191817829792484,0.3075421473694015,0.5053930565329647,0.6144635942790304,0.3514593476937081,0.29221970035312683,0.23709253503822558,0.19718041971945935,0.3359066150127008,0.16521009065895564,0.15581891197275205,0.3248346640141552,0.11584058371529764,0.10170452212357763,0.08664133999654416,0.08520496789934248,0.07045550236082364,0.05923405811491291,0.050283962976039,0.0686791739224008,0.042543441802928905,0.039083051582144035,0.03310785519242878,0.024068945644740714,0.019708083422288605,0.01749548853154997,0.010479864544324891,0.0011730032337642588,0.011419105659850314,0.024346959581107,0.002244806496291245,0.0013283567855348268,0.0009036703807536816,0.0009572283552631331,0.0018544102934084912,5.013295839368403e-05,0.00059831729047103,0.0001381002206205947,7.463705957589456e-05,4.564825948374987e-05,3.485314829899204e-05],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.0832722760096658},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":1645421708,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.032492273246588,2.7492675996937073],"expected_energy":0.0016179948260814107,"initial_expected_energy":2.5824940964126633,"history":[2.5824940964126633,2.631535964446945,0.19800417650637853,1.5005421897176703,0.5437743207709184,0.3668010035995608,0.06675890746988761,0.1404458458927686,0.08379398624029177,0.07661279919848307,0.05439017080146818,0.07295715002070306,0.046028508358757686,0.04469534624441959,0.061461190942760105,0.039677609367381544,0.03632370650029545,0.03365927247429046,0.03945659509441121,0.03187693851493737,0.028981341488086093,0.023590878487058646,0.01496885694097162,0.08176562202848228,0.048951983180133066,0.017762062333408882,0.014299344372556515,0.016743163538451906,0.013864427954457942,0.013078905150561758,0.012147443046713636,0.011425848513750225,0.014515763606045848,0.010450750893645997,0.00981659545082714,0.009227410909653719,0.008978977809043581,0.007463618378500247,0.007025547743348919,0.0057635135637204215,0.005220344937996129,0.003600508897729471,0.0065671268618352815,0.0030583232162988434,0.004671381584790441,0.00268858155706815,0.0025581350265098317,0.0021189992562532624,0.002381722776282573,0.002138322214314074,0.0020128203866874184,0.0023193393392291588,0.0021835847168206577,0.0019792996539028654,0.0018904043747154575,0.001796021736347526,0.0018912752070792346,0.0017273618166148536,0.0016856925577624074,0.0016179948260814107,2.4363004913435797,2.0596650143048563,1.5913671573672472,1.171616947892145,1.555902263530902,1.4337859234509969,1.065465613240925,0.9249286322958894,0.6921948396379591,0.2825517699296506,1.3093210064902672,2.077624531567137,0.6995695620765845,0.25487587371974774,0.4942600402812947,0.23909973186268507,0.21760902596942888,0.20242828232325732,0.2631979389579179,0.17365512459900798,0.1671415971377419,0.1365884025901717,0.1303008519205202,0.10282200362221777,0.11483361081425947,0.11392440741849061,0.1003324893398751,0.11998135115695757,0.09381613135845118,0.08840988396493209,0.07952594025302034,0.06241975999354948,0.04541209744031142,0.061174727947485595,0.0969014212640871,0.05192994668974387,0.035096921101751624,0.032616567488002374,0.04723335282401365,0.028784056636946484,0.0260649157564665,0.023552873993364497,0.021360946186340716,0.016681828542482742,0.017638950187888275,0.01572234394393129,0.018951041482339243,0.015284184144200654,0.014601800664896726,0.013889971236982608,0.01337845402917351,0.011656516573219575,0.010765831938264935,0.009325696063202618,0.007476715868657499,0.005721563897778964,0.004200847928357329,0.011746511858595128,0.005260430510486794,0.005395725958707949],"feasible_probability":0.9999999999999999,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08134683698881418}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9999999999999999,"total_shots":1024,"runtime_seconds":0.16483309199975338},"direct_metrics":{"exact_objective":18,"optimal_count":1,"combinations":24,"optimal_probability":0.18807767773292813,"feasible_probability":0.36756917127624095,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":15,"hit_curve":[{"shots":8,"quantum":0.8111504938815264,"uniform":0.2885690504976606},{"shots":16,"quantum":0.9643358640388086,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9987280694061417,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9999983821925644,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999999999973826,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":6.938893903907228e-17,"independent_samples":[{"shots":8,"best_objective":21},{"shots":16,"best_objective":18},{"shots":32,"best_objective":18},{"shots":64,"best_objective":18},{"shots":128,"best_objective":18},{"shots":512,"best_objective":18}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999950209788144,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1604351377383915e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9994606683913061,"feasible_probability":0.9999999999999999,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.999455692055464,"diagnostic_seconds":0.0037028700025985017}
+{"instance":"n4-s0-r1.json","seed":4,"direct":{"status":"feasible","best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":11,"end":14,"reserved_end":16,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":18},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.296580010924868,2.6300273624539963],"expected_energy":43.876730971078686,"initial_expected_energy":62.39430567189072,"history":[62.39430567189072,62.36533213067753,56.605600165879736,65.80145576513496,49.18530767279898,53.27985463916175,61.91882355042701,49.812629632805155,46.58582959512912,52.927726576355056,46.69121774640495,47.25866385798608,46.49209719367879,47.36617948823867,46.526805676459624,46.66314819656233,46.469055728531465,46.408815816915386,46.336634985352724,46.32902936988977,46.33176672037498,46.33225150863528,46.33095586216834,46.32961807771758,46.32848152481688,46.329147669816166,46.32837584112477,46.328242403648524,46.32801653962864,46.32760189508518,46.32680751692675,46.32676066809687,46.32496843715075,46.327847189004856,46.326185273399716,46.32475705597074,46.32492363435475,46.32461277521842,46.32459701588903,46.324951700479815,46.3243302230138,46.32401575565305,46.32363677235068,46.322937066264984,46.32306430383756,46.32304360565142,46.322847128019326,46.32301541996868,46.322579604661776,46.32240620902656,46.32221419099774,46.32189575365836,46.32121551943564,46.319962944462304,46.326017340379515,46.32225453331118,46.31978139906386,46.32267928058715,46.319204528332264,46.319116913846514,52.64602196479967,48.181673149900604,57.730690328123515,75.50866361458176,50.09524342387433,51.216228687725966,48.84591106694311,47.233561102479925,47.333152322847,46.712653938021994,46.395146586803,45.982576970215064,45.361302076931125,45.8883479434068,47.47115262239404,45.32739743468736,44.94487005431543,44.52827257247458,44.22670755435014,43.98515058365321,43.928672213856785,45.33641259260546,44.76675990908334,43.89807496028785,43.96377737164178,43.90570604232542,43.88215291198191,43.87850256670015,43.87930780847307,43.8805546343564,43.878374774701534,43.87900883035238,43.87838022554321,43.87824695823774,43.87819962397365,43.87835888888112,43.87808423290432,43.87798255913309,43.877791910701106,43.877557325068494,43.877419814780374,43.87708371376461,43.87706720764586,43.87687679496937,43.87829009097657,43.87680092171814,43.87678939614469,43.87681599324555,43.87680293134643,43.87681922401079,43.87677781731737,43.87675742537537,43.876741796250684,43.8767380515183,43.87674762431405,43.87673776106356,43.87673494370565,43.87673398539356,43.87673240145415,43.876730971078686],"feasible_probability":0.3591069370584303,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.37890625,"counts":{"0100010011":95,"0100010101":11,"0100011001":36,"0100100011":17,"0100100101":36,"0100101001":11,"0101000011":112,"0101000101":26,"0101001001":3,"0110000011":8,"0110000101":2,"0110001001":5,"1000010011":39,"1000010101":6,"1000011001":10,"1000100011":6,"1000100101":21,"1000101001":2,"1001000011":41,"1001000101":15,"1001001001":2,"1010000011":2,"1010000101":3,"1010001001":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13139036200300325},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0,6],"fixed_cost":18,"removals":[{"variable":3,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[2,2],"max_component_qubits":2,"component_to_original":[[1,2],[8,9]],"components":[{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":5,"cost":7}],"conflicts":[]},{"qubits":2,"penalty":4,"objective_bound":3,"offset":4,"linear":[-4,-1],"quadratic":[[0,1,8]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":11,"cost":0},{"index":1,"task":"t3","resource":"r1","start":11,"cost":3}],"conflicts":[]}]},"best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":11,"end":14,"reserved_end":16,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":18},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":6,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":367776961,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7836729151756117,1.1783533432349196],"expected_energy":0.00017973514363595931,"initial_expected_energy":5.034046542575745,"history":[5.034046542575745,5.5808738856489155,4.536836668477942,2.3565387799284325,4.9416704313871485,2.7332554756490044,2.8104894085228125,2.604237805180715,2.2542586986808324,2.0764768945615235,1.918967684045097,2.185768571710253,1.792801012124707,1.6995896391813465,1.8114556130044972,1.577399973231243,1.4547654475276126,1.280182306178004,1.064832829343463,0.8945143331280732,1.593379287329621,0.8097033731634422,0.6311955969956208,0.3383642353794877,0.8382892265956764,0.8455738919497778,0.6778933296490833,0.28995372907566264,0.27146059933828065,0.22572800418263717,0.21412591269493414,0.399746416032126,0.14359890226892102,0.17504257496948128,0.13528208225843216,0.1769597812879208,0.1316735655768274,0.11933579152244365,0.1108640017939694,0.11807854754849914,0.10713756308820092,0.10419228016527976,0.10497281907683781,0.10072406165233679,0.09767543214316274,0.09330654772629479,0.10315903035925987,0.0866532926367976,0.08048698346863055,0.07733097484652642,0.06207046359944064,0.055859217036693734,0.044037612910312836,0.03275767526159314,0.02359428448889688,0.014668162938528288,0.06900467495057346,0.022301457489065722,0.030621330929994812,0.01883501572644312,3.8099676349355756,4.084229592858017,4.603191436561882,2.58584147895227,3.66242872981828,3.779880183424222,3.020738483197219,2.402287508922274,2.1669719830434184,2.432066034983832,2.1004882184021882,1.9565342085040482,1.6833893190123017,1.1932447076367942,0.7880410943430638,1.6531904533456727,2.581243642305404,0.41130543310319145,0.42108227065348175,0.40135390775807356,0.4510604889932527,0.467206560480172,0.3401364948108529,0.4259335926190871,0.3073765114064707,0.2838380145242373,0.2524400291096102,0.2023990818677695,0.13149019429606326,0.06576316500628483,0.02113100799169194,0.23238406476165044,0.0459394865923866,0.019077854043159505,0.05720131871147826,0.01419792616751427,0.01025286143694144,0.008654656613685271,0.01711497521917076,0.007231107882294616,0.006542092843572703,0.005603360217313911,0.00400856032414318,0.005138601744429581,0.005326616029971784,0.00433809226346297,0.0035541713738459066,0.004788335529537521,0.0031796274693242474,0.002866803802708895,0.0022983350739080788,0.0014627868731396164,0.0010062305097103853,0.00030614068634276793,0.001545307201344004,0.002364952620706205,0.0002457538771508817,0.0013669212444928922,0.00017973514363595931,0.00023501344711634393],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07680430699838325},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":3166742020,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.083912062286691,2.7492298135409574],"expected_energy":4.771800644807277e-05,"initial_expected_energy":0.20796014078240013,"history":[0.20796014078240013,0.510310686824387,2.447265911558227,1.6057735383417082,1.1473447157471606,0.1404704737904209,0.2291466752658602,0.15500697383212353,0.15634321666734724,0.1164710246337356,0.1424665220119764,0.127534189503337,0.11586112011818163,0.11063012521387064,0.10110175796577064,0.09303485727751579,0.07412666817553988,0.08083237278992289,0.06933808160037286,0.08193912875116414,0.06721148558699357,0.06393345510204829,0.06029505077580391,0.056559129785096966,0.04855514268670219,0.04571132214359201,0.03804035833310008,0.03579904807076997,0.028824359426750427,0.03212840557382932,0.031076129703647173,0.028183977321444245,0.033487601451215224,0.027809780953882618,0.026377227993674136,0.02524976285666143,0.026104779460202475,0.024251500363055088,0.023382260545252775,0.022211431466925138,0.02492645384739583,0.021632191293511703,0.020575806677077372,0.018925679864024162,0.015530928299290727,0.010030289229614658,0.026168769838681636,0.03186467814912631,0.011308617618831496,0.010400405655599087,0.01048921712167854,0.009451717733309328,0.009410044223209579,0.01027839383790122,0.00869439515167213,0.0075509882450013775,0.0055805188939525244,0.013951988537193791,0.007933505672616265,0.005272299530496564,1.2088639903157548,1.2301408888593537,0.2832133230981497,2.8035297901014054,0.015792422127234685,0.11850539089653306,0.030758862455138078,0.05895800978596413,0.04686873845427969,0.02433815538571768,0.027250095614143988,0.014643815733260943,0.013881271392118796,0.0122689312711452,0.010645105556586439,0.024806077995938865,0.008125970942528309,0.008306306200473635,0.007950720039092056,0.007929840175462288,0.009056370456665963,0.007157739652333623,0.0066776611653611324,0.006192609667834789,0.0057080198169966526,0.004723964089926301,0.004662599332060473,0.003896167466935217,0.00351414476025171,0.0027142120785795918,0.0014442432608056683,0.0011917846636538142,0.0012826140029974591,0.001443948978447532,0.0010291772767354792,0.0013276396527453964,0.0015501330738776561,0.0004223780898014248,0.0003866987836945396,0.00024377995534408087,0.0001601512130179601,0.0004283425574423161,0.0002496837536356428,0.00026031406844421426,0.00012738115079106467,0.00014164514912043053,0.00012450341466207885,0.00011787063191632066,0.00011185308753218318,0.0001130171966193058,0.0001069036282406705,0.00010557579999092807,0.00011650077884330751,9.757764240466335e-05,9.160160758895901e-05,8.021291903291754e-05,7.603916233778923e-05,5.4122915684755134e-05,9.331759007432577e-05,4.771800644807277e-05],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07589524099603295}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.15290449900203384},"direct_metrics":{"exact_objective":18,"optimal_count":1,"combinations":24,"optimal_probability":0.186788936353953,"feasible_probability":0.3591069370584303,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":15,"hit_curve":[{"shots":8,"quantum":0.8087390853757551,"uniform":0.2885690504976606},{"shots":16,"quantum":0.9634192625370973,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9986618496466702,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9999982093536319,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999999999967936,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":18},{"shots":16,"best_objective":18},{"shots":32,"best_objective":18},{"shots":64,"best_objective":18},{"shots":128,"best_objective":18},{"shots":512,"best_objective":18}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999743235509091,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.8295911660692887e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999840939978506,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.2468324983583301e-18,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.9999584179571693,"diagnostic_seconds":0.004221341994707473}
+{"instance":"n4-s0-r1.json","seed":5,"direct":{"status":"feasible","best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":11,"end":14,"reserved_end":16,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":18},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.7012335226678708,2.802554296351775],"expected_energy":37.94758733323365,"initial_expected_energy":60.18299638471173,"history":[60.18299638471173,60.34093698827505,43.379726622062904,76.40633557259666,42.85790326683651,39.41183568204141,48.25978016221167,42.69587845396269,39.16295207780736,39.61538364220606,39.13836457840421,40.14513574026676,38.79025286678661,38.63788649635649,38.49036162056294,38.55441965969516,38.44602522085077,38.75676891979082,38.41510215665177,38.341397179365345,38.29454807621064,38.364027741148945,38.26975615667895,38.24621842181038,38.20908230888721,38.134319536158564,38.01673148749614,38.55627310566325,38.35556439117452,38.08703244494349,38.00728629132286,38.03445172552188,38.00064203066062,37.99121155385823,37.97531543459333,37.978450336035536,37.983105375064625,37.97572176986922,37.97987977578324,37.97560278074012,37.97342435737976,37.97013582527793,37.964106474001845,37.959266778402885,37.95414946725151,37.95648753660842,37.967930617531295,37.953931963356844,37.9511841785202,37.95110088468607,37.952126209483,37.95123554590353,37.950682391926335,37.95011160326174,37.95047957181524,37.94983645807783,37.94958109550294,37.94915774546556,37.94837760748241,37.94758733323365,60.83645740098974,65.55434966698255,46.653962206354095,64.46416286320229,42.89839238657332,54.583621691463144,42.014382990208595,43.225053249736,42.510070767742064,41.44249544813546,41.01919561623946,41.72355496990675,40.70942051448161,40.48052289323755,40.64812014051865,40.35122039371393,40.27793705450212,40.38911302750572,40.25268787821873,40.198636046899246,40.09317918325314,39.88980958158342,39.51371672119033,39.29214288099763,38.62446974871104,39.117976414913635,38.571090225894025,38.797541923722065,38.596806145709174,38.480396857081416,38.416839916075396,38.570016514881836,38.36101666177362,38.33861180168638,38.289500012924876,38.20292523843156,38.10450270368339,38.12111866499317,38.17658561895071,38.11133883044852,38.12168589277704,38.076893198182965,38.046977416013576,38.031739507502614,38.07932451118073,38.01859814936732,38.00883186220889,37.99006352914938,37.96878404317051,37.979141729010564,37.99988070395464,37.96957185375952,37.9761851317038,37.96047160893054,37.96020802368145,37.9542809653871,37.95230970704067,37.94909140879183,37.948426316739585,37.94761218935226],"feasible_probability":0.45089857849511317,"one_hot_probability":1.0,"sampled_feasible_fraction":0.431640625,"counts":{"0100010011":34,"0100010101":36,"0100011001":1,"0100100011":34,"0100100101":46,"0100101001":2,"0101000011":41,"0101000101":76,"0101001001":8,"0110000011":7,"0110000101":1,"0110001001":4,"1000010011":22,"1000010101":31,"1000100011":20,"1000100101":34,"1001000011":52,"1001000101":52,"1001001001":8,"1010000011":1,"1010000101":1,"1010001001":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1413200070091989},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0,6],"fixed_cost":18,"removals":[{"variable":3,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[2,2],"max_component_qubits":2,"component_to_original":[[1,2],[8,9]],"components":[{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":5,"cost":7}],"conflicts":[]},{"qubits":2,"penalty":4,"objective_bound":3,"offset":4,"linear":[-4,-1],"quadratic":[[0,1,8]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":11,"cost":0},{"index":1,"task":"t3","resource":"r1","start":11,"cost":3}],"conflicts":[]}]},"best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":11,"end":14,"reserved_end":16,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":18},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":6,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":803261128,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.793153937375433,2.748999861962363],"expected_energy":5.902421999477722e-06,"initial_expected_energy":2.6709830017846716,"history":[2.6709830017846716,2.456437287370404,1.0062831143227526,6.635684338831771,0.036047380786782185,0.04435076948064105,0.036814450459954615,0.06858902527708655,0.13075035057089165,0.005034129136838205,0.03129446086276155,0.018008976376282404,0.0059716544465045086,0.01082724163531985,0.0047946879527754945,0.004196723301624925,0.004319410800656338,0.003863961238439166,0.0038139104774115975,0.004364578697365769,0.003600196509529779,0.003229838073999307,0.0026512872774536976,0.0016390020127804751,0.0008567058996081506,0.004422377304472106,0.0061241142604966945,0.0008189804766889497,0.00020433124541248946,0.0009342678246086127,0.00014535609133771877,0.00023993795622239504,0.0001414150294151503,0.00012306890335269117,0.00011328734565648191,0.00012767685702766397,0.00010710125163024179,0.00010146377593070761,9.029215092560495e-05,6.975663285623682e-05,6.880687723953276e-05,3.3595682361707265e-05,9.339855890583766e-05,6.194904359310417e-05,3.0059387229261512e-05,3.443375499891023e-05,2.8300538866084404e-05,3.1599756016365064e-05,2.7401116179925968e-05,2.593026130637236e-05,2.448752465406978e-05,2.3101056041887153e-05,2.0154480048740404e-05,1.7851643811657173e-05,1.3399197947527235e-05,6.37454205404207e-06,3.7417386830035226e-05,3.7034855616396064e-05,1.0001107988485685e-05,5.902421999477722e-06,4.874028055072624,6.094982752116682,3.09054010775664,2.9824399196216604,3.495248795787047,3.6472681912331923,3.10296349695089,2.610840710777948,1.901626449471076,2.17557940341597,2.2261602079740985,1.8515323770111132,2.42074428916801,1.8460290151683085,1.6569514881270584,1.4116509612241235,1.1769855131304556,1.0688334748494797,0.8263984189927742,0.7658061035820625,0.43826576880346185,1.2786104179463738,0.33359733691031246,0.33052593837072924,0.5743867874635199,0.19604013470658418,0.1747425844292569,0.12998240176781165,0.07817226292076818,0.40963563436739847,0.057414104001141365,0.07886830339725455,0.13446122616636108,0.04564395270182457,0.05725290255633614,0.03560259994470452,0.035174304961838536,0.037404149038956336,0.036097009128617685,0.03285263473284732,0.02987950819512265,0.028176486737281646,0.03637229463416243,0.02556588420038434,0.02365451403089142,0.020604263827076273,0.02971036864312978,0.019142202461628146,0.015723880868792815,0.010462907405924805,0.003863936986880796,0.018532085092016936,0.02006220530683695,0.0030789530322577075,0.0033722288343450224,0.0028618994512622344,0.0037778090373322085,0.0018690131179155717,0.0020314482016262287,0.0017663660591958502],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07826597099483479},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":3767054407,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.095179682070536,1.1781314033956078],"expected_energy":2.736930614258425e-07,"initial_expected_energy":0.25957050592172753,"history":[0.25957050592172753,0.3852486153753791,2.7739649560060515,1.2544040363047553,1.5194601284326232,0.01139391022909016,0.12405784580198495,0.011231889724480793,0.07179817885929812,0.00910579649501569,0.06251870130457096,0.002484827585747338,0.001106047894882842,0.001246525665988656,0.0009016653852559023,0.000940513147476005,0.0009817816423616271,0.0008692193862918332,0.0014878603537145903,0.0006868020714915493,0.0006235757830675135,0.0005597810010712172,0.0005712001651416273,0.0005222141360655646,0.0005152884248153848,0.0005711043587687982,0.0005143101988561183,0.0004959143813025901,0.00046700695067382163,0.0004133579343792923,0.00039284963549782604,0.0002825064450399263,0.0003898479288574746,0.00026510404360498887,0.00035133069826688687,0.0002670234898686075,0.00024205836823898712,0.00023566871459275752,0.00026680377743939425,0.00022400998149638997,0.0002037571024736835,0.00016966425586431434,0.00012012853998087022,8.140313310467891e-05,3.400830653535758e-05,2.868335108185827e-06,0.0006398457735644613,0.0002390363165667486,3.304016022818519e-06,2.8357898075808994e-05,1.145733579434403e-05,3.663267226838364e-06,1.0000922496026524e-05,8.194692757804474e-07,2.736930614258425e-07,9.901365198538936e-07,2.949521927309165e-07,2.7630950308289574e-07,3.0199612126673887e-07,2.7736290095583245e-07,1.44687671880736,1.083719754820435,2.0941682458642323,1.1025374443662417,1.2094534486532809,1.1214512301072812,1.1342574368558591,0.9900974197748017,0.8435396191407042,0.7599666498099225,0.539571308274659,0.3853748010621327,0.30305290836145066,0.17709233048054218,0.4310899674378942,0.40021858205143646,0.32142925426227287,0.19804403447701383,0.1596095835544497,0.14297129878888293,0.17014773841051148,0.12956303592628204,0.12131143450941292,0.10994341831818712,0.08989544611658276,0.06388357421399286,0.05588710304100704,0.019422880251388306,0.19262454130686885,0.1099191857534487,0.05387715358152481,0.016555732581907862,0.0205197837098518,0.017439135703443864,0.01506429629899834,0.018074262371353483,0.014217135274796745,0.013462742382741331,0.01216721482080445,0.00942835261013034,0.005198035554010536,0.05041457178470163,0.027002217843943743,0.007705521846296781,0.004878977102977198,0.006893849689117793,0.0044247391645537044,0.004175700560821024,0.004871816074799631,0.003939580939526364,0.003737393659110311,0.003355566932829602,0.003013497048556813,0.0023609133899137806,0.002536365393687225,0.0029855671081854577,0.0023868414384494493,0.002183734428424257,0.002065515927754729,0.0019240691179650625],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07591219499590807}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.1543843800027389},"direct_metrics":{"exact_objective":18,"optimal_count":1,"combinations":24,"optimal_probability":0.08789648135189757,"feasible_probability":0.4508985784951133,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":33,"hit_curve":[{"shots":8,"quantum":0.5209806589816318,"uniform":0.2885690504976606},{"shots":16,"quantum":0.7705404709303283,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9473483245191244,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9972278010690566,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999923149130873,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":9.71445146547012e-17,"independent_samples":[{"shots":8,"best_objective":18},{"shots":16,"best_objective":18},{"shots":32,"best_objective":18},{"shots":64,"best_objective":18},{"shots":128,"best_objective":18},{"shots":512,"best_objective":18}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999991567968572,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":9.931461306556671e-20,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999999087689795,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.8910010547452255e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.9999990655659137,"diagnostic_seconds":0.003531730006216094}
+{"instance":"n4-s0-r1.json","seed":6,"direct":{"status":"feasible","best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":11,"end":14,"reserved_end":16,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":18},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.2383907205276743,1.0295763903854243],"expected_energy":46.582296429254605,"initial_expected_energy":68.7810949873831,"history":[68.7810949873831,69.2465438993734,49.712704374492134,62.41389765136298,50.76698565364533,48.76203624672759,49.502391620476544,48.860032756061806,48.61664805910841,48.36947793157255,47.86763142484882,47.136929975037056,64.86613960210879,53.515203084002465,49.771683549629444,47.070076703830274,47.67684646539408,47.5783154035327,47.22288974590608,47.08203716320143,47.06540535523783,47.066867517125736,47.07208978747649,47.0557594019364,47.05322958255418,47.11870015157681,47.033563427123525,47.02072477537377,47.01111478016215,46.98779898171253,46.94493309587735,46.93325530408689,46.9304753186138,46.84479040391581,46.74537270064583,46.72060193696576,47.43968277199514,46.679649994577765,46.830118604159686,46.665869397332585,46.670733325491135,46.65913802855294,46.655911227354956,46.67376057200143,46.64381884151213,46.64290091983002,46.63391155935382,46.6275910009665,46.613745330874714,46.587442121364774,46.63172005897169,46.688542533044206,46.61519545970219,46.59023041209335,46.593845685904085,46.58654962054493,46.59201348279059,46.585855899042,46.5838953071177,46.582296429254605,64.96042976254397,69.70623765793641,60.1815074025281,50.755885591577695,56.990766227981595,58.96203040186374,54.211618008117725,51.39806725181501,52.57631129921906,49.93539792235114,49.59412552716851,49.223588912933025,48.95103435940669,48.62874720421025,48.24677278911291,47.68738189918228,47.827754657584194,49.47034698877358,47.79823044789742,48.186610213646595,47.74346624402926,47.67326031660751,47.76109751087652,47.66093533450175,47.638832898177796,47.598785268426376,47.52746130572563,47.396162303739395,47.24323065058158,47.47678548465964,47.91069984617766,47.14618436063033,47.18265217918473,47.177814868832385,47.144578384502225,47.162684947037775,47.129730262738754,47.103898818217104,47.057211239418976,46.965977529189736,47.22814073316549,47.26093960805149,47.0941028725351,46.962975276947176,46.94981844333999,46.925078288895,46.88284576476466,46.81137016024769,47.08007055931902,47.310049606295976,46.791366371694174,46.86474970377174,46.80604289316935,46.788697408076715,46.7757861826528,46.75599466946677,46.72860498185909,46.716630347786676,46.67151622210241,46.80702963977614],"feasible_probability":0.20575970007655203,"one_hot_probability":1.0,"sampled_feasible_fraction":0.17578125,"counts":{"0100010011":76,"0100010101":22,"0100011001":5,"0100100011":52,"0100100101":33,"0100101001":14,"0101000011":33,"0101000101":17,"0101001001":44,"0110000011":6,"0110000101":15,"0110001001":5,"1000010011":24,"1000010101":19,"1000011001":2,"1000100011":42,"1000100101":13,"1000101001":9,"1001000011":21,"1001000101":19,"1001001001":21,"1010000011":4,"1010000101":10,"1010001001":6},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13708274500095285},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0,6],"fixed_cost":18,"removals":[{"variable":3,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[2,2],"max_component_qubits":2,"component_to_original":[[1,2],[8,9]],"components":[{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":5,"cost":7}],"conflicts":[]},{"qubits":2,"penalty":4,"objective_bound":3,"offset":4,"linear":[-4,-1],"quadratic":[[0,1,8]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":11,"cost":0},{"index":1,"task":"t3","resource":"r1","start":11,"cost":3}],"conflicts":[]}]},"best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":11,"end":14,"reserved_end":16,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":18},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":6,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":3153149895,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7878183711681221,2.7487633484186906],"expected_energy":7.339755283303059e-05,"initial_expected_energy":5.1686341166524015,"history":[5.1686341166524015,5.70508128205161,1.1148421533202297,3.7577853139498956,2.0154328279640703,1.2974662246646433,0.9116673861855762,1.4192441214090123,0.8020184521699751,0.7303625602038633,0.6286042773513074,0.5334023670360466,0.3922119629336914,0.34803849481593885,0.894739914832452,0.23991136904369417,0.22877392487003595,0.16400325113099481,0.11076292285769332,0.07127547741695249,0.020672305228269072,0.0282690228399989,0.41019926301496773,0.022297867728001367,0.03031483815547656,0.022242170886176298,0.06005960510656776,0.009797364536775594,0.006756423878649915,0.007276566484113877,0.007342788241792081,0.006391910280581596,0.005220995121866209,0.005127502330586345,0.0037666293832117805,0.0030825767858859033,0.0016577087581809797,0.0010325113086313816,0.004419306971769895,0.006608797287869187,0.0010487365971550162,0.00029871221900055133,0.0009498607237026782,0.00040928017479615036,0.0003093656846431044,0.0002626105505402761,0.00027026589235260837,0.0002446161592104042,0.00023794870799438646,0.00025781441742979584,0.0002193036427399963,0.00020225808629014167,0.00017070162216328402,0.000141559307148239,9.356178166663593e-05,0.000107603517943058,0.0001498124731555161,8.295542840853317e-05,8.752623641390127e-05,7.339755283303059e-05,6.9081796719138575,6.544516197456454,1.5915812428813487,2.0535355865324147,2.173236080530189,2.2505178734911753,0.6292501933438857,0.8188836710053997,0.6904474735787827,0.7723804268333911,0.4256941367241776,0.382573657566574,0.6177191510007571,0.3250159266205266,0.3030044005296915,0.49100101687400305,0.20202648609581444,0.20921830695736723,0.1907314356505163,0.20250112936334916,0.20078571031318748,0.17531405565719002,0.16715443842792943,0.2026139722667235,0.15469862040088722,0.14346363036318305,0.12366419275003801,0.10573438851610631,0.07613608768174573,0.10496565328458671,0.10998426533189094,0.06763118825596709,0.07074135471143482,0.06635468325216252,0.06353719032021682,0.060727753185982114,0.05636805750629702,0.04773468766713762,0.03805913762814512,0.0232123635022875,0.17928811668593844,0.0469182330787773,0.036742388359827446,0.020938331976414447,0.020337263264842278,0.01872191147886372,0.01726431132745344,0.014831063938889043,0.014928652429087136,0.012984218372428117,0.01596539981052709,0.013782333424243563,0.012250835979314362,0.013809132080067591,0.010978569683658877,0.009879580270460531,0.009779841781143994,0.007855768430270669,0.006634342566333166,0.005047913593785117],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08189005100575741},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":4186225163,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.073931741699113,-0.39113387567250574],"expected_energy":0.0002060512025484723,"initial_expected_energy":1.8368484590593128,"history":[1.8368484590593128,1.8484087363865687,2.6358315856778147,0.08595200157741902,2.213760983028983,0.4533995026684262,0.9614774800549495,0.07845361388217056,0.0878650202357742,0.11863885565683546,0.03931576110739353,0.054196700351625327,0.03839039508827157,0.046627681032956426,0.038364692177199525,0.0358131009535508,0.032152646133951135,0.027401996686318087,0.03114082844964279,0.026006046621059133,0.02808220648331841,0.024915353175831788,0.023896922408641517,0.021936719662455067,0.019067773045774297,0.016229813704978543,0.008703328063214734,0.029014941322611766,0.022595287395869593,0.01345378525699312,0.009498064555799803,0.00873696968975234,0.008223930554269728,0.007799969158731407,0.007241193778513382,0.008760561688543077,0.006744273391903923,0.006061584547765426,0.005671252387859965,0.005194385162339221,0.004737227243455713,0.003986969819476468,0.0031404570635008714,0.0016992367678600642,0.005638216350225836,0.004621845504938862,0.001542097175253541,0.003728413194123328,0.0012630968313151747,0.0013269933634751443,0.0014051650627409761,0.0012770545177494257,0.0012051118952478312,0.0010964556453766587,0.0008948182684535061,0.0006244957056555422,0.0005471405860864224,0.0002060512025484723,0.0022268769570876943,0.0010072712078274778,0.5909330694561701,0.8888557325710972,2.626222886610984,1.0913162787971866,1.5567220746726167,0.471375779120066,0.2508720975922691,0.2600364233184727,0.268997061017363,0.2757747311445325,0.21872263088393515,0.1981072206582717,0.1702711124216107,0.1391696388943426,0.09424638567557315,0.02782568798357551,0.869881524484345,0.4182225256448268,0.16154666661695352,0.02156549607706366,0.04350024685777378,0.038536416485229,0.029073440903789213,0.02152840956787626,0.0196596243047982,0.01869549422046699,0.023570312138946788,0.01802560061307211,0.016922149064462565,0.015473707827332102,0.013956880507750357,0.01201929744452035,0.01007443630735639,0.009259844529238127,0.02013878802197483,0.0069993123432929814,0.006654194260347054,0.005465066303375524,0.0036870882826108365,0.0022555242031068188,0.008267903883296145,0.011439079542451335,0.0020870376090279027,0.0009946990201390336,0.0020478133688699514,0.0012363572976686016,0.001015610914361251,0.0009713148167905654,0.0009358721235942721,0.000913796246361924,0.001153769571823303,0.0008728317203770201,0.0008085717252532742,0.0007364910391398525,0.0006519590374126998,0.00052595567655954,0.0007387522788918537,0.0005628706822404423,0.0005101914093788263,0.0006013441369702362],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07613667499390431}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.15824461299052928},"direct_metrics":{"exact_objective":18,"optimal_count":1,"combinations":24,"optimal_probability":0.08237067284259082,"feasible_probability":0.205759700076552,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":35,"hit_curve":[{"shots":8,"quantum":0.4972659737858096,"uniform":0.2885690504976606},{"shots":16,"quantum":0.7472584988864697,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9361217336148794,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9959195670836316,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999833500672151,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.8041124150158794e-16,"independent_samples":[{"shots":8,"best_objective":28},{"shots":16,"best_objective":18},{"shots":32,"best_objective":18},{"shots":64,"best_objective":18},{"shots":128,"best_objective":18},{"shots":512,"best_objective":18}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999895146353096,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.0657581468206416e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999313162658172,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.2526065174565133e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.9999208316213009,"diagnostic_seconds":0.003493320007692091}
+{"instance":"n4-s0-r1.json","seed":7,"direct":{"status":"feasible","best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":11,"end":14,"reserved_end":16,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":18},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.6930788473033017,2.800624906424251],"expected_energy":37.94575467089875,"initial_expected_energy":61.40412382732262,"history":[61.40412382732262,63.354583370176414,67.13779490940034,59.87575987753216,57.07654833447731,59.51765159397229,58.044623802876586,55.65017253466357,43.577371076494416,57.75592042981967,58.078714320810704,40.873838150717845,47.34935532207143,44.27020274205063,41.34046441094225,39.83855926473304,38.68161297620362,38.87289925174781,38.46288160257506,38.32003913321174,38.321387031804164,38.30632521932426,38.25329815676859,38.230295232701266,38.33744911439949,38.21539424872313,38.189544059748286,38.15035283231889,38.08634754283308,38.28494560864691,38.106874820598314,38.08590424977558,38.117551071006645,38.06186998775583,38.03483126927795,38.02074473042204,38.071147696093114,38.007705415373216,37.99907605355435,37.989807590853424,37.97498120770619,37.98766857762208,37.99482812252468,37.97222183099445,37.96541603109224,37.9551584650084,37.95921241379883,37.97218849230382,37.95849635055801,37.95457581173757,37.958134451394564,37.95449466518899,37.95326759225197,37.95245074110387,37.95163411544323,37.950937038816015,37.949554520822865,37.94745900398692,37.9561308885808,37.95371695678254,55.50905954589561,58.25373796316245,64.10774671772606,57.94698053374715,51.93301606935563,68.07095999516946,56.4436306228555,51.99063662372416,49.429088575885004,44.512966814089296,38.3028383827662,71.01223219385963,48.98807652893133,38.07703096673888,42.32089672865326,38.109532229114,38.253989987213245,38.168472402967225,38.08028534608669,38.10469784645214,38.07705993867054,38.056891822915304,38.03888131972413,38.013926757818,37.99421676081022,38.00412045497655,38.0055347581536,37.990566097694106,38.00491262189931,37.981407843237314,37.974342587943084,37.96363959654455,37.9548579066789,37.94833536900587,37.95147096705565,37.95350867931235,37.94967456459196,37.94815675651339,37.94767846716351,37.94724278932765,37.94685774427748,37.946358572712626,37.94654674450372,37.947151662278074,37.94636083097781,37.94619832183305,37.94612565019459,37.946041505754806,37.94597620895365,37.945907462965934,37.94580053349648,37.946416695898364,37.94593147929732,37.945847336261714,37.9457857136003,37.94581478180939,37.94578121265404,37.9457709159781,37.94576131707315,37.94575467089875],"feasible_probability":0.4492853270716633,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.474609375,"counts":{"0100010011":34,"0100010101":26,"0100100011":24,"0100100101":45,"0101000011":35,"0101000101":93,"0101001001":8,"0110000011":3,"0110001001":3,"1000010011":27,"1000010101":32,"1000100011":17,"1000100101":39,"1000101001":2,"1001000011":44,"1001000101":71,"1001001001":5,"1010000011":2,"1010000101":1,"1010001001":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13628275999508332},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0,6],"fixed_cost":18,"removals":[{"variable":3,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[2,2],"max_component_qubits":2,"component_to_original":[[1,2],[8,9]],"components":[{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":5,"cost":7}],"conflicts":[]},{"qubits":2,"penalty":4,"objective_bound":3,"offset":4,"linear":[-4,-1],"quadratic":[[0,1,8]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":11,"cost":0},{"index":1,"task":"t3","resource":"r1","start":11,"cost":3}],"conflicts":[]}]},"best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":11,"end":14,"reserved_end":16,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":18},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":6,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7951420325958336,1.178141223066205],"expected_energy":5.8027426624308285e-08,"initial_expected_energy":1.4543719516614626,"history":[1.4543719516614626,1.3539962178638034,6.882129144551913,1.9044275309108512,4.585234148009025,0.30502330278355966,0.03872421976474675,0.4419728939415551,0.03154477705607196,0.1645364368539002,0.03175410794003746,0.030443264506606664,0.035299125715169195,0.041170206798163966,0.015287190941686263,0.011119991643634473,0.02231868008571248,0.010773702334672381,0.015147892724269772,0.010504974511676195,0.007391446214536626,0.00507956224797719,0.0035514679192990683,0.004872245364115848,0.0035517616601890532,0.004203207610004564,0.0033509695359311446,0.0032342202276859277,0.0034452716680917787,0.002987751645714147,0.0027951529491513777,0.002513068143539094,0.0019701760123299874,0.0013411741345882816,0.0011342035131932373,0.00021915016493520437,0.0032512350612124057,0.002909011230788835,0.0007903775862115711,0.00018407030520976132,0.00041376661252961235,0.00016916900807380963,0.00012768237857983285,7.459982862942244e-05,3.8356660465072e-05,2.2750186465898105e-05,2.1595082671969065e-05,1.2453386025845412e-07,0.00011388541462575913,3.9335310397178726e-05,2.3437497821801694e-07,8.813578123152329e-06,5.338085692876875e-06,2.729189772879464e-06,1.1683901482586459e-07,1.1036608614428251e-07,2.0761124977314205e-07,1.2731900224623712e-07,1.4284201098191467e-07,5.8027426624308285e-08,1.2834731114373286,1.1595617855321785,6.8201220524786645,2.127619601177603,4.376813617440906,1.0954330243504053,0.19503031589762107,0.10509127865412951,0.13439153294748618,0.18932226225706777,0.035023155298390264,0.08726620034098384,0.03181093648292007,0.045889331891064006,0.03186882203748012,0.02814360684848595,0.02562880454365083,0.025620604880698214,0.023980810289796484,0.022548421298114407,0.021020368183389645,0.0285273748797502,0.018748448038615743,0.017205251944553742,0.015819906919934443,0.015590719006058741,0.013407276411414497,0.011084768838267034,0.0094516615790936,0.013510372096387592,0.00823296164672366,0.0075335079612566256,0.009000836848809295,0.007007730367043835,0.006530773554595082,0.005631175491471681,0.004323330519159504,0.0031803466108948552,0.0020580977355594775,0.0028396993159867726,0.0029368697561360613,0.0019307413247518675,0.0033680720943247274,0.001552878967497874,0.0014257679463939668,0.0012010062524316226,0.0010086328600365329,0.0009290174326435675,0.0005768131706156672,0.0010133116369293038,0.000516566527378665,0.0007917466991017534,0.0005313312395528757,0.00044575649070231413,0.0004497689396071061,0.00042656075780224065,0.0004123472431940996,0.0004094843169821611,0.0004547223392534714,0.00041079205635702944],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09123401899705641},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":3618983171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.1277353271018185,1.1772226771583545],"expected_energy":0.0004780949564974268,"initial_expected_energy":0.7180823444682454,"history":[0.7180823444682454,0.9374190355402696,2.769440809485284,0.8544263830766885,1.4234484968018986,0.951065253031116,0.31711061586548905,0.2274026144838704,0.20798853145563823,0.3037456036539121,0.20418707795197177,0.1496078766548918,0.14209815685208185,0.11522344837650597,0.09404266902694702,0.08045511209998842,0.06611578513342695,0.0920742152301999,0.12574910736987083,0.0507201231445103,0.039643591268345775,0.02583828419302732,0.034535967741602155,0.02175570978713054,0.025639819303325515,0.021252837940661604,0.01879976220705808,0.01783327711733753,0.015592349818736749,0.014363284976806936,0.012332613805887493,0.010800098407385432,0.008244089468282426,0.010460995506932554,0.012138071288875561,0.007425053408813197,0.00732304057034684,0.007913728816783585,0.0068308634710540946,0.006018020123316034,0.0065162131231327955,0.005592213826456749,0.004799115322327887,0.0036996967498311153,0.008456841428185468,0.0027478047793001482,0.0033156073027470097,0.0032155036244292555,0.0026676190063244206,0.0028551328445878114,0.0026416148029572736,0.0025556985793141543,0.002398785397554469,0.0021326357691639594,0.0036207414670878933,0.0020305293649463068,0.0017129799516673863,0.001201567619631725,0.0004780949564974268,0.0028870555796672304,1.7606348114307058,1.7235172389738054,0.2779416390319237,2.2880024888489015,0.4214803299778134,0.22029831233400632,0.18507466061741257,0.1316365772318329,0.15879032600330012,0.19749944829614413,0.132574669834299,0.10562866497371443,0.11816845442319315,0.099329663618932,0.1115569383570483,0.09395753061561436,0.08905348278473052,0.07976561962351728,0.06589541722224773,0.05480181653437084,0.02699044103028267,0.22606573267030478,0.08670266282294861,0.07616140106997712,0.022968295733429157,0.019267885345922567,0.01867968830913079,0.02591076482919959,0.01863275370235549,0.016588688797931492,0.014067536061700145,0.012454827117190637,0.012616157183826613,0.011953198687264369,0.01167737631815361,0.012250981665116496,0.010833894721696475,0.01024555655067876,0.009603186369881342,0.008508453134667377,0.008008666797694023,0.005790250075763693,0.009757716357753497,0.005074794261434836,0.006937581767998594,0.0045773674696765925,0.004236439065719936,0.003795059591490406,0.0033780602366910084,0.0026584453109984793,0.001407843762128224,0.0020239070726179613,0.004653391963742545,0.002801355640832051,0.001325750053709221,0.0011036010015505026,0.0007965994631871104,0.0016713252424658683,0.000654521474599414,0.0007048352551589556],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08155749599973205}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.17302068600838538},"direct_metrics":{"exact_objective":18,"optimal_count":1,"combinations":24,"optimal_probability":0.08739705704432668,"feasible_probability":0.4492853270716633,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":33,"hit_curve":[{"shots":8,"quantum":0.5188783284815079,"uniform":0.2885690504976606},{"shots":16,"quantum":0.7685219371952522,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9464179064401612,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9971289592497447,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999917571250104,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":9.71445146547012e-17,"independent_samples":[{"shots":8,"best_objective":21},{"shots":16,"best_objective":18},{"shots":32,"best_objective":18},{"shots":64,"best_objective":18},{"shots":128,"best_objective":18},{"shots":512,"best_objective":18}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999999917103676,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3751050503081532e-20,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9998406350145008,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.9998406267261895,"diagnostic_seconds":0.0035077799984719604}
+{"instance":"n4-s0-r1.json","seed":8,"direct":{"status":"feasible","best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":11,"end":14,"reserved_end":16,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":18},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0297536381310555,1.85975341901063],"expected_energy":40.291561826767634,"initial_expected_energy":58.850227271638616,"history":[58.850227271638616,53.40380172174348,58.383998759287934,69.14270658971637,56.806403217755395,54.98125686326853,52.7743852653328,51.9604889781325,52.02562270032985,51.342692834481035,50.82868359430236,49.947475725796046,48.587184015046105,51.01587734779376,50.79294393523047,48.429344220598225,48.73174441598652,48.504906605700384,48.62928927425777,48.44364967994838,48.35945937944513,48.29689867638847,48.170743830250856,47.93710025785131,47.864232041857846,48.005540323936074,49.262644491102975,47.809535088264425,47.537777107191324,47.521286539281235,47.59040058641849,47.53304095759332,47.491973658836706,47.46493072694533,47.43165647680744,47.40485023289766,47.370974688934645,47.31166862881217,47.19872298050691,47.01480235776367,48.523820744538924,48.79426678291574,47.21525838992411,47.17998971447258,47.031863230418935,46.99373992624787,46.9838446254792,47.04375496470597,46.96821044166939,46.95902581307215,46.94876080141454,46.932347919068064,47.053820126587766,46.923381472004806,46.90499091999999,46.868697933112635,46.809152015167356,48.06667059265269,47.01575322984384,47.017644145993685,45.03187938938716,56.264913049950806,59.123256916918535,61.05448032426418,55.79127199037224,43.77331927455208,42.15026236617663,43.079577160184684,41.44341441163486,42.22782663230715,40.979887963380285,41.18048238726955,40.9891156860974,41.02516536247313,40.92061661519926,40.90427465027014,41.071012666072576,40.876390607738436,40.82663394410708,40.74816184212675,40.64636344636457,40.548805061691695,40.45842424929842,40.443284294119614,40.324290454784084,40.41618086856175,40.31798589860954,40.36369499279792,40.313017055958184,40.30701042159578,40.3037918061501,40.35532599719329,40.29533077840698,40.29930573408761,40.30026213248581,40.296597741665074,40.29574039391616,40.29524270272466,40.29571693649825,40.29528623046998,40.29484613781764,40.29435692838763,40.29490898381178,40.29407893010626,40.293826277525255,40.29333146330046,40.29248262347157,40.29295085841024,40.293300336367615,40.29232090048922,40.29263250420341,40.292187505947666,40.29202252729037,40.291736122768384,40.29177763241999,40.29176823736668,40.29168456715466,40.29174579718554,40.291788769798025,40.291561826767634],"feasible_probability":0.5012078379388806,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.48828125,"counts":{"0100010011":15,"0100010101":41,"0100011001":8,"0100100011":2,"0100100101":6,"0101000011":38,"0101000101":68,"0101001001":37,"0110000011":4,"0110001001":9,"1000010011":10,"1000010101":46,"1000011001":12,"1000100011":2,"1000100101":3,"1000101001":2,"1001000011":58,"1001000101":86,"1001001001":50,"1010000011":4,"1010000101":4,"1010001001":7},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1567727469955571},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0,6],"fixed_cost":18,"removals":[{"variable":3,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[2,2],"max_component_qubits":2,"component_to_original":[[1,2],[8,9]],"components":[{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":5,"cost":7}],"conflicts":[]},{"qubits":2,"penalty":4,"objective_bound":3,"offset":4,"linear":[-4,-1],"quadratic":[[0,1,8]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":11,"cost":0},{"index":1,"task":"t3","resource":"r1","start":11,"cost":3}],"conflicts":[]}]},"best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":11,"end":14,"reserved_end":16,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":18},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":6,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":3257320810,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.8194164744858021,1.177137107527159],"expected_energy":0.0008117841904508237,"initial_expected_energy":5.177056496209724,"history":[5.177056496209724,5.516497801047533,4.9168095401803855,2.202986733350246,4.2657888686544965,2.4062562680960373,2.466303653515909,2.5772065894786724,2.355206905912258,1.9118841419238297,1.5313585383175619,1.5775707860012984,1.4547127959878339,1.3158758526657133,1.0699075861625957,0.6746523073330817,1.1107576889896749,1.5089771111560495,0.7116321577320075,0.6473302212363676,0.7544980627776909,0.5443648421962024,0.49091154105936624,0.4096085321378076,0.28486765187739616,0.26832253275654366,0.07444860269296866,0.911409885204336,0.28210500921602266,0.06225646758915855,0.16341739251793685,0.07942679245129163,0.07877061291975472,0.054667042281829385,0.05010618315506883,0.05877608471300498,0.04737303548899356,0.044836665713925125,0.04006062368670303,0.03351905086755579,0.02560949610008965,0.02037419576808504,0.0375858646352244,0.017344890875371707,0.015840122991894322,0.022290942553236978,0.014028142496811358,0.01279560861932759,0.011555961313556342,0.00992021478819549,0.007976005879471282,0.006954444753474561,0.012886009779350331,0.005644016920790798,0.005169012252602474,0.004289298355508535,0.002915527506205087,0.0022192849492173256,0.0036704200475297342,0.008602647148713841,2.6145468781473666,2.5995127094200314,6.8963662798351155,0.8538208161626972,6.600302589159704,0.23060764747106727,0.5921716144895162,0.20200434256022085,0.6442729388431576,0.16633761073933861,0.12150248964417744,0.08541770668818148,0.08593795713108865,0.13474191494821186,0.08427980250972578,0.07292179654203404,0.05682970714455246,0.03911949062268054,0.03835534215050156,0.01787423137818918,0.018183233502681646,0.03589794542520713,0.021764163167628588,0.015188406281683612,0.012727986202958232,0.017132216507656062,0.011227148513225746,0.01029303168725484,0.00911821949244577,0.007042412119955117,0.007299120534175369,0.007990438395902614,0.006891333722817995,0.008928864503631718,0.0057212101301508935,0.005095568431032002,0.00425276830465007,0.0028680928945958853,0.0031698883628639824,0.004876299256259551,0.0030280959472913805,0.002737488446497217,0.002992338233317685,0.0026455075906287105,0.0024809002661620367,0.0022044761723775453,0.0017021140999781419,0.001810483217304331,0.0019179124859554806,0.001681317595538519,0.0019077711995179043,0.0016818411248342104,0.0016076067684720292,0.0014895088298651192,0.001459319031958501,0.001283193544407733,0.0011276473712514847,0.0009120157687882879,0.0011236392538181278,0.0008117841904508237],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08891533999121748},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":631391383,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.0932018646271295,1.1781042522381528],"expected_energy":6.01261689699799e-07,"initial_expected_energy":2.971867788479253,"history":[2.971867788479253,2.764579603896015,0.9448802783007588,0.7077162044991011,0.9710615996572145,2.4359666088146836,0.8124124529154404,1.1145584386489469,0.6426034051018028,0.4808678093113612,0.27322951807293705,0.2957288255954273,0.2263299194084893,0.20458399453747877,0.17676948898024658,0.12975542842944554,0.257967810781527,0.17876557375943172,0.1533046845612992,0.12041086622698599,0.13094880768955414,0.11785066786518822,0.11316696495965853,0.10793219857749303,0.09802454066117097,0.08620024039777911,0.07073551198551874,0.06839942843233637,0.13627473715986294,0.052653566812494994,0.048135790349561204,0.04194816636096532,0.036547324141934734,0.09580521158054398,0.02707179447821414,0.028463241702919202,0.02626563613538936,0.02743816374967221,0.02576671249784532,0.024719441211918408,0.022909204949990367,0.01925274481648485,0.012694146515470094,0.018749158131547667,0.028492072813949,0.015727206489778586,0.012701572174552127,0.01302069797888599,0.012195244647867427,0.01181287103650986,0.014477485569637336,0.010782046584531255,0.01007548565873808,0.00949980390577464,0.010266959031896016,0.009052366284056094,0.008431851299780305,0.007264223240023832,0.005280732161599339,0.01159940680989408,0.24784074052573668,0.11900143479794813,1.549677308489552,2.5932658413035976,0.2661385881700896,0.5169029637796572,0.09601112874551171,0.020752775203868576,0.002522601795716726,0.012139889624314166,0.009587836341691112,0.0015141694894904992,0.0027500840901909292,0.0017027355141192018,0.0012998071755106933,0.001781533988125623,0.0011758112075645952,0.0010899859669195977,0.000978675238452189,0.0008431849159227438,0.0007021055439613429,0.0005992361748950228,0.000992083676780526,0.0004930857182219308,0.0004811364827755097,0.0003933911481448981,0.0003524230976103569,0.00028657156155736366,0.0002243653665439294,0.00018795589659336125,9.58506211818767e-05,5.032035692586131e-05,0.0004810855823559338,0.0005623471084800811,6.223663158711322e-05,7.936801237185798e-06,0.00010996679412539359,4.834989681364339e-06,1.3680564589915643e-05,3.9511375239747825e-06,1.277642072900016e-06,3.6549016174013807e-06,1.751121858724839e-06,1.3035855901200203e-06,1.0979049559604e-06,7.895683593386012e-07,1.1566113552863076e-06,1.2140769065349706e-06,9.462834113189316e-07,7.456606254639279e-07,7.577870300385369e-07,7.152295307009718e-07,6.948443710422798e-07,7.051529361518903e-07,6.822747139234661e-07,6.611429021913316e-07,6.370826903611553e-07,6.662783706163435e-07,6.187119362954826e-07,6.01261689699799e-07],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09039001799828839}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.17958009100402705},"direct_metrics":{"exact_objective":18,"optimal_count":1,"combinations":24,"optimal_probability":0.0857285781660868,"feasible_probability":0.5012078379388805,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":34,"hit_curve":[{"shots":8,"quantum":0.5117961961382529,"uniform":0.2885690504976606},{"shots":16,"quantum":0.7616570458949208,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9431926362284642,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9967729234213284,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999895859767554,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.249000902703301e-16,"independent_samples":[{"shots":8,"best_objective":28},{"shots":16,"best_objective":18},{"shots":32,"best_objective":18},{"shots":64,"best_objective":18},{"shots":128,"best_objective":18},{"shots":512,"best_objective":18}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9998840308299356,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.87890977618477e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999997995794367,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.5617169965001163e-21,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.999883830432615,"diagnostic_seconds":0.003977909000241198}
+{"instance":"n4-s0-r1.json","seed":9,"direct":{"status":"feasible","best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":11,"end":14,"reserved_end":16,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":18},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0248626104726797,1.8595044520689648],"expected_energy":40.29099927475814,"initial_expected_energy":70.14328401389326,"history":[70.14328401389326,67.38225702511953,42.86356150752096,59.883067032176584,48.22084292308458,42.343988742024905,40.9226692886083,40.82740430186923,40.3281890039574,41.2267238540446,40.291066872466644,41.051206562534205,40.453400240833126,40.34130125803501,40.2910645821824,40.29771349187331,40.30018416192027,40.29242565117034,40.29186173908499,40.29108397888044,40.291019642332685,40.291089265707356,40.29103625572221,40.29102487026749,40.29101710427213,40.29101424057788,40.29101627149258,40.29101166212453,40.29100943874129,40.291005919700545,40.291002796322324,40.291000613963746,40.29100185325565,40.291001955134675,40.291001666490054,40.291000420704144,40.29100000605217,40.290999620464945,40.290999631986395,40.29099998548806,40.29099960246786,40.290999642276915,40.290999644457784,40.290999534934905,40.29099943912846,40.29099935112835,40.29099927475814,40.29099932311637,40.290999336784196,40.290999285434374,58.35349011681039,58.229304664067755,58.509212834290196,72.59900298782176,46.86970141058374,60.19380524523219,50.506478758252456,46.74253180437467,47.1858427779286,46.9489115178312,46.69920375014778,47.12255959186557,46.83437318606361,46.74975032737588,46.70218689203439,46.69457391001575,46.686564631882604,46.67068726764787,46.64587694135781,46.73877520372594,46.801574284011686,46.637745551127146,46.64770609564132,46.63902466606949,46.633590956417564,46.63255330565615,46.637479020721216,46.63156277589918,46.62971819939828,46.62614824683767,46.61921045644319,46.605822539623034,46.58211249049742,46.75936625268629,46.72837050638161,46.59158148650241,46.58849271340601,46.584784512451236,46.57900552737855,46.58101489085213,46.57831161776405,46.576873034570276,46.575341946921725,46.57238231455714,46.56836950336296,46.56259850531394,46.560324364946865,46.578646032337915,46.55572390120301,46.55332883755766,46.55065260159641,46.547197117489105,46.554015510047186,46.54352556682503,46.54466040069597,46.54278761360659,46.541584480266366,46.540304350379806,46.54573293857805,46.53930370228827],"feasible_probability":0.5010864023272469,"one_hot_probability":1.0,"sampled_feasible_fraction":0.5,"counts":{"0100010011":15,"0100010101":40,"0100011001":4,"0100100011":2,"0100100101":1,"0100101001":2,"0101000011":55,"0101000101":57,"0101001001":43,"0110000011":5,"0110000101":2,"0110001001":10,"1000010011":11,"1000010101":49,"1000011001":8,"1000100101":5,"1000101001":1,"1001000011":63,"1001000101":81,"1001001001":40,"1010000011":2,"1010000101":3,"1010001001":13},"circuit_evaluations":110,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":50},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13495720700302627},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0,6],"fixed_cost":18,"removals":[{"variable":3,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[2,2],"max_component_qubits":2,"component_to_original":[[1,2],[8,9]],"components":[{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":5,"cost":7}],"conflicts":[]},{"qubits":2,"penalty":4,"objective_bound":3,"offset":4,"linear":[-4,-1],"quadratic":[[0,1,8]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":11,"cost":0},{"index":1,"task":"t3","resource":"r1","start":11,"cost":3}],"conflicts":[]}]},"best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":11,"end":14,"reserved_end":16,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":18},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":6,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":747784396,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7966230722777816,1.1781543477727896],"expected_energy":2.820695716848159e-06,"initial_expected_energy":1.9725273470428233,"history":[1.9725273470428233,2.3015727366391916,6.8619889869178525,1.3806736698537678,6.548318266166712,1.8335252701457758,2.038593453381863,1.1503654669755474,0.7095290185818801,0.19334551164598648,0.20538209647266095,0.10184419084449485,0.12257907804013413,0.09402929889822036,0.20302845452289867,0.07602512914998341,0.07365250636113538,0.054524365416999995,0.05269726899890088,0.04253209907657378,0.03447664908473122,0.024870716812508274,0.01547476410049918,0.1264657781407592,0.009951295324200983,0.013906594979918502,0.011347860372337608,0.0079795399679539,0.007704829763742247,0.0068322876646776465,0.006410098807330334,0.008313624986363014,0.0053811371973968855,0.004976276111168336,0.004101103324428241,0.003547013604877314,0.0028737482767264106,0.0019901991579460644,0.0010039250166528793,0.000976843164422221,0.0004926835159005425,0.005305265283658937,0.0003411421215822115,7.697659604108403e-05,0.0008172218920473756,0.0001244240969707398,0.00020817170624556363,6.716459461231668e-05,3.462856545687991e-05,1.5362821967807125e-05,1.4241329566980576e-05,1.3596673847795705e-05,2.752953209841016e-05,1.053347958143787e-05,8.328041423029876e-06,5.289770234264995e-06,5.217371197989417e-06,2.820695716848159e-06,5.18650202236927e-06,4.71949514418541e-06,6.540112856115792,5.582792868367809,3.023749024006225,2.051437321098022,3.28334240971268,4.781194691802805,2.6083211369397854,2.317168820256822,1.6500106439044095,1.4505194775684402,1.1300229796477699,0.6729412978465088,0.6513735311393887,0.2436023725857496,0.8965559749106728,0.717958755246169,0.2136893333246918,0.2376228023659224,0.19778737149058476,0.3417685912596684,0.1582296858790405,0.14087208527362158,0.12191279025375418,0.11029801366647343,0.07414520613544247,0.11930011081940536,0.06414056058988822,0.09398162826153302,0.06319452032088216,0.05483134333273411,0.050746040682746144,0.04432925444843688,0.038699714904220986,0.040167144128025786,0.036770115602101125,0.0437582316258145,0.03542467834889853,0.033427189121211676,0.03139267156831161,0.029719209803509734,0.02537259265602575,0.022358586480689942,0.01891500916270376,0.013189173352397988,0.0048786912619605514,0.028582783043817533,0.018151686457773444,0.005384012185433792,0.00514464398104323,0.0052585872868522315,0.005304402677058953,0.004805308409307584,0.004582615251597047,0.004276848603287308,0.004637555343672535,0.0040894255199670085,0.003908499442966008,0.0035600584747070103,0.0029051710898218967,0.0020188208184779544],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08265852299518883},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":14,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":4053640108,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.1581546914430265,1.1756040800701197],"expected_energy":0.0017892199751041549,"initial_expected_energy":2.737870321104102,"history":[2.737870321104102,2.5815571975299467,0.4021025187576819,1.3284332604977038,0.77083640654415,0.5862841755238557,0.1977640689451704,0.23666621779557073,0.20663845456484092,0.23202903974437195,0.1777871522551498,0.20129080817056527,0.16653888698559643,0.17370747827497765,0.16040039985220958,0.1561782538959506,0.158600030108466,0.1548621309528992,0.1523979506318502,0.1482590759896054,0.1454266328414287,0.13472374289863426,0.12576933715301353,0.10859463023413944,0.09167367844552611,0.07468417384965578,0.07528498207574028,0.12258485031820826,0.07566941433767303,0.06273438760668362,0.05811801681845502,0.05201572959126562,0.046755532854855904,0.03685044864912927,0.01943807991636985,0.04972896117294819,0.09276981806405799,0.02304424517698956,0.025299598929269237,0.023884497071101136,0.01850791365724703,0.021412622678453647,0.017454109917175047,0.016595863589588977,0.01504423358080579,0.015475115465189771,0.014473067356040864,0.016308290047621545,0.013531620933484294,0.012741214936889825,0.011321834299027594,0.008843476807643543,0.006786768584970262,0.006367049677025699,0.0023743573442567122,0.00400370992886947,0.00963917158875664,0.0029770846029245467,0.0017892199751041549,0.0019583775604267925,2.443034743223058,2.1174447304583923,0.8028576298722025,1.4294299483474115,1.1517322623521713,0.8828319252480669,0.6696385237017266,0.7834535815721525,0.62372880538259,0.6000808623138382,0.5512067828872167,0.47118896921001985,0.32001200955951786,0.3354502036731168,0.5651409384433799,0.3919567282578095,0.30274241315752115,0.311203469730629,0.2793182439822755,0.27988485975733635,0.302848375492492,0.2806389143955086,0.26972036425143153,0.25375141131847195,0.22344897330742883,0.19684786534624996,0.1493670131679442,0.17378926449457732,0.20511363475128963,0.15009285220148577,0.13398860790488182,0.12624636252056962,0.11490237698975757,0.10434436102807748,0.09077414577737948,0.0725888462308654,0.06439509155033876,0.12436053300816277,0.05312597445922504,0.05071992464514474,0.042218337891654086,0.034303495901195774,0.023437711699902053,0.03223199871069403,0.06325252444843868,0.019154415865113975,0.014760664877381879,0.01233366204180441,0.01407497285973279,0.02577700918574346,0.011885630539848036,0.01312570339663829,0.011263638392423957,0.0099491275780128,0.00924533346567074,0.00805667541009376,0.007587255010917806,0.006269002823191035,0.007121313839075718,0.006474484328536589],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08037658399553038}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.16328956000506878},"direct_metrics":{"exact_objective":18,"optimal_count":1,"combinations":24,"optimal_probability":0.08596603666272902,"feasible_probability":0.5010864023272469,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":34,"hit_curve":[{"shots":8,"quantum":0.5128096615975217,"uniform":0.2885690504976606},{"shots":16,"quantum":0.7626455741672787,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9436628765376192,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9968261285199844,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999899265398283,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":18},{"shots":16,"best_objective":18},{"shots":32,"best_objective":18},{"shots":64,"best_objective":18},{"shots":128,"best_objective":18},{"shots":512,"best_objective":18}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.999999597043469,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.079437612157199e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.999403593341632,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.348356728138384e-18,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.9994031906254269,"diagnostic_seconds":0.003413878002902493}
+{"instance":"n4-s0-r2.json","seed":0,"direct":{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":4},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.2860730761589085,1.129051594960312],"expected_energy":24.023458701023607,"initial_expected_energy":29.977050406240313,"history":[29.977050406240313,28.598114120001767,37.68533154146489,45.43772109487807,28.51111712713422,28.209057994101038,27.87043859816818,32.965338288349145,24.85567911055376,26.658885894917304,24.794044717941432,25.553023145055114,24.7753526126554,24.591448872942987,24.28738733143737,24.096024370333772,28.568235772476992,26.642340944225054,24.201473041686103,24.10557949370229,24.861336013407495,24.040416082004818,24.20501682123861,24.038171737013954,24.04223321204865,24.03977868521902,24.03608975558097,24.036621101192388,24.035317401502777,24.036860598296002,24.035649078180455,24.03492578735416,24.034367478732932,24.03345090742708,24.036007821680215,24.032939134061323,24.031943385753678,24.030064663552796,24.027797794223503,24.041465840876178,24.026847703549002,24.027163086062412,24.027403609260315,24.026114625247768,24.025927338912567,24.026406221913383,24.025918310124446,24.025759058044624,24.02551077129589,24.02497823585223,24.02407642985606,24.02730159298809,24.027466133202804,24.023826201731058,24.02422636162689,24.0239141196938,24.023673446416055,24.023938287637666,24.02356304339028,24.023458701023607,52.08086150238115,48.36016684995025,34.18636892963435,34.55547237887946,37.56572321995783,37.25095739312955,29.768811977797252,29.30719722322118,29.692694685262282,29.25904933165916,29.87393521181749,28.955948266773305,29.147310417172104,28.91209473143394,28.968552065126076,28.905241261609014,28.886399868402407,28.855587640572985,28.890285884574375,28.830367524579653,28.82126537523395,28.784754693364935,28.734022795340262,28.67462396229743,28.552864865674547,28.282747338426788,28.197554395097875,28.242589472696054,29.373691634276028,28.41912313823673,27.79677282209098,27.657676748891944,27.972373627249752,27.570284984061786,27.496695334524063,27.345736068571806,27.06395351219107,27.854226688623037,27.32914168048515,27.30700118109026,27.1338990903033,26.978740007342186,27.053478707955968,26.959218628983653,26.917958414968567,26.830379373683378,26.655644964113538,26.30874189504575,25.651661423202153,25.159781362865033,30.976124147382915,32.57405787790853,25.211668921675617,24.53564999744488,26.02845219692106,24.597030895514465,24.48230509626268,24.454047163498355,24.40577836812036,24.332824515938484],"feasible_probability":0.7261376566818467,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.71484375,"counts":{"0100010011":4,"0100010101":25,"0100011001":27,"0100100011":13,"0100100101":10,"0100101001":1,"0101000011":7,"0101001001":6,"0110000011":197,"0110000101":118,"0110001001":25,"1000010101":2,"1000011001":1,"1000100011":25,"1000100101":20,"1000101001":5,"1001000011":6,"1001000101":4,"1001001001":5,"1010000011":5,"1010000101":5,"1010001001":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13057264698727522},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":4,"removals":[{"variable":3,"forced_by":0,"reasons":["resource"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":null,"component_qubits":[2,5],"max_component_qubits":5,"component_to_original":[[1,2],[4,6,7,8,9]],"components":[{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-5,-1],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":5,"cost":4}],"conflicts":[]},{"qubits":5,"penalty":19,"objective_bound":18,"offset":38,"linear":[-19,-13,-10,-19,-10],"quadratic":[[0,1,38],[0,2,38],[1,2,38],[1,3,19],[3,4,38]],"domains":[[0,1,2],[3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":6,"cost":0},{"index":1,"task":"t2","resource":"r0","start":8,"cost":6},{"index":2,"task":"t2","resource":"r2","start":12,"cost":9},{"index":3,"task":"t3","resource":"r0","start":9,"cost":0},{"index":4,"task":"t3","resource":"r1","start":7,"cost":9}],"conflicts":[{"i":1,"j":3,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":4},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":3757552657,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.976259938889895,1.1776093425718863],"expected_energy":0.00010808494722878196,"initial_expected_energy":3.917930183397794,"history":[3.917930183397794,3.634517676869588,1.666674316321336,0.6761049599410349,1.988508171491999,2.1228187515914927,1.1790168869698707,0.9806770903889356,0.5961655901257137,0.45839923029525137,0.40767044904536226,0.35395540814018145,0.36564648233849045,0.33556028155781026,0.3252653878924188,0.344028373891191,0.3186939986999849,0.3061900633173398,0.2848656812156532,0.24741680125657414,0.2960067613969002,0.2390401219706036,0.2151462057970305,0.17690136320709723,0.128016905249286,0.10678054174571312,0.04510508862342496,0.1518160993271702,0.19255194898667152,0.037324157445191124,0.08097221333390434,0.03926865688746523,0.03629374466326919,0.04211468156875824,0.03519437112829463,0.03328686611887228,0.03036907462181837,0.025930450455531506,0.016983144453895566,0.034361849996427295,0.030268364571712985,0.020840969164363624,0.01575585264501058,0.011060189966870557,0.006029730620166264,0.005515049771062995,0.0013445032305568795,0.018626857365634825,0.006748893612309227,0.001087798205391795,0.003148436449299111,0.0011162325424407572,0.0010415012181010496,0.0010983413146813334,0.001107484816930514,0.0009401331293545688,0.0008759120503687316,0.0010601486240339269,0.0008687712852085046,0.0008022005416214947,2.626133350603333,2.9513556995421464,0.9270995527481021,2.2018718700739313,1.3748576348816348,0.9627474845277341,0.809652166175387,0.9513710142487022,0.7438774521304148,0.682092299571073,0.6008045250668553,0.48520611682951426,0.3617836885218604,0.3394193009101875,0.19005991421163324,0.11269750726023084,0.026682755594483576,0.024245959360768243,0.29483889173926836,0.027266778176411093,0.004925323961646758,0.0604106693352148,0.008193175307189606,0.008073648560842204,0.0021068197145626155,0.003422383063039641,0.0022711164394869977,0.0025764312683956812,0.0019234336172086306,0.00240871140356394,0.0017351819296002133,0.0016084461631787061,0.0017702283594346474,0.001530285660890258,0.0014535140087780596,0.001336093764809532,0.001105035376758156,0.0008480140328661376,0.00046657017745578257,0.006267514070800685,0.0015275617447179856,0.0010072303773304596,0.0004204321344009892,0.0003595670155775589,0.00036813551574426046,0.00031648082348002273,0.00031759159037838457,0.00032266236219854013,0.0003055429408670539,0.000288510122521283,0.0002885860901407592,0.0003363555607863219,0.0002735110873979704,0.0002644697258690908,0.00026384852463814354,0.00028003208390615686,0.0002495517230650497,0.0002244375238267704,0.00018190617565279075,0.00010808494722878196],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07380241301143542},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,0,0,1,0],"qubo_energy":0},"seed":673228719,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.2867512047118639,1.2034587932950152],"expected_energy":8.124313527061206,"initial_expected_energy":9.376695987728587,"history":[9.376695987728587,10.31632691207746,15.211456827036278,11.529249780115554,13.259934815664952,9.051480311355128,8.35478480259104,8.563649474110887,8.410905344923341,8.41379280453301,8.307872182893089,8.255268264011715,8.22573871716561,8.76930190229341,8.160533559951949,8.232947594659603,8.213527972887547,8.162941283926811,8.156091802455563,8.162646557404443,8.157555364145127,8.15423031836186,8.155800877541063,8.15176279789543,8.149776663818209,8.145438754816652,8.137959506182971,8.157540923748996,8.145051975340227,8.139993011285867,8.138995030890507,8.137034093602868,8.138759847954585,8.135386181653526,8.13389996479879,8.131851168823758,8.129436440185433,8.127007482372612,8.148093714126706,8.126443675128762,8.126193036369557,8.127686404052698,8.12513363502528,8.125630475858614,8.125068588057658,8.125295772758697,8.125060792854601,8.124992855342928,8.124896019208734,8.124752791583095,8.12475457117623,8.124722258974181,8.124722387697087,8.124743487936325,8.124688375622727,8.124654899488608,8.124708666760222,8.124625145966014,8.124597929432733,8.124550339096176,14.798405513202951,15.187869332173385,14.287000463559067,10.346958777485419,11.948308390779113,10.744589326921654,10.322690875504072,11.610554403854369,10.313678329427248,9.963313394413252,9.72725429436715,9.730446872657856,9.544256133936779,9.389548092094195,9.129738117076503,8.736408335847932,8.372499193776909,8.168821979773549,9.533361672778772,8.371687153991724,8.29078585296612,8.201870684644666,8.186374920285044,8.184557700710567,8.173336668377786,8.165338615193722,8.15954631974353,8.153418898860885,8.157196246882801,8.150874261678432,8.148557017678876,8.14450155372471,8.136981906799814,8.129722261072047,8.148057106238646,8.155006897605398,8.128727400546442,8.126609225452283,8.128808001330002,8.127714858014954,8.126668160222291,8.126291432070323,8.126346384940602,8.126371121658854,8.126172102202077,8.126086073287297,8.126707377322614,8.125873016131381,8.125713046548903,8.125475731183803,8.125051308443165,8.124688764668461,8.12461692009323,8.124401982424136,8.125623704101931,8.124333220647213,8.124345691485823,8.124313527061206,8.124321070963218,8.12433217536925],"feasible_probability":0.958237231150808,"one_hot_probability":1.0,"sampled_feasible_fraction":0.955078125,"counts":{"01001":161,"01010":23,"01100":108,"10001":148,"10010":39,"10100":33},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09151813200151082}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.958237231150808,"total_shots":1024,"runtime_seconds":0.1655422460025875},"direct_metrics":{"exact_objective":4,"optimal_count":1,"combinations":24,"optimal_probability":0.008397172196384273,"feasible_probability":0.7261376566818468,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.4166666666666667,"shots_for_95_percent":356,"hit_curve":[{"shots":8,"quantum":0.06523583974762656,"uniform":0.2885690504976606},{"shots":16,"quantum":0.1262159647076751,"uniform":0.49386600409019976},{"shots":32,"quantum":0.23650145966826114,"uniform":0.7438283781843783},{"shots":64,"quantum":0.4170699789113041,"uniform":0.9343761001763541},{"shots":128,"quantum":0.6601925905135325,"uniform":0.9956935037719361},{"shots":512,"quantum":0.9866668925934982,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.7755575615628914e-16,"independent_samples":[{"shots":8,"best_objective":13},{"shots":16,"best_objective":13},{"shots":32,"best_objective":8},{"shots":64,"best_objective":4},{"shots":128,"best_objective":8},{"shots":512,"best_objective":4}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999729787631928,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":7.657177843178875e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":6,"optimal_probability":0.28746834737198507,"feasible_probability":0.958237231150808,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.8333333333333334,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9335594386090623,"uniform":0.7674319606386222},{"shots":16,"quantum":0.995585651802057,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999805135299873,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999996202775,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.28746057962169613,"diagnostic_seconds":0.003860521988826804}
+{"instance":"n4-s0-r2.json","seed":1,"direct":{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":4},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.052893098096936,1.118186527354575],"expected_energy":24.292513201121782,"initial_expected_energy":50.971930601155535,"history":[50.971930601155535,47.73085817887613,29.48828359189982,39.34471610176204,31.678779990794837,30.62902244418429,29.881225432320498,29.39111710431379,29.06706109410696,29.25628174241749,29.030443256976536,29.09622544915993,29.025003143075025,29.005090908016687,28.9882319678792,28.95921686250308,28.931031673553086,28.877478194312765,28.857744569412162,28.7047163807592,28.77238151205521,28.68230387414593,28.791926472714024,28.662870189462513,28.62801810732678,28.563067209491795,28.43621664380896,28.163296195603433,28.262483875166424,28.841908847386485,28.251349028366324,28.15415802971972,28.22265255492902,28.153496936275253,28.124408588845682,28.078871887911866,28.004627336564013,28.076858164579598,27.970781868477573,28.08094824614769,27.950367111047502,27.914033773699394,27.878893307512453,27.85669592389952,27.76572434063373,27.699484042734394,27.54151613053959,27.207169794900157,26.789867412226744,27.017533858672437,28.04281322450583,26.979701627355382,26.52400925894436,26.459595041347015,26.981778783359836,26.33143281754132,26.252033452446167,26.16970043546781,26.054315373927764,25.905097956924756,31.57648053670473,30.49812061938587,39.09580463263571,48.73776844488744,32.246032233487874,34.668428394261646,30.31270222435814,29.696017020150588,29.63918623217103,29.897802272396248,29.55774812855036,29.492354464036946,29.43614796605335,30.030288830239183,29.30517682017433,29.287493547147964,29.205645966231916,29.07081882440811,28.780662373298448,28.1786673034508,28.67514246937951,30.960536354668342,29.9922269179602,28.070456826496756,28.163705124953673,28.0439906581122,28.284829217008188,27.999509141355873,27.932459531685893,27.867184714941263,27.76817816679688,27.571650455229612,27.165242763234538,26.381862335002598,24.730845454860823,26.662995352339614,42.804430051877745,29.371478014546444,26.896973875756984,24.63593236664341,24.90308283198578,24.695245291940868,24.616175289407686,24.697195451366042,24.67934490736934,24.610384851380022,24.58952574446283,24.56779979246964,24.58445926078211,24.553865933585207,24.546110117056053,24.559240726115164,24.531629859324198,24.517837586838667,24.49082546284255,24.44624014342176,24.403630530156953,24.292513201121782,24.655842916073848,24.46284098055625],"feasible_probability":0.7192986432049695,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.6953125,"counts":{"0100010011":3,"0100010101":38,"0100011001":24,"0100100011":12,"0100100101":6,"0100101001":4,"0101000011":3,"0101000101":3,"0101001001":5,"0110000011":172,"0110000101":122,"0110001001":12,"1000100011":49,"1000100101":30,"1000101001":4,"1001000011":8,"1001000101":5,"1001001001":3,"1010000011":4,"1010000101":4,"1010001001":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12917815700348},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":4,"removals":[{"variable":3,"forced_by":0,"reasons":["resource"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":null,"component_qubits":[2,5],"max_component_qubits":5,"component_to_original":[[1,2],[4,6,7,8,9]],"components":[{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-5,-1],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":5,"cost":4}],"conflicts":[]},{"qubits":5,"penalty":19,"objective_bound":18,"offset":38,"linear":[-19,-13,-10,-19,-10],"quadratic":[[0,1,38],[0,2,38],[1,2,38],[1,3,19],[3,4,38]],"domains":[[0,1,2],[3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":6,"cost":0},{"index":1,"task":"t2","resource":"r0","start":8,"cost":6},{"index":2,"task":"t2","resource":"r2","start":12,"cost":9},{"index":3,"task":"t3","resource":"r0","start":9,"cost":0},{"index":4,"task":"t3","resource":"r1","start":7,"cost":9}],"conflicts":[{"i":1,"j":3,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":4},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":1641411168,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[-1.9586301872079193,0.3935565374848122],"expected_energy":2.691260906263017e-05,"initial_expected_energy":0.8165996011170624,"history":[0.8165996011170624,1.496713441384677,2.1699441672654767,2.727223719745769,0.9704482089183606,0.7729414134045937,1.0067245973405898,0.7268245727047016,0.653822560565129,0.5682092265055553,0.772370634530928,0.5108124032217056,0.459523537527711,0.4377942407247816,0.318818641567518,0.32795657559449226,0.307675994764352,0.36863333113640345,0.25937009422647744,0.2284776362465561,0.19066706744293024,0.1328297034570621,0.24893322073446575,0.3023880501014462,0.13045704640814484,0.0955163192804986,0.06350139658184299,0.03608820459617523,0.010930670639621352,0.1179658167557186,0.1178424012057652,0.0689577704016028,0.007864988202540559,0.008098532055040459,0.008738707386223758,0.006657270403963358,0.0061849613147281005,0.006829904775332353,0.005570759898951408,0.005149756013932278,0.004547050677417156,0.003729193738829828,0.0029122588822591976,0.0022283589546748333,0.005324468751267448,0.0024531484632094747,0.0023583847029737507,0.0024937080010004426,0.00218205115304085,0.0020532542071781314,0.0019188637500767067,0.002036412045217743,0.0018329653530370599,0.0017788999801299507,0.0016923164995888247,0.0015313188143909048,0.0012343782502636524,0.0011324379446207102,0.0007775378394327885,0.002204936993390925,2.309988641359324,2.786977676311394,2.1899149341181507,2.021272602128008,2.864455585297492,1.67207208497161,1.4044170520954438,2.096744630855842,1.7924843724290382,1.2277749561348414,1.0480800881775563,1.9845216713776563,0.8073141546418755,0.7403427939204071,0.5658178121678762,0.3682339133582811,0.25024076090680025,0.05174109417967171,0.5858378208031162,0.8515620260935818,0.03494462513754078,0.34522731003927737,0.02964954153344727,0.03692414667653067,0.04176959797221023,0.027064420530021043,0.029172470411609683,0.026325926214937245,0.02487145767244291,0.022604105493840607,0.018455273536077735,0.014233200219780357,0.00762914031933834,0.07019735745276301,0.031493332086800295,0.00927392594093608,0.008895004553173462,0.009287320326765111,0.007105603751073316,0.007719713893205044,0.006522013846687462,0.0059354522205976,0.005324712378260131,0.0042528267358145876,0.00435696271164457,0.005122408051109671,0.004037293449128194,0.003989707599752825,0.004328984111209615,0.003953026031794351,0.0038090165104659496,0.003570250502480672,0.003121657374581361,0.002403802409099999,0.001493901632511685,0.0008267201716095818,2.691260906263017e-05,0.0008379908722616658,0.005807079166459836,0.0016732113025838369],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07531888400262687},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,0,0,1,0],"qubo_energy":0},"seed":1454127163,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.2932438727026414,1.2041956655486803],"expected_energy":8.1243800303703,"initial_expected_energy":11.012193042478682,"history":[11.012193042478682,11.643236650840265,10.035610269339529,15.357931685553654,10.666522104579233,11.037220819572687,8.715837108700807,8.460458834007714,8.35441798369527,9.252185831255247,8.24523624454039,8.276040500604147,8.304925490065955,8.253011385232416,8.251944891400873,8.23772360162002,8.241233563652699,8.240374257252238,8.233214700453201,8.22713832754662,8.229173593428385,8.22503262823391,8.220399207701139,8.211577648080903,8.196047449363878,8.18218996125458,8.154410989749904,8.191927509359378,8.185659343677312,8.166834974110209,8.15792589931159,8.152193869551885,8.1590107904457,8.149790779837069,8.1478031340951,8.145996347784358,8.140916531183816,8.139591680671764,8.135561582951986,8.133571390902373,8.13082559992575,8.12892523381728,8.124947186504194,8.128589643725501,8.14055871963106,8.125448450262125,8.127509281981638,8.125906273082471,8.124869972424433,8.124723565527745,8.12467531065292,8.125242397527057,8.124544889816294,8.124504650993087,8.124456194785363,8.124440749706828,8.124387280769469,8.124402761385417,8.1243800303703,8.124397277494019,15.052858798363202,14.341242244316968,12.519636272648897,13.203207206166276,12.565925861353708,12.748597103657259,12.753658079834814,12.69014300112913,12.516333555007417,12.483355253987177,12.608237143516968,12.468242463979774,12.464742565818817,12.46129260098632,12.458244935747615,12.470029164542037,12.454732765159031,12.453187616606046,12.466930975431183,12.45005576250173,12.447946299733688,12.446299528518704,12.442406761382866,12.434522309807836,12.418207318441478,12.402935086400655,12.422962460590682,12.506395550942926,12.394583189087527,12.379893727161914,12.378597406163998,12.389006971523843,12.379143196941941,12.374599738529076,12.370136347631838,12.374961802982497,12.367802881189272,12.36606600168751,12.363592304580134,12.35887906086128,12.349596164973363,12.330806425895513,12.291852808720705,12.33078453408176,12.449854853813019,12.279273790976248,12.31469315428296,12.282353768495668,12.273523080089916,12.292756297342326,12.267205459638717,12.261919766337737,12.251258363546258,12.231571730997244,12.211710965894557,12.167513771320639,12.312177985672953,12.223370569780107,12.162841485593562,12.235924623355935],"feasible_probability":0.9579270574333285,"one_hot_probability":1.0,"sampled_feasible_fraction":0.9609375,"counts":{"01001":144,"01010":20,"01100":145,"10001":139,"10010":29,"10100":35},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.0880030669941334}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9579270574333285,"total_shots":1024,"runtime_seconds":0.1635202199977357},"direct_metrics":{"exact_objective":4,"optimal_count":1,"combinations":24,"optimal_probability":0.0035626575876695796,"feasible_probability":0.7192986432049694,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.4166666666666667,"shots_for_95_percent":840,"hit_curve":[{"shots":8,"quantum":0.02814839091354759,"uniform":0.2885690504976606},{"shots":16,"quantum":0.05550444991607329,"uniform":0.49386600409019976},{"shots":32,"quantum":0.1079281558716607,"uniform":0.7438283781843783},{"shots":64,"quantum":0.2042078249134639,"uniform":0.9343761001763541},{"shots":128,"quantum":0.3667148140710399,"uniform":0.9956935037719361},{"shots":512,"quantum":0.839158795860216,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.942890293094024e-16,"independent_samples":[{"shots":8,"best_objective":13},{"shots":16,"best_objective":8},{"shots":32,"best_objective":8},{"shots":64,"best_objective":8},{"shots":128,"best_objective":4},{"shots":512,"best_objective":8}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999932718477343,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.5321273900504324e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":6,"optimal_probability":0.2879045849387962,"feasible_probability":0.9579270574333284,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.8333333333333334,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9338841606037083,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9956286957809237,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999808916994243,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999996348728,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.28790264787291076,"diagnostic_seconds":0.003357894005603157}
+{"instance":"n4-s0-r2.json","seed":2,"direct":{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":4},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.153888045709921,1.1292934817656464],"expected_energy":24.12104959569743,"initial_expected_energy":47.771843146802865,"history":[47.771843146802865,46.04580392310071,30.0254664571632,36.418198182517216,34.18933030654938,33.11160465068005,26.62730604946743,27.846643914211135,26.477754313861553,26.68768657629032,26.480479007546396,26.549510812213597,26.45242268989068,26.422578200326097,26.486143920290875,26.492934449228397,26.312447972634345,26.230667452293318,26.382481283127873,26.217957971903026,26.15951801655453,26.06688244496337,25.869437952677156,25.467234338856933,25.033189390066337,28.495224773067783,27.755996589316148,24.96747018029518,24.614603416537943,25.019065370956536,24.704496354699245,24.626344733116255,24.586001105269737,24.606115653339366,24.571966902566587,24.566355958474205,24.582339605326023,24.55141269720767,24.523269180670994,24.46980368596717,24.370734766754207,24.7216493476732,24.619364046855623,24.38831009642913,24.358826536617435,24.51892510076759,24.323058620201323,24.306090528516215,24.286645394032185,24.259046004572053,24.361073473228267,24.25181464022411,24.22987530271375,24.187378921008115,24.125646829479027,24.222958028098006,24.404837106628044,24.171625878252144,24.12104959569743,24.149221793831806,31.367425311009875,31.354377009902755,40.27785450265539,39.47005469588018,33.519199872431216,34.33178513910758,31.434963414233145,30.86155965851059,30.82038697222537,30.68930921035073,30.627708246862888,30.92800493448999,30.725651834747364,30.719080149143473,30.608118915298366,30.605336587034394,30.63608386089809,30.59827861630063,30.593370611485163,30.589739066373095,30.583412348115598,30.57679106665052,30.578671830937687,30.590008497562824,30.579052456597708,30.574228645917856,30.573513756001937,30.578491763042575,30.572467527481802,30.571984581378125,30.571367020683052,30.57046709162495,30.576356394764197,30.572511802173647,30.570894738659643,30.57038501874162,30.570507182380748,30.570372054848498,30.57030541389088,30.57018272575053,30.57000981049414,30.56997008820723,30.569771417271927,30.570009097710148,30.570146432191294,30.569749136865795,30.569847645777074,30.56975302660641,30.569745122245784,30.56975285930524,30.569741993516566,30.569737515640725,30.569738158365276,30.569734908821736,30.569732421956328,30.56972773773948,30.569719883552423,30.56973462852659,30.569716186684754,30.56970873261824],"feasible_probability":0.7224738049960161,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.73828125,"counts":{"0100010011":5,"0100010101":25,"0100011001":24,"0100100011":10,"0100100101":7,"0100101001":1,"0101000011":5,"0101000101":1,"0101001001":2,"0110000011":201,"0110000101":127,"0110001001":13,"1000010101":1,"1000100011":34,"1000100101":25,"1000101001":6,"1001000011":8,"1001000101":5,"1001001001":3,"1010000011":2,"1010000101":4,"1010001001":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12724992900621146},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":4,"removals":[{"variable":3,"forced_by":0,"reasons":["resource"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":null,"component_qubits":[2,5],"max_component_qubits":5,"component_to_original":[[1,2],[4,6,7,8,9]],"components":[{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-5,-1],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":5,"cost":4}],"conflicts":[]},{"qubits":5,"penalty":19,"objective_bound":18,"offset":38,"linear":[-19,-13,-10,-19,-10],"quadratic":[[0,1,38],[0,2,38],[1,2,38],[1,3,19],[3,4,38]],"domains":[[0,1,2],[3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":6,"cost":0},{"index":1,"task":"t2","resource":"r0","start":8,"cost":6},{"index":2,"task":"t2","resource":"r2","start":12,"cost":9},{"index":3,"task":"t3","resource":"r0","start":9,"cost":0},{"index":4,"task":"t3","resource":"r1","start":7,"cost":9}],"conflicts":[{"i":1,"j":3,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":4},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":2001025171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.9077323396884698,2.746042606711662],"expected_energy":0.002119679930990306,"initial_expected_energy":1.8317763757896264,"history":[1.8317763757896264,1.5082316517256036,1.2935053541174066,2.6523277356197745,1.5892799535335849,1.3676526634037116,1.384268498868573,1.1292805473205685,0.9016327076583381,0.8730130267221554,1.0053206395091527,0.8216675132640615,0.7556518367679369,0.8631956340660784,0.7093203252585717,0.6523276481550576,0.6834457876160227,0.5932486415802487,0.5394810531980794,0.4872364475871947,0.37857418611515425,0.3685087422482687,0.2902593170703746,0.2629210803364306,0.16860447998127787,0.11464535818509855,0.17910391674778867,0.4157105756372811,0.09736619173238305,0.05639284454136171,0.07140073161259133,0.0666751421689003,0.05705821027034962,0.05550762836949294,0.05401095007071007,0.05199428894607748,0.05349019933922997,0.04997837615203147,0.04854246167788993,0.04835417762809784,0.04655729325050515,0.04481875754248686,0.041475535052136255,0.03525421448266511,0.025479535302920187,0.05770470628548408,0.057698061872302336,0.02403192924883907,0.020826957678988123,0.02506409113643984,0.018446965888062647,0.017046061318335044,0.020313022311689015,0.0159275901978731,0.014960535753629644,0.013073639827842888,0.010322132346564861,0.013133652348065227,0.017743270908389744,0.00959269713254483,3.17148792763079,3.2797144803903135,2.79164689940631,0.2761526004965141,3.9593238799475627,0.9146157112016167,0.7219012808220215,0.26512507353984305,0.6420845831021107,0.23064264040616653,0.19853362476059436,0.1785630860437155,0.24729800736270377,0.15844591436834743,0.14654412587390625,0.13155158074458387,0.1048446536587911,0.10507214209118824,0.11483338284458977,0.10369412940401579,0.11637645930408635,0.10356625953509047,0.09932045649734973,0.0924468903704218,0.0821417565993373,0.08415645450589554,0.07846421036193207,0.07605787805369642,0.07756509300262483,0.07350311395949899,0.07147783516158009,0.06987341952106654,0.07478232102572169,0.06770830743556312,0.06357780899610722,0.055807388881971856,0.04308695996420592,0.06638140217325182,0.07093146278518629,0.040136102267647536,0.034218726925506544,0.024557429393518935,0.0436359840741494,0.03140667160563919,0.02338501351178805,0.036108518360558305,0.019675027820526016,0.01823375111358986,0.016051599992316437,0.014149143194954783,0.011652159726462306,0.008136730859596911,0.006936317341351099,0.010201436077004754,0.02255197961228282,0.0064380468914244735,0.003327810395331987,0.003148101572105329,0.002565158396686379,0.002119679930990306],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07658872799947858},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,0,0,1,0],"qubo_energy":0},"seed":2240297063,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.2838200850908494,1.203367158018927],"expected_energy":8.124334768753398,"initial_expected_energy":15.304807152951394,"history":[15.304807152951394,14.099764726598467,11.663022738297805,13.192621343683319,12.203416889540334,11.582661274216226,11.562737306811226,11.847685142629697,11.53860631319866,11.447794303112094,11.534363063506607,11.449880042502535,11.45261569253796,11.447706243188431,11.448966945690543,11.448272634896645,11.448062683428166,11.447667592542143,11.447682110461795,11.447676810725314,11.447662224104933,11.447682341128468,11.44764885699959,11.447637112192195,11.44762439382518,11.447605036823134,11.447608404163649,11.44762588741286,11.447600178051697,11.447599745305146,11.447602940448395,11.44759983064723,11.447598114435692,11.447595315576605,11.447593665541644,11.44758774981349,11.447582646370723,11.44757292629419,11.44756175502184,11.447555131975435,11.44753856119264,11.44751803194579,11.447516572389906,11.447515736518978,11.447527852414776,11.447521312275045,11.44750776535958,11.44750586057314,11.447506241265325,11.447506232492795,11.447506077297389,11.447505898989185,11.44750579924012,11.44750579562867,11.447505765526918,11.447505732715074,11.447505706815548,11.447505857265977,11.447505695862414,11.447505681125094,12.033695656467149,11.004020957463723,13.559300348344077,9.777193981789027,13.625177766446292,11.513744560966732,9.600005331795614,11.01901998956332,9.305583934880922,8.821083349188754,8.3227063724105,8.283180423484115,8.480674786827604,8.193687177352095,8.179732577838855,8.14966819336579,8.173594598207089,8.14739806848143,8.158111940370947,8.149044324619442,8.143372317366737,8.140663914506272,8.13705048042414,8.135612124084613,8.132212072395902,8.133924969409275,8.133247379002931,8.131914788972061,8.13445007036245,8.130412674361732,8.129554079818023,8.12847804669674,8.126777333654479,8.13117380584631,8.12980823400954,8.127059984821175,8.126644864693375,8.127158059944865,8.12642654990525,8.126245613540931,8.125938876861298,8.125405301315332,8.125008726335224,8.125259632860836,8.12660097350863,8.125207225653227,8.12467827600323,8.12463505223626,8.124791155308403,8.124642802669712,8.124589815298403,8.124544564462253,8.124600022308803,8.124521944481069,8.124510181289066,8.12448595800902,8.124449503291405,8.124381476518614,8.124334768753398,8.124527120067327],"feasible_probability":0.9583841083399766,"one_hot_probability":1.0,"sampled_feasible_fraction":0.94140625,"counts":{"01001":138,"01010":30,"01100":135,"10001":149,"10010":33,"10100":27},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09042344999033958}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9583841083399766,"total_shots":1024,"runtime_seconds":0.1672164429910481},"direct_metrics":{"exact_objective":4,"optimal_count":1,"combinations":24,"optimal_probability":0.0038636031102784415,"feasible_probability":0.7224738049960161,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.4166666666666667,"shots_for_95_percent":774,"hit_curve":[{"shots":8,"quantum":0.03049407104557232,"uniform":0.2885690504976606},{"shots":16,"quantum":0.06005825372221223,"uniform":0.49386600409019976},{"shots":32,"quantum":0.11650951360426284,"uniform":0.7438283781843783},{"shots":64,"quantum":0.21944456044822377,"uniform":0.9343761001763541},{"shots":128,"quantum":0.3907332057861334,"uniform":0.9956935037719361},{"shots":512,"quantum":0.8622060858665899,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":13},{"shots":16,"best_objective":8},{"shots":32,"best_objective":13},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9994700800172525,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.168404344971009e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":6,"optimal_probability":0.2874006252164722,"feasible_probability":0.9583841083399766,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.8333333333333334,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9335089033652575,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9955789340683093,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999804541760277,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999996179607,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.28724832588211585,"diagnostic_seconds":0.0038579160027438775}
+{"instance":"n4-s0-r2.json","seed":3,"direct":{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":4},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.4356127898475854,1.0907502071660256],"expected_energy":26.615348139916996,"initial_expected_energy":35.19752665612164,"history":[35.19752665612164,32.193782258328,37.77245737871305,41.64077631396974,38.54790510123469,30.53580009631837,32.14157662709535,30.625733412428996,30.82841571289583,30.560741068434595,30.639044571571926,30.523011341163137,30.557750956384425,30.51357073157858,30.495837289140276,30.462337763207287,30.40017588869305,30.279270082436568,30.122568691526595,30.10058371101291,29.870621032306374,29.732705660999347,29.448008278362906,29.577863329764032,30.16218624504243,29.605498670238052,29.478645144324844,29.409646930019385,29.350706525560817,29.301215580169735,29.183495562348757,29.35174068532788,29.23348428415127,29.166526623104073,29.21972697985679,29.136382251834558,29.113383493307172,29.058078400888135,28.94432333614732,28.707678701530114,28.675840889698218,28.119724797681712,31.219375740311555,28.58780125550287,28.06039112962061,28.355007966630343,28.0320936321654,27.974514755514065,28.068724454785006,27.922755211187905,27.849352457401913,27.69537457781085,27.365011689223245,26.993000684339716,27.147338772564026,28.16405600966039,27.202296904529522,26.699873850905703,26.615348139916996,27.10477090244011,35.39736678524713,37.95537317507812,39.78548654733052,39.02217278315253,37.28192660959819,35.302916010900745,37.634771259722456,35.06501727725392,34.82023530614486,34.65002687135599,35.00939725160802,34.49523216572577,34.37305164100714,34.11545926091869,33.68689279951694,34.288855990844766,34.70936303601235,33.47110726751711,33.31492852972347,33.682615320940684,33.15306473711305,33.03466370399289,32.78849303400119,32.46592684359032,32.186712374674514,32.003418389615355,33.56776971734321,31.562857430253395,31.510555616245483,31.273182718238434,30.962103142137273,30.75821865469256,30.708361681365542,30.699039806876787,30.588755963117833,30.993749215881262,30.895579058185632,30.600546048606944,30.609245422133675,30.600505236943057,30.582811131165812,30.58254643424715,30.58015570138243,30.578625392335553,30.58151972214096,30.5761689769919,30.575879218336784,30.581376809809324,30.574317245689244,30.573420463137737,30.572780344843373,30.57347100666789,30.572457608060162,30.572136884530487,30.57180628563641,30.571213925018764,30.570989973517282,30.570544367721535,30.57054421015679,30.570209851092475],"feasible_probability":0.6349051438674131,"one_hot_probability":1.0,"sampled_feasible_fraction":0.615234375,"counts":{"0100010011":12,"0100010101":47,"0100011001":28,"0100100011":8,"0100101001":5,"0101000011":3,"0101000101":12,"0101001001":3,"0110000011":147,"0110000101":81,"0110001001":10,"1000010011":1,"1000010101":7,"1000011001":5,"1000100011":61,"1000100101":58,"1000101001":2,"1001000011":5,"1001000101":12,"1001001001":1,"1010000011":1,"1010000101":2,"1010001001":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13109888198960107},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":4,"removals":[{"variable":3,"forced_by":0,"reasons":["resource"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":null,"component_qubits":[2,5],"max_component_qubits":5,"component_to_original":[[1,2],[4,6,7,8,9]],"components":[{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-5,-1],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":5,"cost":4}],"conflicts":[]},{"qubits":5,"penalty":19,"objective_bound":18,"offset":38,"linear":[-19,-13,-10,-19,-10],"quadratic":[[0,1,38],[0,2,38],[1,2,38],[1,3,19],[3,4,38]],"domains":[[0,1,2],[3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":6,"cost":0},{"index":1,"task":"t2","resource":"r0","start":8,"cost":6},{"index":2,"task":"t2","resource":"r2","start":12,"cost":9},{"index":3,"task":"t3","resource":"r0","start":9,"cost":0},{"index":4,"task":"t3","resource":"r1","start":7,"cost":9}],"conflicts":[{"i":1,"j":3,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":4},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":819382448,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.9604387153206748,1.1780725731283535],"expected_energy":5.989495105281211e-06,"initial_expected_energy":0.8470414003227118,"history":[0.8470414003227118,0.7095579898553681,3.920450662130711,1.1493638753727085,2.49905704850526,0.13788510268330295,0.020944430116858755,0.17851815986127248,0.025362095513026615,0.10741480693787876,0.008226304382373314,0.05679745944236421,0.013187162623157845,0.01212494785627098,0.0037270607125171706,0.003621403656981835,0.002884200311069958,0.0023062699615674434,0.0015086776541007344,0.0011209245806681426,0.0010821846648485778,0.0006155337139339841,0.00041579168987798573,0.00013550796717619055,0.0002682739464607897,0.000791062878056614,8.763682197127536e-05,0.00023790933466359625,7.063202513572827e-05,7.79568539528673e-05,6.513512441718012e-05,5.866198963914347e-05,6.157598956391099e-05,5.298139322012363e-05,5.007268920869795e-05,4.3722247762163114e-05,3.927975360445248e-05,2.8875989878764864e-05,2.909865919684652e-05,2.7511028006969626e-05,3.273876461270248e-05,3.0564660491342555e-05,2.5359328142918747e-05,3.170317392957214e-05,2.3126728724153718e-05,2.2952181460063074e-05,2.1916151717160877e-05,1.9965348515821904e-05,1.6462472220400518e-05,1.0745770330176164e-05,3.54619753246094e-05,2.787166380965923e-05,9.40040287546136e-06,1.2498529057634466e-05,9.268885939534923e-06,8.376006375469643e-06,7.264889184229601e-06,6.527736651254193e-06,8.335353786088767e-06,5.989495105281211e-06,2.0470107518381626,2.2935972616543783,1.8548541919639245,2.114316772318983,1.5448276066176214,1.450514394878226,3.1259689218982993,0.7112035138320595,2.1942467125765615,1.2861549206365381,0.6299057870792215,0.7611689760280798,0.6279719784265518,0.5655466110862551,0.473277097860031,0.2894327439842511,0.05507950575077859,1.4044155130529565,0.7533961266418626,0.03779535941265465,0.13668470222641785,0.09277531689047626,0.03202011687536747,0.030072379683229424,0.054172094772547065,0.024407292664390557,0.022186643816223546,0.019542900579518907,0.017157469304403157,0.030239424236078682,0.013424795715259917,0.012797281292472205,0.010105705831797904,0.008440486850132998,0.005494735320318021,0.008698253697499294,0.010253936416183065,0.004557267126526922,0.003943505617354274,0.003824481709213303,0.003076871745992918,0.003316608768643185,0.0030673628175868807,0.0042079255326823006,0.002457696472752985,0.002331369034996396,0.0018803697186689187,0.0014643942334281832,0.0009517894026859924,0.000889741165377872,0.0040810846748287185,0.00042151094555335257,0.0006696604136387054,0.00036880293523743936,0.0009496837791635251,0.00032729607774348096,0.00028516868215847134,0.00034562803285499716,0.00023706120604149655,0.00022147637154507812],"feasible_probability":0.9999999999999999,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08187848300440237},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,0,0,1,0],"qubo_energy":0},"seed":1645421708,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7667642565133492,2.9583912980828666],"expected_energy":8.143136367315108,"initial_expected_energy":13.368124396668998,"history":[13.368124396668998,13.005535830499397,14.05714555467037,13.540037163414029,12.706769702557002,12.685956599591414,14.384513540287843,11.771617558911993,10.152414428678536,13.769138864065047,10.557435464145405,10.085552969471186,10.093267436662025,10.266501642806084,10.08273604006555,10.152374455496698,10.077870788779723,10.05486848453991,10.018137740030122,9.95897316863344,9.934692341036596,9.873423185037122,9.771521340055271,9.55300097172568,9.155368650519726,10.400968497955585,12.286534319078553,9.587009476151252,9.121486329701082,9.464833387301395,9.089332635159602,9.062215078201792,9.00739485566688,8.915061632566797,8.748737040999837,8.587693218757012,9.381438728891958,10.158447428363381,8.414905864817118,8.583705980393354,8.397569712416688,8.457760029597955,8.39567187359359,8.377978025775782,8.350165493543072,8.294365112106904,8.191407931369756,8.710335658875586,8.958454842047606,8.452245951514275,8.211727267307147,8.187408989121943,8.208643888709174,8.179983851851075,8.176450044036876,8.170980435125202,8.165716094101777,8.15810849977737,8.14859058376404,8.143136367315108,14.45741223329955,13.478794421067247,12.386373426014053,13.251263955559448,13.068851633319825,11.618860877847725,12.48767685898082,11.731969595846117,11.53864909358242,11.493465926862154,11.514610702911067,11.581747581198714,11.49104013879867,11.501393870484494,11.492592388806685,11.487161148000476,11.484601247046028,11.480811521045917,11.47866307090922,11.474834720233222,11.47333367306651,11.467073375018911,11.476295922106248,11.465475239641679,11.470942097754792,11.46400303613061,11.462926897298807,11.46316431529242,11.461797883991593,11.46213750726596,11.462422411319626,11.461833352970572,11.461497942621612,11.460909586487707,11.459774131668336,11.458164597301478,11.45638375446066,11.455294625393744,11.461711292183368,11.45414274853187,11.454098049099343,11.453472203168243,11.452772034773709,11.452259306339224,11.453484197695541,11.451891228571094,11.451682006568126,11.452186197180401,11.451504868866573,11.451347381853765,11.451042932175456,11.45062064489397,11.450192117133374,11.44987056487994,11.45101313713023,11.449546035958347,11.449505100594397,11.449225846700184,11.44908581191132,11.4486684072843],"feasible_probability":0.9915657949822259,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.986328125,"counts":{"01001":154,"01010":7,"01100":129,"10001":92,"10010":95,"10100":35},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.0946372160105966}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9915657949822257,"total_shots":1024,"runtime_seconds":0.1767268090043217},"direct_metrics":{"exact_objective":4,"optimal_count":1,"combinations":24,"optimal_probability":0.029514403024553944,"feasible_probability":0.6349051438674133,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.4166666666666667,"shots_for_95_percent":100,"hit_curve":[{"shots":8,"quantum":0.21311230312975188,"uniform":0.2885690504976606},{"shots":16,"quantum":0.3808077525142365,"uniform":0.49386600409019976},{"shots":32,"quantum":0.616600960653529,"uniform":0.7438283781843783},{"shots":64,"quantum":0.8530051766282032,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9783925219018943,"uniform":0.9956935037719361},{"shots":512,"quantum":0.9999997820201618,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":8},{"shots":16,"best_objective":8},{"shots":32,"best_objective":4},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999985026262236,"feasible_probability":0.9999999999999999,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.014435047745458e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":6,"optimal_probability":0.3023486957044942,"feasible_probability":0.9915657949822259,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.8333333333333334,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9438813410820559,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9968506961212514,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999900818850793,"uniform":0.9970744998381338},{"shots":64,"quantum":0.999999999901631,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.3023482429754859,"diagnostic_seconds":0.0039507570036221296}
+{"instance":"n4-s0-r2.json","seed":4,"direct":{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r1","start":5,"end":6,"reserved_end":6,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,0,1,0,1,0,0,0,1,0],"qubo_energy":8},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.8211245283715436,1.134812168821958],"expected_energy":24.988268750043485,"initial_expected_energy":41.234282246626734,"history":[41.234282246626734,41.25818748589361,31.097930851277432,38.576949032590186,29.944535283451117,33.60383244997912,30.07607936075542,32.67359502205797,29.651166158188722,29.42218852120326,29.432762012321113,29.769302383370142,29.4121894951312,29.471190655184472,29.4049460914444,29.385373152169052,29.355025167916875,29.39426185379262,29.330377788374694,29.319433895705046,29.286738761281562,29.244131745417313,29.188115699210094,29.07495542942129,28.856888269904093,28.343398004444317,33.02666085939137,30.704056102943934,29.075533542665166,28.279064246953137,28.481409152257616,28.249938038446942,28.173400196680568,28.026532843458522,27.7609450611166,27.182875074133477,27.317532062053985,28.951783232156686,27.089084240551767,28.87031958147271,26.875608270870334,26.949130597911434,26.97798141618943,26.884352474967223,26.83093417802859,26.74378802883374,26.569903354884545,26.253951759364785,27.201004996719035,27.538617719829265,26.226069080364155,26.118792602993338,25.91096710889893,25.56916292010042,24.988268750043485,27.13621364486001,29.121595728809805,25.518637180867007,25.373324282876904,25.040842281191622,39.12477766216293,39.191854941698026,38.615551898572306,47.70179242541773,39.25975677342723,38.26805059127331,38.13091798027365,38.54980144772454,38.25223748449196,38.080406605342844,38.109813084082056,38.382893756788974,38.06598507098798,38.09238236621758,38.06712052192505,38.05991287804383,38.05754224954373,38.06028561134433,38.05574635712871,38.058129539497955,38.05467081369264,38.053728040401445,38.05392806970925,38.05312945855937,38.053245382802075,38.05339928720561,38.05269896238579,38.0522702800494,38.0531939063585,38.05179287177984,38.051373154208775,38.05062169255437,38.04972443692693,38.048839850150074,38.04838362105815,38.05192801227514,38.0479159783855,38.04817340251499,38.0479920798377,38.04796877067528,38.04788042363612,38.04788245809763,38.04783461178979,38.047811910555694,38.04786087875066,38.04776774096838,38.04772993700354,38.04766581025905,38.047591172959734,38.047575243324516,38.04754183694687,38.04769546413462,38.047663298539604,38.047557698466605,38.047519507137594,38.04752930677679,38.04752125977552,38.04752021412293,38.047519098934686,38.04751871562003],"feasible_probability":0.6951394403898787,"one_hot_probability":1.0,"sampled_feasible_fraction":0.685546875,"counts":{"0100010101":48,"0100011001":29,"0100100011":21,"0100100101":2,"0100101001":6,"0101000011":2,"0101000101":6,"0101001001":10,"0110000011":185,"0110000101":90,"0110001001":5,"1000010011":1,"1000011001":3,"1000100011":44,"1000100101":28,"1000101001":4,"1001000011":7,"1001000101":10,"1001001001":1,"1010000011":4,"1010000101":6},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12453756900504231},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":4,"removals":[{"variable":3,"forced_by":0,"reasons":["resource"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":null,"component_qubits":[2,5],"max_component_qubits":5,"component_to_original":[[1,2],[4,6,7,8,9]],"components":[{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-5,-1],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":5,"cost":4}],"conflicts":[]},{"qubits":5,"penalty":19,"objective_bound":18,"offset":38,"linear":[-19,-13,-10,-19,-10],"quadratic":[[0,1,38],[0,2,38],[1,2,38],[1,3,19],[3,4,38]],"domains":[[0,1,2],[3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":6,"cost":0},{"index":1,"task":"t2","resource":"r0","start":8,"cost":6},{"index":2,"task":"t2","resource":"r2","start":12,"cost":9},{"index":3,"task":"t3","resource":"r0","start":9,"cost":0},{"index":4,"task":"t3","resource":"r1","start":7,"cost":9}],"conflicts":[{"i":1,"j":3,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":4},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":367776961,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.9363948216047642,1.1798169028683039],"expected_energy":0.0005173286062253741,"initial_expected_energy":2.8145027174496566,"history":[2.8145027174496566,3.134604536983128,2.5505089060784045,1.4531895448651337,2.774365241694041,1.5399271481819008,1.6545012605827465,1.538161298971159,1.5108705872910144,1.3481317840854619,1.2049517108922718,1.225401695470815,1.1744812697664242,1.1017871496996812,0.9683559861828893,1.0170531985665492,0.9097662482716455,1.038439967191822,0.832958180699397,0.7658408940267432,0.6438850857275845,0.4432174391707537,0.5296034558746971,0.9384593479807877,0.43062806550125565,0.3672567709623566,0.2654592245362628,0.14703367792276437,0.262393408439057,0.3553860968208976,0.15718178148686174,0.11637239408096703,0.12146565679070075,0.10954213134857878,0.12191705018488279,0.1134172221224603,0.10412897490701281,0.10632384459644696,0.10285717891238456,0.10052510566550266,0.09643783237506125,0.09216243453769477,0.11041936720892175,0.08899613328053188,0.0835677070947439,0.07545281938324054,0.05904837091912188,0.041050202131592876,0.05595010512086677,0.08171769969480655,0.047267450589807136,0.03241463383701199,0.02931846778131308,0.04227549571029133,0.026063618465383718,0.023655300277332477,0.018988429004439655,0.013175136177928433,0.01425779228540108,0.019489808133295223,2.1626904149572006,2.3115469626730683,2.579023912057096,1.5288272455241236,2.0696995363901878,2.1487246784314156,1.7505625487499805,1.432210118391708,1.305060468665722,1.4284234776752318,1.265482132035868,1.1995375599671427,1.1836347293834544,1.0261716503517602,0.8825842122849181,0.6333254432090974,0.4442453957910595,0.7963653730731585,1.4644638911989631,0.23709612298588553,0.24460828521745356,0.23313273909738236,0.28410379331989793,0.26536403870338654,0.20317746476919962,0.25884034844676446,0.18602125112700507,0.1777559234784648,0.158538374393619,0.13945389096377697,0.10829760612846988,0.08027714893084997,0.07827331331584658,0.03652458386021719,0.03416171043605752,0.0068777139903666825,0.10236010307460179,0.044330014953348436,0.005346983969618994,0.016173403657974168,0.006545917290737626,0.005412996657633534,0.005702055669368485,0.004958501883169949,0.005075365178819738,0.005302649766873938,0.0049651464215568555,0.004805405925678535,0.004529922913878168,0.00402234548646031,0.003954590135516605,0.003089203268579474,0.002841163898189612,0.0017895019352441516,0.0016343282273897973,0.0005874940370221143,0.005822077450236271,0.0016703817656725385,0.0005173286062253741,0.0011714287062081531],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07500813399383333},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,0,0,1,0],"qubo_energy":0},"seed":3166742020,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7733000279644642,2.954836804214406],"expected_energy":8.145642868564337,"initial_expected_energy":11.462019644766864,"history":[11.462019644766864,12.268733873288816,15.903294983551838,12.572732081608157,10.391694357739112,14.969926680687706,11.043097671228852,10.09518844015941,10.374575617090791,9.891863229711047,9.861638871970944,10.008833019814798,9.784330095482542,9.824345477818795,9.996597604313108,9.777544407730185,9.710020049749255,9.670097086666182,9.690331755889085,9.663339774672282,9.649438525814098,9.62228316021745,9.568794866898891,9.465833551692722,9.318691124786378,9.39014632091986,9.53814603211904,9.37380491597806,9.251316324925286,9.300064882983971,9.226383828232084,9.201659584222652,9.151307186707227,9.052384311330712,8.925662172569604,8.993584779524078,9.216103633778193,8.976723386328594,8.865407822478666,8.83783387508216,8.936959754220126,8.811547062899866,8.791776574497804,8.747645785353985,8.663092166999272,8.635134888950901,8.698704108072137,9.171917375597104,8.612276615409387,8.503068445578586,8.48929654269625,8.549487339149419,8.468467631730816,8.45035336536661,8.421991620966132,8.517005284986116,8.408830178465147,8.396258236694806,8.380640780545825,8.458340236827125,12.973379951035342,13.050902372432459,8.993501994072105,17.341663218771878,11.673758281221708,9.93542224422413,9.388351195591753,8.942449812276765,9.768753159028911,8.558595455001726,8.794164669429748,8.552542373243309,8.62911077183598,8.553448492952986,8.530897671538805,8.504537685095821,8.51671758281103,8.494711533204525,8.485671003045582,8.470851936035848,8.440788636152833,8.386380793966982,8.689549772122513,8.459709139048892,8.469977271305966,8.37338101075941,8.362353395781554,8.350333427157386,8.357173351904308,8.342518874881197,8.341320247084973,8.351555897056322,8.332779226457097,8.31745770158284,8.289552040794945,8.236387312698577,8.484555788582933,8.403364776987967,8.299910433303841,8.229163336309218,8.23416253923022,8.230742737276923,8.223567797312008,8.225001485808994,8.219858765475031,8.213285232314679,8.201387177030355,8.178966259346636,8.191188718707465,8.211505743439911,8.189704767909072,8.176183009735308,8.176712322913195,8.17209505270109,8.169786025469847,8.177686873092547,8.163443021152679,8.16032566750402,8.15479406081742,8.145642868564337],"feasible_probability":0.9899484624714561,"one_hot_probability":1.0,"sampled_feasible_fraction":0.984375,"counts":{"01001":169,"01010":8,"01100":132,"10001":87,"10010":80,"10100":36},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08970335499907378}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9899484624714561,"total_shots":1024,"runtime_seconds":0.1649905009981012},"direct_metrics":{"exact_objective":4,"optimal_count":1,"combinations":24,"optimal_probability":0.0049401253360272755,"feasible_probability":0.6951394403898788,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.4166666666666667,"shots_for_95_percent":605,"hit_curve":[{"shots":8,"quantum":0.03884437721322413,"uniform":0.2885690504976606},{"shots":16,"quantum":0.07617986878536502,"uniform":0.49386600409019976},{"shots":32,"quantum":0.14655636516257461,"uniform":0.7438283781843783},{"shots":64,"quantum":0.2716339621554833,"uniform":0.9343761001763541},{"shots":128,"quantum":0.4694829149146801,"uniform":0.9956935037719361},{"shots":512,"quantum":0.9207868107646644,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.7755575615628914e-16,"independent_samples":[{"shots":8,"best_objective":8},{"shots":16,"best_objective":8},{"shots":32,"best_objective":8},{"shots":64,"best_objective":8},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9998706678484437,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":6,"optimal_probability":0.30307981755952695,"feasible_probability":0.9899484624714561,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.8333333333333334,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9443501070655151,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9969030894163804,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999904091448371,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999999080155,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.3030406195946287,"diagnostic_seconds":0.003921073002857156}
+{"instance":"n4-s0-r2.json","seed":5,"direct":{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":4},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[-0.9480894529548104,0.28373718185030067],"expected_energy":21.332173693098973,"initial_expected_energy":39.864747506908856,"history":[39.864747506908856,39.979758703047196,22.93427087087453,64.43294920271657,24.849545453873848,23.59141217044815,26.628134713664984,22.737620663771867,22.35864106528931,21.9978869499708,21.566188592693017,22.222286684746212,22.326386384473356,21.642059801952563,21.617477967414086,21.634169778361386,21.550872411256943,21.52316626518437,21.500736534486123,21.493013448400532,21.462848463436625,21.438459021447756,21.434607436820297,21.390325083594583,21.376440180608604,21.364061152405974,21.375991237896802,21.357077922467585,21.362509985701735,21.35125941211349,21.350957511754274,21.344048481166062,21.34556134894594,21.345826918284693,21.342821715409954,21.34468876342267,21.34227094136714,21.34122835547152,21.339385375705238,21.33769135864146,21.33521646984264,21.3359236398638,21.337856394067195,21.334669750402853,21.334796516218915,21.33477470635197,21.334495873132035,21.33424085332115,21.334479546770137,21.33388209133815,21.333593980511363,21.3341999602034,21.33335910899389,21.33306740444855,21.332649033630652,21.33607361363814,21.332666691105764,21.33285763751687,21.332422195632624,21.332306448744802,40.93911679668973,46.47677146241202,37.63076353985239,40.382432895009835,39.608263838538306,38.017053845656704,37.28396751732968,36.78172620173777,36.69786315381066,37.72246055962326,35.632917583259825,33.46109938190252,30.11306146138388,31.330762412619976,35.77492116553968,27.870868523223972,25.928214593307704,24.10844269360565,22.82615441435491,22.318645058578202,36.466932943692456,21.52680851178411,24.18707456472096,21.462689665458193,21.473991005557515,21.507010996484283,21.5702614705589,21.522207580281265,21.378849296648234,21.35913244072022,21.37803895087162,21.35630393998469,21.361390892970746,21.352520381898625,21.356645394684307,21.349773176591263,21.34987864379017,21.34939000380216,21.34805898976376,21.34559296062543,21.341495716708202,21.338313358481443,21.33489731279983,21.336999761163902,21.34543885399868,21.334642061501892,21.332985560303126,21.333816594760187,21.33270953038655,21.3327992680937,21.33263674997825,21.332537695320816,21.332539139063417,21.33244778329231,21.33237891115261,21.332418661490333,21.332297253569177,21.33222832947916,21.332345696614308,21.332173693098973],"feasible_probability":0.8029956705759098,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.80078125,"counts":{"0100010011":62,"0100010101":87,"0100011001":6,"0100100011":14,"0100100101":5,"0100101001":4,"0101000011":11,"0101000101":19,"0101001001":2,"0110000011":32,"0110000101":46,"0110001001":4,"1000010011":34,"1000010101":39,"1000011001":5,"1000100011":16,"1000100101":9,"1000101001":1,"1001000011":18,"1001000101":35,"1001001001":1,"1010000011":20,"1010000101":37,"1010001001":5},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12779985398810823},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":4,"removals":[{"variable":3,"forced_by":0,"reasons":["resource"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":null,"component_qubits":[2,5],"max_component_qubits":5,"component_to_original":[[1,2],[4,6,7,8,9]],"components":[{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-5,-1],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":5,"cost":4}],"conflicts":[]},{"qubits":5,"penalty":19,"objective_bound":18,"offset":38,"linear":[-19,-13,-10,-19,-10],"quadratic":[[0,1,38],[0,2,38],[1,2,38],[1,3,19],[3,4,38]],"domains":[[0,1,2],[3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":6,"cost":0},{"index":1,"task":"t2","resource":"r0","start":8,"cost":6},{"index":2,"task":"t2","resource":"r2","start":12,"cost":9},{"index":3,"task":"t3","resource":"r0","start":9,"cost":0},{"index":4,"task":"t3","resource":"r1","start":7,"cost":9}],"conflicts":[{"i":1,"j":3,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":4},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":803261128,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.9665420611172506,2.7488832733955846],"expected_energy":5.942233012078991e-06,"initial_expected_energy":1.557223973802541,"history":[1.557223973802541,1.425073209045083,0.6261442371586612,3.737655611777392,0.0582745737549866,0.01465644879023162,0.1273218168602749,0.022089953098449758,0.08122271612280656,0.006558055911669632,0.0416590830481035,0.007559482444180004,0.01114634046024287,0.001110333885407499,0.0006686404067163964,0.0009194022318230161,0.0011661671124670262,0.00023316510533883395,0.00048364924305635993,0.0003006443594330121,0.00024687134114308553,0.00020609922604328138,0.000207655833843739,0.00019706996012446221,0.0001927722739691678,0.0002008029110617418,0.00018085081228905755,0.00017046370810551968,0.00015039642116289385,0.00012503352346814818,0.00010134474658959887,8.395845634079015e-05,0.0001668498260618557,6.186926592117531e-05,6.32205568227638e-05,6.008807122971873e-05,6.048972088561031e-05,6.424024757946055e-05,5.529934449636733e-05,5.5547791344936216e-05,5.86375606051224e-05,5.55878944384674e-05,5.377061705470409e-05,5.0865821851356286e-05,4.5347720756071517e-05,4.028581282618642e-05,3.0502119578944823e-05,3.1411734455189505e-05,2.8520991728921567e-05,3.423226660391362e-05,2.9842869327628282e-05,2.6839225649649727e-05,2.4947812515089342e-05,2.3531120044366224e-05,1.9167193649155106e-05,1.8193537301170793e-05,1.418353409732087e-05,1.6168424396655593e-05,1.556302933665878e-05,1.3789044022050245e-05,2.7211528496998216,3.3837049994534403,1.7850966965056074,1.7370332962140362,1.9967023849855214,2.0806615773360897,1.6621230386024393,1.7046070410024372,1.7024323843138123,1.5846827455862567,1.4508745566779453,1.4111013390808984,1.756607056716207,1.2406342722928536,0.9181526225137547,0.5345538722065364,0.4383744608274697,0.34092493929079465,0.5239258588733208,1.3943632734128255,0.09983150798914986,0.005765800127604137,0.0020208685317644895,0.057801200177261196,0.023121617257253736,0.02057805162636698,0.0023739606669676123,0.0001362137050424042,0.0030066986093949715,0.00025600156901420555,0.00035307872281636226,0.0002701267130057122,0.00026441248827233993,9.662325174597037e-05,0.00011516595702825105,9.336658350841653e-05,8.726249755849022e-05,8.113930770652986e-05,8.049864989991657e-05,6.838436386969195e-05,6.128263638905052e-05,5.661189804363545e-05,6.379199158633343e-05,5.3635460931125927e-05,5.0781264372253975e-05,4.7088275605020536e-05,4.153082911865188e-05,3.7260512812128176e-05,2.9906470275078277e-05,2.1246654368170065e-05,8.779746045535889e-06,0.00014874572062926786,7.254023380259879e-05,6.575367255738113e-06,2.2579272816596278e-05,7.396530926169333e-06,6.8396707783599505e-06,7.910652153548212e-06,6.454082442940306e-06,5.942233012078991e-06],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07879472301283386},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,0,0,1,0],"qubo_energy":0},"seed":3767054407,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.2710214940178177,1.202749530012647],"expected_energy":8.124889144699884,"initial_expected_energy":10.100712426150785,"history":[10.100712426150785,11.42150727257953,14.43070177842281,12.219941351012821,12.370494729644367,9.789044176042069,9.561715890853218,9.372447434024469,10.085464643202195,9.173660859358069,9.067074732507669,8.95298557673642,8.843866894230016,8.637696040457872,8.708748759148776,8.810883250990468,8.598301213571917,8.608142621445452,8.586844481237993,8.566938392422676,8.537092616494933,8.581352002935777,8.497188945840186,8.461631344900775,8.483775767983705,8.43451848687411,8.449448775851522,8.415504885002527,8.404223205381745,8.41461086590587,8.400776321804546,8.393233330222268,8.378602256275567,8.350770534920738,8.305647037236547,8.278791985375927,8.187554412390714,8.54638051896351,8.31856164047528,8.179017887399514,8.285390296591942,8.168971649463549,8.16307327034444,8.15079069918264,8.14189421551518,8.150875350096076,8.150291706177011,8.142294269162553,8.144026265003216,8.140691647979658,8.140604721058283,8.143959241734782,8.138219747099678,8.135840444693486,8.132730163160776,8.128205938106694,8.16281884450607,8.138623947085021,8.131931748024574,8.127691044006202,11.906650020360662,10.365815601964977,13.631177215462328,10.586803481081992,11.868657741654582,10.28159608721091,10.846615132318796,10.106402022818857,9.757253137575901,9.320533236297432,9.040385725347669,9.020119060161072,8.835494837667223,8.616386813495346,8.481920192295481,9.011527700656329,8.402469328296666,8.374864733316286,8.574184122910331,8.324355110337846,8.296231724389482,8.268949833476633,8.257315691280432,8.201272479369047,8.250573769487483,8.193486663609622,8.234349210788668,8.182024301078469,8.172740879441754,8.158620032982162,8.21163509186471,8.162815920040039,8.15824412933733,8.16436528399183,8.158119215248718,8.153167818548095,8.147563123629345,8.143244455797927,8.142419190370077,8.137706984823218,8.13531921547327,8.129681474809829,8.134491443625059,8.129210687915345,8.131185331175958,8.127998867670676,8.127050573315273,8.125973787614985,8.130647749053857,8.125390178815469,8.125640186961554,8.126397496244731,8.125295070418645,8.125765621318491,8.125224102988676,8.125107328353117,8.124918041351936,8.124956006430311,8.124889144699884,8.125078237169376],"feasible_probability":0.9590077429227641,"one_hot_probability":1.0,"sampled_feasible_fraction":0.970703125,"counts":{"01001":158,"01010":15,"01100":139,"10001":122,"10010":39,"10100":39},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08778990599967074}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9590077429227641,"total_shots":1024,"runtime_seconds":0.16678599400620442},"direct_metrics":{"exact_objective":4,"optimal_count":1,"combinations":24,"optimal_probability":0.1066541139823328,"feasible_probability":0.8029956705759096,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.4166666666666667,"shots_for_95_percent":27,"hit_curve":[{"shots":8,"quantum":0.594344719097485,"uniform":0.2885690504976606},{"shots":16,"quantum":0.8354437930759017,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9729212547627534,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9992667415563763,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999994623320548,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":4},{"shots":16,"best_objective":4},{"shots":32,"best_objective":4},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.999998514441747,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.129285617864714e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":6,"optimal_probability":0.2869708449321221,"feasible_probability":0.959007742922764,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.8333333333333334,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9331874104342816,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9955360778755229,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999800733992666,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999996029306,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.28697041862021505,"diagnostic_seconds":0.003748058996279724}
+{"instance":"n4-s0-r2.json","seed":6,"direct":{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":4},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.179543521096588,1.1215532139109008],"expected_energy":24.09505585058,"initial_expected_energy":46.545079409000216,"history":[46.545079409000216,45.560267263343505,28.231481220444785,40.405912176625414,28.191910452011346,32.790973368097184,28.361056752860858,27.3644685221579,27.27700716100196,27.069180601247627,27.019860464198427,27.826370257937555,26.72426802506812,26.957851540564356,26.673386483646226,26.872264809339043,26.60755558210528,26.54885912561467,26.437404724115314,26.215479211844674,25.80134299711777,26.265892292463363,27.576818580478278,25.914437123166522,25.76653644660325,25.8844885516474,25.704107461202995,25.661799970342916,25.60914668211389,25.5566620430317,25.456081288772296,25.263753474721355,24.890031777540734,24.431595137685797,28.297988232402844,26.744849544604893,24.397243235672278,24.360304174022023,24.37565467698634,24.425104967760983,24.272368439607362,24.24031349838526,24.27109940974992,24.236923832821464,24.22833462063099,24.219509516760283,24.203443475886345,24.19095023769883,24.165237601265833,24.204944422896492,24.19894434516017,24.15593212338476,24.150849537454274,24.161365314935885,24.140545811276304,24.13584790419555,24.129064334443726,24.122618216971432,24.1119140900238,24.09505585058,47.30837483253919,47.21487231407676,39.74285613039859,30.589234456609923,39.71766672142874,27.756299201535647,37.52348506220571,41.56926806784924,27.31010397122082,28.163279302843957,28.376859801167633,25.754765365348966,25.26946944630548,26.04298338439023,25.463500838345336,25.541077362752745,25.227009134392688,25.113569480411986,25.039179561649924,24.94777656579753,24.927482652647555,24.814771929087737,24.927632839913656,24.84777923460911,24.803153441620804,24.875236015665294,24.79611679397292,24.77565058866038,24.75849810587065,24.761516521389524,24.74374497840648,24.730037298322074,24.706221046047766,24.691698120667,24.86244062147564,24.67275180974523,24.626377499915236,24.59957318081375,24.628827828207672,24.58507915203744,24.571601962920937,24.54307907035902,24.488515974319153,24.453875456989103,24.372329799635715,24.527784432103513,24.329289440564278,24.431393661893168,24.32781151805836,24.302228514429395,24.295801104769055,24.271621591826317,24.25698997452676,24.23645581886509,24.20600951002546,24.171633190960435,24.119465684330237,24.363667690167578,24.25609448980714,24.24405796404448],"feasible_probability":0.725548117349497,"one_hot_probability":0.9999999999999996,"sampled_feasible_fraction":0.75390625,"counts":{"0100010011":6,"0100010101":37,"0100011001":19,"0100100011":5,"0100100101":8,"0101000011":10,"0110000011":178,"0110000101":140,"0110001001":9,"1000010011":1,"1000010101":2,"1000011001":2,"1000100011":39,"1000100101":21,"1000101001":7,"1001000011":8,"1001000101":6,"1001001001":4,"1010000011":4,"1010000101":4,"1010001001":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12655744299991056},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":4,"removals":[{"variable":3,"forced_by":0,"reasons":["resource"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":null,"component_qubits":[2,5],"max_component_qubits":5,"component_to_original":[[1,2],[4,6,7,8,9]],"components":[{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-5,-1],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":5,"cost":4}],"conflicts":[]},{"qubits":5,"penalty":19,"objective_bound":18,"offset":38,"linear":[-19,-13,-10,-19,-10],"quadratic":[[0,1,38],[0,2,38],[1,2,38],[1,3,19],[3,4,38]],"domains":[[0,1,2],[3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":6,"cost":0},{"index":1,"task":"t2","resource":"r0","start":8,"cost":6},{"index":2,"task":"t2","resource":"r2","start":12,"cost":9},{"index":3,"task":"t3","resource":"r0","start":9,"cost":0},{"index":4,"task":"t3","resource":"r1","start":7,"cost":9}],"conflicts":[{"i":1,"j":3,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":4},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":3153149895,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.938342696568919,2.7451535096671575],"expected_energy":0.0006286476099399063,"initial_expected_energy":2.88760004603744,"history":[2.88760004603744,3.2062691164026087,0.7312579831660373,2.1305607556947845,1.2194587833617567,0.826435376061974,0.6175233963508896,0.8936881289971279,0.5556949334916974,0.5122786762729621,0.45517936133763526,0.38856530168181375,0.31065120109383887,0.2583506877509419,0.4712387939889042,0.21047190701828747,0.20223585548294273,0.1602490236663687,0.14281824851998934,0.11058248549802327,0.09609630002442443,0.07366304156962723,0.15238344162509065,0.1426811531824508,0.05474359188332445,0.04159422193315461,0.034506837905556635,0.05169926911863547,0.030637242757952484,0.025042762031999247,0.021940574304138066,0.025198039638706104,0.020840886324559507,0.019748840352041133,0.017565665745252534,0.013732757368324815,0.014934165879357059,0.01818143343555907,0.0128220807628457,0.014018000256389784,0.01215205876476464,0.01236605389666093,0.011362335873502634,0.011035615111689908,0.012284834357905932,0.010114154250450166,0.009365243953168971,0.007886520554098284,0.005863835130831184,0.005583857715982147,0.0035431542118206567,0.002584996861655807,0.0009041192370073173,0.004134588620694163,0.005744053465151026,0.0007423960236517614,0.003222455084831559,0.0006400396772724387,0.0006286476099399063,0.0016259816067164948,3.9371052728568787,3.865702084632265,0.8305068449028967,1.1092912195750113,1.0730222581807511,1.2385420771908522,0.24465831664369136,0.3865673918067587,0.3130938795681474,0.3300763682214871,0.1246113269555172,0.08013511734238546,0.1109374174405507,0.06724259112419567,0.04856615868837754,0.04491157357597104,0.12750447463754905,0.029758654296696493,0.030441016531790925,0.028923271572338514,0.029542291778814823,0.029928325442699567,0.027355954820538528,0.026045866105637153,0.029308778956574282,0.02546908408443884,0.02427694694328165,0.02311965956055782,0.021945876667344315,0.01941522838046676,0.017660865641070334,0.015515260227128524,0.012001579506659244,0.012374946277886208,0.016627616473473498,0.011117609031735271,0.012337127969606336,0.010505092745094579,0.010825268891001938,0.009765795957106251,0.009606268829440837,0.010846423948306193,0.008699438134142262,0.007461848347036376,0.00610889878203278,0.00392380930354278,0.02329136851743304,0.00811517275265739,0.005618351472921927,0.0036368161572663984,0.0036974849028682476,0.0032814598496757655,0.003082711629154186,0.003925460275433319,0.0025489500170619885,0.0024846568097735573,0.00199741744758813,0.0017979787124990452,0.0014260451540973914,0.0011593709111684244],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07463921299495269},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,0,0,1,0],"qubo_energy":0},"seed":4186225163,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3021056005188874,1.203020401641941],"expected_energy":8.124888843097434,"initial_expected_energy":14.984644762175753,"history":[14.984644762175753,14.611093548692011,12.691424040558708,10.663332498996681,13.24342740486069,12.663623307864317,11.915317471886544,10.170661754273484,11.956601281828743,9.850862021184833,10.114996151175504,9.711848847462756,9.53256165260336,9.541875980039961,9.38376554744743,9.24347135452237,8.986607035647651,8.66604752458388,8.821284956716132,9.106793712545112,8.690027191250799,8.525666340144817,8.506856603125698,8.406340669488088,8.344450537755694,8.280482975390399,8.186934922303628,8.375349158331048,8.260714720746336,8.195401213405729,8.191276788788034,8.185545782951834,8.20195880567362,8.185268310785368,8.180369509867699,8.173691269740024,8.167403970692519,8.1629964886668,8.157137097075339,8.147979340604964,8.144800640295713,8.136078688035676,8.180726626136568,8.128463824746312,8.140502542242299,8.130584906289029,8.128702155521756,8.127627092891961,8.127068551333753,8.127378510853127,8.125977387020852,8.126675758130837,8.126300979084952,8.12599519619697,8.125834529077778,8.125611386888686,8.126246002657433,8.125462532179913,8.125234469048094,8.124888843097434,11.95135018374563,12.383618909424303,13.040468912291365,12.583070945830183,12.727376466634189,11.699733965590404,11.729805634088923,11.75908887418792,11.589005318210408,11.507826574369115,11.932997298008837,11.437719265310637,11.271517339178203,11.132725678147215,11.208419141184429,11.007150738239972,10.921535701505556,10.965486876713044,10.761805554022434,10.666348949636088,10.778277375483373,10.511379825974162,10.35677976986796,10.049492369863874,9.46331699032531,10.331303489761357,10.40799548406915,9.330873539471185,9.622257538575887,9.249394694387249,9.109283457467638,8.868055236363636,8.471137065194078,10.137637699691005,9.830952828652615,8.709268929584631,8.505809059138224,8.566461580012692,8.452176955113082,8.493062389114819,8.429985375735768,8.40992015378913,8.372875245848142,8.309651793980436,8.286217610563895,8.208675241326821,8.476504873701856,8.169387667303372,8.216579251525866,8.202777681684246,8.165310974221468,8.183846368939133,8.162294409190705,8.157218371154281,8.151066356807348,8.146775547482784,8.14921644225765,8.145080548135219,8.145357503343806,8.143236651215181],"feasible_probability":0.9574206292221641,"one_hot_probability":1.0,"sampled_feasible_fraction":0.955078125,"counts":{"01001":152,"01010":23,"01100":144,"10001":130,"10010":27,"10100":36},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.0888197380118072}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9574206292221641,"total_shots":1024,"runtime_seconds":0.16365838900674134},"direct_metrics":{"exact_objective":4,"optimal_count":1,"combinations":24,"optimal_probability":0.005267648306068082,"feasible_probability":0.7255481173494972,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.4166666666666667,"shots_for_95_percent":568,"hit_curve":[{"shots":8,"quantum":0.04137237082556903,"uniform":0.2885690504976606},{"shots":16,"quantum":0.08103306858340967,"uniform":0.49386600409019976},{"shots":32,"quantum":0.15549977896277575,"uniform":0.7438283781843783},{"shots":64,"quantum":0.2868193766680794,"uniform":0.9343761001763541},{"shots":128,"quantum":0.49137339850389317,"uniform":0.9956935037719361},{"shots":512,"quantum":0.9330737823805795,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":8},{"shots":16,"best_objective":8},{"shots":32,"best_objective":8},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9998428380975151,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.7947076036992655e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":6,"optimal_probability":0.2872989905993881,"feasible_probability":0.9574206292221641,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.8333333333333334,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.933432999043588,"uniform":0.7674319606386222},{"shots":16,"quantum":0.995568834383669,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999803647712806,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999996144578,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.551115123125783e-17,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.2872538381434435,"diagnostic_seconds":0.0034507660020608455}
+{"instance":"n4-s0-r2.json","seed":7,"direct":{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":4},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.946527209690512,2.8573339696492788],"expected_energy":21.332060169479988,"initial_expected_energy":44.324805991058696,"history":[44.324805991058696,44.73598534172754,45.27372545155929,37.40680016065239,33.72350951596443,41.34358151385089,39.835179029534146,33.76004621636997,32.619215666491606,32.45010933110679,32.9610242405471,32.67954375774801,32.05526858903599,32.022821928233625,32.44285982845187,31.73429388958673,31.539758975997962,31.33684420136391,31.016101493472327,32.624229372136206,32.12937102510467,31.048611112164487,31.005367743872476,31.187118816442258,30.97108347695922,30.91830594986257,30.866870468679778,30.806742661495647,30.741088596891732,30.940506777303735,30.688558540339468,30.766031620409922,30.66892713017258,30.672894945270574,30.664963926436194,30.659908615373784,30.660186936200745,30.653118136114163,30.64755708069069,30.644694186195295,30.67282572359657,30.641831253953264,30.632875499557258,30.626595855443345,30.629459238570668,30.62364877829198,30.620964241186623,30.616555299531818,30.621149624914977,30.612014852799827,30.612399936604525,30.611039833575163,30.60852358168735,30.603700228568734,30.59503862162027,30.60789910880994,30.599749950132335,30.593289187326455,30.598980256073897,30.59107271745042,32.91417818856173,38.185734236742576,45.483786325982365,37.59453720731587,29.703166336994116,62.80040274206564,26.382314153143252,24.470865747247295,22.446519600883807,33.541861009986235,21.84406945132516,23.29453116691878,22.250263932200646,21.5742124827856,21.587788794928603,21.8376009571802,21.584861927854416,21.520738101829377,21.50066141335381,21.57287492302469,21.481463315175628,21.465053097684343,21.436842557533627,21.395734778046666,21.380305276698728,21.344901391921816,21.390915657727966,21.410583890132198,21.360451060222143,21.347778800110987,21.34687107998804,21.34345358419514,21.344221286975767,21.34276338894894,21.341770719761126,21.341491226715938,21.342602924637468,21.341462277245107,21.34104336917305,21.34026430469399,21.338850725013945,21.3388404168512,21.336782203765598,21.335121531165047,21.33387459319649,21.336894532815535,21.333155580484913,21.33313854313289,21.333881819682414,21.333180746282913,21.33286689383257,21.332594727128743,21.33284387448232,21.332493614665637,21.33239686152745,21.332218234199505,21.332060169479988,21.332061442460976,21.33221316867975,21.332136869119324],"feasible_probability":0.8026865826881981,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.82421875,"counts":{"0100010011":42,"0100010101":87,"0100011001":10,"0100100011":8,"0100100101":1,"0100101001":3,"0101000011":8,"0101000101":14,"0101001001":1,"0110000011":23,"0110000101":51,"0110001001":4,"1000010011":32,"1000010101":55,"1000011001":7,"1000100011":14,"1000100101":13,"1001000011":28,"1001000101":34,"1001001001":3,"1010000011":15,"1010000101":55,"1010001001":4},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12809978000586852},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":4,"removals":[{"variable":3,"forced_by":0,"reasons":["resource"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":null,"component_qubits":[2,5],"max_component_qubits":5,"component_to_original":[[1,2],[4,6,7,8,9]],"components":[{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-5,-1],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":5,"cost":4}],"conflicts":[]},{"qubits":5,"penalty":19,"objective_bound":18,"offset":38,"linear":[-19,-13,-10,-19,-10],"quadratic":[[0,1,38],[0,2,38],[1,2,38],[1,3,19],[3,4,38]],"domains":[[0,1,2],[3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":6,"cost":0},{"index":1,"task":"t2","resource":"r0","start":8,"cost":6},{"index":2,"task":"t2","resource":"r2","start":12,"cost":9},{"index":3,"task":"t3","resource":"r0","start":9,"cost":0},{"index":4,"task":"t3","resource":"r1","start":7,"cost":9}],"conflicts":[{"i":1,"j":3,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":4},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.9639340054412315,1.1780731327660303],"expected_energy":1.3241753036548988e-07,"initial_expected_energy":0.8798057439886647,"history":[0.8798057439886647,0.7667188651826767,3.9436666907174187,1.080202339736375,2.5470239600258013,0.638733197474241,0.10350935157949846,0.029917114561004952,0.07283252504866913,0.1069282258646215,0.012976871316007664,0.007860727739061059,0.03200403125995707,0.00587270632343853,0.021013784719781534,0.0033912115449781415,0.0001238700694416286,0.0009640123667401764,8.789692814884908e-05,0.00043978690978077356,0.0003895878843059247,0.00019085631604157246,9.59765563713608e-05,8.003063224117497e-05,5.901821372395654e-05,5.175494762186341e-05,3.633414939403739e-05,9.949115729965236e-05,7.970076187864485e-05,4.142831383185701e-05,2.433552068025933e-05,2.0909548031331876e-05,1.7701857621776342e-05,2.0024170125922945e-05,1.659241304754407e-05,1.8272913522374724e-05,1.619405941886588e-05,1.539559316338354e-05,1.4013955756009057e-05,1.264919212075194e-05,9.92241725895456e-06,1.0600222143280364e-05,1.1986592331186446e-05,1.0044910195339215e-05,9.25454083754895e-06,8.713964445022057e-06,7.616210103840766e-06,5.5661509332967715e-06,3.448518907887304e-06,6.673906986454294e-06,1.0810105785492118e-05,2.959615617731067e-06,2.2000310119308617e-06,2.3610282375212537e-06,2.627504138168699e-06,2.1118421561095746e-06,2.2195944370432503e-06,1.949700530847645e-06,1.7949784963324353e-06,1.542196673983786e-06,0.7876802559727154,0.6577014560438759,3.9041711801018795,1.209596663407872,2.4699086688009744,0.1124760630168695,0.028388384565416654,0.15334411627591718,0.032204365392005545,0.12655469455460938,0.002530700750707394,0.05329573555716901,0.005053756317922808,0.004872576735885053,0.0013628029069606778,0.0028046643975788476,0.0015528959368495449,0.0017018837244765772,0.0011152804199091087,0.0016747580082939271,0.0009741515604385426,0.0010514714730057257,0.0009435066466453774,0.0009080314117758923,0.0009634106287582477,0.0008955420253929053,0.0008697267662589722,0.0008218879375090477,0.0007339967253497216,0.0005938362270850996,0.0003823921154948241,0.00015664391190310322,6.883340211456191e-05,0.00521968159070958,0.0005584902224446886,8.649534030355888e-05,0.0005674041676001793,6.454294808624971e-07,5.838132588758567e-05,3.934197760131554e-06,2.0822461387393077e-06,3.6020886751214526e-06,1.7361071395495314e-06,7.230187972087199e-07,5.27108762515505e-07,9.55213295719501e-07,4.322106885138702e-07,3.687756878225596e-07,3.19521638704445e-07,2.6345826481009925e-07,2.1461527921941735e-07,6.254606362176345e-07,1.4117360311898384e-07,1.7777640603214205e-07,2.0725039915672735e-07,1.426408847879951e-07,1.4553636820696877e-07,1.3506984224434731e-07,1.3241753036548988e-07,1.468731763667972e-07],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07751613600703422},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,0,0,1,0],"qubo_energy":0},"seed":3618983171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3533063990484482,1.202555468617061],"expected_energy":8.134173295522093,"initial_expected_energy":11.915696293159709,"history":[11.915696293159709,12.399962797982074,13.150798140197795,12.152800074828033,12.717058020910656,11.999906029511154,12.031131903034298,11.693764589123676,11.33860908742539,11.251230604977932,10.454246932076078,10.00025288632244,9.337258827662,9.24496576005198,8.405959856802578,9.905198612247712,8.31320590693479,8.596617991823248,8.319054890013131,8.29629233901295,8.317507918725672,8.30514446109544,8.284734170266669,8.288402182756334,8.28189350212283,8.276801088357598,8.2682804090635,8.263070408957653,8.30350844102759,8.257898026194699,8.244374779124808,8.234259583215962,8.245789734651334,8.225759461064257,8.221517355364444,8.233937763933609,8.216066767663973,8.211255056996254,8.202850745486824,8.18744043707668,8.178602762333448,8.15609701988916,8.186089320656343,8.149293451642901,8.17105041053568,8.14957757440616,8.145041901186948,8.145970341382588,8.14733563852573,8.14370950610395,8.143752325213692,8.144864133646116,8.141955695406573,8.140688060825065,8.1495495968376,8.138168062063102,8.136451396452916,8.134975929517896,8.13557509092465,8.134173295522093,12.475032251093012,12.391766303458574,12.184688935514476,14.481859846684772,11.607896899945551,10.21768545846552,11.956209120133153,11.79720979585312,11.928105192134831,9.875070910639835,9.311288410363623,9.167740809333264,9.514108756868225,9.0931923387047,9.057584854073932,8.990071216376737,9.046098264787794,8.997906756367538,8.980171335697257,9.002216728847818,8.989184352853355,8.965088726240946,8.953111317738351,8.981126421026937,8.941234188309544,8.930432792879028,8.913018347685291,8.9544115734558,8.892806401617825,8.874099476819362,8.884431049254973,8.857424409770157,8.862986759593188,8.863503313954029,8.847786962564964,8.838672945387227,8.86909233563128,8.831764935995153,8.819120733307482,8.79679435979807,8.75506379459187,8.672381485080653,8.65960470595037,8.495706305400518,8.696334360700666,8.475566737010539,8.521772096025682,8.476940598251295,8.461267391707574,8.457728677403113,8.584372086842906,8.425304065024406,8.411195232221345,8.398413356840493,8.421727496671863,8.387288231252597,8.374719026385732,8.37333220575207,8.429794373261332,8.370089803923836],"feasible_probability":0.9545523236931622,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.955078125,"counts":{"01001":141,"01010":23,"01100":129,"10001":142,"10010":38,"10100":39},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09534171700943261}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9545523236931622,"total_shots":1024,"runtime_seconds":0.1730768569977954},"direct_metrics":{"exact_objective":4,"optimal_count":1,"combinations":24,"optimal_probability":0.1066354319799838,"feasible_probability":0.8026865826881984,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.4166666666666667,"shots_for_95_percent":27,"hit_curve":[{"shots":8,"quantum":0.5942768483410836,"uniform":0.2885690504976606},{"shots":16,"quantum":0.835388724207956,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9729031278821156,"uniform":0.7438283781843783},{"shots":64,"quantum":0.999265759521427,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999994608909196,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":8},{"shots":16,"best_objective":4},{"shots":32,"best_objective":4},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999999668956174,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.304893350032398e-21,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":6,"optimal_probability":0.2870065071550316,"feasible_probability":0.9545523236931623,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.8333333333333334,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9332141388606432,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9955396487518745,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999801052667433,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999996041996,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.2870064976538584,"diagnostic_seconds":0.003788200003327802}
+{"instance":"n4-s0-r2.json","seed":8,"direct":{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":4},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.946705283951917,1.0822196561689386],"expected_energy":28.529294709190232,"initial_expected_energy":33.62705921447316,"history":[33.62705921447316,32.32124032666173,39.25850679592085,51.932099925120006,32.55130953643514,33.905870701775534,33.058598458211016,31.195958231297183,30.919591469448413,31.273908697587093,30.86321578382725,31.357271489755643,30.628551353107646,30.831344003514715,30.739251817608945,30.63101858910608,30.58426145402627,30.510286003808993,30.35179582558486,30.05938945958155,31.378738397937834,31.250543025536516,30.285188775301755,30.0920713276074,30.076667998731022,30.047996736579613,30.098729215971417,30.039417361641405,30.02348745182278,29.99400206194154,29.940387533073476,29.831355962929393,29.621633875787413,29.94568151100448,30.40419140808727,29.710890549899577,29.60070337544822,29.650778104784024,29.590141801970354,29.56573610839128,29.551461515684494,29.487624085778997,29.456469959748755,29.39553905916985,29.319768775058606,29.196119838532915,29.168583139510528,28.98587846364919,29.68092753755826,28.838361092146762,28.906845245160426,28.920166869558294,28.822068058931986,28.84530783309152,28.806918399904234,28.79229972453475,28.76457559911031,28.72242245245396,28.63546375362879,28.529294709190232,31.03009687617294,31.003446973649428,40.493395565447045,40.13126492081415,35.49170247026785,31.2143700239204,32.65599105513017,30.99173301344208,30.883963776533943,30.843724399044287,31.38805217173392,30.72794670191358,30.95023148040738,30.68659709851899,30.777114160297053,30.66461378312481,30.65057479620333,30.633305845653272,30.616418935959466,30.58967067174187,30.569726848372163,30.79847854258456,30.57129990281203,30.62105322781423,30.57387130637798,30.580529196761937,30.57263662589631,30.569848660051434,30.571514288681303,30.570555184993093,30.56972939796005,30.569725485929347,30.569770733923555,30.56968870552808,30.569699226262784,30.569690442166003,30.569690677648268,30.569686910486055,30.5696881623773,30.569686657208322,30.569687030903758,30.569686919551586,30.569686707840418,30.569686628831068,30.569686680881432,30.569686599109414,30.569686572266793,30.569686525861023,30.56968647172304,30.569686397499378,30.569686395065347,30.569686331063437,30.569686701030424,30.56968646931412,30.569686330460748,30.569686372936044,30.569686337641528],"feasible_probability":0.5627891132654746,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.52734375,"counts":{"0100010011":44,"0100010101":14,"0100011001":43,"0100100011":3,"0100100101":6,"0100101001":4,"0101000011":3,"0101000101":19,"0101001001":4,"0110000011":84,"0110000101":93,"0110001001":9,"1000010011":3,"1000010101":2,"1000011001":4,"1000100011":73,"1000100101":72,"1000101001":1,"1001000011":16,"1001000101":12,"1010000011":1,"1010000101":1,"1010001001":1},"circuit_evaluations":117,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":57}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1255595779948635},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":4,"removals":[{"variable":3,"forced_by":0,"reasons":["resource"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":null,"component_qubits":[2,5],"max_component_qubits":5,"component_to_original":[[1,2],[4,6,7,8,9]],"components":[{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-5,-1],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":5,"cost":4}],"conflicts":[]},{"qubits":5,"penalty":19,"objective_bound":18,"offset":38,"linear":[-19,-13,-10,-19,-10],"quadratic":[[0,1,38],[0,2,38],[1,2,38],[1,3,19],[3,4,38]],"domains":[[0,1,2],[3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":6,"cost":0},{"index":1,"task":"t2","resource":"r0","start":8,"cost":6},{"index":2,"task":"t2","resource":"r2","start":12,"cost":9},{"index":3,"task":"t3","resource":"r0","start":9,"cost":0},{"index":4,"task":"t3","resource":"r1","start":7,"cost":9}],"conflicts":[{"i":1,"j":3,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":4},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":3257320810,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.962316292536024,1.1780637552755113],"expected_energy":9.077462579517266e-07,"initial_expected_energy":2.8999327706814326,"history":[2.8999327706814326,3.11992835617858,2.7602804901946323,1.4580878775182513,2.4086673680543917,1.0837020954704173,1.834354035153436,2.3781744158911855,0.7059842163805411,0.5949256139526875,2.1230619977910044,0.36258000421293357,0.19791805426118317,0.3030885366804831,0.22409167362075966,0.20349218028767402,0.17106029538814574,0.15827606596796798,0.24660481126690773,0.12067027390819564,0.13307766133024748,0.11393387319076488,0.1322096097287836,0.11005081310552559,0.10307469362072631,0.09071411938158873,0.06856651372395281,0.06256972055035057,0.0550327524880482,0.0811456336049314,0.07457273350426208,0.028604973591906092,0.022783650874930304,0.02971030268717448,0.022677799910528172,0.02517270669997525,0.022878054073053603,0.020716588358554337,0.018727311141569294,0.02131166828800225,0.017659365636021992,0.01693632918033719,0.015834556673283033,0.01399527642038864,0.010453053870828082,0.005975744663250356,0.011997041695189607,0.01606937336546086,0.004656304133310334,0.00457495614704001,0.00609665465879168,0.003630715136260409,0.0032203784791632072,0.0028910534184324217,0.0032481494060025624,0.002671865380012813,0.002499030121643051,0.0028204084724053244,0.0023523252297475024,0.002161393643734,1.5121566081815034,1.4771472391810947,3.9720428091997877,0.46316220173721073,3.7993655914413305,0.04361551957114451,0.1569064610568995,0.04045112478976432,0.24060254277469123,0.024944402001230142,0.015775527695464107,0.0057668381873535925,0.00026044554684794154,0.14169499764638224,0.04631479894087077,0.007054092280554425,0.00041939797908993327,0.004173102304071416,3.687858532209642e-05,0.0005170349574570323,6.872065392247859e-05,9.620473647569596e-05,3.225493761809646e-05,2.023720122140086e-05,1.4984358410808484e-05,1.8648354198527108e-05,1.3584930691188536e-05,1.2250534816671096e-05,1.0877550551998301e-05,8.504841375377003e-06,1.0795674384448749e-05,1.1849914449187262e-05,7.897933521138969e-06,8.491217390250199e-06,7.49648914426681e-06,7.563905491089487e-06,7.183607696703146e-06,6.960935668318878e-06,7.003315505893459e-06,6.70322749699531e-06,6.503271019738036e-06,6.402485149335279e-06,7.513592017374514e-06,6.376868273507346e-06,5.9585566171577765e-06,5.428396518729902e-06,4.914141931818031e-06,4.541506245418985e-06,4.042078991423666e-06,3.253768000394367e-06,2.399352023512235e-06,1.3792014167433325e-06,1.6776962462993762e-06,3.963623806302537e-06,9.760428225765884e-07,1.2275129597655035e-06,1.0317619900180109e-06,9.796384275629496e-07,9.328839591970222e-07,9.077462579517266e-07],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07769231099518947},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,0,0,1,0],"qubo_energy":0},"seed":631391383,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.286526504355582,1.204392934017286],"expected_energy":8.124282950209409,"initial_expected_energy":14.325858285234341,"history":[14.325858285234341,13.174150175740218,12.734227093325398,13.01975029346504,11.500283419399532,12.152946989268475,12.38322896710915,11.858076230449305,11.000330691632902,11.207843298216078,10.922756398608575,10.8046661220067,10.779686419946994,10.581176672499069,10.31898963185263,10.037103563286554,9.669042214599056,10.770696869502967,9.328953675486675,9.283577651793658,8.948337217673998,9.140135827899288,9.10330652041709,8.899171988391402,8.950340239533444,8.817706201070706,8.79887236282818,9.057565566586998,8.656195641044073,8.606655212420186,8.503378771137891,8.363268729755864,8.274334800592525,8.177228410505418,8.141479995419727,8.611405378883502,8.162387892628717,8.180131647253688,8.1478356411866,8.130679181192594,8.128610550021087,8.135504388228787,8.127422487487964,8.126772198548316,8.126193433959155,8.12597900676024,8.128072207107685,8.125511018214507,8.125352163366692,8.125118941229653,8.124791871984547,8.125673527449067,8.12472351614254,8.124661530714397,8.124604636748748,8.125069744968732,8.124557231999038,8.124470133971034,8.124447922344187,8.124554999975015,8.792995334435208,9.63737436415729,12.823862432017636,13.788100413889742,8.718967222021764,8.685821032274646,9.784694314315871,8.533143770153192,8.243245851747481,8.129596586118236,8.150647136670745,8.126703956330434,8.124341383546765,8.12456636224188,8.124360414096909,8.124937423011275,8.124303804515783,8.124765599245402,8.124448100010788,8.124310143677272,8.1243939624114,8.124296745446124,8.124299808634284,8.124300553292471,8.124296953335024,8.124295339010775,8.124293030510085,8.12428921717893,8.124286199737154,8.124284308201984,8.12428438047976,8.124286844128079,8.124284725950453,8.124284072700634,8.124283840176314,8.124284467039395,8.12428360547505,8.124283562141313,8.12428336846549,8.124283302235552,8.124283166647077,8.124283204974233,8.12428323988472,8.124283170605674,8.124283180624012,8.124283148031028,8.12428314242941,8.12428318144489,8.12428312467736,8.124283109494579,8.12428308427125,8.124283038500792,8.124283031727815,8.124282960760944,8.124283076414375,8.124283017201432,8.12428295367396,8.12428296298131,8.124282950209409,8.124282957320247],"feasible_probability":0.9582801989384752,"one_hot_probability":1.0,"sampled_feasible_fraction":0.947265625,"counts":{"01001":152,"01010":27,"01100":132,"10001":129,"10010":36,"10100":36},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09361313699628226}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9582801989384752,"total_shots":1024,"runtime_seconds":0.17151691099570598},"direct_metrics":{"exact_objective":4,"optimal_count":1,"combinations":24,"optimal_probability":0.0705583552285735,"feasible_probability":0.5627891132654746,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.4166666666666667,"shots_for_95_percent":41,"hit_curve":[{"shots":8,"quantum":0.44310025196000097,"uniform":0.2885690504976606},{"shots":16,"quantum":0.6898626706329856,"uniform":0.49386600409019976},{"shots":32,"quantum":0.903814836933096,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9907484144057931,"uniform":0.9343761001763541},{"shots":128,"quantum":0.999914408163993,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":9.71445146547012e-17,"independent_samples":[{"shots":8,"best_objective":4},{"shots":16,"best_objective":4},{"shots":32,"best_objective":4},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999997730634356,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.7321823771350442e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":6,"optimal_probability":0.28797539594681315,"feasible_probability":0.9582801989384752,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.8333333333333334,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9339367389523285,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9956356455397473,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999809524101453,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999996371893,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.2879753305946662,"diagnostic_seconds":0.003816205993643962}
+{"instance":"n4-s0-r2.json","seed":9,"direct":{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":4},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.08632707615387,1.134467814865463],"expected_energy":24.238457914576184,"initial_expected_energy":42.443097592947446,"history":[42.443097592947446,41.61310414852046,31.425633187322898,39.98767851588515,32.50057371698925,31.930363189924403,32.394438864981744,31.240083706268106,31.05859596595842,30.927448551397177,31.186526444827827,30.84236815684654,30.798483931577735,30.92053221414326,30.763070432281857,30.734709376472132,30.684742379536967,30.638325685371306,30.62769687478974,30.581798829723922,30.60967069556578,30.678574865248496,30.586956303051416,30.57519956272428,30.58288042552644,30.578569724352924,30.576845909269906,30.573590707174866,30.575010153927213,30.574725706095492,30.57358482344999,30.57319319480862,30.572886960493975,30.573162757972256,30.572591241234107,30.57256644190588,30.572760863741593,30.57258085035504,30.572392987349765,30.572124585238097,30.572300943197313,30.57191050862565,30.5718013783775,30.5720800601689,30.571654074371924,30.571525682894915,30.571305473322692,30.570910662924597,30.570723478267844,30.57021092019727,30.571183914163342,30.570038834543634,30.570521999426646,30.570068043940143,30.569951548121253,30.570060299257882,30.569911496714465,30.569877309627195,30.569842482782473,30.56978400261356,38.45349106011085,38.401995428694455,31.465089928446403,39.00616146839422,27.402323574841738,28.37626557041936,28.731154418606252,26.59377151565618,26.608810816039153,26.74839781373314,26.94908706760556,26.32948100013573,26.812857969625085,26.211126544892043,26.28171224300026,26.171223649237195,26.18319347339542,26.159145920110376,26.138340238839387,26.110146220126097,26.123876937560077,26.088012077849335,26.069351617441775,26.048297736266992,26.09805464266519,26.036682074212585,26.013281671454063,25.968404289535375,25.882651942280972,25.70991842056749,25.38261534703453,26.318239523287883,26.495695539317392,25.299152583900366,25.531877032043727,25.284590014806554,25.228362052523053,25.150747929697097,25.09318823464399,25.411382604426528,25.046703671127506,24.985556110277976,24.90703361373735,25.423766183754104,24.807309555587644,24.798310968359043,24.751094302929207,24.686076774212516,24.63727985991027,24.958878687138586,24.615558860868788,24.585150292230995,24.52249383065641,24.411903346974498,24.249803753241345,26.87150632224066,25.490384802603074,24.404519904447415,24.238457914576184,24.372195679796647],"feasible_probability":0.7176144869821774,"one_hot_probability":1.0,"sampled_feasible_fraction":0.740234375,"counts":{"0100010011":2,"0100010101":42,"0100011001":19,"0100100011":15,"0100100101":8,"0100101001":4,"0101000011":4,"0101000101":1,"0101001001":6,"0110000011":196,"0110000101":112,"0110001001":9,"1000010101":2,"1000011001":2,"1000100011":32,"1000100101":27,"1000101001":5,"1001000011":7,"1001000101":8,"1010000011":6,"1010000101":4,"1010001001":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13092409500677604},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":4,"removals":[{"variable":3,"forced_by":0,"reasons":["resource"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":null,"component_qubits":[2,5],"max_component_qubits":5,"component_to_original":[[1,2],[4,6,7,8,9]],"components":[{"qubits":2,"penalty":5,"objective_bound":4,"offset":5,"linear":[-5,-1],"quadratic":[[0,1,10]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":5,"cost":4}],"conflicts":[]},{"qubits":5,"penalty":19,"objective_bound":18,"offset":38,"linear":[-19,-13,-10,-19,-10],"quadratic":[[0,1,38],[0,2,38],[1,2,38],[1,3,19],[3,4,38]],"domains":[[0,1,2],[3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":6,"cost":0},{"index":1,"task":"t2","resource":"r0","start":8,"cost":6},{"index":2,"task":"t2","resource":"r2","start":12,"cost":9},{"index":3,"task":"t3","resource":"r0","start":9,"cost":0},{"index":4,"task":"t3","resource":"r1","start":7,"cost":9}],"conflicts":[{"i":1,"j":3,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":4},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":5,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":747784396,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.9784581223358664,1.177583225627027],"expected_energy":0.0001475104365451153,"initial_expected_energy":1.0986754069497577,"history":[1.0986754069497577,1.2122072551814145,3.9838282208238556,0.7617391879696214,3.8782298626981353,0.044610709007749355,0.15951960124609893,0.1745652022188941,0.020095153283756335,0.008976909301592536,0.01890506152178337,0.02192156136407508,0.02373504330101746,0.0066923902210054426,0.0044117122365852374,0.004303174038154036,0.005836485688011406,0.00447692912106049,0.003368207382282966,0.003211393665879502,0.003773632917492107,0.0027979445394095376,0.0024776287582979066,0.0030787985428492376,0.002196792881920227,0.0020219429868823142,0.002838399434259309,0.0017736755388011957,0.0016385506979314497,0.0014862345168761087,0.0012746545498834078,0.0014546016793938285,0.001132857536991059,0.0012232437521521122,0.0010995603452415767,0.0010585797667232197,0.0011105021454642361,0.0010451933369633392,0.0010195696752269856,0.0009690891413589354,0.0009030087855995985,0.0008104174366939445,0.0007306290596585201,0.0008171765572782658,0.0006903281383598942,0.0006042813561626847,0.0004508235203350522,0.00022614685306602544,0.0029041532241620427,0.0013875175908760538,0.00036762918530945253,0.0002835500566437619,0.00024274243374136582,0.0002141378577427126,0.00024572288363523646,0.00020254934637278888,0.00019287540440001162,0.00018459569549734748,0.00015819311353111113,0.0001475104365451153,3.8687118183866693,3.492533861655617,1.6587175234211917,0.8436617439272143,1.6775722914148237,2.6869923851097557,1.1605690542806508,1.210452938347338,0.7779069587238338,0.6476073562752209,0.5544469618364,0.5487058869900032,0.5040164583545244,0.4761572097832493,0.5280600610119517,0.42113068861034525,0.3875673377026571,0.3397896261910234,0.2646040665977609,0.14250562935504013,1.9692038137571484,0.4887955709340201,0.36697708358883374,0.11827445150684734,0.1113426842809821,0.20342213146856747,0.08966645848283453,0.0812309172146822,0.0712762689760161,0.06315400171173716,0.12082112862283832,0.04822032220439091,0.04613247731017466,0.03584406213691587,0.02964545210052266,0.019208471543377775,0.03187348871448476,0.03823832655964507,0.020257112300130702,0.014780176852373698,0.015317897699359236,0.013982315017124007,0.013536079506628686,0.014238518683107871,0.01238178932438636,0.011616263579427525,0.010769917231439137,0.009341459584345908,0.007282092687068223,0.004416552531750821,0.0035136781892037053,0.010856535251060201,0.01730792470800125,0.003603651707725637,0.0012612851695854705,0.002177710699364227,0.0015607722791295285,0.001664450788213101,0.001150054497475125,0.0010501305527028115],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08203172800131142},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,0,0,1,0],"qubo_energy":0},"seed":4053640108,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.2931999420638105,0.5657513370470295],"expected_energy":11.463640002690527,"initial_expected_energy":12.65697223586194,"history":[12.65697223586194,11.881771634333141,12.018806924545611,11.991418958585852,14.324374360847234,11.87380197742679,12.09776830544202,11.900187123148354,11.919523434462175,11.900469366262948,11.881706923765408,11.858440047642548,11.830624873686348,11.787333424060535,11.845703521289531,11.903122144547686,11.764277333962058,11.752444753217686,11.820034245737356,11.734474698529263,11.723640869317695,11.712055768501695,11.695839612803304,11.67445492588514,11.664415488215482,11.731756868629446,11.64832500723635,11.640016267293397,11.629880622565032,11.612816203357147,11.669101694057382,11.60872339459618,11.596867000279584,11.575019802558549,11.543115738183882,11.54456141517145,11.63321914766471,11.548130747337904,11.541159161150965,11.548683374665295,11.539222327775317,11.535878146670614,11.530819520011514,11.521816185122645,11.57547820204417,11.520694296014447,11.513501406700406,11.501544473599212,11.486552276724847,11.486097895944237,11.46970102449501,11.49598980888871,11.487555331945265,11.468109179836407,11.470325054438257,11.467710203631261,11.470755511774268,11.465950301800069,11.465065683610476,11.463640002690527,12.218763544282474,11.997336071842444,13.80887081115125,12.802274231234607,12.762614259738584,12.29560812783458,11.996506675685445,11.991472104133674,12.077341978641504,11.985831634144674,11.987044605179362,11.984290408406583,11.981865831021087,11.979765996948522,11.981008254070774,11.979421245044861,11.978988284483409,11.978631287694471,11.979381724579259,11.978699070326279,11.978575000223719,11.97874973812743,11.978461843236335,11.978374522766092,11.978237886488817,11.977983177979963,11.97761686022362,11.977793084306088,11.97814497021764,11.977678277178653,11.9776074961152,11.977571978588772,11.977542771247943,11.977515416081735,11.977757440750132,11.977492420342083,11.977444799036023,11.977432424113218,11.9774816534037,11.977420918738508,11.977411392294737,11.977395579140449,11.977400056892206,11.97739517823597,11.977409400075288,11.977384902661003,11.977370664735266,11.97736132223546,11.977356896221284,11.977346562027007,11.977343112398652,11.977357427614484,11.977381385511766,11.9773430951445,11.977336156515781,11.977337750688353,11.977335881681396,11.977336999810165,11.977335773971856,11.977335341676943],"feasible_probability":0.9551987901897122,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.935546875,"counts":{"01001":88,"01010":33,"01100":73,"10001":86,"10010":138,"10100":94},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09319467200839426}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9551987901897122,"total_shots":1024,"runtime_seconds":0.17545808300201315},"direct_metrics":{"exact_objective":4,"optimal_count":1,"combinations":24,"optimal_probability":0.002247822702867585,"feasible_probability":0.7176144869821773,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.4166666666666667,"shots_for_95_percent":1332,"hit_curve":[{"shots":8,"quantum":0.017841740070762835,"uniform":0.2885690504976606},{"shots":16,"quantum":0.035365152452773004,"uniform":0.49386600409019976},{"shots":32,"quantum":0.06947961089753814,"uniform":0.7438283781843783},{"shots":64,"quantum":0.13413180546460296,"uniform":0.9343761001763541},{"shots":128,"quantum":0.25027226969201183,"uniform":0.9956935037719361},{"shots":512,"quantum":0.6840529549744152,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":13},{"shots":16,"best_objective":8},{"shots":32,"best_objective":8},{"shots":64,"best_objective":8},{"shots":128,"best_objective":8},{"shots":512,"best_objective":4}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999631223908637,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":6,"optimal_probability":0.17434096594131834,"feasible_probability":0.9551987901897122,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.8333333333333334,"shots_for_95_percent":16,"hit_curve":[{"shots":8,"quantum":0.7840237992403982,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9533542807054483,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9978241768714938,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999952657937135,"uniform":0.9999914414488029},{"shots":128,"quantum":0.9999999999775873,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.1743345366633199,"diagnostic_seconds":0.0037657549983123317}
+{"instance":"n4-s0-r3.json","seed":0,"direct":{"status":"feasible","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t1","group":"g1","resource":"r0","start":2,"end":3,"reserved_end":4,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":8,"end":11,"reserved_end":12,"changed":false}],"bits":[1,0,1,0,0,0,1,0,1,0],"qubo_energy":15},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.998204686886313,1.9680711921490956],"expected_energy":28.728361779624713,"initial_expected_energy":35.49478378665741,"history":[35.49478378665741,37.724460348300056,31.477965663127165,29.337613483936448,33.849472706736044,30.051348359826562,29.50958886059142,30.802961171136744,29.55801646772479,29.518441147421225,29.526204203889804,29.298260985754222,29.23050138797276,29.22937073828359,29.22485719253053,29.222689507240048,29.233090164946592,29.209060670306567,29.2027356872108,29.194866277155363,29.1833507711876,29.201304658130283,29.176472347130105,29.161642952660674,29.12997230163147,29.05778982323406,29.06258689259291,29.360601957504358,29.039991214708348,29.127347464054704,29.038614098750102,29.02498152096384,29.008827593636713,28.996433708467173,29.081608970310562,28.986097971772146,28.975253715495793,29.008076810417364,28.960018396336835,28.95803359882218,29.01048849322736,28.942497137391726,28.93315839716507,28.926273774006624,28.933999897316962,28.92179893265735,28.91733658148296,28.910131450682265,28.89405527821994,28.876611414998493,28.841855373811235,28.775902378425105,29.33102832534522,28.94849541065918,28.907488078029655,28.762782038985453,28.753670827411746,28.739429894621118,28.7404711593683,28.728361779624713,44.025810088339185,41.922813719242804,32.2623238305323,30.596294501238113,31.88639099597571,32.01015703559831,35.683744458860005,31.84111409716956,30.60449000490128,31.402656223468178,30.583552157618918,30.94047671025497,30.59250746285373,30.63649056065727,30.512458832125652,30.489860650436363,30.49935219312879,30.491030011923094,30.492677898262563,30.48965498848544,30.492808625395977,30.489416937061435,30.489480365943983,30.489507469288732,30.48929041473808,30.489242009797316,30.489300200162255,30.489190022812835,30.489175647844498,30.489107611958524,30.489058300603965,30.488925028493426,30.48891426390741,30.488687790674646,30.488909228061296,30.488833420927417,30.48872109970542,30.48867638561423,30.488616813645073,30.48850401147596,30.488285357825788,30.48788660545629,30.488718203251857,30.49087028813853,30.488140315391703,30.48808989872876,30.487931083395743,30.48783858914083,30.48779193880865,30.487801825731758,30.487767430130276,30.48775632831027,30.487783650691107,30.487749763628166,30.487735360355302,30.487708334653206,30.487689024743545,30.48762475683875,30.487578867598387,30.487465700127146],"feasible_probability":0.7108290743359069,"one_hot_probability":1.0,"sampled_feasible_fraction":0.703125,"counts":{"0100010011":22,"0100010101":16,"0100011001":65,"0100100011":1,"0100100101":2,"0100101001":4,"0101000101":3,"0101001001":1,"0110000011":27,"0110000101":39,"0110001001":83,"1000010011":5,"1000010101":7,"1000011001":23,"1000100011":24,"1000100101":36,"1000101001":113,"1001000011":6,"1001000101":10,"1001001001":18,"1010000011":3,"1010000101":1,"1010001001":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.14272149199678097},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":6,"removals":[{"variable":4,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[3,5],"max_component_qubits":5,"component_to_original":[[1,2,3],[5,6,7,8,9]],"components":[{"qubits":3,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-2,-1],"quadratic":[[0,1,14],[0,2,14],[1,2,14]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r0","start":2,"cost":5},{"index":2,"task":"t1","resource":"r1","start":7,"cost":6}],"conflicts":[]},{"qubits":5,"penalty":18,"objective_bound":17,"offset":36,"linear":[-11,-14,-8,-18,-11],"quadratic":[[0,1,36],[0,2,36],[0,3,18],[1,2,36],[2,4,18],[3,4,36]],"domains":[[0,1,2],[3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":8,"cost":7},{"index":1,"task":"t2","resource":"r1","start":6,"cost":4},{"index":2,"task":"t2","resource":"r2","start":11,"cost":10},{"index":3,"task":"t3","resource":"r0","start":8,"cost":0},{"index":4,"task":"t3","resource":"r2","start":9,"cost":7}],"conflicts":[{"i":0,"j":3,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":8,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":3757552657,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.4137585652443923,1.1440053373084513],"expected_energy":1.803934919543205,"initial_expected_energy":5.552555774702482,"history":[5.552555774702482,5.541431052805574,3.252145509013329,2.3554430704793727,3.8127217157615205,3.3436085470232575,3.1101365482871635,2.551538091470352,2.248789385021007,2.058875631072909,1.8598210767484884,1.89759532469381,1.8484714270616538,1.838981973122078,1.902877863932876,1.8333112076274132,1.8330304270871607,1.842720516442256,1.8332206057650142,1.83022456289269,1.8266806643373332,1.8277264152761639,1.8254541866194094,1.8243541083078063,1.822324585448183,1.8193472016119667,1.8205758530896496,1.8251301013194934,1.8181531071908834,1.8183202621993493,1.817406171005624,1.8167604801771498,1.81592798066541,1.8183980346778057,1.8152619305655766,1.8143482992600624,1.8136138680156295,1.813684004401002,1.813302710422855,1.813051540405018,1.812856513883113,1.8142005568485413,1.8123720297515689,1.8119794716001936,1.811367080880451,1.810128495594482,1.8085772960127078,1.8085444628789231,1.8065429504093329,1.8057698315168877,1.8042377188141625,1.8092946886341057,1.8084221611882851,1.8063942685627097,1.804062076881687,1.8041040201457057,1.8041497951141883,1.803934919543205,1.8039406206279556,1.8039867411369617,4.080873120952119,4.451136063821315,2.99065995567836,3.7571261756771244,2.691314432559924,2.650213907894808,2.4087983532798822,2.4462850077866483,2.5237308189340464,2.444726485515866,2.374436904010375,2.418648100663877,2.3272090784287927,2.293394813770609,2.2457520150748933,2.1760378869043313,2.0844335328233687,1.93379102483612,2.410287600945303,2.3387824812611715,2.0964055805733124,1.9196122249585794,1.9433619181814177,1.9174032619955155,1.9709225479980774,1.8975167583983334,1.8911560651331563,1.8810778767853669,1.864742534340436,1.9168154531578772,1.8741429864624868,1.8705410474925221,1.8683688341134015,1.8603237353889934,1.8613594520832644,1.8596357718161114,1.8580422951040585,1.8548869592707788,1.8503449354928696,1.845816403533906,1.8314806133762747,1.8357649235951532,1.8528890135096743,1.836352674760981,1.8329324298940237,1.829310919513522,1.8290484560387186,1.8259335889192831,1.8248623759633336,1.819718021932201,1.8199805346035474,1.823026417630637,1.8194764421073788,1.821102344712954,1.8182399473266482,1.8164738261585622,1.814220633449267,1.8115659559365611,1.8109495281583163,1.8134841859929876],"feasible_probability":0.9999999999999999,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":1.0,"counts":{"001":345,"010":115,"100":52},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08922886000073049},{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t2","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":8,"end":11,"reserved_end":12,"changed":false}],"bits":[0,1,0,1,0],"qubo_energy":4},"seed":673228719,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7989638087277964,1.2951033700823869],"expected_energy":11.24274007085759,"initial_expected_energy":11.943232581384285,"history":[11.943232581384285,12.392465842766999,17.711670785190375,18.64183158463392,17.380209422999755,11.711445437401878,12.622825083276892,11.844853005591737,11.332227673961949,11.585983888030196,11.304916601689202,11.323062039028212,11.302544263279588,11.303923443765404,11.299325227874542,11.299338199990663,11.302537146939523,11.29951220200169,11.29800475275114,11.295771746904105,11.291511624538735,11.287155249284826,11.279742442677822,11.279714859849266,11.272356716597722,11.269990190971008,11.267651718782467,11.268731195438985,11.265985689752153,11.26586573715047,11.266813117553955,11.26591804058554,11.26550496685051,11.264871232688135,11.264326257461029,11.263146614687354,11.262035170628149,11.260011035997598,11.256999992911002,11.253003721659033,11.251079548931969,11.256777809419965,11.270094560314412,11.25046783191093,11.246933118494574,11.247084144850456,11.247328550518805,11.247172256612938,11.246555423405075,11.246138432135512,11.245563908862632,11.244545571081913,11.243645624868797,11.244920440685574,11.247780623850556,11.243328913719061,11.24274007085759,11.242753821978763,11.24291172133372,11.242778952396181,19.74046209811479,20.056262253793438,14.177394506959356,18.88857131543765,16.66659528134298,15.976221002263452,13.936762813496697,14.230502151044245,14.418945738684203,13.42546450143682,13.661991592908555,13.437745224117194,13.448006237143442,13.41439868032533,13.431658647176484,13.417751539674665,13.411703363145877,13.420655057854521,13.405924766228345,13.405236174770032,13.399816269657013,13.39678651788584,13.392161511603124,13.384879819477147,13.36826622806212,13.348979016827204,13.443556381907696,13.467750062216789,13.34508435296436,13.332532768458751,13.34243240534403,13.33735273518134,13.333167875979406,13.331284559478053,13.330817596393267,13.334379622826125,13.330302435168473,13.328874873777334,13.327713910812005,13.327805030941029,13.326738592785407,13.32577549792172,13.323864411570714,13.320086876927018,13.312693818961563,13.29928943089948,13.36015129199306,13.371668097886642,13.29882241196795,13.292143380721377,13.279273578437204,13.262185948783706,13.419191752970344,13.266464318778297,13.26336377473963,13.287252484814168,13.256498183748255,13.250210111914278,13.248459772185509,13.255248656049641],"feasible_probability":0.9665545749431959,"one_hot_probability":1.0,"sampled_feasible_fraction":0.970703125,"counts":{"01001":9,"01010":28,"01100":253,"10001":65,"10010":151,"10100":6},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10527840799477417}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9665545749431957,"total_shots":1024,"runtime_seconds":0.1947459739894839},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":24,"optimal_probability":0.0020070646478941856,"feasible_probability":0.7108290743359069,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.5,"shots_for_95_percent":1492,"hit_curve":[{"shots":8,"quantum":0.015944176175276166,"uniform":0.2885690504976606},{"shots":16,"quantum":0.03163413559664408,"uniform":0.49386600409019976},{"shots":32,"quantum":0.06226755265834131,"uniform":0.7438283781843783},{"shots":64,"quantum":0.1206578572026233,"uniform":0.9343761001763541},{"shots":128,"quantum":0.22675739590051797,"uniform":0.9956935037719361},{"shots":512,"quantum":0.6425106575536652,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.8041124150158794e-16,"independent_samples":[{"shots":8,"best_objective":16},{"shots":16,"best_objective":21},{"shots":32,"best_objective":20},{"shots":64,"best_objective":10},{"shots":128,"best_objective":15},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6596983985187792,"feasible_probability":0.9999999999999999,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998201493783252,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999676537539,"uniform":0.9984775611596526},{"shots":32,"quantum":0.999999999999999,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.249000902703301e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":4,"optimal_count":1,"combinations":6,"optimal_probability":0.04954925972374576,"feasible_probability":0.9665545749431959,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.6666666666666666,"shots_for_95_percent":59,"hit_curve":[{"shots":8,"quantum":0.3340572330789702,"uniform":0.7674319606386222},{"shots":16,"quantum":0.5565202311855629,"uniform":0.9459121070676046},{"shots":32,"quantum":0.8033256946522935,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9613192176159971,"uniform":0.9999914414488029},{"shots":128,"quantum":0.9985037970741614,"uniform":0.9999999999267511},{"shots":512,"quantum":0.9999999999949886,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":4},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]}],"reduced_single_joint_draw_p_opt":0.032687567287546127,"diagnostic_seconds":0.004406648004078306}
+{"instance":"n4-s0-r3.json","seed":1,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":8,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":10},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9483187397116177,1.1360839087271348],"expected_energy":28.552950043987195,"initial_expected_energy":41.12254654300387,"history":[41.12254654300387,42.07670778198217,32.22301910034562,32.95826724681923,30.68873757094439,30.35858491126188,36.62887278106584,30.331790947463134,29.71114492564739,29.750046956362667,29.56124280255808,29.445939341904648,29.434672439021988,29.917614182451008,29.190788846184653,29.089565221513034,28.993480909723917,28.96735399491132,28.74724508796693,28.688173567724352,28.60350089999279,28.64544748396839,28.736342841553487,28.58438121532778,28.607878656815554,28.581106290990853,28.579845899057403,28.572539880444964,28.56791955974002,28.55965587243647,28.563200084898178,28.55979250353282,28.55998277597959,28.55941481123572,28.56000310846033,28.56083523165951,28.557671401303608,28.55764487679903,28.558910801452605,28.556574143326063,28.554920443791392,28.553427460131445,28.562588403995704,28.558868973106822,28.55329576515686,28.553246380065946,28.555016724507347,28.552978212231963,28.553150080810873,28.552971518130136,28.55305966066863,28.552967015229,28.552965297307445,28.55295786504105,28.55295582652296,28.55295180602917,28.55295431430278,28.55295098364074,28.552955122344606,28.552950043987195,31.000816055757223,33.47816529520428,32.2519839946854,33.55275268371645,31.286537495934844,30.73878907253075,32.05557950061705,30.575174720436067,30.566633665079628,30.46750117794365,30.378586150498577,30.228517831657896,29.7927492098593,33.66372747818982,29.398724782141645,29.1628548006115,28.846633980310173,28.87124616221292,28.93357113232827,28.867209616348465,29.029174676202462,28.718300141620702,28.659008581632676,28.630956168687604,28.789428428329586,28.60723919569895,28.601084650803585,28.583197356178353,28.579439827437685,28.567473108350946,28.575709727480465,28.566036608694276,28.569135015594313,28.566265192578655,28.563987948949073,28.563234385085195,28.565255456777585,28.561695294301902,28.560346459207732,28.55860874410956,28.55701541217751,28.555948555043543,28.561008016672055,28.554896961168048,28.5550101448622,28.555738582624926,28.55481002707377,28.555260074311434,28.554606604836486,28.554444589960877,28.554184216025646,28.553731965866973,28.553432210108124,28.554117140660633,28.555337901233244,28.55337761789243,28.553090006570258,28.55320804878805,28.553131458074922,28.55309993356184],"feasible_probability":0.6544664265253872,"one_hot_probability":1.0,"sampled_feasible_fraction":0.689453125,"counts":{"0100010011":13,"0100010101":1,"0100011001":20,"0100100011":15,"0100100101":3,"0100101001":14,"0101000011":39,"0101000101":12,"0101001001":60,"0110000011":56,"0110000101":11,"0110001001":79,"1000010011":19,"1000010101":3,"1000011001":39,"1000100011":14,"1000100101":6,"1000101001":35,"1001000011":14,"1001000101":1,"1001001001":26,"1010000011":8,"1010000101":3,"1010001001":21},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1421235970046837},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":6,"removals":[{"variable":4,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[3,5],"max_component_qubits":5,"component_to_original":[[1,2,3],[5,6,7,8,9]],"components":[{"qubits":3,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-2,-1],"quadratic":[[0,1,14],[0,2,14],[1,2,14]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r0","start":2,"cost":5},{"index":2,"task":"t1","resource":"r1","start":7,"cost":6}],"conflicts":[]},{"qubits":5,"penalty":18,"objective_bound":17,"offset":36,"linear":[-11,-14,-8,-18,-11],"quadratic":[[0,1,36],[0,2,36],[0,3,18],[1,2,36],[2,4,18],[3,4,36]],"domains":[[0,1,2],[3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":8,"cost":7},{"index":1,"task":"t2","resource":"r1","start":6,"cost":4},{"index":2,"task":"t2","resource":"r2","start":11,"cost":10},{"index":3,"task":"t3","resource":"r0","start":8,"cost":0},{"index":4,"task":"t3","resource":"r2","start":9,"cost":7}],"conflicts":[{"i":0,"j":3,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":8,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":1641411168,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.2474854425725033,1.1459837102095374],"expected_energy":1.8108003479963106,"initial_expected_energy":2.076423291489053,"history":[2.076423291489053,2.5262552015213093,3.8284133619501812,4.87682954427948,2.5892170559707033,2.3483877860488516,2.101861322795738,2.0672811705209693,2.036882244178537,2.0164614665133986,2.059762125065959,1.9844730709180207,1.986198307231163,2.0039102811822485,1.9790839744830275,1.976882131563545,1.9821138772830371,1.9753033203333363,1.972214793893304,1.968054648728884,1.971440151906643,1.965222259043594,1.9625287245171723,1.9576705065983275,1.9537708800629794,1.9411088354316948,1.9321966667881074,1.9126417067903307,1.8808080725294967,2.045319566506084,2.005508051011622,1.8831859406422293,1.878895630068119,1.8894041813847813,1.8755450270169727,1.8704707671821375,1.8664297997261616,1.865726450321957,1.8619962081079875,1.8584981288258273,1.8519690290575666,1.8417611978449782,1.8568033247964868,1.8704639183648926,1.8384072913988185,1.8403677318741998,1.839188135733096,1.8359955358039968,1.8360858541238416,1.8349360788292166,1.8341521240776473,1.8341373232408502,1.8364543987131712,1.8322253938893325,1.8296057439749385,1.8279891912533313,1.8257505789216932,1.8238239767896676,1.8263569096753398,1.8229907129462186,3.836581506956915,4.2380880131402785,3.708432381790461,3.7772574562750565,3.557071431817562,3.0567973165108384,4.236412566115957,2.990334300382062,2.428151915072374,2.788076601671843,3.328300009301598,2.5163639102655937,2.3802693686449565,2.346512163508106,2.3437979697768347,2.4572667541296864,2.2662862188238684,2.227509905628972,2.189298067181662,2.1798198793775247,2.1285115765680276,2.115179448411663,2.0237003626775305,2.201403720387619,2.1040632090885025,2.011041322516317,2.05593094655095,1.9977627715246875,2.0579145741996525,1.980159452955618,1.9671874067203388,1.953412467070241,1.9284283865673058,1.8984745691003624,1.9122671736868633,1.9457665802993034,1.9103711775765828,1.8841043064692617,1.8930007872584866,1.8817877848200886,1.8783471177560973,1.873867182738751,1.866069352052314,1.8735986158242657,1.8630776737048393,1.8542490130826474,1.8385614407285087,1.8176116724221762,1.8558255500350553,1.84237254497487,1.819311840332137,1.8324314356537963,1.8164110522593304,1.8152532473335206,1.8173218076036153,1.8141028805576043,1.8134273884591834,1.8127764429451123,1.8124921817768258,1.8108003479963106],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":334,"010":124,"100":54},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08975033900060225},{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t2","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":8,"end":11,"reserved_end":12,"changed":false}],"bits":[0,1,0,1,0],"qubo_energy":4},"seed":1454127163,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.9807424916256822,1.2887515044341002],"expected_energy":11.323802738377983,"initial_expected_energy":19.09579571845574,"history":[19.09579571845574,18.204812407599526,13.384730620669574,15.074048350365654,12.604727966536643,14.921789032930418,13.466059339133606,12.813750659044041,12.65980553247159,12.922393580670057,12.856929345153011,12.313207278727965,12.5578854552611,12.230158173954,12.205377170145422,12.107847286028075,12.019492263283139,11.851383745744123,11.896731102313886,12.015588539029517,11.826194817064998,11.92288925714551,11.814253727163143,11.784686476384326,11.755479167722916,11.858841159387136,11.71465405782649,11.689024570042767,11.660746153196328,11.612778509477984,11.603052034041909,11.4972524848299,11.51319352604692,11.491283090681582,11.51359261818045,11.485871146744538,11.476309974533653,11.46121797719059,11.433856164466832,11.563768281435568,11.434160061269662,11.430295207275616,11.427154075365467,11.443738655876196,11.41247510584719,11.402519803266637,11.395575737765386,11.388593937165677,11.382134405210904,11.368740774701248,11.34423808478714,11.390531042383316,11.38623167195244,11.346182236594908,11.342152032067283,11.340933623457643,11.351175735945189,11.333592300412167,11.32910208909819,11.323802738377983,18.301848659176336,17.15871834734139,13.740152704624117,22.09365812416469,14.480446427707475,16.74362346173858,13.50724027659886,12.898002460459344,12.700128966698099,12.838453363394382,12.678100947754388,12.63173193088641,12.619312139305052,12.57188714605944,12.570505614444617,12.53900256556059,12.515032562637531,12.487479860885603,12.472235222852008,12.836489015666542,12.413602507315737,12.434479816883691,12.409038640683626,12.425260917664787,12.406836001035618,12.401925440107842,12.396420586756701,12.386733350122572,12.379740855855744,12.391720931396211,12.375216397100292,12.371206952041597,12.371634512220163,12.36812128268828,12.36695166970992,12.372829121537414,12.361842958653794,12.358065205742674,12.350360700983355,12.34078011697232,12.333258114594923,12.325457785522795,12.370409908988965,12.317721683943736,12.321647330611485,12.321259659940383,12.312911711425262,12.311839920343147,12.315239853036296,12.309263747089872,12.30722912723609,12.310238835159197,12.305105066990796,12.30337852657333,12.305322789050724,12.302032769723976,12.300902118324455,12.29858275581851,12.294860645639126,12.298059620686596],"feasible_probability":0.9606767720442602,"one_hot_probability":1.0,"sampled_feasible_fraction":0.974609375,"counts":{"01001":11,"01010":19,"01100":222,"10001":74,"10010":184,"10100":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10448557299969252}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9606767720442602,"total_shots":1024,"runtime_seconds":0.19445471600920428},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":24,"optimal_probability":0.07764703763226245,"feasible_probability":0.6544664265253873,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.5,"shots_for_95_percent":38,"hit_curve":[{"shots":8,"quantum":0.47618591082737,"uniform":0.2885690504976606},{"shots":16,"quantum":0.725618799984248,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9247149570779158,"uniform":0.7438283781843783},{"shots":64,"quantum":0.99433216231222,"uniform":0.9343761001763541},{"shots":128,"quantum":0.999967875615945,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":16},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6637230719593336,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.999836477856581,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999732605086,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999993,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":4,"optimal_count":1,"combinations":6,"optimal_probability":0.04028839030838514,"feasible_probability":0.9606767720442602,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.6666666666666666,"shots_for_95_percent":73,"hit_curve":[{"shots":8,"quantum":0.2803422806380568,"uniform":0.7674319606386222},{"shots":16,"quantum":0.4820927669627666,"uniform":0.9459121070676046},{"shots":32,"quantum":0.7317720979677168,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9280537925713599,"uniform":0.9999914414488029},{"shots":128,"quantum":0.9948237432366351,"uniform":0.9999999999267511},{"shots":512,"quantum":0.9999999992821011,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":4},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]}],"reduced_single_joint_draw_p_opt":0.026740334179778023,"diagnostic_seconds":0.004164245998254046}
+{"instance":"n4-s0-r3.json","seed":2,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":8,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":10},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.732649036493914,1.9748856490700215],"expected_energy":25.208215079106928,"initial_expected_energy":42.014541811972094,"history":[42.014541811972094,39.97066616582939,36.18876862354159,30.76160923825301,26.506930186406933,37.45566470210113,30.451235278355256,33.68287303489988,26.206818452821278,27.21219838174848,26.750963656147462,25.834523042072416,26.52264174361075,25.793314609409833,25.87383903751938,25.787046355389784,25.771211211289007,25.762294342664,25.77102062730601,25.757738868609344,25.754213325016984,25.749499462665717,25.740397384317966,25.722602413156835,25.687103447824036,25.64070976000685,25.70964056393169,25.79942929438903,25.610613629075733,25.61149922841478,25.618330550401417,25.60835431531911,25.607376930459907,25.610828656333904,25.605819053131867,25.60293140183471,25.597981832199295,25.590056403537567,25.573210124219372,25.537545208939374,25.468841983416272,25.38352859470224,25.754644338248486,25.97179310810753,25.368689582912992,25.315293280002436,25.388247001349484,25.33916564554753,25.315117943889454,25.307406128539355,25.297347578119926,25.29172416289282,25.28321303775588,25.275186218583457,25.268960764942094,25.249115582260615,25.24829924578494,25.233592949410053,25.221608132638337,25.208215079106928,30.244677801581062,30.14823964238944,32.39261034018347,30.42879552877512,35.479655806389474,32.33089670937963,30.141754486295444,30.190666771059917,30.75595606368814,30.067585599986096,30.188153393972534,30.063692395927305,30.058921774531612,30.057421914612977,30.054081818063118,30.052164906590328,30.046720650819754,30.08086777947922,30.05026188737225,30.051289657097847,30.049731818895168,30.045024385262565,30.05036485028144,30.04358277570523,30.042785225057457,30.045277923468426,30.04169763992956,30.04089937735823,30.03962335956614,30.0431599031877,30.038704853331122,30.03716888729773,30.0341235573654,30.02851465336702,30.01767669657213,29.990622635616617,30.26448823450568,30.239654783639836,30.050586668654297,30.00659864430356,29.988901322784486,29.992150277457398,29.98899735252711,29.98742827256916,29.98541668886666,29.99193709563176,29.98337396632416,29.982171148811602,29.98040588032316,29.97693266486455,29.97020401535657,29.956093478994767,29.94469322010849,30.040752428254955,30.07537088137966,29.94304130712191,29.922222344485213,29.932428961453656,29.91995727701038,29.923408584236164],"feasible_probability":0.8952302200474789,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.900390625,"counts":{"0100010011":3,"0100010101":9,"0100011001":18,"0100100101":2,"0101000011":3,"0101000101":20,"0101001001":18,"0110000011":5,"0110000101":21,"0110001001":38,"1000010011":2,"1000010101":5,"1000011001":2,"1000100011":29,"1000100101":73,"1000101001":127,"1001000011":10,"1001000101":43,"1001001001":74,"1010000011":2,"1010000101":5,"1010001001":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1437752940109931},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":6,"removals":[{"variable":4,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[3,5],"max_component_qubits":5,"component_to_original":[[1,2,3],[5,6,7,8,9]],"components":[{"qubits":3,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-2,-1],"quadratic":[[0,1,14],[0,2,14],[1,2,14]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r0","start":2,"cost":5},{"index":2,"task":"t1","resource":"r1","start":7,"cost":6}],"conflicts":[]},{"qubits":5,"penalty":18,"objective_bound":17,"offset":36,"linear":[-11,-14,-8,-18,-11],"quadratic":[[0,1,36],[0,2,36],[0,3,18],[1,2,36],[2,4,18],[3,4,36]],"domains":[[0,1,2],[3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":8,"cost":7},{"index":1,"task":"t2","resource":"r1","start":6,"cost":4},{"index":2,"task":"t2","resource":"r2","start":11,"cost":10},{"index":3,"task":"t3","resource":"r0","start":8,"cost":0},{"index":4,"task":"t3","resource":"r2","start":9,"cost":7}],"conflicts":[{"i":0,"j":3,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":8,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":2001025171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.9883877265927863,2.732930399934271],"expected_energy":1.8157806738650437,"initial_expected_energy":3.6587343782359003,"history":[3.6587343782359003,3.344753371186422,3.2006544061700826,3.8466565315636627,3.4328473196606817,3.215002891581574,3.257689446401005,3.098274391678887,2.9491615794518853,2.986492387764771,3.0609753010217258,2.973479409813674,2.883715090940052,2.795022093649132,2.8301115540568227,2.7413487423460223,2.7119996846803516,2.7536326421978394,2.65339552302166,2.598296519211715,2.4919855299277085,2.360120071958904,2.2595384101942755,2.134634417314888,2.179308465521201,2.1922787641884205,2.1224025424219066,2.372909056416529,2.029436480194649,1.994122466945363,1.9676790955569612,1.9903595412048924,1.958983720376349,1.9757264818469644,1.9555265692596158,1.9488259444599239,1.9370774395066301,1.940993542615087,1.9304506367239571,1.9409286394661573,1.9341469463142063,1.9254584355191322,1.9273021434151667,1.9244777659821295,1.922104479552459,1.917378697698183,1.9085130630398646,1.8944732641737851,1.8771864408372032,1.855484551109543,1.8669721830674182,1.8857050381770524,1.8570700238510702,1.8526478214150761,1.8484667773397074,1.844789849395907,1.8386391618707658,1.8289125073863168,1.8261059697628612,1.8399616917277104,4.586076299856303,4.677998315698316,4.442362952328109,2.1707346015441975,3.1814864701120005,3.745311865562951,2.410003933674496,2.5005802591287725,2.141976656225777,2.109375030726893,2.089589190887235,2.1527668128151074,2.0693694278974606,2.0544857994579004,2.02376876451271,1.9814554145144558,1.9789642160231624,1.931078120921191,1.8994715998389955,1.8572939409757347,1.8302020786777815,2.22792122819049,2.0442604317119883,1.8278491589130437,1.8283956605470584,1.8329159044655556,1.8212582090219014,1.8193871763690859,1.8215887384377987,1.8193912481343384,1.8190961373200527,1.8191632764336036,1.819380361082461,1.8191080421685368,1.8189826076064441,1.8187953219175763,1.8184229224133752,1.8179305587645516,1.817621515801187,1.8170043871595623,1.8160537404680928,1.8164236748374134,1.822309978798,1.8162611275422007,1.8170466680228823,1.816225339980467,1.8161216734656829,1.8160309860198836,1.8160243797769082,1.8160749711105506,1.8160271615987136,1.8160071122966652,1.8159835088761989,1.8160088295927235,1.8159690131338397,1.8159546099032389,1.8159270897651982,1.815873734060795,1.8157806738650437,1.815800018077544],"feasible_probability":0.9999999999999999,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":1.0,"counts":{"001":341,"010":104,"100":67},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08796466399508063},{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t2","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":8,"end":11,"reserved_end":12,"changed":false}],"bits":[0,1,0,1,0],"qubo_energy":4},"seed":2240297063,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7308352633795399,1.3027537185167575],"expected_energy":11.274635727927254,"initial_expected_energy":17.356055709285503,"history":[17.356055709285503,14.555944017663805,17.245607781866376,22.659142085671988,15.735435075902934,15.081820991983776,14.764896557754138,14.735271576775645,14.376126901394308,14.200941192435593,14.349158876607866,14.077027986526407,13.918968948875392,13.85857137353904,15.42477517920649,13.529396374788291,13.554423138638725,13.509556469866133,13.784729318528012,13.575779403656307,13.536687067034563,13.46352368440763,13.421881214229538,13.372787337477527,13.333904430390056,13.3198366419194,13.286142406876877,13.445864258793915,13.254025563681083,13.304387745894104,13.250203221193775,13.279171894652656,13.247501372170076,13.24483786820115,13.244179438525242,13.248929625403406,13.243004852677991,13.242337482414204,13.241689511765596,13.241202727558228,13.240349906503315,13.241283357866804,13.24141616916302,13.240422251028242,13.240049574051897,13.240008520519698,13.239804512117237,13.239636432011448,13.239415255738574,13.239344148349666,13.239090350907615,13.239320180486418,13.239672445864082,13.239136378794091,13.2390986877304,13.239120548809524,13.239074229251132,13.239097590750417,13.239064373964096,13.239070065012118,16.545615251550743,15.187290247867802,20.267129125755844,20.155367135617762,18.527661073888325,14.878858741511083,15.046118421517349,15.095903035307654,14.665954069453985,14.783071050694739,14.777533388075414,14.541946054026067,14.788275679894818,14.41074889935799,14.29761447326371,14.074394094637231,13.775338512524128,13.468232366434354,13.403041301555415,15.627558048823314,12.909137157449427,12.848694869277196,12.617362194730614,12.223358338143198,11.67343447185238,14.429134102086673,13.01219610872114,11.609055808501427,11.74960757273728,11.670428900876493,11.578567663453287,11.598277885731402,11.57322897607089,11.564767138899924,11.564462736911434,11.551879989642522,11.53220602309316,11.499880040612503,11.66670492495,11.495494029304039,11.470502436805345,11.430908740257124,11.383436131033324,11.379718123943636,11.323570196639498,11.366597101959277,11.386314739235182,11.330756246326704,11.322771464479843,11.317174452525737,11.306802705780214,11.289189084831367,11.293890571987749,11.312814346295383,11.303531607654179,11.28635158398011,11.285554672431747,11.281721635854357,11.278352416508149,11.274635727927254],"feasible_probability":0.9652837411004818,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.98046875,"counts":{"01001":1,"01010":27,"01100":279,"10001":80,"10010":116,"10100":9},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10533509698871057}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9652837411004817,"total_shots":1024,"runtime_seconds":0.19354043299972545},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":24,"optimal_probability":0.00737343250535959,"feasible_probability":0.8952302200474789,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.5,"shots_for_95_percent":405,"hit_curve":[{"shots":8,"quantum":0.05748741316555685,"uniform":0.2885690504976606},{"shots":16,"quantum":0.11167002365864626,"uniform":0.49386600409019976},{"shots":32,"quantum":0.2108698531333699,"uniform":0.7438283781843783},{"shots":64,"quantum":0.3772736113062508,"uniform":0.9343761001763541},{"shots":128,"quantum":0.6122118448244416,"uniform":0.9956935037719361},{"shots":512,"quantum":0.9773859598750371,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":15},{"shots":16,"best_objective":16},{"shots":32,"best_objective":16},{"shots":64,"best_objective":15},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6622261603134385,"feasible_probability":0.9999999999999999,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998305630652027,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999712911252,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999992,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":4,"optimal_count":1,"combinations":6,"optimal_probability":0.05862979885752431,"feasible_probability":0.9652837411004817,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.6666666666666666,"shots_for_95_percent":50,"hit_curve":[{"shots":8,"quantum":0.3832863321057762,"uniform":0.7674319606386222},{"shots":16,"quantum":0.619664251832453,"uniform":0.9459121070676046},{"shots":32,"quantum":0.8553447186658323,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9790748495821328,"uniform":0.9999914414488029},{"shots":128,"quantum":0.9995621380799896,"uniform":0.9999999999267511},{"shots":512,"quantum":0.9999999999999633,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":4},{"shots":32,"best_objective":4},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]}],"reduced_single_joint_draw_p_opt":0.03882618657736755,"diagnostic_seconds":0.004369986010715365}
+{"instance":"n4-s0-r3.json","seed":3,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":8,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":10},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.8364236494453587,1.991784405833554],"expected_energy":26.920983456117987,"initial_expected_energy":29.95368311575375,"history":[29.95368311575375,32.14989417364633,33.401868001489945,33.8669879895424,31.049284560801677,29.709457027495084,29.888029525237606,29.65481892976843,29.48334764779156,29.202821407653317,28.798057576983425,29.136304110642236,28.949519246798555,28.840016620928722,28.795341213472586,28.933988077387745,28.705772039908616,28.656758713066555,28.611110726007,28.5870730894376,28.7090897923267,28.756231325181208,28.56025116832054,28.568501988839742,28.56008206392707,28.571016690726108,28.55893954886008,28.557612321820763,28.55709732467809,28.55903348565381,28.556536093208095,28.556096599758455,28.555320396664957,28.55534875784386,28.55553944869801,28.55519244283191,28.55526388024291,28.55512596352509,28.554958771209016,28.55468584003846,28.554574491378276,28.553930989289608,28.55440996171957,28.553845017044345,28.55430394512736,28.553841134907252,28.553697127384574,28.55362257574378,28.553529397920506,28.55344641124875,28.55331457249656,28.55313125568262,28.553023633493215,28.552997023590272,28.5532290454405,28.55339004846243,28.55295011648466,28.552986734293786,28.55295307615789,28.552952260213864,29.14180237130313,28.46213113762827,31.75100198351457,30.66251248344999,33.30214333470121,32.61349009570071,28.394120175391443,28.00431406054232,28.601526397021708,28.073270507513037,28.030083901319088,27.985328713075,27.96225498825615,27.959097996084786,27.916400832661914,27.925193269479905,27.910959987998634,27.918699834075916,27.899402019094993,27.889698312679158,27.867319637750345,27.823763445811007,27.734550917706663,27.583882418565913,29.549864540661627,29.24550623252185,27.71634466541105,27.735796967363648,27.60352133513892,27.555358832025572,27.543596293969763,27.59303702513139,27.529890642794882,27.51923625550083,27.497802489028007,27.467618949852778,27.442861955283,27.41417259983709,27.449425199009173,27.383515517969656,27.41283131281358,27.42968130312254,27.380939200550184,27.367465516522003,27.36250367748243,27.377072822816903,27.350624925173715,27.32806627998515,27.283545279142345,27.194844094315584,27.059053483999836,29.314093374368845,28.801193950259012,27.024609271841463,27.107553862986066,27.170609235907534,26.97731323036532,26.967360034346136,26.94300762458398,26.920983456117987],"feasible_probability":0.8002987982929406,"one_hot_probability":1.0,"sampled_feasible_fraction":0.806640625,"counts":{"0100010011":17,"0100010101":17,"0100011001":52,"0100100011":2,"0100100101":2,"0100101001":2,"0101000011":8,"0101000101":18,"0101001001":23,"0110000011":17,"0110000101":27,"0110001001":59,"1000010011":2,"1000010101":1,"1000011001":1,"1000100011":30,"1000100101":67,"1000101001":159,"1001000011":1,"1001001001":4,"1010000011":1,"1010001001":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1367057049938012},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":6,"removals":[{"variable":4,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[3,5],"max_component_qubits":5,"component_to_original":[[1,2,3],[5,6,7,8,9]],"components":[{"qubits":3,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-2,-1],"quadratic":[[0,1,14],[0,2,14],[1,2,14]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r0","start":2,"cost":5},{"index":2,"task":"t1","resource":"r1","start":7,"cost":6}],"conflicts":[]},{"qubits":5,"penalty":18,"objective_bound":17,"offset":36,"linear":[-11,-14,-8,-18,-11],"quadratic":[[0,1,36],[0,2,36],[0,3,18],[1,2,36],[2,4,18],[3,4,36]],"domains":[[0,1,2],[3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":8,"cost":7},{"index":1,"task":"t2","resource":"r1","start":6,"cost":4},{"index":2,"task":"t2","resource":"r2","start":11,"cost":10},{"index":3,"task":"t3","resource":"r0","start":8,"cost":0},{"index":4,"task":"t3","resource":"r2","start":9,"cost":7}],"conflicts":[{"i":0,"j":3,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":8,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":819382448,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.2759270768613136,1.1472216688935697],"expected_energy":1.807705836465183,"initial_expected_energy":2.8166437155603776,"history":[2.8166437155603776,2.6433172571221073,5.267390649103371,2.834864287318166,3.7565751393005917,2.1150456468006356,1.9168805250680485,2.0598761061919726,1.9291571108312493,1.9455033472886407,1.9285930734960535,1.9282424426141405,1.9159499591182816,1.925041031103567,1.9144449584745056,1.9116400411117187,1.906638157923087,1.898413567885089,1.8819907682359474,1.8599482502202676,1.8732679452860879,1.8908202411006156,1.8660633842868886,1.8533310378217576,1.8489076878270427,1.8579302797032913,1.8458981420513731,1.8434018028862516,1.8464727811296133,1.8415227548170874,1.8387986905956377,1.8336303783534436,1.8251991728889938,1.870468555340696,1.8564092687874194,1.825399908503247,1.8246177981783878,1.824130504648482,1.8267633553861136,1.8222728581504062,1.8209956876999511,1.8200831590713724,1.8191856018541563,1.8183519610660765,1.8166490622536955,1.8136560644470552,1.8188150457869552,1.8195472889242539,1.8129015726953082,1.8140277277643029,1.8125094767123606,1.813326369839264,1.8118136816453247,1.8112678923159211,1.8100847121222314,1.8079951019006906,1.815656608019544,1.8117850799936233,1.8097024918334137,1.807705836465183,3.813877447858693,4.020819140955094,3.324065066356458,3.597461637204221,3.0910982355751777,2.7511245265727964,2.553405820252931,2.88167635181619,3.085368008096289,2.2060965019767225,3.1175606694684546,2.128887812233035,2.22308823824527,2.1486565321827094,2.095467724803374,2.1416171775805273,2.078147021528075,2.06411506680205,2.047272574803467,2.0176689653292534,1.967428353606672,1.9150081540743549,1.968445591199087,2.1869726769571414,1.8996456668835566,1.8748810980641442,1.8897370885171751,1.8873708512486318,1.872767861534248,1.8777100941008245,1.8719380371641048,1.8704498380036871,1.8680867333421975,1.8709363435517048,1.865473171428607,1.8629256796848384,1.8621525442896933,1.8546385756035457,1.853635558791826,1.84708737941092,1.8465860263232226,1.8377191779588222,1.843595556130924,1.843380745314795,1.8390718583688739,1.837008031305091,1.8350461737611203,1.8333551640997374,1.8321023211857734,1.8286377254992066,1.832119187840005,1.8276473739403083,1.8304669958969941,1.8268327728278866,1.8261440741857167,1.8254870541417256,1.8239956960609873,1.8248093492164017,1.8242318726549436,1.8237938224391408],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":352,"010":100,"100":60},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08872809199965559},{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t2","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":8,"end":11,"reserved_end":12,"changed":false}],"bits":[0,1,0,1,0],"qubo_energy":4},"seed":1645421708,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.514275890526851,2.1381508679399697],"expected_energy":12.322737759852131,"initial_expected_energy":14.081615702829268,"history":[14.081615702829268,12.721727631377057,22.38779085667693,17.169003738207458,17.379182678068425,13.70232314859575,12.676217442671803,12.879525939152915,12.768115009762795,12.72469194094908,12.679333746001959,12.672279717342729,12.665719946579216,12.657100547249977,12.666391811022645,12.647060546271447,12.638223073046856,12.622362143379156,12.590788728260836,12.53944296198212,12.586662482123659,12.68076957544297,12.522209874337609,12.537168340858283,12.524522998484258,12.510069625660027,12.506768689013875,12.529910325952178,12.49815768416238,12.484566997152076,12.464796744746412,12.434518672389146,12.384572845253121,12.384911173308584,12.489676328294028,12.397514226757078,12.399331074928924,12.3806573699923,12.400008372867457,12.373831362185708,12.36922600170916,12.36532666925755,12.367981538695316,12.362339084060729,12.362635925683737,12.358663186795244,12.35658556109729,12.360666990096966,12.352346328486117,12.348802045154425,12.341214428173885,12.327336806133385,12.356854180499585,12.35076599371441,12.329710038459934,12.32606364757634,12.326152350439228,12.32791611663059,12.323565059818197,12.322737759852131,15.918313974232815,13.571887131670692,16.85561521411814,20.687687261829026,17.369235921797866,13.386592426826248,13.93506717211628,13.58132507475868,13.271154823842561,13.405165340370493,13.323889114739526,13.28350202425017,13.256359663230462,13.270679747761509,13.253389178387241,13.252481078860189,13.249352033894525,13.24563494694632,13.24223327605177,13.240004234954938,13.243804690393423,13.242007261566041,13.240190078476658,13.240093400356729,13.24002051249595,13.23998566899732,13.239910263078446,13.239768906758822,13.23954162043395,13.23968897767433,13.239831399722268,13.239480700880286,13.239515910054331,13.239440319253934,13.23942509959994,13.239510043859605,13.239362939180973,13.2393219497169,13.23927986345064,13.239223392965636,13.2391627409319,13.239123435487329,13.23926275480333,13.239091789705594,13.239081559052467,13.239056901673667,13.239043842781767,13.239027802114572,13.23901843338782,13.23905683203413,13.239011818716062,13.23900965050666,13.23902259391516,13.239006197318716,13.239003949845557,13.239001899785006,13.239001026836064,13.238996702961126,13.238998451502798,13.238996327125133],"feasible_probability":0.7982257613177213,"one_hot_probability":1.0,"sampled_feasible_fraction":0.798828125,"counts":{"01001":93,"01010":166,"01100":25,"10001":121,"10010":97,"10100":10},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09607866100850515}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.7982257613177213,"total_shots":1024,"runtime_seconds":0.18502512000850402},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":24,"optimal_probability":0.009685295590118912,"feasible_probability":0.8002987982929406,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.5,"shots_for_95_percent":308,"hit_curve":[{"shots":8,"quantum":0.07490609250175936,"uniform":0.2885690504976606},{"shots":16,"quantum":0.1442012623096366,"uniform":0.49386600409019976},{"shots":32,"quantum":0.26760852056758055,"uniform":0.7438283781843783},{"shots":64,"quantum":0.4636027208547919,"uniform":0.9343761001763541},{"shots":128,"quantum":0.7122779589256177,"uniform":0.9956935037719361},{"shots":512,"quantum":0.9931468138275793,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":16},{"shots":16,"best_objective":16},{"shots":32,"best_objective":10},{"shots":64,"best_objective":15},{"shots":128,"best_objective":15},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6636299953472006,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998361154210176,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999731418447,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999993,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.608224830031759e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":4,"optimal_count":1,"combinations":6,"optimal_probability":0.34492415562049117,"feasible_probability":0.7982257613177213,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.6666666666666666,"shots_for_95_percent":8,"hit_curve":[{"shots":8,"quantum":0.9660896179675119,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9988500859904107,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999986776977705,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999999982515,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.7755575615628914e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":4},{"shots":32,"best_objective":4},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]}],"reduced_single_joint_draw_p_opt":0.22890201578956365,"diagnostic_seconds":0.004720582001027651}
+{"instance":"n4-s0-r3.json","seed":4,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":8,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":10},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[5.658538261958252,-1.2261459148545937],"expected_energy":23.678895449942395,"initial_expected_energy":34.46853876563387,"history":[34.46853876563387,34.38793366552719,35.33841095450653,33.06536879689281,32.43821423211474,30.97228389219212,27.455008741830902,34.051658509739255,33.40810458848135,30.921854612646065,33.35694194793898,27.718098977421796,24.17363391756455,31.070557778635564,24.532909149356563,24.362299891713427,24.190441170412484,24.932334499980065,24.14657315975994,24.184203701709578,24.15756904452762,24.12931404977124,24.124742052852852,24.116824025792923,24.113968916878378,24.10394892203168,24.092667824124902,24.073696927134602,24.050320934424292,24.014107839093136,24.04690660692244,24.05480615200075,24.030431339698076,24.01932022751882,24.010364543949777,24.021721218618445,24.001706581103484,23.99358635892151,23.97966074675979,23.98434334346635,23.975396495816582,23.99121441302802,23.97131239333209,23.961922303868597,23.95618085560327,23.96652774553214,23.951903691080545,23.947785978833807,23.939595627023465,23.923361493629066,23.89107732642248,23.826755335267972,23.706173063689853,25.033774419464322,25.05407223524653,23.948234951897803,23.694114982076986,23.818895923168558,23.686020602146478,23.678895449942395,33.27361132411725,32.98249559309283,35.1643125718833,28.70530773377283,41.23515102497814,33.37639125365416,31.82311100767548,29.339409620407803,31.332303248421336,27.491702409375748,27.268809618750538,27.144243634013534,27.711041804152806,27.129165108135155,27.110431024787154,27.10805387066474,27.23918044109913,27.10556288151401,27.07064680214573,27.04599901431908,27.01567474591801,27.021570866398392,27.007676396604932,27.004775633997305,27.02656634624033,26.98934167834649,26.980385064500194,26.969707660608975,26.951390381085616,26.93868725840187,26.89543758579801,26.963095162324798,26.878014551895394,26.916603794218688,26.866396081290137,26.856885205740372,26.836063658818535,26.802460598765258,27.179089638684815,26.813824767716817,26.812475702020876,26.812161861648665,26.7899203409047,26.788733621159032,26.80214349768702,26.777035563216913,26.754848974938508,26.713084995281854,26.631705356741577,26.465821089878034,26.191902640441256,28.895903181306355,31.06533022749459,26.11079332052305,26.99220181623958,26.3256124780944,26.191842412995953,26.234423296954624,26.13214921980476,26.096275610086785],"feasible_probability":0.9671730944414253,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.9765625,"counts":{"0100010101":2,"0100100101":1,"0101000011":2,"0101000101":6,"0101001001":10,"0110000101":5,"0110001001":8,"1000010101":5,"1000011001":3,"1000100011":8,"1000100101":66,"1000101001":75,"1001000011":21,"1001000101":143,"1001001001":156,"1010000101":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1352397480077343},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":6,"removals":[{"variable":4,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[3,5],"max_component_qubits":5,"component_to_original":[[1,2,3],[5,6,7,8,9]],"components":[{"qubits":3,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-2,-1],"quadratic":[[0,1,14],[0,2,14],[1,2,14]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r0","start":2,"cost":5},{"index":2,"task":"t1","resource":"r1","start":7,"cost":6}],"conflicts":[]},{"qubits":5,"penalty":18,"objective_bound":17,"offset":36,"linear":[-11,-14,-8,-18,-11],"quadratic":[[0,1,36],[0,2,36],[0,3,18],[1,2,36],[2,4,18],[3,4,36]],"domains":[[0,1,2],[3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":8,"cost":7},{"index":1,"task":"t2","resource":"r1","start":6,"cost":4},{"index":2,"task":"t2","resource":"r2","start":11,"cost":10},{"index":3,"task":"t3","resource":"r0","start":8,"cost":0},{"index":4,"task":"t3","resource":"r2","start":9,"cost":7}],"conflicts":[{"i":0,"j":3,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":8,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":367776961,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.134949086404425,1.1467718433672847],"expected_energy":1.8310974340888087,"initial_expected_energy":4.326070135486928,"history":[4.326070135486928,4.5583408318367695,4.262265693158988,3.5963838273490385,3.9196733075101715,2.905747796445694,4.1047139931400665,3.0569156029493016,3.3110882624147324,3.4262543963544063,3.0281900535058908,2.7230955463572726,2.634334259139417,2.9204428446633472,2.570227785607289,2.5166257942490025,2.415893649482767,2.323997697714814,2.2221746440223944,2.276630136999392,2.5223551305377194,2.21616587237027,2.1528451486053575,2.1486379303122787,2.200097312186452,2.1064633703308404,2.0376229987699137,1.930100309789339,3.1206239920995404,2.4442114019456285,2.051111288301872,1.920330559916648,1.966040104969295,1.9240851974650655,1.9289611512841722,1.9234608607124604,1.914590699835346,1.904480457868512,1.8859317319179225,1.8654214212680436,1.876449563815337,1.9239967352259302,1.863035722145026,1.867425366391033,1.86249349004625,1.8608046915622598,1.8588222247998547,1.859837433702126,1.8574728354392933,1.8566043654851958,1.8570688453940238,1.8552642276510412,1.8541949088375373,1.85431332829708,1.853063872679431,1.852219422020302,1.8520970762105797,1.8543617249773816,1.8522681425165763,1.85027367456309,3.791358589680075,3.8994519573105175,4.379861201903271,3.428988664617944,3.6704390575988852,3.6552009012828375,3.3712952198629242,3.2172961299741867,2.9914547620884155,4.456849136135933,2.835651589978765,2.6463462839880094,3.285467106189925,2.565381029866817,2.519762526352638,2.717872378394265,2.4578146031602803,2.356211732073695,2.3211372131603856,2.274816631985348,2.2716025517406715,2.217649732675025,2.178335781439679,2.1048770609779335,2.1353392863165386,2.1455600293180104,2.114266136520727,2.1272127108420387,2.10454277354477,2.095128411310708,2.0790115681224046,2.0775521481948234,2.050442835851286,2.031096806285142,2.007070530145104,1.974899403646078,1.9276981332221133,1.992183331406496,2.1008803891344945,1.9254413779655632,1.9092751039617744,1.883746092247663,1.85346749679427,1.8766317308513054,1.9053204690451337,1.8596373044618704,1.8499504998165264,1.8447178450195656,1.8481446838254505,1.8404263124434854,1.8410474785144424,1.8410567793480752,1.8393988224305433,1.8379200514191805,1.840146752228695,1.8352907035001556,1.8335605313684946,1.8365911142209594,1.8322842873199905,1.8310974340888087],"feasible_probability":0.9999999999999999,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":1.0,"counts":{"001":331,"010":108,"100":73},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08659850001276936},{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t2","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":8,"end":11,"reserved_end":12,"changed":false}],"bits":[0,1,0,1,0],"qubo_energy":4},"seed":3166742020,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.120372727126456,2.905652589928435],"expected_energy":8.881134640340935,"initial_expected_energy":22.09465272252809,"history":[22.09465272252809,24.510751469536295,18.701288301734664,16.12245048064736,15.147933981180218,11.322074075327299,17.861465031906008,17.193810446411064,11.391850673507154,11.617549910819184,13.228980207071853,11.48032920759744,11.362917017030604,11.606978723584803,11.380958717430476,11.34289409443727,11.299063794667477,11.295399209548373,11.334050551384632,11.288446872365308,11.284900273940321,11.281541905141612,11.28190855330805,11.279854024893005,11.283467471098614,11.2823161449139,11.278092183736808,11.284477324509787,11.276109726031226,11.274379336735944,11.271562424367062,11.279417457582362,11.270066323633365,11.26724543515122,11.262383072917892,11.267542187192246,11.264223502154312,11.261816444897534,11.266937469764194,11.259551984901796,11.258492535691255,11.257276006532301,11.256385721010062,11.25516320607761,11.253470529075363,11.251572344084986,11.250181081825644,11.254352682571746,11.249274192369151,11.248942777102787,11.250947333922717,11.248372499502631,11.247971626789338,11.247605498366223,11.24749242772534,11.246501401830187,11.246295614698251,11.24543749147762,11.245261001018012,11.243960618763833,18.09628416355665,18.29494052578665,15.352330024813218,24.715923797951383,17.89149376458881,16.96209342259815,14.06836855887654,16.583379747411456,13.999088822182683,13.67909251627271,13.633562629552374,14.437782143085848,13.36364912873237,13.174639303761147,13.02971140293674,12.681728694968832,12.002545775820673,10.741116338774539,14.312096239683383,16.38009925266057,11.839820202568317,10.998827130462434,10.81849403471106,10.730737267135119,10.833468151675508,10.7369853005561,10.692280008542674,10.627919490409775,10.610514234405093,10.488750232000877,10.374927098100157,10.162163332584855,9.83890167034609,10.633548184274138,11.185704470298077,9.762767599956682,9.687291248641726,9.567546390163475,9.750433813666051,9.445273646516585,9.479993766096497,9.591232940370855,9.448403612100307,9.399048841574224,9.367314973659752,9.331787881926042,9.266827093970447,9.150542304394724,8.959794403404022,9.218279621206003,9.988783957748552,9.034105165111113,8.952495339950426,9.087223174415508,8.93389048967301,8.912695867131943,8.898820658005466,8.923078516797064,8.889490655081495,8.881134640340935],"feasible_probability":0.9612398000640612,"one_hot_probability":1.0,"sampled_feasible_fraction":0.95703125,"counts":{"01001":3,"01010":246,"01100":62,"10001":79,"10010":103,"10100":19},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09698785399086773}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9612398000640611,"total_shots":1024,"runtime_seconds":0.18388396498630755},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":24,"optimal_probability":0.0016328353164022516,"feasible_probability":0.9671730944414252,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.5,"shots_for_95_percent":1834,"hit_curve":[{"shots":8,"quantum":0.012988273591112627,"uniform":0.2885690504976606},{"shots":16,"quantum":0.025807851931347662,"uniform":0.49386600409019976},{"shots":32,"quantum":0.05094965864138496,"uniform":0.7438283781843783},{"shots":64,"quantum":0.09930344956709627,"uniform":0.9343761001763541},{"shots":128,"quantum":0.1887457240382677,"uniform":0.9956935037719361},{"shots":512,"quantum":0.566860295827367,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":15},{"shots":32,"best_objective":17},{"shots":64,"best_objective":15},{"shots":128,"best_objective":16},{"shots":512,"best_objective":15}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6637060394383877,"feasible_probability":0.9999999999999999,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998364115852933,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999732388306,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999993,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":4,"optimal_count":1,"combinations":6,"optimal_probability":0.47330769380583904,"feasible_probability":0.9612398000640612,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.6666666666666666,"shots_for_95_percent":5,"hit_curve":[{"shots":8,"quantum":0.9940781719252079,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9999649319522526,"uniform":0.9459121070676046},{"shots":32,"quantum":0.999999998770232,"uniform":0.9970744998381338},{"shots":64,"quantum":1.0,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.249000902703301e-16,"independent_samples":[{"shots":8,"best_objective":4},{"shots":16,"best_objective":4},{"shots":32,"best_objective":4},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]}],"reduced_single_joint_draw_p_opt":0.31413717489159054,"diagnostic_seconds":0.0036939550045644864}
+{"instance":"n4-s0-r3.json","seed":5,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":8,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":10},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[-1.1704758701319038,0.20466743875163013],"expected_energy":24.52440370299917,"initial_expected_energy":33.09502066557738,"history":[33.09502066557738,33.05430227421037,27.637270890001222,46.636632889916314,33.85038155020547,29.333144768796075,25.831860108565294,27.68866817949271,25.960050335653648,27.040580709444896,25.685943573308293,25.7827817196992,26.013448559765393,25.582916119127876,25.558304491986476,25.63391585471863,25.555568778976195,25.53097921322695,25.491217534262464,25.40617675348107,25.2543764247156,25.461039797049075,25.64978235097762,25.263104492998075,25.2429957520903,25.23977300318634,25.333794189690355,25.207025536755303,25.18245762391515,25.15147565335646,25.115746913267,25.056180127782522,25.045583695502483,24.907463323727065,24.940507526553148,24.898268573955185,24.931708254314916,24.88327611733462,24.871283411718107,24.89275133050049,24.860116930354852,24.8462755461204,24.819409379423064,24.771922988895987,24.868420468440835,24.884970296372543,24.764009286844274,24.75103221015705,24.725547854850696,24.67941446747865,24.611879097978623,25.48679651093134,25.0942517483107,24.64068892237909,24.638827663955155,24.620439844938815,24.60148087231459,24.607959619366675,24.59303735906983,24.585638003848974,33.91014302887873,36.409399976334946,32.0260766679104,34.0707335615958,33.23208363891778,32.124602970431084,31.921369542980322,31.850542434654532,32.10034022389265,31.670952436346983,31.505916806350342,31.159385151687232,30.103998413137067,33.773834606818966,30.796819021346437,29.30068623161708,30.397228413086985,30.178176417671022,29.420201023104678,28.84569951035742,28.178306661765873,33.11319749517736,27.729933701598426,26.95411653132827,25.61761410844609,25.70495185028495,31.5258537429847,27.078240133281483,25.4773935630841,25.830830617161382,25.554205329555355,25.641937124595845,25.491681306715343,25.41812398138866,25.363080110848628,25.25687501193797,25.062589431556432,24.935734149654838,25.387924223452494,25.897415565236166,24.748628987001478,24.765526284768598,24.744620738612124,24.81159660101153,24.73442604033119,24.718933201120375,24.70231525654835,24.6788863656596,24.657985860730943,24.66049851984461,24.656796019082456,24.67907034197576,24.641793480075407,24.630097178495536,24.613192037578276,24.578228179265654,24.52440370299917,25.42310477989045,24.902064158573165,24.585894928350974],"feasible_probability":0.7492593945822456,"one_hot_probability":1.0,"sampled_feasible_fraction":0.767578125,"counts":{"0100010011":29,"0100010101":28,"0100011001":9,"0100100011":1,"0100100101":11,"0100101001":1,"0101000011":51,"0101000101":62,"0101001001":36,"0110000011":27,"0110000101":19,"0110001001":14,"1000010011":9,"1000010101":8,"1000011001":15,"1000100011":43,"1000100101":44,"1000101001":19,"1001000011":30,"1001000101":26,"1001001001":22,"1010000011":3,"1010000101":4,"1010001001":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12567100500746164},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":6,"removals":[{"variable":4,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[3,5],"max_component_qubits":5,"component_to_original":[[1,2,3],[5,6,7,8,9]],"components":[{"qubits":3,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-2,-1],"quadratic":[[0,1,14],[0,2,14],[1,2,14]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r0","start":2,"cost":5},{"index":2,"task":"t1","resource":"r1","start":7,"cost":6}],"conflicts":[]},{"qubits":5,"penalty":18,"objective_bound":17,"offset":36,"linear":[-11,-14,-8,-18,-11],"quadratic":[[0,1,36],[0,2,36],[0,3,18],[1,2,36],[2,4,18],[3,4,36]],"domains":[[0,1,2],[3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":8,"cost":7},{"index":1,"task":"t2","resource":"r1","start":6,"cost":4},{"index":2,"task":"t2","resource":"r2","start":11,"cost":10},{"index":3,"task":"t3","resource":"r0","start":8,"cost":0},{"index":4,"task":"t3","resource":"r2","start":9,"cost":7}],"conflicts":[{"i":0,"j":3,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":8,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":803261128,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.002942200434568,2.7358317208414094],"expected_energy":1.8156244186791808,"initial_expected_energy":3.195302623145115,"history":[3.195302623145115,3.095436981205504,2.477745142370539,5.1424338115472175,1.8922210309111045,1.8505564791784084,1.8814394248590884,1.8661282811846651,1.850498740741695,1.9527274965385217,1.824299570023614,1.8722700083439476,1.8264198198050092,1.8230867770201953,1.8222955260656706,1.820716708918389,1.8199780310840197,1.8199794675438072,1.8217037592633982,1.819685726925134,1.8196191828917994,1.820074756985238,1.819202396971097,1.819441669845454,1.8194140610844096,1.819204382606421,1.8190998461818195,1.8188999009820406,1.8185190892738499,1.818124070421972,1.8175663151758732,1.8177093868298844,1.8183908537395266,1.817583160069558,1.8173648818456543,1.8172819951958288,1.8171378022608493,1.8170056395832763,1.8168916593637658,1.8166310193365627,1.8166503373722838,1.8165838000221934,1.8167074580586742,1.8166192727804717,1.8165367810685655,1.8165684497574803,1.8165261984915626,1.8165060956331738,1.8164743863379251,1.8165163242407572,1.8164371900772411,1.8163987388864844,1.8163433588043052,1.8162544980268716,1.8161037468596715,1.8158564083720141,1.8156360171273427,1.8178474068060795,1.8171117521199194,1.8156244186791808,4.43729866301029,4.92308160311428,3.383861832671472,3.249801974315171,3.599426424581418,3.504034814156169,3.358305778804425,3.0309249098412057,2.910723174454295,2.5480217735594217,2.371030248066228,3.0398245621406375,3.530493319427683,2.3549588554862755,2.0746257776381123,2.1736157815279453,2.059221928213489,2.1450910523535054,2.020812255296622,2.023238123888479,2.013157718259649,2.0171252379039712,2.0178619561319384,2.0058441410900625,2.000498734509496,2.023180422776372,1.9923012216887028,1.9849001668956923,1.971199500401936,1.9460686971261885,1.9427271805360211,1.8979619340831688,1.963747522841065,1.9347160854630905,1.892844462636195,1.8974096608875783,1.8899674456247126,1.8918868172781573,1.8888550274181006,1.8870572668960635,1.8855600142136892,1.8897972722646732,1.8837130990884297,1.8819522987102721,1.87856306718069,1.8723070663243302,1.869245361446128,1.8565019234337012,1.87272778217052,1.8532793483018346,1.8637806512428687,1.8530902298725125,1.8498992766742746,1.8482829953896749,1.8458174263953149,1.8435336518175642,1.839708655231723,1.8335325814603014,1.8262219264874682,1.8228005429313425],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":328,"010":110,"100":74},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09394080299534835},{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t2","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":8,"end":11,"reserved_end":12,"changed":false}],"bits":[0,1,0,1,0],"qubo_energy":4},"seed":3767054407,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.9084210206956285,1.292097305440988],"expected_energy":11.264641990830679,"initial_expected_energy":11.916576984521495,"history":[11.916576984521495,13.6562859849999,16.391109571163042,17.95646433228078,16.471292140051517,12.454869947386234,11.896648013184082,12.606138345852827,11.645339070105688,11.921542997386974,11.604357403459861,11.650649981901905,11.600209538623217,11.587673498927364,11.577290616874814,11.582073772298084,11.568255226984768,11.560966847149182,11.555920290617852,11.596913708753899,11.541508788602265,11.53012839407708,11.513184268584677,11.477058445680832,11.422687888573215,11.67574904036119,11.699938881338959,11.414540917044835,11.399031570645526,11.368777702003642,11.319079069426177,11.36574102251416,11.463088765219013,11.37582875134037,11.317005377643866,11.311465001460377,11.301310126870751,11.284333929466346,11.29638529831622,11.31299470050156,11.297709135919664,11.281956430706188,11.282254263807438,11.278917909447712,11.276525410187356,11.279481839080375,11.273239307402733,11.272268035243627,11.280378654986166,11.269918500610885,11.268328731436235,11.266975212103766,11.26823809833023,11.266008765538405,11.26686696245814,11.265613453349772,11.265035376289232,11.265056871038944,11.264928803545269,11.264641990830679,17.435293217857748,15.32198446201363,20.41617931517228,19.883501182173095,17.263859790014493,15.093344242776618,16.24268171983396,15.029534810175656,14.85234319407466,14.817024584008035,15.357695089809543,14.701648886882571,14.316153828462987,14.150496994771581,14.47053675273298,14.030190672976282,13.925205995570884,13.846024101821936,13.556596730182692,13.585039107596362,13.557701128823066,13.515491112323055,13.46945796714848,13.509206411982287,13.507036743557222,13.406001918018605,13.336402763530833,13.43733790707535,13.308913208702839,13.25986214648864,13.205911974829903,13.106898010139258,13.108724143618492,13.03732942506096,13.03934245159563,13.06711626968434,12.988528434496446,12.933742957941364,13.00446899759949,12.875099855019242,12.821745679849549,12.720513608301433,12.523679569653876,12.219048616351998,13.00857516002974,13.734768118239197,12.183716098395225,12.084665104935503,11.897818745261942,11.632909480067344,12.128079671312756,12.964619349174168,11.790679761499064,11.70665831285903,11.650671960068921,11.624045457494091,11.594870315644268,11.568068170052989,11.522874635651982,11.702289487367073],"feasible_probability":0.9644472225857342,"one_hot_probability":1.0,"sampled_feasible_fraction":0.9609375,"counts":{"01001":16,"01010":17,"01100":238,"10001":76,"10010":161,"10100":4},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10397472999466117}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9644472225857342,"total_shots":1024,"runtime_seconds":0.19814439699985087},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":24,"optimal_probability":0.10284057924259823,"feasible_probability":0.7492593945822456,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.5,"shots_for_95_percent":28,"hit_curve":[{"shots":8,"quantum":0.5802825990036528,"uniform":0.2885690504976606},{"shots":16,"quantum":0.8238373033008715,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9689667042916909,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9990369345574807,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999990725049535,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6629491895866402,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998334429555713,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999722587509,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999992,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.7755575615628914e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":4,"optimal_count":1,"combinations":6,"optimal_probability":0.044223264061705625,"feasible_probability":0.9644472225857343,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.6666666666666666,"shots_for_95_percent":67,"hit_curve":[{"shots":8,"quantum":0.30361141603559183,"uniform":0.7674319606386222},{"shots":16,"quantum":0.5150429401240465,"uniform":0.9459121070676046},{"shots":32,"quantum":0.7648166500764708,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9446887919187468,"uniform":0.9999914414488029},{"shots":128,"quantum":0.9969406702605923,"uniform":0.9999999999267511},{"shots":512,"quantum":0.9999999999123997,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":4},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]}],"reduced_single_joint_draw_p_opt":0.029317777070583733,"diagnostic_seconds":0.004271785001037642}
+{"instance":"n4-s0-r3.json","seed":6,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":8,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":10},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.27610344453564,2.9434167807858787],"expected_energy":24.461754369832178,"initial_expected_energy":39.72852922753507,"history":[39.72852922753507,40.21035530287388,34.82732512014772,34.285858000275354,33.94483033815857,32.91793442535864,25.01187207988835,33.167513673204205,32.29996415480778,46.91211536183119,27.76297212762213,30.478709768513497,41.09388170320017,24.87685446384124,24.48432789223031,25.166597673492166,25.22810789752758,24.561960464483803,24.48446888300791,24.50689367431631,24.46246469570234,24.47256931200168,24.464885087266943,24.46193010129806,24.469247638375528,24.465860185126033,24.464214313656548,24.46181095036995,24.462218513907217,24.461848260033765,24.461766445320638,24.461819866905646,24.461763670457806,24.461772207323243,24.461763194641435,24.461761466575556,24.46176150483335,24.46176183998866,24.461761584313194,24.461761224005876,24.46176077212656,24.461759913441707,24.461758866658602,24.46175825995789,24.461756561076093,24.46175617174235,24.461760276881314,24.461765772304513,24.46175454803663,24.461754829923635,24.461754557574128,24.461755073146353,24.461754445597485,24.461754471331645,24.461754490990923,24.461754422402628,24.461754445379512,24.461754376666498,24.461754369832178,24.461754434916777,40.594218031168964,35.086724430798704,33.39087762906986,35.69459776912078,33.203402051362964,38.264738388173384,33.539896307332484,33.379632443625695,33.57768340667744,33.88033695298499,32.434697755127644,32.73172995959058,32.47571782491735,32.472426489694655,32.409264833794126,32.45678130145431,32.40803471424212,32.40381352954879,32.403447421671444,32.41852020220033,32.398887427038986,32.39614149750898,32.39420037071643,32.39670832866481,32.39291179388905,32.39163188007303,32.38951722774555,32.38482387682694,32.37485886298103,32.35566430266652,32.40414496024411,32.40642025574117,32.3890695424313,32.35220592382589,32.350995630447656,32.348419437731685,32.343678674646405,32.3358620424455,32.370257537646154,32.33344969972107,32.32799981358809,32.31530879185694,32.28968849569117,32.25484017602244,32.30547429438152,32.38720519557397,32.24642620462767,32.24204598626693,32.23841784136543,32.240745810011106,32.2332676231391,32.23060253866884,32.23218550829618,32.22986860619095,32.22846833660428,32.22609061224341,32.22694554678535,32.22370666107071,32.223228761650944,32.22794985905901],"feasible_probability":0.7521700974264093,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.74609375,"counts":{"0100010011":29,"0100010101":38,"0100011001":14,"0100100011":4,"0100100101":2,"0100101001":1,"0101000011":66,"0101000101":56,"0101001001":26,"0110000011":17,"0110000101":27,"0110001001":7,"1000010011":15,"1000010101":13,"1000011001":7,"1000100011":40,"1000100101":39,"1000101001":28,"1001000011":26,"1001000101":37,"1001001001":13,"1010000011":4,"1010000101":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1389040060021216},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":6,"removals":[{"variable":4,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[3,5],"max_component_qubits":5,"component_to_original":[[1,2,3],[5,6,7,8,9]],"components":[{"qubits":3,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-2,-1],"quadratic":[[0,1,14],[0,2,14],[1,2,14]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r0","start":2,"cost":5},{"index":2,"task":"t1","resource":"r1","start":7,"cost":6}],"conflicts":[]},{"qubits":5,"penalty":18,"objective_bound":17,"offset":36,"linear":[-11,-14,-8,-18,-11],"quadratic":[[0,1,36],[0,2,36],[0,3,18],[1,2,36],[2,4,18],[3,4,36]],"domains":[[0,1,2],[3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":8,"cost":7},{"index":1,"task":"t2","resource":"r1","start":6,"cost":4},{"index":2,"task":"t2","resource":"r2","start":11,"cost":10},{"index":3,"task":"t3","resource":"r0","start":8,"cost":0},{"index":4,"task":"t3","resource":"r2","start":9,"cost":7}],"conflicts":[{"i":0,"j":3,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":8,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":3153149895,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.3004256201583213,1.1459858760595805],"expected_energy":1.8056123249028317,"initial_expected_energy":4.594409101686862,"history":[4.594409101686862,4.829016922685568,2.373445115183289,3.780473589864021,2.770562573383711,2.4517106818474734,2.3426260947118744,2.5936604191539305,2.279262807957815,2.2260999660670104,2.1401736403499916,2.024506736408727,2.164253371426531,2.2082250511360693,2.004039618979759,1.9991742929531937,1.9736832007684375,1.9537655911217493,1.9864180023033857,1.9377592037195264,1.9352075421205794,2.024219293464255,1.9128847826148074,1.9045096345592967,1.8974013025867602,1.9048798717895854,1.8923463761626833,1.888560937108474,1.8911919991035604,1.8868216616668798,1.8856737171545839,1.8862691374843794,1.8839157099569352,1.8823242164081644,1.8801162641014566,1.8815611502309304,1.8791594458812297,1.8776123931766455,1.8765454411278808,1.8810402381224411,1.8747155729749454,1.8713178995409652,1.8651343843690373,1.8539736451898166,1.8542852667099363,1.8711441041394634,1.855273969264366,1.853023404115854,1.8529293418031558,1.855275344656056,1.8510104121223683,1.8482571984056722,1.8454520349740064,1.8408403446264188,1.838658122545557,1.8348233134603296,1.8353501160553995,1.8380409831353157,1.8340407264097318,1.8339270332955482,5.477390274765359,5.652412233575978,2.525797580274156,2.9474664935620574,2.8672677622212257,2.90636634885006,2.028191248537788,1.9646784724128779,1.9081926974645047,2.08894128442567,1.8757373556310175,1.8938961844079887,1.903879688379856,1.877122216854906,1.8777043798867001,1.8733834578539348,1.8735466519111883,1.8746518842091393,1.871201928332019,1.868248814167103,1.8680614244998055,1.870394891451281,1.868345309965156,1.865957442702324,1.8628808207062169,1.8689494942750697,1.8599687624604595,1.8566044338636953,1.8503457675493553,1.840286749648249,1.8357645776758986,1.8319702459171279,1.8333300029178698,1.8936916831052826,1.8304100154438667,1.8170623004337134,1.8158792478620818,1.8177458828631567,1.8165870069967465,1.8146750414782913,1.8136195056550528,1.8121782762595924,1.8108792422532665,1.810237939601785,1.8083958759017955,1.813072228861381,1.807371310977261,1.8094194732041926,1.8069101818928965,1.8069126385815584,1.8066375693186332,1.806877443463153,1.806880703995625,1.806618327968619,1.8065086453971597,1.8063355240307903,1.8066377710612809,1.806181226449301,1.8059843791649288,1.8056123249028317],"feasible_probability":0.9999999999999999,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":1.0,"counts":{"001":339,"010":110,"100":63},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09847691799222957},{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t2","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":8,"end":11,"reserved_end":12,"changed":false}],"bits":[0,1,0,1,0],"qubo_energy":4},"seed":4186225163,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.727255185773775,2.1279830642485718],"expected_energy":12.27583050211757,"initial_expected_energy":19.479329283503365,"history":[19.479329283503365,18.21371522042974,16.782626719533248,17.42559004033751,14.889933385860356,19.307400980272877,21.473909144576968,14.759773318062194,16.702838752718666,14.789645094648339,14.798686951225315,14.878328909755382,14.740959272150231,14.754131880981186,14.734083578962963,14.722572233473489,14.709489853942873,14.69292529197461,14.67622370289848,14.649501303119273,14.65901129960113,14.705527816124146,14.636144307487566,14.626862108892727,14.656011379182944,14.616108288534901,14.60884127180501,14.60089630857718,14.587419723219657,14.64944504002378,14.579072939635932,14.56391081297165,14.532993597748431,14.469615338824532,14.334709462709576,14.49991837887708,15.432705100656165,14.390865353836318,14.51049094976165,14.373421290465267,14.336018744534588,14.3314250443205,14.329196674296131,14.33958642218513,14.320262369551529,14.312964925327169,14.29776049865351,14.269521691467329,14.249138690815366,14.268695908998971,14.389338669972023,14.269004520796905,14.212517389311467,14.20021304491854,14.227700272317456,14.191991808135459,14.184965777279366,14.171628133178661,14.143688690146737,14.098835966903705,14.760305669020488,16.375122930357414,14.728928321925924,15.299060211103775,14.52195874016764,14.597820871735921,12.567290261544809,24.60674545311596,14.419618941956488,12.50396819048934,13.830574510994474,12.478010647770082,12.459145608389598,12.720619377778563,12.413603630304557,12.424866626965203,12.409809578405795,12.420923771810529,12.407468462685102,12.402600755332179,12.394266745585295,12.377103528015889,12.34536183151389,12.378276810682504,12.42487518343546,12.369865653053159,12.341533439324387,12.344610125458612,12.339213782777966,12.339828423634994,12.335864431419914,12.334527559278342,12.339464219763713,12.330846791646053,12.327699595792032,12.321507605640825,12.31235437780327,12.33771883148539,12.348241541492431,12.309128744153407,12.30905620548451,12.306098073274294,12.300630514978094,12.291562777675981,12.287574671287597,12.323649477274888,12.348321478165019,12.28744638703159,12.277796529195111,12.281714254113899,12.27726954314846,12.281282808936535,12.276285810988703,12.277067378433607,12.277120329117702,12.276280956206023,12.276034427581962,12.27587568958913,12.276091013392834,12.27583050211757],"feasible_probability":0.787812351233481,"one_hot_probability":1.0,"sampled_feasible_fraction":0.779296875,"counts":{"01001":96,"01010":185,"01100":27,"10001":101,"10010":86,"10100":17},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10898454500420485}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.7878123512334809,"total_shots":1024,"runtime_seconds":0.20770401999470778},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":24,"optimal_probability":0.10516251421701298,"feasible_probability":0.7521700974264094,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.5,"shots_for_95_percent":27,"hit_curve":[{"shots":8,"quantum":0.5888944392294306,"uniform":0.2885690504976606},{"shots":16,"quantum":0.8309922179035156,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9714363695908272,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9991841190178482,"uniform":0.9343761001763541},{"shots":128,"quantum":0.999999334338223,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":9.71445146547012e-17,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6630555276193209,"feasible_probability":0.9999999999999999,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998338628757196,"uniform":0.9609815576893767},{"shots":16,"quantum":0.999999972398456,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999992,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":4,"optimal_count":1,"combinations":6,"optimal_probability":0.3793043861029653,"feasible_probability":0.7878123512334811,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.6666666666666666,"shots_for_95_percent":7,"hit_curve":[{"shots":8,"quantum":0.9779692434235773,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9995146457646704,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999997644312663,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999999999445,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":4},{"shots":16,"best_objective":4},{"shots":32,"best_objective":4},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]}],"reduced_single_joint_draw_p_opt":0.25149986985582423,"diagnostic_seconds":0.005194696001126431}
+{"instance":"n4-s0-r3.json","seed":7,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":8,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":10},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4171959394448397,2.951822111116936],"expected_energy":24.568796735517182,"initial_expected_energy":40.57372926667412,"history":[40.57372926667412,35.72107475508776,38.53396821024549,34.982547223414784,33.34843431804729,29.98671464991763,30.64870972923902,35.22785128604389,29.04413188436353,33.58604991731195,32.86190334765543,28.662004750218404,29.286023833144426,28.57037135065535,29.218463577656657,28.5949767218751,28.590454922087417,28.581950496653896,28.553761116660976,28.548421508551804,28.559110736063968,28.539153569120806,28.532733401815438,28.543686416691433,28.522394239203596,28.514209456472756,28.535716492837203,28.506398710613674,28.496644953012932,28.477494518457725,28.443519274538307,28.764298113047598,28.45712022540854,28.452406284250394,28.452814107167654,28.43136600141771,28.429633554331787,28.44282763955497,28.418497964777846,28.397105133655078,28.35580875883912,28.27164006225128,28.119157116195268,29.629247424348854,29.686967363913936,28.281184491386178,28.259018724662823,28.136254052493967,28.098093397688153,28.08621972579197,28.131076210502616,28.07285142346158,28.063387781263955,28.052903288694015,28.033102654920263,28.02292475685,27.97448324180077,28.03797508066839,27.96050437069979,28.00087866665578,33.02357705716007,35.81519814375064,40.00748732030277,36.147870037697274,25.56925657964728,46.615677872485286,27.0638153120751,25.76923180468651,26.392691235191506,25.5756565718591,26.557879948956213,25.435360743075645,25.596564783870715,25.485263018308334,25.430865844478973,25.41048048494249,25.373778654422185,25.360674698374133,25.25653399823402,25.26805940433556,25.24144825107222,25.27490763137054,25.253953987600152,25.222246022587843,25.219762004420716,25.20048816723327,25.181828020553926,25.1455863953184,25.078501570960814,25.21834314503333,25.101661157855418,25.09642326907,25.05139158945682,25.019688953541642,24.966609218839054,25.230986307035952,24.965624941975,24.919991248277775,24.850348234547045,24.762736421625466,24.77267842946032,24.856931335897738,24.78557258587796,24.747364686746923,24.72715996651346,24.72972974040732,24.716571357515,24.716108266790208,24.73338913821454,24.702471838261445,24.68334194091274,24.644308413574755,24.606747471642716,24.718222065994034,24.82050990128988,24.57081377446965,24.576035003822724,24.568796735517182,24.575977356757402,24.57422854926439],"feasible_probability":0.7504060849095587,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.751953125,"counts":{"0100010011":44,"0100010101":25,"0100011001":16,"0100100011":2,"0100100101":1,"0100101001":1,"0101000011":53,"0101000101":48,"0101001001":27,"0110000011":20,"0110000101":28,"0110001001":9,"1000010011":9,"1000010101":8,"1000011001":2,"1000100011":37,"1000100101":46,"1000101001":26,"1001000011":42,"1001000101":26,"1001001001":23,"1010000011":5,"1010000101":10,"1010001001":4},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.15642070000467356},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":6,"removals":[{"variable":4,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[3,5],"max_component_qubits":5,"component_to_original":[[1,2,3],[5,6,7,8,9]],"components":[{"qubits":3,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-2,-1],"quadratic":[[0,1,14],[0,2,14],[1,2,14]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r0","start":2,"cost":5},{"index":2,"task":"t1","resource":"r1","start":7,"cost":6}],"conflicts":[]},{"qubits":5,"penalty":18,"objective_bound":17,"offset":36,"linear":[-11,-14,-8,-18,-11],"quadratic":[[0,1,36],[0,2,36],[0,3,18],[1,2,36],[2,4,18],[3,4,36]],"domains":[[0,1,2],[3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":8,"cost":7},{"index":1,"task":"t2","resource":"r1","start":6,"cost":4},{"index":2,"task":"t2","resource":"r2","start":11,"cost":10},{"index":3,"task":"t3","resource":"r0","start":8,"cost":0},{"index":4,"task":"t3","resource":"r2","start":9,"cost":7}],"conflicts":[{"i":0,"j":3,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":8,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.3392973780571698,1.146143839985949],"expected_energy":1.8036029110986558,"initial_expected_energy":2.836274427717753,"history":[2.836274427717753,2.6844526733190768,5.29305047135715,2.760768465193615,3.392152187901819,2.7038181909255847,2.8209016951183616,2.4332537229681357,2.052573245256057,2.01062701783089,1.9388081299657507,1.9396660854790113,2.0077356910428836,1.8591108318122567,1.8559970345731205,1.8786674843938558,1.844135561389264,1.8410347169925592,1.9271552324117374,1.824136598812576,1.8770210867627113,1.8182624313076026,1.8143826116188868,1.8209683272811974,1.8140233521662907,1.8131778665803,1.8116003569856036,1.809016760640377,1.806835254740552,1.8159593191851202,1.8190407110027478,1.8064666070547686,1.80508046482956,1.8062068951969155,1.805468560745561,1.805080480159473,1.80504544177591,1.8049784120698071,1.804858287205935,1.8047181993689012,1.8055403642095373,1.8044992873141408,1.804409905566125,1.8042807630907656,1.8040634674429592,1.8045043813394517,1.8041383449943957,1.804076351451224,1.8041045589492122,1.8040076941054708,1.8039889580178607,1.804059313362581,1.803981144356262,1.8039573296764537,1.803915515112264,1.8038505279762482,1.8042065663018207,1.8037971908297643,1.8037255801062928,1.8036029110986558,2.76780468538924,2.5940507702108553,5.248066026170903,2.885669218963185,3.870400282819197,2.429565957283516,1.9829089833964748,1.8992261304516482,2.022562592439293,1.9037867921254765,1.9388024092086706,1.8732699492358278,1.9201295999411516,1.8809355049985843,1.8713988260828565,1.8672246181289212,1.8658768775629813,1.854983403517683,1.852912516824,1.8433954857102708,1.845779806976903,1.8470322684239653,1.8423280051277247,1.8487524040022603,1.8418487886662065,1.840130810491638,1.8387524469383747,1.8397816009940138,1.8375230815238477,1.8365253543486144,1.835911814127106,1.8407530344712384,1.8352953063343724,1.8335809156816105,1.8322551776798999,1.8332172522846655,1.83112623158834,1.830219312747562,1.829769251531871,1.8267299103302357,1.825349351536401,1.823165233078115,1.8193067665034812,1.814340627368711,1.8171340103463498,1.822689360281888,1.8157389142576879,1.8129151016615117,1.8120783980178645,1.8149196300460446,1.8113061571866855,1.8108085066010804,1.810175262830356,1.809021178237419,1.8074318132908729,1.8073074206330249,1.8054969794360176,1.8062630115342542,1.807352844617152,1.8057655594628712],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":337,"010":125,"100":50},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.0963299239956541},{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t2","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":8,"end":11,"reserved_end":12,"changed":false}],"bits":[0,1,0,1,0],"qubo_energy":4},"seed":3618983171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.654512795447605,2.129281937254346],"expected_energy":12.271834695902124,"initial_expected_energy":14.84064487682252,"history":[14.84064487682252,16.252760100944137,14.227834106770315,12.568926134839781,18.35262745095782,20.27341579596872,14.136459956866094,12.579837985927078,12.401793501226305,12.569832359201435,12.42761578954421,12.41486291810881,12.634407823563414,12.420066549770555,12.42506572546387,12.372677098551907,12.364984872270426,12.354685213503036,12.349828996394884,12.33899813155826,12.339346155348373,12.336977929069706,12.337415143132592,12.339117816530187,12.334061127424087,12.333208507508402,12.339391035665557,12.329102150262507,12.326178402355927,12.319972798427445,12.310550361829481,12.357914601074919,12.351845547046988,12.307702259682886,12.3042676084274,12.306471330795706,12.300809458565055,12.30109474071805,12.301905794892733,12.299119778036708,12.29757109880968,12.313397664666903,12.293763112797228,12.292656010832378,12.290575725040707,12.286889115505872,12.283606392571986,12.288639027404342,12.297964425582823,12.28045048868967,12.280156493686551,12.278539627604452,12.276632097493948,12.274826607960765,12.272077406494562,12.285130218911174,12.277997306743945,12.274096672920333,12.271834695902124,12.27359144979473,15.067719594183217,15.061991035723674,23.804001640712496,15.349473225205085,23.577738741775054,15.042963913566709,12.64042407194779,12.604929792639123,12.645807468318138,12.794770787662618,12.38508345954942,12.44926845268087,12.38612559855962,12.398926590785814,12.369805761420388,12.372337856055621,12.371613178112753,12.367661753862834,12.367925664211283,12.370415096208262,12.363412520085852,12.360253962544107,12.376275648401315,12.355340617685577,12.351267889964092,12.34401919063206,12.330544043744865,12.311529032019,12.314350617574771,12.340791001147124,12.31692469225094,12.307605610798433,12.30429380996284,12.312879099930086,12.301422530078632,12.30004738245577,12.297560395567935,12.293730731422345,12.287219127824592,12.279276032864926,12.29765679673814,12.32772775432084,12.278265063070513,12.27572915001311,12.282204041345787,12.277232812779864,12.276090305367862,12.27545374119684,12.275046043101023,12.274957670944847,12.27541315047233,12.274852116351044,12.27469037746651,12.274538853144614,12.275652663488838,12.27434984643981,12.274087834602849,12.27393856869472,12.27375066373217,12.273409768188763],"feasible_probability":0.7912751112807626,"one_hot_probability":1.0,"sampled_feasible_fraction":0.8046875,"counts":{"01001":86,"01010":185,"01100":24,"10001":110,"10010":93,"10100":14},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10721545200794935}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.7912751112807626,"total_shots":1024,"runtime_seconds":0.2038339970022207},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":24,"optimal_probability":0.10716853942365694,"feasible_probability":0.7504060849095588,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.5,"shots_for_95_percent":27,"hit_curve":[{"shots":8,"quantum":0.596209701541133,"uniform":0.2885690504976606},{"shots":16,"quantum":0.8369533948704991,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9734158045557446,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9992932805525816,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999995005476227,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.249000902703301e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.662291650607844,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998308257012319,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999713800566,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999992,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":4,"optimal_count":1,"combinations":6,"optimal_probability":0.3692088628453764,"feasible_probability":0.7912751112807627,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.6666666666666666,"shots_for_95_percent":7,"hit_curve":[{"shots":8,"quantum":0.9749340215687642,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9993716967252848,"uniform":0.9459121070676046},{"shots":32,"quantum":0.999999605234995,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999999998441,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":4},{"shots":16,"best_objective":4},{"shots":32,"best_objective":4},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]}],"reduced_single_joint_draw_p_opt":0.24452394719290943,"diagnostic_seconds":0.004229678990668617}
+{"instance":"n4-s0-r3.json","seed":8,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":8,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":10},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9574399426626609,1.134798765661887],"expected_energy":28.553202382314854,"initial_expected_energy":30.003398989128883,"history":[30.003398989128883,31.203980162683653,31.51139791111362,37.41642582627407,29.770048548622903,29.45952352368122,29.54650795976949,30.059925699085525,29.500517125704317,29.357334315588595,29.23179295485113,28.991314949595875,28.683851792043626,29.117741440229835,29.242932164028637,28.641284065147083,28.600711559935043,28.60860451945694,28.596679768145954,28.61324606261293,28.59597942505153,28.59138200222999,28.58783624064841,28.582037096759922,28.578632816855816,28.573798537656288,28.566027592083095,28.583082336587037,28.573599317727247,28.567292592005263,28.566986644943263,28.56507383470406,28.56610407755559,28.563492930170785,28.56201311034726,28.560177213350066,28.557988746460794,28.556893825187352,28.563810367383503,28.55571529176239,28.555590791323837,28.554686287435565,28.554447099581402,28.55384869647635,28.554480572545657,28.554290134112556,28.55394392046053,28.55391341297753,28.553786777920926,28.5538680252901,28.553764654398407,28.553728407130556,28.553722347104518,28.553680415923424,28.55364020005077,28.55356398519673,28.553429095781425,28.55342553463848,28.553202382314854,28.553288568553363,30.706669868165427,30.290191951503367,31.20524355383809,32.00581481595182,36.75027060728962,30.09915182014483,31.332948893645675,30.383800829735975,30.11928458060654,30.112435141117796,30.154408402770734,30.02763109793444,30.008180838512185,30.026194832331857,30.006531907935344,30.0105966971878,30.006165245536625,30.015410542596427,30.003792522499445,30.002062189027253,29.998943037539373,29.992714656112128,29.979316542367034,29.963620324724005,30.024456151543458,30.082219474463326,29.949625903227716,29.96142635853548,29.951715518998203,29.949795386506608,29.948448359774083,29.94862850831177,29.948952783428204,29.94762764200988,29.946732844198543,29.94834017834243,29.945686552944736,29.944735760278768,29.94292115424805,29.939263499986758,29.93216506554831,29.923906995010004,29.93272884426895,29.954406600403154,29.920140584079906,29.914946023262623,29.913041854468783,29.922387490692905,29.910542037143586,29.908659522468106,29.90490184121444,29.90034313906957,29.89513095984799,29.89538817691,29.90644386432751,29.895417040190907,29.892035382411358,29.89037808300255,29.888362359812994,29.886382829109966],"feasible_probability":0.6546054211657744,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.67578125,"counts":{"0100010011":14,"0100011001":14,"0100100011":20,"0100100101":2,"0100101001":28,"0101000011":28,"0101000101":4,"0101001001":54,"0110000011":59,"0110000101":11,"0110001001":63,"1000010011":20,"1000010101":4,"1000011001":40,"1000100011":25,"1000100101":5,"1000101001":43,"1001000011":19,"1001000101":7,"1001001001":28,"1010000011":9,"1010000101":1,"1010001001":14},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13706987899786327},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":6,"removals":[{"variable":4,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[3,5],"max_component_qubits":5,"component_to_original":[[1,2,3],[5,6,7,8,9]],"components":[{"qubits":3,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-2,-1],"quadratic":[[0,1,14],[0,2,14],[1,2,14]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r0","start":2,"cost":5},{"index":2,"task":"t1","resource":"r1","start":7,"cost":6}],"conflicts":[]},{"qubits":5,"penalty":18,"objective_bound":17,"offset":36,"linear":[-11,-14,-8,-18,-11],"quadratic":[[0,1,36],[0,2,36],[0,3,18],[1,2,36],[2,4,18],[3,4,36]],"domains":[[0,1,2],[3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":8,"cost":7},{"index":1,"task":"t2","resource":"r1","start":6,"cost":4},{"index":2,"task":"t2","resource":"r2","start":11,"cost":10},{"index":3,"task":"t3","resource":"r0","start":8,"cost":0},{"index":4,"task":"t3","resource":"r2","start":9,"cost":7}],"conflicts":[{"i":0,"j":3,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":8,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":3257320810,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.3984168178916114,1.1445079579211312],"expected_energy":1.8034055101200428,"initial_expected_energy":4.361455155302334,"history":[4.361455155302334,4.599474082092302,4.269412858406419,3.5484373711323887,4.177466111899871,2.9096863522100906,4.231814264574102,2.602521347654543,4.202568227333943,2.5560201101236566,2.3294694499939257,2.379895796243937,2.468171185504776,2.3639570000455197,2.295385519863892,2.342440721584633,2.2517757867298642,2.2274100618650965,2.1802992400474417,2.1332757000920513,2.057084099290862,2.087734628239504,2.10647900773599,2.0716699997816717,2.099989584505388,2.044603471269774,2.050638052083206,2.0404456187198634,2.0339090841446628,2.0303421932380203,2.0576754120422844,2.0200699572385785,2.003383226726156,1.978993256836267,1.936988010027108,1.8853955201235602,1.837689795131228,2.1564290740523715,2.0621500286717382,1.8343104364885976,1.824054808461821,1.8391534845751658,1.8274071249387458,1.8190887454614795,1.8170498705135385,1.8207856602647163,1.816204173434743,1.8154363125846968,1.8139943910934517,1.8112066100038096,1.8080851515382252,1.816011798468581,1.8194260963374198,1.8075090368464055,1.80653705887922,1.8069936183953477,1.807206588588627,1.8065913282979449,1.8061088167734045,1.805815151694594,3.3039768476277693,3.2562802105716195,5.387726207807967,2.182951780844874,5.460552276052368,1.8180657465940482,1.8086853315539466,1.9976614742317182,1.8121898053517689,1.863049435013244,1.8309412767682847,1.8240681717062166,1.8069081031676821,1.8079923237508222,1.8071450755039704,1.807112057561346,1.8066735888976928,1.80738216426876,1.8064312015818613,1.8062212195304506,1.8058624481093402,1.8053918249770642,1.8046422434765264,1.8047576827428597,1.8057378376684021,1.8048637045059632,1.8047164725076899,1.8046403650723537,1.8047422322123676,1.8046487609176787,1.8046011874824246,1.804537785454484,1.8045456456485156,1.8044858721615744,1.804436641239409,1.8043455790340501,1.804212588198873,1.805345045264034,1.8040888648776277,1.8040433111403977,1.8046882249432095,1.8038861706946927,1.803822046100323,1.8037565657611005,1.8037788639203787,1.8037163692914038,1.8037995011851242,1.8037382314690507,1.8036887634111776,1.803716978137696,1.8036708771819063,1.803654540770697,1.8036198038627784,1.803553779107352,1.803434217618805,1.803797730912129,1.8036515100468078,1.8034078076565723,1.8034688928553142,1.8034055101200428],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":351,"010":103,"100":58},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08852416800800711},{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t2","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":8,"end":11,"reserved_end":12,"changed":false}],"bits":[0,1,0,1,0],"qubo_energy":4},"seed":631391383,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.8962295278132928,1.2931259309598173],"expected_energy":11.258218449716406,"initial_expected_energy":21.39711892498663,"history":[21.39711892498663,18.55461320976474,16.841512598010397,15.4969307622028,16.24460936913298,15.458521404208602,15.733075175151201,15.423630528553911,15.40038359730288,15.306215262296242,15.270754527392242,15.071493945372367,15.419213044991588,15.330655066930278,15.136817960295577,15.156362734766848,15.054922740088418,15.110320098971288,15.034786037549141,15.01608416681054,14.980490702370076,14.91858350411433,14.949230826694487,14.92307008612353,14.90754697694371,14.921656670381772,14.925539289131365,14.880142273523447,14.863331861173478,14.914809049361953,14.845557126503092,14.830253888279112,14.810909416745933,14.877870392454803,14.802429991228118,14.781975646653057,14.767107549318197,14.775566096783042,14.76082725280094,14.75564884960352,14.751413169574239,14.736600743217824,14.723853700211022,14.699619508267446,14.686171895832217,14.627900894696793,14.648265377097552,14.61694605922596,14.657775073004462,14.609621638927385,14.596610123188807,14.57228274609109,14.526417162219373,14.450589081844008,14.80726298741115,14.891416188716262,14.434563459216392,14.425289327664835,14.5892467964155,14.38807137061467,16.829306688428527,15.856380369264043,16.63686532823378,16.24286655890874,18.940374877323265,12.814089562320753,12.722358687023725,14.262106492925328,13.120434499996996,12.010837496926381,12.111835470562955,11.782267561828327,11.652232661779395,11.796380157240943,11.576326130320746,11.632818531096678,11.72788605358527,11.531658667781244,11.52677203164062,11.5554891332912,11.529187481789645,11.516671714101868,11.505647284816467,11.534002549336634,11.495550052361947,11.48631964112164,11.468767847564038,11.4380502607313,11.40627846515899,11.354233645259482,11.546136920947758,11.4374145095261,11.433356828779752,11.365051634694023,11.34111562756966,11.335182599787217,11.361838523680102,11.328231837330094,11.323584418065714,11.318460982719742,11.30939911000608,11.334154708280092,11.309784991339562,11.307371706868206,11.307334557458812,11.320256062611168,11.299336492021958,11.296123079784113,11.29200403428353,11.286972994019916,11.294027122851912,11.282490829340905,11.285599038545623,11.27895737067131,11.278656302836524,11.273892294746425,11.273721474900466,11.267724463694641,11.265748538525234,11.258218449716406],"feasible_probability":0.9648916026554449,"one_hot_probability":1.0,"sampled_feasible_fraction":0.96875,"counts":{"01001":10,"01010":19,"01100":230,"10001":83,"10010":164,"10100":6},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10161990199412685}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9648916026554449,"total_shots":1024,"runtime_seconds":0.19037026600562967},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":24,"optimal_probability":0.07750696809316505,"feasible_probability":0.6546054211657744,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.5,"shots_for_95_percent":38,"hit_curve":[{"shots":8,"quantum":0.47554919659523864,"uniform":0.2885690504976606},{"shots":16,"quantum":0.7249513548081004,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9243482427781005,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9942768116292388,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999672451148728,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.249000902703301e-16,"independent_samples":[{"shots":8,"best_objective":16},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6603209799190455,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998227648767372,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999685877111,"uniform":0.9984775611596526},{"shots":32,"quantum":0.999999999999999,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.942890293094024e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":4,"optimal_count":1,"combinations":6,"optimal_probability":0.045337631563113365,"feasible_probability":0.9648916026554448,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.6666666666666666,"shots_for_95_percent":65,"hit_curve":[{"shots":8,"quantum":0.3100804865193125,"uniform":0.7674319606386222},{"shots":16,"quantum":0.5240110649185715,"uniform":0.9459121070676046},{"shots":32,"quantum":0.7734345336800477,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9486680894712225,"uniform":0.9999914414488029},{"shots":128,"quantum":0.9973650349614656,"uniform":0.9999999999267511},{"shots":512,"quantum":0.9999999999517942,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.5265566588595902e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":4},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]}],"reduced_single_joint_draw_p_opt":0.029937389300963662,"diagnostic_seconds":0.004235724991303869}
+{"instance":"n4-s0-r3.json","seed":9,"direct":{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":8,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":10},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3966447768685355,1.8936912480020285],"expected_energy":30.238767044973667,"initial_expected_energy":31.35553448412731,"history":[31.35553448412731,31.013576253849685,30.298838710796588,33.223815320794266,30.510547954117445,32.215246145960094,30.248474561830058,30.43861556219883,30.3500636166932,30.325808025886737,30.24614195491435,30.257141813291334,30.247307655735163,30.24827915607384,30.246891070556885,30.246270107071105,30.245959283416557,30.24627390468861,30.245881287941305,30.2458216183397,30.24574122513123,30.245603995003474,30.245297196860577,30.244697032641,30.243432841010176,30.244848457214943,30.251487644634008,30.243127106991647,30.24560390140723,30.24327485509674,30.243156592259925,30.24317326950474,30.243065815598438,30.243051645375232,30.2431753663696,30.242956371257282,30.24287571806086,30.242725369591753,30.242431121274038,30.242627375155294,30.242494409737787,30.242419143352926,30.242610623763696,30.2422754546157,30.242174162514196,30.24205325590571,30.24187803183745,30.241544836195715,30.240872406724996,30.23950178855133,30.243313867966748,30.24726026807361,30.24164300276889,30.239326174586623,30.239790163928248,30.23934606063874,30.239180729821797,30.23903301319507,30.240231218589773,30.238767044973667,32.70996320484528,32.84669773814003,31.66457098224192,32.32727137424469,33.44222948513144,33.40636052728739,30.63290728688544,32.91248645811992,30.745111856081394,30.50403259793357,30.86106920096438,30.504081192642957,30.53848324841659,30.470059264650473,30.482308581118065,30.470354680513054,30.477941757015778,30.46938547657738,30.47282398742655,30.470128360107374,30.469794936008086,30.46881518562421,30.46863121242392,30.468436752791817,30.468301366310698,30.468089185530914,30.467929392360148,30.46755573544969,30.467923750569632,30.467437827923867,30.467848741826707,30.467390892560015,30.467317268569303,30.46723606170407,30.46740609473269,30.467175113064513,30.467101889198673,30.46715460401574,30.467024204155152,30.466948311238994,30.466793451878544,30.466487978843126,30.465870454795542,30.464584577871108,30.467578470279157,30.473130568001622,30.464300218151656,30.467196743611375,30.464273525046053,30.463943768856538,30.46327181054103,30.461954158462834,30.459201273027304,30.473256416775417,30.494905380709795,30.468075104390035,30.458856458430674,30.46127046475519,30.45893227457617,30.458713256337642],"feasible_probability":0.6013432727581448,"one_hot_probability":1.0,"sampled_feasible_fraction":0.626953125,"counts":{"0100010011":23,"0100010101":20,"0100011001":41,"0100100011":4,"0100101001":4,"0101000011":17,"0101000101":16,"0101001001":37,"0110000011":22,"0110000101":13,"0110001001":35,"1000010011":14,"1000010101":9,"1000011001":39,"1000100011":1,"1000100101":5,"1000101001":5,"1001000011":54,"1001000101":39,"1001001001":77,"1010000011":7,"1010000101":9,"1010001001":21},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1296349949989235},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":6,"removals":[{"variable":4,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[3,5],"max_component_qubits":5,"component_to_original":[[1,2,3],[5,6,7,8,9]],"components":[{"qubits":3,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-2,-1],"quadratic":[[0,1,14],[0,2,14],[1,2,14]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r0","start":2,"cost":5},{"index":2,"task":"t1","resource":"r1","start":7,"cost":6}],"conflicts":[]},{"qubits":5,"penalty":18,"objective_bound":17,"offset":36,"linear":[-11,-14,-8,-18,-11],"quadratic":[[0,1,36],[0,2,36],[0,3,18],[1,2,36],[2,4,18],[3,4,36]],"domains":[[0,1,2],[3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":8,"cost":7},{"index":1,"task":"t2","resource":"r1","start":6,"cost":4},{"index":2,"task":"t2","resource":"r2","start":11,"cost":10},{"index":3,"task":"t3","resource":"r0","start":8,"cost":0},{"index":4,"task":"t3","resource":"r2","start":9,"cost":7}],"conflicts":[{"i":0,"j":3,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":8,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0],"qubo_energy":10},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":4,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":747784396,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.33901490441276,1.144913533866434],"expected_energy":1.8035848789804385,"initial_expected_energy":2.9386135731531273,"history":[2.9386135731531273,2.9669043947252423,5.3615115986802415,2.423335442197626,5.5901838537573925,1.919507746521639,2.0868295254007547,1.8904476947714053,2.0995156427885773,1.8795324057446707,1.8618505887598098,1.854487903154571,1.8386692964532605,1.8780730309043356,1.855666313025909,1.8490812347313903,1.8412372702080786,1.836293023378202,1.8334807697931461,1.8329284452966812,1.8289520481409551,1.8285977290174635,1.8238677204778433,1.8211736928188451,1.8158827890083695,1.8104908439324618,1.8132793484996999,1.824774402595179,1.8118788732283198,1.8091986344238549,1.8090699321225951,1.8108521857534066,1.8091086347621317,1.807980779543861,1.807606234833991,1.8081964791714902,1.8071863406260664,1.8071241461981167,1.806517505485462,1.806646764444633,1.806544213023567,1.8063749085202927,1.8063503742227285,1.806713723017034,1.8062142171787832,1.8060968495270626,1.8059056371578226,1.805568323790864,1.8060822668399104,1.805528328386536,1.8052898880963864,1.8049304293384818,1.804494448894876,1.8043253853591934,1.8036707629534132,1.8047769774824043,1.8052504152292306,1.8035848789804385,1.8039781993138777,1.8035992049299108,5.249112337583034,4.988276704364063,3.319534396833817,2.4487583859579454,3.7029545745137824,3.7680655575901385,2.85828766248114,2.679068344928993,2.1695035867883163,2.1890168963115384,2.1781587663025666,2.197080799131386,2.198693670580489,2.141696866734137,2.1884038021839247,2.1234539756780513,2.108210610192728,2.0754065713905643,2.01962067401559,2.392770428579603,2.073252998149404,2.0487240890552916,2.0295416301869444,2.0100160644790424,2.025591961706681,2.0073374113766858,2.000526166921154,1.9875183510183387,1.9768193727643406,1.949510370306779,1.950162962030853,1.943988953962692,1.9508147106442826,1.9477556792281403,1.9388203522764034,1.9384882239458152,1.941124011228521,1.9388485412018652,1.9359561599740551,1.9316372103720387,1.9305120539778575,1.920069029994755,1.9120482787750392,1.8969499278392226,1.894719711922765,1.8664124141713698,1.8749079470880132,1.8646808094638192,1.8741317452939927,1.86316666668397,1.8605157723903072,1.8571051815590773,1.8691630127875376,1.854019282206572,1.8518609338964058,1.849334621151856,1.8446328831690453,1.8395475485494535,1.8369898351546725,1.828629064357929],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":340,"010":109,"100":63},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07929419599531684},{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t2","group":"g0","resource":"r1","start":6,"end":7,"reserved_end":7,"changed":true},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":8,"end":11,"reserved_end":12,"changed":false}],"bits":[0,1,0,1,0],"qubo_energy":4},"seed":4053640108,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.8801588260815914,1.2919917176573128],"expected_energy":11.251251458170408,"initial_expected_energy":17.40720322893199,"history":[17.40720322893199,17.471930493423855,16.60351824167779,15.970842358002967,19.393075234412095,16.663759815928568,17.534033694060128,16.700927127819185,13.369799061152289,13.003221154031703,14.388915641201981,13.573687032977752,12.045932375143558,11.741256984218202,11.517758261750142,12.51236664442817,11.439529708617755,11.608904910290216,11.6321023113114,11.441986285953213,11.518371275623446,11.43938145517114,11.418696122485262,11.403732792350619,11.400090056517296,11.394690204538781,11.392982832468325,11.405099862317348,11.384115176193237,11.377860654040623,11.365463388279085,11.3573281392001,11.335151576093654,11.364015272020037,11.326671242953052,11.347847610666376,11.32093114167473,11.316765511851228,11.311455144082679,11.30470866619915,11.296954542720744,11.291264734052941,11.308391176072064,11.286350358606226,11.284552344851445,11.280234334994761,11.275037546592115,11.268225696597963,11.265295762667321,11.268536862017292,11.292749717428755,11.262505626786023,11.256937337032316,11.255844714821592,11.260944581025413,11.254390034813186,11.25321483217808,11.251251458170408,11.255127313715573,11.252369421813116,12.414357849723295,13.251562953427575,24.921087313969203,16.542809827779102,17.157807047897165,13.087850127506833,12.392394081497637,12.615935793072978,12.473245642919524,12.4451584498857,12.38499315269063,12.377163427522257,12.380291886630022,12.372084929965945,12.3697749298748,12.373220249932512,12.36559861887325,12.361642869724106,12.355706414457392,12.344772248643281,12.330567366190232,12.30590244849601,12.317832048197602,12.39880398194386,12.33108573525218,12.303287177641973,12.309017563351544,12.302332860458904,12.2995061431351,12.296608883422794,12.291824398694903,12.288983624536497,12.287487240655107,12.280942198401837,12.275046543022434,12.282446544850899,12.320359991206892,12.274687604843361,12.271936725446572,12.282744813478915,12.272388222416408,12.2732636449931,12.271812985890499,12.271434715161153,12.271260177574865,12.271313117629228,12.271235072331269,12.271213556206714,12.271226799610163,12.27120481431782,12.271240480013768,12.271180606718897,12.271161375140043,12.271123935938068,12.271056364299888,12.271141582202311,12.27131439762638,12.271043006966725,12.271127070332655,12.271044066412427],"feasible_probability":0.965401747801168,"one_hot_probability":1.0,"sampled_feasible_fraction":0.966796875,"counts":{"01001":10,"01010":26,"01100":231,"10001":74,"10010":164,"10100":7},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09601399399980437}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.965401747801168,"total_shots":1024,"runtime_seconds":0.17551705200457945},"direct_metrics":{"exact_objective":10,"optimal_count":1,"combinations":24,"optimal_probability":0.02979924001500362,"feasible_probability":0.6013432727581448,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.5,"shots_for_95_percent":100,"hit_curve":[{"shots":8,"quantum":0.2149580151504891,"uniform":0.2885690504976606},{"shots":16,"quantum":0.3837090820235403,"uniform":0.49386600409019976},{"shots":32,"quantum":0.6201855044197326,"uniform":0.7438283781843783},{"shots":64,"quantum":0.8557409489471071,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9791893261893189,"uniform":0.9956935037719361},{"shots":512,"quantum":0.9999998124381239,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":16},{"shots":16,"best_objective":17},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6620862765029144,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998300008933735,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999711003037,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999991,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":4,"optimal_count":1,"combinations":6,"optimal_probability":0.04474652827604693,"feasible_probability":0.9654017478011679,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.6666666666666666,"shots_for_95_percent":66,"hit_curve":[{"shots":8,"quantum":0.3066556227811889,"uniform":0.7674319606386222},{"shots":16,"quantum":0.519273574579059,"uniform":0.9459121070676046},{"shots":32,"quantum":0.7689021039020044,"uniform":0.9970744998381338},{"shots":64,"quantum":0.94659376241908,"uniform":0.9999914414488029},{"shots":128,"quantum":0.9971477737874503,"uniform":0.9999999999267511},{"shots":512,"quantum":0.9999999999338186,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":7.632783294297951e-17,"independent_samples":[{"shots":8,"best_objective":4},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]}],"reduced_single_joint_draw_p_opt":0.029626062292720284,"diagnostic_seconds":0.00379405400599353}
+{"instance":"n4-s1-r0.json","seed":0,"direct":{"status":"infeasible_domain","best":null,"seed":0,"mixer":"xy","runtime_seconds":3.0270020943135023e-06,"circuit_evaluations":0},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":3.3549004001542926e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":1.6900012269616127e-06}
+{"instance":"n4-s1-r0.json","seed":1,"direct":{"status":"infeasible_domain","best":null,"seed":1,"mixer":"xy","runtime_seconds":2.0890001906082034e-06,"circuit_evaluations":0},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":2.5792993255890906e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":1.1889933375641704e-06}
+{"instance":"n4-s1-r0.json","seed":2,"direct":{"status":"infeasible_domain","best":null,"seed":2,"mixer":"xy","runtime_seconds":1.5409896150231361e-06,"circuit_evaluations":0},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":2.09239951800555e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":9.119976311922073e-07}
+{"instance":"n4-s1-r0.json","seed":3,"direct":{"status":"infeasible_domain","best":null,"seed":3,"mixer":"xy","runtime_seconds":1.234991941601038e-06,"circuit_evaluations":0},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.8838996766135097e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":8.460046956315637e-07}
+{"instance":"n4-s1-r0.json","seed":4,"direct":{"status":"infeasible_domain","best":null,"seed":4,"mixer":"xy","runtime_seconds":1.1160009307786822e-06,"circuit_evaluations":0},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.626599987503141e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":8.060014806687832e-07}
+{"instance":"n4-s1-r0.json","seed":5,"direct":{"status":"infeasible_domain","best":null,"seed":5,"mixer":"xy","runtime_seconds":1.047999830916524e-06,"circuit_evaluations":0},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.5376994269900024e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":6.780028343200684e-07}
+{"instance":"n4-s1-r0.json","seed":6,"direct":{"status":"infeasible_domain","best":null,"seed":6,"mixer":"xy","runtime_seconds":1.0210060281679034e-06,"circuit_evaluations":0},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.4088000170886517e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":6.320042302832007e-07}
+{"instance":"n4-s1-r0.json","seed":7,"direct":{"status":"infeasible_domain","best":null,"seed":7,"mixer":"xy","runtime_seconds":8.450006134808064e-07,"circuit_evaluations":0},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.3276003301143646e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":6.049958756193519e-07}
+{"instance":"n4-s1-r0.json","seed":8,"direct":{"status":"infeasible_domain","best":null,"seed":8,"mixer":"xy","runtime_seconds":8.90999217517674e-07,"circuit_evaluations":0},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.3802986359223723e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":6.629998097196221e-07}
+{"instance":"n4-s1-r0.json","seed":9,"direct":{"status":"infeasible_domain","best":null,"seed":9,"mixer":"xy","runtime_seconds":9.500072337687016e-07,"circuit_evaluations":0},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.3376993592828512e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":6.649934221059084e-07}
+{"instance":"n4-s1-r1.json","seed":0,"direct":{"status":"infeasible_domain","best":null,"seed":0,"mixer":"xy","runtime_seconds":2.9629882192239165e-06,"circuit_evaluations":0},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":3.534699499141425e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":1.7650017980486155e-06}
+{"instance":"n4-s1-r1.json","seed":1,"direct":{"status":"infeasible_domain","best":null,"seed":1,"mixer":"xy","runtime_seconds":1.624008291400969e-06,"circuit_evaluations":0},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":2.0534003851935267e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":9.049981599673629e-07}
+{"instance":"n4-s1-r1.json","seed":2,"direct":{"status":"infeasible_domain","best":null,"seed":2,"mixer":"xy","runtime_seconds":1.1279917089268565e-06,"circuit_evaluations":0},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.6771999071352184e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":7.700000423938036e-07}
+{"instance":"n4-s1-r1.json","seed":3,"direct":{"status":"infeasible_domain","best":null,"seed":3,"mixer":"xy","runtime_seconds":1.0299991117790341e-06,"circuit_evaluations":0},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.7134996596723795e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":7.959897629916668e-07}
+{"instance":"n4-s1-r1.json","seed":4,"direct":{"status":"infeasible_domain","best":null,"seed":4,"mixer":"xy","runtime_seconds":1.0520016076043248e-06,"circuit_evaluations":0},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.5891986549831927e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":7.750059012323618e-07}
+{"instance":"n4-s1-r1.json","seed":5,"direct":{"status":"infeasible_domain","best":null,"seed":5,"mixer":"xy","runtime_seconds":8.640054147690535e-07,"circuit_evaluations":0},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.5615005395375192e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":5.979964043945074e-07}
+{"instance":"n4-s1-r1.json","seed":6,"direct":{"status":"infeasible_domain","best":null,"seed":6,"mixer":"xy","runtime_seconds":8.269998943433166e-07,"circuit_evaluations":0},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.3686003512702882e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":5.970068741589785e-07}
+{"instance":"n4-s1-r1.json","seed":7,"direct":{"status":"infeasible_domain","best":null,"seed":7,"mixer":"xy","runtime_seconds":8.299975888803601e-07,"circuit_evaluations":0},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.3668002793565392e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":7.00994860380888e-07}
+{"instance":"n4-s1-r1.json","seed":8,"direct":{"status":"infeasible_domain","best":null,"seed":8,"mixer":"xy","runtime_seconds":9.219947969540954e-07,"circuit_evaluations":0},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.3213997590355575e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":5.57003659196198e-07}
+{"instance":"n4-s1-r1.json","seed":9,"direct":{"status":"infeasible_domain","best":null,"seed":9,"mixer":"xy","runtime_seconds":7.079943316057324e-07,"circuit_evaluations":0},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.3176992069929838e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":6.43995008431375e-07}
+{"instance":"n4-s1-r2.json","seed":0,"direct":{"status":"feasible","best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":7,"end":10,"reserved_end":12,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r1","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,0,1,1,0,0,0,0,1],"qubo_energy":18},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.6378712945887623,0.4285369811034232],"expected_energy":37.87481193468014,"initial_expected_energy":45.04419522997355,"history":[45.04419522997355,47.311135668543265,45.587191076820815,44.66846414210456,40.012220282304256,44.52325548819945,48.3515713565277,44.11091362065113,41.636742922689145,39.87021327761881,39.50597344505401,39.76870080015896,39.28189076474069,39.32037711870838,39.18490362384732,39.111460538044284,39.09157889387415,39.492949673312545,38.942504223040125,38.73782840631034,38.61160785376315,38.46797366202483,38.33946526167146,38.374350204839146,38.304974840499625,38.54924967247835,38.272456475189735,38.21694415472038,38.17356436729554,38.19999856509371,38.1539759837744,38.143138710561,38.156393629159055,38.12368677346622,38.105158172894996,38.07136321795204,38.02398682917822,37.96820500540801,37.90916483277316,37.887234847601945,37.99490025878119,37.93148216328947,37.891692446364445,37.91963434881539,37.89290609692019,37.877152576306536,37.875405419672155,37.87911512459693,37.87507735624009,37.87690124738665,37.87482718524906,37.8750417716313,37.87484354446917,37.874871635365295,37.87483727765716,37.874840634712044,37.87482645165642,37.87483325740807,37.87482073156989,37.87481193468014,40.415671327150086,38.27340893772134,45.05338997146095,44.00064672242563,42.828755265818074,41.61681961467262,38.27012265125161,38.001765816924575,38.543596612026626,37.94217215509239,37.926183795118675,37.908048279245044,37.89467064855925,37.914320809095614,37.89274179604376,37.888291131157395,37.88184732172676,37.91164724168126,37.88951861235053,37.887261940374714,37.88026503296641,37.88171851750239,37.87999650125529,37.87941358170123,37.87882435645453,37.8778289963507,37.87789824977358,37.878287232734024,37.87751769954943,37.87792044122631,37.87742048593891,37.87727245206101,37.87709875152337,37.87679825203196,37.877112970156745,37.87660455944528,37.87688290821158,37.8765272287612,37.87637601933901,37.87610585770645,37.875915030625066,37.87544459203617,37.875664648113265,37.87536991402282,37.87575592729347,37.87526690873326,37.875184053582416,37.87506232030924,37.875148467594485,37.87506895799105,37.87504078988336,37.875055262022585,37.87510529006552,37.87496944762989,37.87498337833728,37.87499504690656,37.8749729277822,37.874956510733085,37.874934108407444,37.87494136761478],"feasible_probability":0.4629438994708209,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.47265625,"counts":{"010001011":66,"010001101":14,"010010011":32,"010010101":8,"010100011":104,"010100101":18,"011000011":40,"011000101":14,"100001011":16,"100001101":54,"100010011":29,"100010101":11,"100100011":20,"100100101":24,"101000011":27,"101000101":35},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11849991900089663},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":9,"fixed_variables":[0],"fixed_cost":8,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[1,2,3,4,5,6,7,8]],"components":[{"qubits":8,"penalty":20,"objective_bound":19,"offset":60,"linear":[-14,-15,-20,-14,-12,-14,-20,-15],"quadratic":[[0,1,40],[0,2,20],[0,5,20],[1,3,20],[1,4,20],[1,6,20],[2,3,40],[2,4,40],[2,5,40],[3,4,40],[3,5,40],[3,6,20],[4,5,40],[6,7,40]],"domains":[[0,1],[2,3,4,5],[6,7]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r2","start":8,"cost":6},{"index":1,"task":"t1","resource":"r0","start":7,"cost":5},{"index":2,"task":"t2","resource":"r2","start":8,"cost":0},{"index":3,"task":"t2","resource":"r0","start":8,"cost":6},{"index":4,"task":"t2","resource":"r0","start":5,"cost":8},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6},{"index":6,"task":"t3","resource":"r0","start":11,"cost":0},{"index":7,"task":"t3","resource":"r1","start":12,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource"]},{"i":0,"j":5,"reasons":["resource"]},{"i":1,"j":3,"reasons":["resource"]},{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":6,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":7,"end":10,"reserved_end":12,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r1","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,0,1,1,0,0,0,0,1],"qubo_energy":18},"components":[{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r0","start":7,"end":10,"reserved_end":12,"changed":true},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r1","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[0,1,1,0,0,0,0,1],"qubo_energy":10},"seed":3757552657,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.7841909126892342,1.350994116947572],"expected_energy":24.008969363766894,"initial_expected_energy":28.547713967629363,"history":[28.547713967629363,26.11650029301645,30.23730937706481,29.01660766187384,27.069406876601647,26.93596148232303,25.569779499925787,27.07367790971995,25.163528794099125,24.792553200940105,24.827823881563063,25.128756735737674,24.89031040998463,24.812021655813954,24.79327425449535,24.795472821745072,24.795628093970436,24.793185545039933,24.79259252968859,24.792516838227076,24.792469585385007,24.79246742683085,24.792649329544798,24.792346373305925,24.79228415223284,24.7922305266197,24.7922294238291,24.792159234583387,24.79212751946373,24.792030704107905,24.792122255144378,24.792138698733336,24.792018631724332,24.792072195320827,24.79201212714865,24.791980692453123,24.79196780160101,24.791976294196246,24.79204245076967,24.79196144195314,24.7919645055555,24.79195814496489,24.79195423404068,24.791952485647073,24.79195765570594,24.791950810407844,24.79194945776881,24.791947076533617,24.791944543265117,24.79194416553917,24.791941611176227,24.791944640798476,24.7919460693635,24.79194179811836,24.79194161382575,24.791941452545448,24.791941411987935,24.791943004666628,24.791941257956317,24.79194252888925,32.503147087953586,32.20119893410874,28.878592847624425,32.73681504705429,29.386684136656015,29.293423347543236,26.949179197125144,28.098848215775654,26.267023876377518,27.020783707453184,25.796015649362552,25.109707739920644,25.039337495453918,25.31847450637846,24.91810201198444,25.198986644007917,24.723166502325853,24.64444662658049,24.533577901354256,24.362394277639936,25.17282108654029,24.456695163208266,24.34092791521912,24.48958293125989,24.310830831474966,24.268777054478452,24.23607217634263,24.249400840709296,24.22342058453239,24.216667829965257,24.226158303301965,24.202711090752345,24.189530638748515,24.16467770084239,24.133530054213438,24.093435017256002,24.07219583108981,24.17647269171057,24.055090052042466,24.051511528933943,24.036923247466987,24.03452576434845,24.023240927235157,24.02609141444487,24.022610284325648,24.031132997634067,24.018194490169,24.0155990004434,24.0129566339518,24.00931821738643,24.01704850393189,24.012667451104736,24.009615176269833,24.00946466345079,24.009331595392062,24.009208895120427,24.00913323058461,24.009122250340226,24.00931018991661,24.008969363766894],"feasible_probability":0.50354176472873,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.54296875,"counts":{"01000101":28,"01000110":15,"01001001":25,"01001010":5,"01010001":42,"01010010":9,"01100001":38,"01100010":22,"10000101":29,"10000110":78,"10001001":59,"10010001":66,"10010010":49,"10100001":14,"10100010":33},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1178056189964991}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.50354176472873,"total_shots":512,"runtime_seconds":0.11798068099597003},"direct_metrics":{"exact_objective":18,"optimal_count":1,"combinations":16,"optimal_probability":0.10233659021332192,"feasible_probability":0.4629438994708208,"uniform_optimal_probability":0.0625,"uniform_feasible_probability":0.3125,"shots_for_95_percent":28,"hit_curve":[{"shots":8,"quantum":0.5783926397702605,"uniform":0.4032805261667818},{"shots":16,"quantum":0.8222472338001107,"uniform":0.6439258695482073},{"shots":32,"quantum":0.9684039541082875,"uniform":0.8732112136229997},{"shots":64,"quantum":0.9990016898840088,"uniform":0.9839246036490473},{"shots":128,"quantum":0.9999990033769123,"uniform":0.9997415816321598},{"shots":512,"quantum":1.0,"uniform":0.9999999999999956}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":24},{"shots":16,"best_objective":18},{"shots":32,"best_objective":18},{"shots":64,"best_objective":18},{"shots":128,"best_objective":18},{"shots":512,"best_objective":18}]},"component_metrics":[{"exact_objective":10,"optimal_count":1,"combinations":16,"optimal_probability":0.15081293869167278,"feasible_probability":0.50354176472873,"uniform_optimal_probability":0.0625,"uniform_feasible_probability":0.3125,"shots_for_95_percent":19,"hit_curve":[{"shots":8,"quantum":0.7295873855408441,"uniform":0.4032805261667818},{"shots":16,"quantum":0.9268770179413639,"uniform":0.6439258695482073},{"shots":32,"quantum":0.9946530294948523,"uniform":0.8732112136229997},{"shots":64,"quantum":0.9999714099064171,"uniform":0.9839246036490473},{"shots":128,"quantum":0.9999999991826065,"uniform":0.9997415816321598},{"shots":512,"quantum":1.0,"uniform":0.9999999999999956}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3183898417423734e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]}],"reduced_single_joint_draw_p_opt":0.15081293869167278,"diagnostic_seconds":0.004333639997639693}
+{"instance":"n4-s1-r2.json","seed":1,"direct":{"status":"feasible","best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":7,"end":10,"reserved_end":12,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r1","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,0,1,1,0,0,0,0,1],"qubo_energy":18},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.639496848636379,0.42845025977616263],"expected_energy":37.87475968538533,"initial_expected_energy":41.869734655946594,"history":[41.869734655946594,40.12687026983503,44.201079897358426,46.0616708468728,45.50816825157334,37.94736918821495,44.69039951478131,38.1059708336669,39.99958417806327,38.097725075625426,38.14667685336558,38.07651264287351,37.96138431315678,37.952593018058,37.95085122185009,37.93823117015728,37.93669229007533,37.927207193311204,37.91951474834846,37.906004783234394,37.91297685517161,37.913463586188584,37.90523818321538,37.917629999057475,37.89790424952251,37.89396432267546,37.88912198824354,37.88184136203974,37.92349631616925,37.89722045580787,37.884915704841625,37.881551602360446,37.88275933371736,37.88157158711534,37.88115570921998,37.88053496457794,37.88067241660562,37.88006858032746,37.87968623467654,37.87931829225238,37.881420105442345,37.87894142290981,37.87835896876729,37.877722463190494,37.87695915365162,37.87585781083757,37.87577218745015,37.875028078284004,37.87553938442152,37.87498627485989,37.87526306647957,37.87494957104722,37.87490984436201,37.87491002115636,37.87489091126157,37.874950022458755,37.87491995145036,37.874880290330296,37.874976026731716,37.874855938428055,43.819642204263324,43.90908836601874,46.44739757456811,43.07345404532183,46.125835467531964,46.06158394654978,43.192392415342724,42.72798487033572,46.72070014513341,41.57304528425416,40.926787143384026,40.442164431642226,40.883760212713135,40.1775582648879,40.19489918915666,40.13382743090622,39.997692428099256,39.73865081447891,39.274425543120955,38.815681980834434,38.35510033601289,38.21898399203355,40.9221240603771,37.90971002883881,38.458457796138575,37.8895631832116,37.96529705355163,37.91429628667289,37.88519279968992,37.8830091301478,37.8914513281812,37.88118327723272,37.88028928489676,37.87892877292957,37.877298590535034,37.877112437886865,37.87572390724754,37.87568069848824,37.87481882667561,37.87751162686611,37.87601766823019,37.87478838668825,37.87505791773305,37.874802530834046,37.874800701037074,37.87479299233149,37.87479113469066,37.874786607812325,37.874793737546206,37.874783555721464,37.87478087165134,37.874776125872614,37.8747705466664,37.874766541863224,37.87476232020843,37.87477553392473,37.87476476318483,37.8747661649829,37.87475968538533,37.87476142901669],"feasible_probability":0.4627911982967889,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.49609375,"counts":{"010001011":59,"010001101":8,"010010011":33,"010010101":8,"010100011":100,"010100101":24,"011000011":27,"011000101":12,"100001011":17,"100001101":55,"100010011":32,"100010101":15,"100100011":22,"100100101":39,"101000011":16,"101000101":45},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11874269899271894},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":9,"fixed_variables":[0],"fixed_cost":8,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[1,2,3,4,5,6,7,8]],"components":[{"qubits":8,"penalty":20,"objective_bound":19,"offset":60,"linear":[-14,-15,-20,-14,-12,-14,-20,-15],"quadratic":[[0,1,40],[0,2,20],[0,5,20],[1,3,20],[1,4,20],[1,6,20],[2,3,40],[2,4,40],[2,5,40],[3,4,40],[3,5,40],[3,6,20],[4,5,40],[6,7,40]],"domains":[[0,1],[2,3,4,5],[6,7]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r2","start":8,"cost":6},{"index":1,"task":"t1","resource":"r0","start":7,"cost":5},{"index":2,"task":"t2","resource":"r2","start":8,"cost":0},{"index":3,"task":"t2","resource":"r0","start":8,"cost":6},{"index":4,"task":"t2","resource":"r0","start":5,"cost":8},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6},{"index":6,"task":"t3","resource":"r0","start":11,"cost":0},{"index":7,"task":"t3","resource":"r1","start":12,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource"]},{"i":0,"j":5,"reasons":["resource"]},{"i":1,"j":3,"reasons":["resource"]},{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":6,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":7,"end":10,"reserved_end":12,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r1","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,0,1,1,0,0,0,0,1],"qubo_energy":18},"components":[{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r0","start":7,"end":10,"reserved_end":12,"changed":true},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r1","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[0,1,1,0,0,0,0,1],"qubo_energy":10},"seed":1641411168,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.7637217952117208,1.3510365777106437],"expected_energy":24.008189530547853,"initial_expected_energy":29.47277584732311,"history":[29.47277584732311,30.576111046977303,30.69031124060045,30.376361043486412,29.300463461991875,29.900054963620093,29.829769899880567,29.17796450069608,29.134135558719187,29.488279021659245,28.706172637905517,28.177361393199696,27.72946271833374,28.126698550556938,27.443211855531352,27.556767004963014,27.178554834908375,27.044635899951025,27.561191788641118,26.74134662729886,26.621843894788626,26.346282444738804,26.2015911953084,25.990580596648194,25.951948915539013,25.635393565864923,25.842202437005966,25.601138083957405,26.082912851734207,25.56762235497353,25.54396502687542,25.674202946905265,25.506759529804825,25.50139709872035,25.479034411576627,25.45423325515698,25.438460685858416,25.418384665880364,25.428582824887613,25.51601012053662,25.42739218278451,25.422846142913855,25.419897311284707,25.419131174016456,25.419289741246985,25.418363728331673,25.418771673309507,25.418356837927234,25.417989855230733,25.417417768952113,25.41660872834709,25.416924903760382,25.4163390159201,25.416295856944338,25.41687536598001,25.41606756612406,25.41570157516268,25.41522274966043,25.414646787559615,25.413746738790877,37.08399033210945,44.32199807745107,31.615290418448616,29.07494861308227,30.545721848005293,29.352059822386597,29.687562919247377,29.036826721269463,29.04303290324082,28.995209221530374,28.96272093897595,29.048630638343024,28.870266261096397,28.82268976729351,28.658239360982073,28.374528067347438,27.531262224254217,28.501852390067704,25.65494244085282,29.843842480921733,26.07070958872923,25.714714289227594,25.835252013486166,25.309592881666124,25.125648627478327,25.71194451002365,24.790428702692164,24.637125667734146,24.41536495067392,24.33934000786328,24.967302604938972,24.206673793984947,24.185719818158766,24.11044380354987,24.06901096850725,24.106910514763232,24.233261013742613,24.08458051591299,24.037175055934917,24.036376908346938,24.047738347661074,24.03980153801716,24.028067008766627,24.027590865945122,24.023362195798164,24.01994568883623,24.01868818321673,24.01309870405121,24.028774017108866,24.01094968895923,24.010166158243937,24.01722698546741,24.009017465131556,24.009163050807956,24.00893459808792,24.00912310469569,24.008873548502464,24.008755217860696,24.008547130853522,24.008189530547853],"feasible_probability":0.5014341742804463,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.470703125,"counts":{"01000101":44,"01000110":17,"01001001":23,"01001010":1,"01010001":33,"01010010":12,"01100001":37,"01100010":18,"10000101":37,"10000110":75,"10001001":57,"10010001":49,"10010010":64,"10100001":18,"10100010":27},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11852711900428403}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.5014341742804463,"total_shots":512,"runtime_seconds":0.11872346900054254},"direct_metrics":{"exact_objective":18,"optimal_count":1,"combinations":16,"optimal_probability":0.10236705317657155,"feasible_probability":0.4627911982967889,"uniform_optimal_probability":0.0625,"uniform_feasible_probability":0.3125,"shots_for_95_percent":28,"hit_curve":[{"shots":8,"quantum":0.5785070869806718,"uniform":0.4032805261667818},{"shots":16,"quantum":0.822343724274481,"uniform":0.6439258695482073},{"shots":32,"quantum":0.9684382476953384,"uniform":0.8732112136229997},{"shots":64,"quantum":0.9990038557914592,"uniform":0.9839246036490473},{"shots":128,"quantum":0.9999990076967158,"uniform":0.9997415816321598},{"shots":512,"quantum":1.0,"uniform":0.9999999999999956}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":18},{"shots":16,"best_objective":18},{"shots":32,"best_objective":18},{"shots":64,"best_objective":18},{"shots":128,"best_objective":18},{"shots":512,"best_objective":18}]},"component_metrics":[{"exact_objective":10,"optimal_count":1,"combinations":16,"optimal_probability":0.14947577297654685,"feasible_probability":0.5014341742804465,"uniform_optimal_probability":0.0625,"uniform_feasible_probability":0.3125,"shots_for_95_percent":19,"hit_curve":[{"shots":8,"quantum":0.7261621279095272,"uniform":0.4032805261667818},{"shots":16,"quantum":0.9250128198089618,"uniform":0.6439258695482073},{"shots":32,"quantum":0.9943769228069967,"uniform":0.8732112136229997},{"shots":64,"quantum":0.9999683810028815,"uniform":0.9839246036490473},{"shots":128,"quantum":0.9999999990002391,"uniform":0.9997415816321598},{"shots":512,"quantum":1.0,"uniform":0.9999999999999956}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.249000902703301e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]}],"reduced_single_joint_draw_p_opt":0.14947577297654685,"diagnostic_seconds":0.003943136005545966}
+{"instance":"n4-s1-r2.json","seed":2,"direct":{"status":"feasible","best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":7,"end":10,"reserved_end":12,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r1","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,0,1,1,0,0,0,0,1],"qubo_energy":18},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.643489703386364,0.4287373142201608],"expected_energy":37.87493967933722,"initial_expected_energy":38.911610705598655,"history":[38.911610705598655,41.54288835117505,45.1541087703088,45.49976677870775,44.46061547763392,39.96131190307187,39.00328857755193,39.53583027766526,38.75134060594127,38.654988032411445,39.439043480139034,38.441701696441086,38.37272187117374,38.26814187413841,38.12208143612504,38.56541390031966,38.07209787048558,38.04595450616891,38.277864905187414,37.99073939244002,37.975996074422135,37.948581463467626,37.90914118999924,38.09642231367894,37.98637874213311,37.93721036916597,37.90544214744502,37.9141113277106,37.89944699183599,37.89491900743967,37.91044535956752,37.89277198639686,37.88840224468365,37.88172382494091,37.90135876661054,37.88993565986004,37.88688499507934,37.88026501443074,37.8818340176301,37.88001989249671,37.87942617982327,37.878847189206965,37.87803046113883,37.877228469184864,37.876611342669456,37.87773871121132,37.87621849887479,37.87604362090447,37.876705431244226,37.8758874270017,37.87576347277895,37.875552040477906,37.87519921340403,37.8765049705854,37.87575422385135,37.87513652605185,37.87537085009197,37.875094653480865,37.87503395332061,37.87493967933722,53.45138938633636,45.552203211982174,45.795606873004004,39.84649529164057,47.113963348806706,47.595878518718436,41.29783459415181,41.07975228976161,39.88642687245455,39.906787523213836,39.33664191506951,39.49155317023997,39.41166284753364,39.365271310110224,39.29565554570351,39.27381214049508,39.313381360588764,39.26391375259553,39.25497876776939,39.24459129906106,39.23078941835314,39.22239684678168,39.242409888456955,39.21950306908295,39.21662522549338,39.21721384782795,39.215312988982596,39.215632711895275,39.21563992804901,39.21484248793716,39.214624590222606,39.2153366074085,39.214475413290266,39.21419569699482,39.21370885925715,39.212935497800515,39.2120339382991,39.211277856439686,39.21092462405689,39.21336363907017,39.2110933328584,39.21092900865586,39.21124773569581,39.21086417687992,39.2108727327793,39.210869572863245,39.21086783863541,39.21085960439302,39.210858704010946,39.21085766605734,39.21085752653797,39.210858167941026,39.210858948847545,39.210857324142395,39.21085741586662,39.210857328470325,39.210857375427935,39.2108573232306,39.2108573380342],"feasible_probability":0.4621976395839487,"one_hot_probability":1.0,"sampled_feasible_fraction":0.451171875,"counts":{"010001011":85,"010001101":19,"010010011":13,"010010101":11,"010100011":86,"010100101":23,"011000011":36,"011000101":22,"100001011":13,"100001101":56,"100010011":27,"100010101":10,"100100011":23,"100100101":31,"101000011":18,"101000101":39},"circuit_evaluations":119,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":59}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12763967699720524},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":9,"fixed_variables":[0],"fixed_cost":8,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[1,2,3,4,5,6,7,8]],"components":[{"qubits":8,"penalty":20,"objective_bound":19,"offset":60,"linear":[-14,-15,-20,-14,-12,-14,-20,-15],"quadratic":[[0,1,40],[0,2,20],[0,5,20],[1,3,20],[1,4,20],[1,6,20],[2,3,40],[2,4,40],[2,5,40],[3,4,40],[3,5,40],[3,6,20],[4,5,40],[6,7,40]],"domains":[[0,1],[2,3,4,5],[6,7]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r2","start":8,"cost":6},{"index":1,"task":"t1","resource":"r0","start":7,"cost":5},{"index":2,"task":"t2","resource":"r2","start":8,"cost":0},{"index":3,"task":"t2","resource":"r0","start":8,"cost":6},{"index":4,"task":"t2","resource":"r0","start":5,"cost":8},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6},{"index":6,"task":"t3","resource":"r0","start":11,"cost":0},{"index":7,"task":"t3","resource":"r1","start":12,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource"]},{"i":0,"j":5,"reasons":["resource"]},{"i":1,"j":3,"reasons":["resource"]},{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":6,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":7,"end":10,"reserved_end":12,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r1","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,0,1,1,0,0,0,0,1],"qubo_energy":18},"components":[{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r0","start":7,"end":10,"reserved_end":12,"changed":true},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r1","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[0,1,1,0,0,0,0,1],"qubo_energy":10},"seed":2001025171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.7708879526836143,1.3509314191592472],"expected_energy":24.007505817642855,"initial_expected_energy":29.498619444800198,"history":[29.498619444800198,29.557714158385245,27.345021120006557,32.071964831278606,29.121037279449155,26.58494457304831,25.64378398055788,24.73291682533736,24.41179952172403,28.984437007134893,27.045510401366418,24.447376754694,24.01343495154658,24.306495841588053,24.0390980264211,24.02693074917285,24.016466831204344,24.01404393443704,24.00949522241882,24.012062405026377,24.00933574799755,24.010163596727846,24.00934063712863,24.0091034284777,24.008814294729238,24.008959428179203,24.008698756039713,24.008600380834565,24.0085197605181,24.00828856782057,24.008178672434248,24.00801095540102,24.007793440435314,24.00778611856427,24.007604884956997,24.007681268496405,24.00778167647018,24.00763094746261,24.007591571270822,24.00756823492525,24.00757132759077,24.00755379286663,24.007555434406733,24.00755662795264,24.007549497382186,24.007545762860026,24.007566783422526,24.007537626485572,24.00753199661095,24.007527441176965,24.007532263758286,24.007524283176984,24.007526368406342,24.007521769834717,24.007520342028045,24.007522102658033,24.007517957882715,24.007515694538117,24.007511652648084,24.007505817642855,34.560472344473084,28.886611692791337,29.630850634995095,27.910775809632497,30.364051006038608,26.51917141259939,29.203508999316405,26.24623278665046,26.489761585069683,26.45910186422102,26.038988970767036,26.278974479511323,25.990923585752636,26.049478326703582,25.978908005842683,25.95898458024152,25.9308544748508,26.04933554158365,25.96406195123862,25.927286272327024,25.951990882711986,25.92496251526599,25.921732414159234,25.920175366882685,25.926143388162856,25.91730103978265,25.915892759954918,25.91428518604075,25.913514382149476,25.918126302931753,25.91272666193705,25.912693654407754,25.91237840849164,25.91220839048998,25.912108466536843,25.91229834638733,25.91207938481834,25.91204886296238,25.91204183416845,25.91198840456035,25.91207044761971,25.91198290720158,25.912015212365404,25.911969438243858,25.911965013437452,25.911988920069792,25.911986091366074,25.911971618344925,25.91196575267456,25.9119649791055,25.911965924576847,25.911964849400185,25.911964917486415,25.911964841354404,25.91196487509474,25.911964821379797,25.911964810625925,25.91196480143358,25.91196479970896,25.91196479165243],"feasible_probability":0.5022015774381406,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.48828125,"counts":{"01000101":38,"01000110":21,"01001001":25,"01001010":3,"01010001":41,"01010010":5,"01100001":42,"01100010":16,"10000101":30,"10000110":65,"10001001":63,"10001010":5,"10010001":45,"10010010":54,"10100001":23,"10100010":36},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12287002999801189}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.5022015774381406,"total_shots":512,"runtime_seconds":0.12305539200315252},"direct_metrics":{"exact_objective":18,"optimal_count":1,"combinations":16,"optimal_probability":0.10216446896298587,"feasible_probability":0.4621976395839487,"uniform_optimal_probability":0.0625,"uniform_feasible_probability":0.3125,"shots_for_95_percent":28,"hit_curve":[{"shots":8,"quantum":0.5777454813437203,"uniform":0.4032805261667818},{"shots":16,"quantum":0.8217011214743535,"uniform":0.6439258695482073},{"shots":32,"quantum":0.9682095099164968,"uniform":0.8732112136229997},{"shots":64,"quantum":0.9989893647402507,"uniform":0.9839246036490473},{"shots":128,"quantum":0.9999989786163718,"uniform":0.9997415816321598},{"shots":512,"quantum":1.0,"uniform":0.9999999999999956}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":22},{"shots":16,"best_objective":18},{"shots":32,"best_objective":18},{"shots":64,"best_objective":18},{"shots":128,"best_objective":18},{"shots":512,"best_objective":18}]},"component_metrics":[{"exact_objective":10,"optimal_count":1,"combinations":16,"optimal_probability":0.14995221199644457,"feasible_probability":0.5022015774381406,"uniform_optimal_probability":0.0625,"uniform_feasible_probability":0.3125,"shots_for_95_percent":19,"hit_curve":[{"shots":8,"quantum":0.7273868929297223,"uniform":0.4032805261667818},{"shots":16,"quantum":0.9256820938534892,"uniform":0.6439258695482073},{"shots":32,"quantum":0.9944768488259984,"uniform":0.8732112136229997},{"shots":64,"quantum":0.9999694948011091,"uniform":0.9839246036490473},{"shots":128,"quantum":0.9999999990694328,"uniform":0.9997415816321598},{"shots":512,"quantum":1.0,"uniform":0.9999999999999956}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.249000902703301e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]}],"reduced_single_joint_draw_p_opt":0.14995221199644457,"diagnostic_seconds":0.0038126840081531554}
+{"instance":"n4-s1-r2.json","seed":3,"direct":{"status":"feasible","best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":7,"end":10,"reserved_end":12,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r1","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,0,1,1,0,0,0,0,1],"qubo_energy":18},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.8031272038948944,1.3477991708349768],"expected_energy":36.12187593879972,"initial_expected_energy":44.42001430064549,"history":[44.42001430064549,45.695193834399674,46.66158188134026,45.95412435733235,42.61501437033318,53.03487596300448,43.20322004202324,42.43148286608604,45.05312274118118,41.98164527842588,41.276556438298556,40.660163924036105,39.44698849967403,38.6835024478531,37.887105900571186,37.39434172853508,39.74919440545429,36.937954307087494,37.11569717044628,37.415289728072445,36.92197653680855,37.047347293265545,36.92652659138299,36.87925630894793,36.81271134734487,36.840586476058775,36.761258022406764,36.72126876411128,36.7049491934987,36.95920191495977,36.704251103577974,36.61381495969935,36.52601207388486,36.43980567309473,36.40010001420329,36.31899945011252,36.316405281089935,36.20309745937985,36.34949074641581,36.292648447176006,36.190951154835965,36.1983775432679,36.18445232478275,36.185384287054504,36.17501198303273,36.17301105813726,36.18761967830166,36.16314109833238,36.15562462646111,36.14218670741178,36.14291912649624,36.15253571661372,36.142686003503464,36.145399505783494,36.142559031661484,36.14068434344196,36.13781666866046,36.13277683883525,36.129795747173844,36.12187593879972,41.428305667273555,45.027139306138345,45.09171312045625,45.13618567567617,44.7000287121706,40.683821761300905,40.330441272493154,43.412681356318785,39.73626666338626,39.585519679460134,39.381220152939704,39.31227971323462,39.31453753256905,39.3476289736277,39.31271013952513,39.32762129035392,39.28582421213065,39.250238690487045,39.2359803553362,39.22511953125074,39.22228792683758,39.21432689693605,39.217362621266474,39.214853163360786,39.216851196857604,39.214177589885054,39.216829093689945,39.213712546117,39.21300186032228,39.21232520191725,39.21165232891377,39.2114642097181,39.211111412800946,39.21162809568854,39.2114742766947,39.211140815746155,39.2110225205797,39.211002713406145,39.2109571752963,39.210926965778356,39.21097070037349,39.2109098738657,39.21088639603948,39.2108801187579,39.21108439175467,39.210858730980085,39.21089315838659,39.210872567003285,39.21086592727786,39.21085768378259,39.21085919303837,39.210857809499075,39.21085816410449,39.21085767597213,39.21085755512656,39.210857509833126,39.21085758756254,39.21085747745171,39.21085745763687,39.210857426622496],"feasible_probability":0.5142025515756928,"one_hot_probability":1.0,"sampled_feasible_fraction":0.5,"counts":{"010001011":39,"010001101":24,"010010011":20,"010010101":9,"010100011":42,"010100101":11,"011000011":40,"011000101":15,"100001011":36,"100001101":63,"100010011":61,"100010101":1,"100100011":55,"100100101":45,"101000011":16,"101000101":35},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13084061999688856},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":9,"fixed_variables":[0],"fixed_cost":8,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[1,2,3,4,5,6,7,8]],"components":[{"qubits":8,"penalty":20,"objective_bound":19,"offset":60,"linear":[-14,-15,-20,-14,-12,-14,-20,-15],"quadratic":[[0,1,40],[0,2,20],[0,5,20],[1,3,20],[1,4,20],[1,6,20],[2,3,40],[2,4,40],[2,5,40],[3,4,40],[3,5,40],[3,6,20],[4,5,40],[6,7,40]],"domains":[[0,1],[2,3,4,5],[6,7]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r2","start":8,"cost":6},{"index":1,"task":"t1","resource":"r0","start":7,"cost":5},{"index":2,"task":"t2","resource":"r2","start":8,"cost":0},{"index":3,"task":"t2","resource":"r0","start":8,"cost":6},{"index":4,"task":"t2","resource":"r0","start":5,"cost":8},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6},{"index":6,"task":"t3","resource":"r0","start":11,"cost":0},{"index":7,"task":"t3","resource":"r1","start":12,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource"]},{"i":0,"j":5,"reasons":["resource"]},{"i":1,"j":3,"reasons":["resource"]},{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":6,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":7,"end":10,"reserved_end":12,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r1","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,0,1,1,0,0,0,0,1],"qubo_energy":18},"components":[{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r0","start":7,"end":10,"reserved_end":12,"changed":true},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r1","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[0,1,1,0,0,0,0,1],"qubo_energy":10},"seed":819382448,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[-0.7686442882886723,1.7909540266572177],"expected_energy":24.007619754082675,"initial_expected_energy":26.898625234100123,"history":[26.898625234100123,30.50336965737688,35.86374894237174,29.429687942456162,31.037847280375573,27.764686516851313,26.769770578872468,26.45659773466401,26.624784938163323,26.254917402400114,25.89158747312779,25.222956148286652,24.345097908081602,26.963796888157656,26.243289017996727,24.24642231835948,24.40612820698859,24.369452372097292,24.389252951752223,24.23911097412205,24.20471835967798,24.204434715320428,24.186420567831277,24.170750283291348,24.14584862076058,24.108606129602528,24.04625926618384,24.190216117279203,24.071969963876075,24.042389526476015,24.067513670266493,24.036024381545595,24.033090265831632,24.041435105526936,24.03035008420349,24.027991089482715,24.023775336631253,24.0213201245559,24.014635349847786,24.020283240556395,24.013732915867273,24.016128180994762,24.013895701403897,24.01287563931306,24.01239201189297,24.012847533760997,24.012308207438803,24.012094852639787,24.011681707441266,24.01092286792651,24.011025216893962,24.010831388756994,24.011326858894957,24.010716846623914,24.010466031664944,24.010078249722042,24.01045643026916,24.009804968078292,24.009714474193608,24.0093504054449,29.73811633922439,29.765026162323593,31.07675291065612,31.148896785985038,32.01290224771907,29.72624429663439,29.012077977991517,29.084745722799326,29.00304325769577,29.21646698893621,28.880811245373568,28.832336026742475,28.683961469331656,28.30161123115938,27.940937272313285,25.100448545980974,35.16362192737157,27.446594222326098,24.70391515653976,25.683939581175125,24.603448994501754,24.342017197292186,24.412891117073368,24.320446155732448,24.399184823493222,24.316544943890907,24.29156496585716,24.253106674051374,24.191705857757725,24.176177890940373,24.11695913176633,24.096980956967712,24.058643558613554,24.202307479296486,24.154236828459304,24.0359921859762,24.024341349553303,24.033501645059474,24.015617799946888,24.01455805374883,24.017413701240883,24.013983495335367,24.022353578952192,24.011881239722843,24.01110558641716,24.010323255221184,24.010321371743423,24.009585542886082,24.009097017276503,24.008722946805563,24.009773666361504,24.008376429298302,24.008295323500494,24.008050885681847,24.007918492972372,24.007776479652563,24.007676743447227,24.007918574745588,24.007640441646835,24.007619754082675],"feasible_probability":0.5020062780505933,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.513671875,"counts":{"01000101":46,"01000110":21,"01001001":29,"01001010":3,"01010001":36,"01010010":5,"01100001":28,"01100010":16,"10000101":27,"10000110":79,"10001001":63,"10001010":3,"10010001":54,"10010010":48,"10100001":23,"10100010":31},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12179903300420847}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.5020062780505933,"total_shots":512,"runtime_seconds":0.12199120099830907},"direct_metrics":{"exact_objective":18,"optimal_count":1,"combinations":16,"optimal_probability":0.15267503456580447,"feasible_probability":0.5142025515756928,"uniform_optimal_probability":0.0625,"uniform_feasible_probability":0.3125,"shots_for_95_percent":19,"hit_curve":[{"shots":8,"quantum":0.7342948203766338,"uniform":0.4032805261667818},{"shots":16,"quantum":0.9294007575213147,"uniform":0.6439258695482073},{"shots":32,"quantum":0.9950157469614358,"uniform":0.8732112136229997},{"shots":64,"quantum":0.9999751572216475,"uniform":0.9839246036490473},{"shots":128,"quantum":0.9999999993828363,"uniform":0.9997415816321598},{"shots":512,"quantum":1.0,"uniform":0.9999999999999956}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":7.632783294297951e-17,"independent_samples":[{"shots":8,"best_objective":24},{"shots":16,"best_objective":18},{"shots":32,"best_objective":18},{"shots":64,"best_objective":18},{"shots":128,"best_objective":18},{"shots":512,"best_objective":18}]},"component_metrics":[{"exact_objective":10,"optimal_count":1,"combinations":16,"optimal_probability":0.1497942214668096,"feasible_probability":0.5020062780505933,"uniform_optimal_probability":0.0625,"uniform_feasible_probability":0.3125,"shots_for_95_percent":19,"hit_curve":[{"shots":8,"quantum":0.7269812845113193,"uniform":0.4032805261667818},{"shots":16,"quantum":0.9254607809929107,"uniform":0.6439258695482073},{"shots":32,"quantum":0.9944439048298132,"uniform":0.8732112136229997},{"shots":64,"quantum":0.9999691298064598,"uniform":0.9839246036490473},{"shots":128,"quantum":0.9999999990470312,"uniform":0.9997415816321598},{"shots":512,"quantum":1.0,"uniform":0.9999999999999956}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]}],"reduced_single_joint_draw_p_opt":0.1497942214668096,"diagnostic_seconds":0.005095479995361529}
+{"instance":"n4-s1-r2.json","seed":4,"direct":{"status":"feasible","best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":7,"end":10,"reserved_end":12,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r1","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,0,1,1,0,0,0,0,1],"qubo_energy":18},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.8566302700504953,1.3547429856039623],"expected_energy":38.362970478652066,"initial_expected_energy":45.31020346671494,"history":[45.31020346671494,44.9564337189385,41.85792929425382,48.262835569474284,45.14301148551938,42.92135047839415,41.40079674459946,42.83204183740307,41.179353650226176,41.020972104222324,41.89832934133089,40.405373225992065,40.18540616746756,39.76089703137788,39.40956848509477,39.04837738372589,38.946314518626956,38.3951707667365,40.35171401280202,40.31426295308238,38.37165745045412,38.812785404391946,38.88197465728061,38.474193061303595,38.40699825714669,38.372146802848306,38.37289170917384,38.37169060240933,38.37475647267714,38.371809374705975,38.370699621354895,38.37001390694117,38.3686932246741,38.36742133321383,38.365350827123706,38.37025349749514,38.36979841796942,38.36585041391862,38.365267934806205,38.36617186362473,38.36514155491592,38.36492462640845,38.36459901416502,38.36413820266544,38.36367275325382,38.36411305186011,38.36388454383619,38.36372031113265,38.3637510349464,38.36357389110516,38.36356134137859,38.363700325700634,38.36345461931172,38.36328737465997,38.36302479475461,38.36455810358948,38.36367775676962,38.36298048514756,38.36323940970351,38.362970478652066,43.13524210456556,42.62339855553529,44.33636370468813,45.70113065838727,40.4245657855636,44.798504658189216,41.88852847715645,40.79870938806209,40.22162898763592,41.2746005423508,40.21333802725856,40.40030956481772,40.32062563603662,40.274352023871444,40.21089572967978,40.210371647738484,40.214990037144595,40.20806590348316,40.20882599586159,40.20799254383209,40.208464637249065,40.20798518850573,40.20784442355713,40.20764886674094,40.20751776430995,40.20749158383467,40.207384675736805,40.20729641419052,40.20718331574176,40.207196307339586,40.20722111987979,40.2072084823844,40.2071553629626,40.20716786485186,40.207132116168964,40.207121940928914,40.20709927872613,40.207090228021364,40.20707485299364,40.207067896321746,40.20706078143037,40.207059164134684,40.20709757897815,40.20705220147016,40.207052651511674,40.20705198525746,40.207053288719095,40.207051130699966,40.207050709834576,40.20705020328588,40.20704978883593,40.20704931357111,40.20704874715199,40.20704859950105,40.20705084885344,40.20704847460541,40.207048800762024,40.20704868202382,40.207048487133335,40.20704854846562],"feasible_probability":0.3906200255834282,"one_hot_probability":1.0,"sampled_feasible_fraction":0.3671875,"counts":{"010001011":99,"010001101":35,"010010011":7,"010010101":4,"010100011":80,"011000011":47,"011000101":22,"100001011":2,"100001101":5,"100010011":49,"100010101":47,"100100101":30,"101000011":31,"101000101":54},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12091554199287202},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":9,"fixed_variables":[0],"fixed_cost":8,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[1,2,3,4,5,6,7,8]],"components":[{"qubits":8,"penalty":20,"objective_bound":19,"offset":60,"linear":[-14,-15,-20,-14,-12,-14,-20,-15],"quadratic":[[0,1,40],[0,2,20],[0,5,20],[1,3,20],[1,4,20],[1,6,20],[2,3,40],[2,4,40],[2,5,40],[3,4,40],[3,5,40],[3,6,20],[4,5,40],[6,7,40]],"domains":[[0,1],[2,3,4,5],[6,7]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r2","start":8,"cost":6},{"index":1,"task":"t1","resource":"r0","start":7,"cost":5},{"index":2,"task":"t2","resource":"r2","start":8,"cost":0},{"index":3,"task":"t2","resource":"r0","start":8,"cost":6},{"index":4,"task":"t2","resource":"r0","start":5,"cost":8},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6},{"index":6,"task":"t3","resource":"r0","start":11,"cost":0},{"index":7,"task":"t3","resource":"r1","start":12,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource"]},{"i":0,"j":5,"reasons":["resource"]},{"i":1,"j":3,"reasons":["resource"]},{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":6,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":7,"end":10,"reserved_end":12,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r1","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,0,1,1,0,0,0,0,1],"qubo_energy":18},"components":[{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r0","start":7,"end":10,"reserved_end":12,"changed":true},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r1","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[0,1,1,0,0,0,0,1],"qubo_energy":10},"seed":367776961,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[-0.7688169560610246,1.793782963532338],"expected_energy":24.009001279018275,"initial_expected_energy":38.064177149020004,"history":[38.064177149020004,35.44876453882003,29.6497092551846,31.668244071599403,30.12818779255727,30.604405636958482,29.65323074248036,29.872641772462444,29.744020644199175,29.72525272486461,29.640560257240026,29.652478122162474,29.640580123610253,29.64172634905917,29.642753825421842,29.640728256827785,29.640788336682345,29.640555614555502,29.640523244717457,29.640522357618412,29.64051084310982,29.64050138934696,29.64048467520781,29.640505803985373,29.640554512840954,29.640491374033203,29.64048685589848,29.640486184727052,29.64048288426238,29.64048346875257,29.640481707950126,29.640480773043976,29.640480361126016,29.640484951628277,29.64047988729028,29.640478181422505,29.640476809953412,29.640477687222358,29.6404755687676,29.64047442028765,29.640472379476634,29.640471028736318,29.64046431080005,29.64046393016836,29.640459956816393,29.64045504621737,29.64045134605136,29.64047652547572,29.64044807280017,29.64044456956056,29.64045000988883,29.640440368602842,29.640438489445685,29.64045257572093,29.640434508824423,29.64043200688593,29.640429699472573,29.64042980265245,29.640427841164875,29.64042748819103,32.64523917562391,33.296565221419215,29.54052326120538,32.16211152280253,30.379755763406962,30.359011233798487,29.571246758142856,29.605931910237093,29.324221489295255,29.441522420543606,29.304914406321174,29.314517585671695,29.30287880747003,29.301500481579794,29.297599612772363,29.28993774099672,29.274624270022635,29.24355845667438,29.187033758467628,29.17230649049604,29.187549589736122,29.606940083610642,29.05349881512424,29.029573178790276,28.994951697285245,28.883526248442145,28.7557304737729,28.022624160675228,25.921520200465267,32.213618634249286,26.048418269652906,29.485254392596268,26.609497252895654,25.178647212618955,24.954129827721623,26.15112578300731,24.634625720511302,24.4741459233802,24.307682979408618,24.142649675019648,24.38378920557169,24.5372016196911,24.111613278623913,24.079660070592194,24.07903751736191,24.129828616591098,24.081101172518352,24.061425162659702,24.05017830013941,24.051511757027555,24.042553736150843,24.037378518519965,24.03215455504235,24.02510047880446,24.020788402346476,24.01432687762629,24.009001279018275,24.077714992337285,24.014336251963307,24.00905925100931],"feasible_probability":0.5023507215060747,"one_hot_probability":1.0,"sampled_feasible_fraction":0.48828125,"counts":{"01000101":56,"01000110":23,"01001001":30,"01001010":6,"01010001":42,"01010010":7,"01100001":36,"01100010":15,"10000101":28,"10000110":69,"10001001":58,"10001010":2,"10010001":52,"10010010":42,"10100001":17,"10100010":29},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11286489700432867}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.5023507215060747,"total_shots":512,"runtime_seconds":0.11304671800462529},"direct_metrics":{"exact_objective":18,"optimal_count":1,"combinations":16,"optimal_probability":0.021024335478386613,"feasible_probability":0.3906200255834281,"uniform_optimal_probability":0.0625,"uniform_feasible_probability":0.3125,"shots_for_95_percent":141,"hit_curve":[{"shots":8,"quantum":0.15632502053012715,"uniform":0.4032805261667818},{"shots":16,"quantum":0.2882125290165096,"uniform":0.6439258695482073},{"shots":32,"quantum":0.49335859615092686,"uniform":0.8732112136229997},{"shots":64,"quantum":0.7433144879058404,"uniform":0.9839246036490473},{"shots":128,"quantum":0.9341125478809591,"uniform":0.9997415816321598},{"shots":512,"quantum":0.9999811543615732,"uniform":0.9999999999999956}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":18},{"shots":16,"best_objective":22},{"shots":32,"best_objective":22},{"shots":64,"best_objective":18},{"shots":128,"best_objective":18},{"shots":512,"best_objective":18}]},"component_metrics":[{"exact_objective":10,"optimal_count":1,"combinations":16,"optimal_probability":0.14969286381967947,"feasible_probability":0.5023507215060747,"uniform_optimal_probability":0.0625,"uniform_feasible_probability":0.3125,"shots_for_95_percent":19,"hit_curve":[{"shots":8,"quantum":0.7267207914913684,"uniform":0.4032805261667818},{"shots":16,"quantum":0.9253184741968958,"uniform":0.6439258695482073},{"shots":32,"quantum":0.9944226697037203,"uniform":0.8732112136229997},{"shots":64,"quantum":0.9999688933867662,"uniform":0.9839246036490473},{"shots":128,"quantum":0.9999999990323786,"uniform":0.9997415816321598},{"shots":512,"quantum":1.0,"uniform":0.9999999999999956}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.498001805406602e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]}],"reduced_single_joint_draw_p_opt":0.14969286381967947,"diagnostic_seconds":0.0035124959977110848}
+{"instance":"n4-s1-r2.json","seed":5,"direct":{"status":"feasible","best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":7,"end":10,"reserved_end":12,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r1","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,0,1,1,0,0,0,0,1],"qubo_energy":18},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9925588707729782,-0.18824024484043367],"expected_energy":30.376355633905554,"initial_expected_energy":45.62982149861054,"history":[45.62982149861054,45.60373146459258,37.70379893434307,56.864970482756036,43.81875123199431,39.91102135482354,36.401724047170866,37.58953012938899,37.20923910009361,35.84793744256872,36.81128217489875,35.3442953171522,35.637887778527016,35.200313663864605,35.59038054514948,35.055937650927326,34.92343185722104,34.6830279067241,34.67521052219438,34.1598061064079,34.07447225332071,33.691686356315635,33.156296536976164,32.8005713282918,32.55906092680535,32.12579636186365,31.272770593458297,30.79234617055896,39.90996686194708,37.93201495466765,30.817615867035837,30.668867024990583,31.41590827585464,30.698046678703115,30.478631401902206,30.431896417319297,30.457850786195316,30.43970005799121,30.42767481169642,30.418937064771953,30.405010672670794,30.435026209946805,30.432550713719923,30.419138406441142,30.402938791742848,30.40068258219159,30.401491427978247,30.399095041699614,30.398837564364143,30.40083499097431,30.398504314110717,30.397882373272978,30.39670386373689,30.39454020006697,30.390631672078435,30.395337272788478,30.395848421288225,30.38983848189723,30.392005459417067,30.389202289262812,46.964346557827085,52.70963017640316,48.30227126135928,49.287784225293876,42.60111138523317,33.15790695605618,37.19763669943115,48.224351035841096,61.635574308678976,33.55307961328988,32.04160086157461,34.211259799738436,32.832047143913954,30.843202750815784,31.801913496584152,30.715168211063627,30.78555633814414,30.70293600356804,30.697046861034302,30.673463590750565,30.630803491518616,30.557628774149524,30.479027808762478,30.794015217458206,30.81209760956142,30.467359998948915,30.44067669686674,30.469223982620758,30.455853305217637,30.439584265716896,30.435462088242403,30.430133323965816,30.426928670162695,30.432883893879236,30.424684596613652,30.422568916515864,30.418492016772916,30.411562073244237,30.403822648332714,30.392849346841782,30.42136096796962,30.45239159958242,30.38800483136491,30.38444886851087,30.392904177214735,30.383448682510565,30.382868388317082,30.388829087186878,30.38137350867521,30.381030263029636,30.380278735910803,30.379014002417964,30.378733953140795,30.380293225457116,30.386067816947307,30.378691895963737,30.377085818413647,30.376893842020884,30.37648893281436,30.376355633905554],"feasible_probability":0.7146300977003222,"one_hot_probability":1.0,"sampled_feasible_fraction":0.716796875,"counts":{"010001011":41,"010001101":21,"010010011":9,"010010101":6,"010100011":66,"010100101":3,"011000011":12,"011000101":29,"100001011":9,"100001101":88,"100010011":60,"100010101":6,"100100011":66,"100100101":6,"101000011":3,"101000101":87},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11772932899475563},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":9,"fixed_variables":[0],"fixed_cost":8,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[1,2,3,4,5,6,7,8]],"components":[{"qubits":8,"penalty":20,"objective_bound":19,"offset":60,"linear":[-14,-15,-20,-14,-12,-14,-20,-15],"quadratic":[[0,1,40],[0,2,20],[0,5,20],[1,3,20],[1,4,20],[1,6,20],[2,3,40],[2,4,40],[2,5,40],[3,4,40],[3,5,40],[3,6,20],[4,5,40],[6,7,40]],"domains":[[0,1],[2,3,4,5],[6,7]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r2","start":8,"cost":6},{"index":1,"task":"t1","resource":"r0","start":7,"cost":5},{"index":2,"task":"t2","resource":"r2","start":8,"cost":0},{"index":3,"task":"t2","resource":"r0","start":8,"cost":6},{"index":4,"task":"t2","resource":"r0","start":5,"cost":8},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6},{"index":6,"task":"t3","resource":"r0","start":11,"cost":0},{"index":7,"task":"t3","resource":"r1","start":12,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource"]},{"i":0,"j":5,"reasons":["resource"]},{"i":1,"j":3,"reasons":["resource"]},{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":6,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":7,"end":10,"reserved_end":12,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r1","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,0,1,1,0,0,0,0,1],"qubo_energy":18},"components":[{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r0","start":7,"end":10,"reserved_end":12,"changed":true},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r1","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[0,1,1,0,0,0,0,1],"qubo_energy":10},"seed":803261128,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9876567939838665,2.95539169987922],"expected_energy":19.982908994210227,"initial_expected_energy":31.604362153078995,"history":[31.604362153078995,31.6968501751166,20.129639032220638,45.91366801821643,26.32575489184306,21.628833273213946,23.422094593423715,20.310367009855952,20.26334371594106,20.35350660961992,20.211841069710513,20.00935315643269,19.985436553423728,20.016251981653326,19.985835803270305,19.991413078918804,19.985837457956592,19.989123577603404,19.983994076706246,19.983589997344936,19.984154190753248,19.9835464482299,19.983603504197326,19.98351734760231,19.983620667478856,19.98346740528814,19.983466942392226,19.983446182314957,19.983425917656405,19.983386862264414,19.983314264402996,19.98319721605965,19.983648424741983,19.983606394319622,19.983194029721805,19.983155097789535,19.983091723944924,19.98300910460099,19.983019217699802,19.98308538727896,19.983024925779958,19.983004995365423,19.982995148607884,19.982986608725664,19.982974018140965,19.983027549076414,19.9829594927436,19.98295803778901,19.982980187319246,19.982958575372216,19.982949061911008,19.982939581220602,19.98294864928282,19.982935415790788,19.98293179145321,19.982923718494362,19.982908994210227,19.98293031547967,19.98292748198778,19.982909991683734,33.941197812219464,36.71439404706161,31.313979652247234,30.9354371756822,32.434832481902454,32.934340132102946,28.279353722336158,26.919469284778476,37.91512099989295,26.261297212795537,23.599534586341825,25.77299136492183,24.380512305632465,23.705910898404465,22.95054701576199,21.86613496546392,23.599180156807357,23.642640860097003,22.34520935530725,21.75786000847563,22.13956583740491,21.7306313064058,21.59911700174558,21.499740818458008,21.308546557556877,21.111474722977174,20.774480182791294,22.013214066603172,21.31785575234543,20.884250455764416,20.74135702915138,20.857903216508717,20.72960070422244,20.696644573409802,20.667968497107246,20.663910552095402,20.63100662850301,20.600345585092896,20.54482270101301,20.448075441102432,20.32463666069901,20.24533183222293,20.093842894755106,20.147898816010713,20.71330111864191,20.15186925840559,20.112158898754508,20.086947273285652,20.1754410782372,20.065356382295114,20.05747057424847,20.050318061169726,20.05382012422808,20.046354421451525,20.046464169236422,20.047321719790602,20.044572220199555,20.041547480624942,20.038962987938653,20.06037429948428],"feasible_probability":0.6999730903639705,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.716796875,"counts":{"01000101":42,"01000110":15,"01001001":9,"01001010":4,"01010001":62,"01010010":1,"01100001":13,"01100010":28,"10000101":18,"10000110":75,"10001001":89,"10001010":4,"10010001":61,"10010010":9,"10100001":2,"10100010":80},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10854482099239249}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.6999730903639705,"total_shots":512,"runtime_seconds":0.10871962099918164},"direct_metrics":{"exact_objective":18,"optimal_count":1,"combinations":16,"optimal_probability":0.16066452737250186,"feasible_probability":0.7146300977003222,"uniform_optimal_probability":0.0625,"uniform_feasible_probability":0.3125,"shots_for_95_percent":18,"hit_curve":[{"shots":8,"quantum":0.7536885369620371,"uniform":0.4032805261667818},{"shots":16,"quantum":0.9393306631760983,"uniform":0.6439258695482073},{"shots":32,"quantum":0.996319231569348,"uniform":0.8732112136229997},{"shots":64,"quantum":0.9999864519437599,"uniform":0.9839246036490473},{"shots":128,"quantum":0.9999999998164502,"uniform":0.9997415816321598},{"shots":512,"quantum":1.0,"uniform":0.9999999999999956}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":18},{"shots":16,"best_objective":18},{"shots":32,"best_objective":18},{"shots":64,"best_objective":18},{"shots":128,"best_objective":18},{"shots":512,"best_objective":18}]},"component_metrics":[{"exact_objective":10,"optimal_count":1,"combinations":16,"optimal_probability":0.15846469951558195,"feasible_probability":0.6999730903639706,"uniform_optimal_probability":0.0625,"uniform_feasible_probability":0.3125,"shots_for_95_percent":18,"hit_curve":[{"shots":8,"quantum":0.7484764194103173,"uniform":0.4032805261667818},{"shots":16,"quantum":0.9367358884073455,"uniform":0.6439258695482073},{"shots":32,"quantum":0.9959976521843922,"uniform":0.8732112136229997},{"shots":64,"quantum":0.9999839812119629,"uniform":0.9839246036490473},{"shots":128,"quantum":0.9999999997433985,"uniform":0.9997415816321598},{"shots":512,"quantum":1.0,"uniform":0.9999999999999956}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]}],"reduced_single_joint_draw_p_opt":0.15846469951558195,"diagnostic_seconds":0.0034997990005649626}
+{"instance":"n4-s1-r2.json","seed":6,"direct":{"status":"feasible","best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":7,"end":10,"reserved_end":12,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r1","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,0,1,1,0,0,0,0,1],"qubo_energy":18},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.6398833336802,0.428485068769753],"expected_energy":37.87475733127819,"initial_expected_energy":43.041544934726986,"history":[43.041544934726986,42.583723838297274,44.41373725065601,45.87747318824263,45.932888477582324,39.877970698649264,43.15949943416346,40.17758635310335,42.35499021890992,39.41558777034493,39.38957592616691,39.00601202305259,38.784433678043,38.508208072908005,38.15555096522044,38.541679496707566,38.74762739434772,38.08701311376639,38.047523545547655,38.23891995489669,38.00166279417386,37.98890537245689,37.95775018904881,37.92247287651611,37.90868670114651,37.88016926073817,37.98630547539505,37.96269471369595,37.91806144125444,37.878363082701426,37.87860686908339,37.87668787735498,37.87598900438155,37.88327445750552,37.87615542325914,37.87667121420365,37.87658826055967,37.87518042821455,37.87496415688615,37.87513543707606,37.87494058797217,37.87498605964761,37.874920808234435,37.87498763415441,37.874894765623274,37.87487473478932,37.874840475338615,37.874806081890995,37.87479632471337,37.87475910770341,37.875030902326664,37.87490684654763,37.874818723598025,37.87475813513745,37.87476335959038,37.8747624735871,37.8747574313086,37.87475850206867,37.87475733127819,37.87475865384288,41.0535383996251,43.172078557400575,45.501811741303534,42.07903174665458,38.14543765704394,45.67896102416212,39.430330055533204,39.50946355485811,39.3959011490796,38.19134078417207,39.13634248407968,37.96025993685728,38.53847250193392,38.039419202037756,38.00630996862259,37.94752264671578,37.92639862642814,37.91869329142949,37.91035076499221,37.91118758451607,37.90758906829491,37.90562476627846,37.906805455973256,37.902375524042725,37.89969910567388,37.902176920404536,37.89753687480094,37.897587789288394,37.89624758262916,37.89518988833671,37.8940971146573,37.89737043658419,37.89262200294116,37.891325516646376,37.88904396512049,37.88502333349351,37.88353259885535,37.87948877967487,37.89377752048148,37.876841634944626,37.88156456075882,37.876350452081844,37.87662270040635,37.87612789567402,37.876586112125,37.87606197520215,37.875963941958595,37.875847765195104,37.87568136215266,37.875929124509256,37.87554822010982,37.87538390152818,37.8753245099891,37.876784867626625,37.8750293379052,37.87502562198829,37.87494024269249,37.874852766734016,37.87480075473212,37.87500157154267],"feasible_probability":0.46273113978291336,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.439453125,"counts":{"010001011":77,"010001101":11,"010010011":31,"010010101":7,"010100011":78,"010100101":18,"011000011":48,"011000101":16,"100001011":20,"100001101":62,"100010011":28,"100010101":9,"100100011":20,"100100101":35,"101000011":15,"101000101":37},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11761594300332945},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":9,"fixed_variables":[0],"fixed_cost":8,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[1,2,3,4,5,6,7,8]],"components":[{"qubits":8,"penalty":20,"objective_bound":19,"offset":60,"linear":[-14,-15,-20,-14,-12,-14,-20,-15],"quadratic":[[0,1,40],[0,2,20],[0,5,20],[1,3,20],[1,4,20],[1,6,20],[2,3,40],[2,4,40],[2,5,40],[3,4,40],[3,5,40],[3,6,20],[4,5,40],[6,7,40]],"domains":[[0,1],[2,3,4,5],[6,7]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r2","start":8,"cost":6},{"index":1,"task":"t1","resource":"r0","start":7,"cost":5},{"index":2,"task":"t2","resource":"r2","start":8,"cost":0},{"index":3,"task":"t2","resource":"r0","start":8,"cost":6},{"index":4,"task":"t2","resource":"r0","start":5,"cost":8},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6},{"index":6,"task":"t3","resource":"r0","start":11,"cost":0},{"index":7,"task":"t3","resource":"r1","start":12,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource"]},{"i":0,"j":5,"reasons":["resource"]},{"i":1,"j":3,"reasons":["resource"]},{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":6,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":7,"end":10,"reserved_end":12,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r1","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,0,1,1,0,0,0,0,1],"qubo_energy":18},"components":[{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r0","start":7,"end":10,"reserved_end":12,"changed":true},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r1","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[0,1,1,0,0,0,0,1],"qubo_energy":10},"seed":3153149895,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.571915027656183,0.43008510901298047],"expected_energy":24.79195543074225,"initial_expected_energy":29.71612018253453,"history":[29.71612018253453,29.8951960036068,32.150520552283155,35.612873031100456,31.386294701690403,32.21404448573388,29.688474656338965,29.575919413509553,29.749632059152997,29.58837736396386,29.598810519990245,29.574082966870478,29.569384481192806,29.567195640729487,29.56934404812506,29.566290565260736,29.565516361617963,29.56456886843531,29.562661335662117,29.558945730575118,29.550894949404718,29.55235950501335,29.574489180943665,29.549012393420682,29.55731463771604,29.54793236012468,29.545601578749633,29.54140663375025,29.533413099065232,29.515560964065063,29.543257466279112,29.624687195812477,29.509356635559694,29.529480499383446,29.512669121415644,29.50767920108378,29.510625415159957,29.507078028858302,29.506017704967245,29.50480039572163,29.50255237388661,29.501952397999386,29.494788184137832,29.495754617597573,29.493691997289616,29.495886400083997,29.4921031776065,29.49070203870621,29.48808046816292,29.482714827228758,29.471767620939538,29.44995291361399,29.405114616236,29.284168821044595,32.24279247738364,30.193318624343483,29.258302346273517,29.826897184757932,29.256394131610207,29.22547569139467,30.413743439507343,25.44904116868183,28.899533758806136,30.576954822957514,28.957527335149543,25.107015597124235,28.115911764640977,25.025039642871405,24.96789663825906,25.016571149294858,25.164031032738645,24.948395360931467,24.895880248861275,24.894683362735655,24.883878922508273,24.87399826946661,24.856728093756395,24.835341351965884,24.927666025603113,24.820290872290055,24.822024469502942,24.82727826934154,24.818744955066492,24.819080387526775,24.819459489939554,24.817472191407568,24.815484910275565,24.81510694782592,24.819841802247463,24.81530788944499,24.813166198322357,24.810394279682107,24.81311541697705,24.808251028606538,24.806920626142194,24.80897820454885,24.80633237173255,24.805297201982988,24.80433282194897,24.803466803005776,24.801642187913878,24.800101094797313,24.797582437002205,24.795807501272353,24.794816556084122,24.792770648049775,24.79802710517918,24.81461752415987,24.79317955926811,24.793233403859848,24.793634672414164,24.792161586401186,24.79201635786098,24.791977541756804,24.79206723134661,24.791966911665597,24.791955894265172,24.791969665464542,24.79196981979638,24.79195543074225],"feasible_probability":0.47217897265163566,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.501953125,"counts":{"01000101":78,"01000110":8,"01001001":18,"01001010":12,"01010001":102,"01010010":23,"01100001":28,"01100010":16,"10000101":14,"10000110":57,"10001001":41,"10001010":15,"10010001":29,"10010010":16,"10100001":27,"10100010":28},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11077732800913509}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.47217897265163566,"total_shots":512,"runtime_seconds":0.11094516099547036},"direct_metrics":{"exact_objective":18,"optimal_count":1,"combinations":16,"optimal_probability":0.10234379810541053,"feasible_probability":0.4627311397829134,"uniform_optimal_probability":0.0625,"uniform_feasible_probability":0.3125,"shots_for_95_percent":28,"hit_curve":[{"shots":8,"quantum":0.578419721769329,"uniform":0.4032805261667818},{"shots":16,"quantum":0.82227006900695,"uniform":0.6439258695482073},{"shots":32,"quantum":0.9684120716292057,"uniform":0.8732112136229997},{"shots":64,"quantum":0.9990022027812415,"uniform":0.9839246036490473},{"shots":128,"quantum":0.9999990044007102,"uniform":0.9997415816321598},{"shots":512,"quantum":1.0,"uniform":0.9999999999999956}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.8041124150158794e-16,"independent_samples":[{"shots":8,"best_objective":18},{"shots":16,"best_objective":22},{"shots":32,"best_objective":18},{"shots":64,"best_objective":18},{"shots":128,"best_objective":18},{"shots":512,"best_objective":18}]},"component_metrics":[{"exact_objective":10,"optimal_count":1,"combinations":16,"optimal_probability":0.1066169627842777,"feasible_probability":0.47217897265163566,"uniform_optimal_probability":0.0625,"uniform_feasible_probability":0.3125,"shots_for_95_percent":27,"hit_curve":[{"shots":8,"quantum":0.5942097409335314,"uniform":0.4032805261667818},{"shots":16,"quantum":0.8353342656467683,"uniform":0.6439258695482073},{"shots":32,"quantum":0.972885195929911,"uniform":0.8732112136229997},{"shots":64,"quantum":0.9992647874002407,"uniform":0.9839246036490473},{"shots":128,"quantum":0.9999994594624332,"uniform":0.9997415816321598},{"shots":512,"quantum":1.0,"uniform":0.9999999999999956}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.7755575615628914e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]}],"reduced_single_joint_draw_p_opt":0.1066169627842777,"diagnostic_seconds":0.0037700340035371482}
+{"instance":"n4-s1-r2.json","seed":7,"direct":{"status":"feasible","best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":7,"end":10,"reserved_end":12,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r1","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,0,1,1,0,0,0,0,1],"qubo_energy":18},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.1086580547315752,2.9550070295215045],"expected_energy":30.534953126987062,"initial_expected_energy":45.80285386639746,"history":[45.80285386639746,45.21845440199762,43.57924850781017,44.26970538880466,45.046407753918785,41.91950097690298,41.062794998434185,44.30644657739648,41.32308004790773,41.84594256135963,41.12047933934403,40.94344088203134,41.06736169889405,40.79795574749861,40.68492278724711,40.45774154372629,40.37226794359282,39.67124551597955,40.47182043345935,39.52128825184009,40.08619318142446,39.51333085576632,39.321041890676454,39.21283111872657,39.064200596601985,38.922757532111795,38.6953318142959,38.36763262399048,37.9832889057872,38.56742557066227,39.81622479140701,38.10095588610396,38.11858250283788,38.00627859081634,37.96686020938813,37.94860017806831,37.96645072333537,37.938135407364825,37.93842343292243,37.93024817977811,37.923201766986125,37.91389921029743,37.94608925361014,37.905513115250734,37.90181696722715,37.89593225829844,37.88715498570484,37.89992885235194,37.90476571626254,37.88724452813431,37.886195084722225,37.886593928026926,37.889436572170794,37.886165554463446,37.88509699585056,37.884333233974,37.885332663536225,37.883570390171094,37.882748316374766,37.881237516757224,43.969027392201625,42.504208640081806,47.302442469341294,45.17320488931499,41.53307878361577,45.37383218738774,41.61955789849618,43.418300214831994,41.26926517377716,41.02502070817664,41.18808965918068,40.86120591947197,40.68791744793817,40.287926821227074,38.69320198823454,46.47706389522837,45.15066086507021,39.955668528379015,38.85916493238409,38.93065820612943,38.64460232508327,39.578054847357365,38.320420072147584,38.0516674486507,37.6563707045966,36.65475170048097,34.80691604911193,31.160684590288717,36.134955056023685,67.28500995751386,41.7510634010526,31.04275048565314,37.39888486912864,31.167883726901188,31.611313220533674,30.86905314468143,30.82439086226898,30.788950290303777,30.87743481534322,30.758058970571092,30.73988456803429,30.71995873693138,30.692584688378314,30.657438935033717,30.64057617865783,30.74811119062266,30.614468474816494,30.601862779133846,30.585392732916567,30.556835952882718,30.601727593526064,30.560118816975063,30.552948622816118,30.5549519783148,30.56670576731697,30.53859567179584,30.543455972875783,30.546164847208587,30.538976144409197,30.534953126987062],"feasible_probability":0.7304175568362904,"one_hot_probability":1.0,"sampled_feasible_fraction":0.72265625,"counts":{"010001011":42,"010001101":11,"010010011":9,"010010101":7,"010100011":64,"010100101":4,"011000011":11,"011000101":27,"100001011":22,"100001101":85,"100010011":68,"100010101":4,"100100011":72,"100100101":3,"101000011":2,"101000101":81},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11655443199560978},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":9,"fixed_variables":[0],"fixed_cost":8,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[1,2,3,4,5,6,7,8]],"components":[{"qubits":8,"penalty":20,"objective_bound":19,"offset":60,"linear":[-14,-15,-20,-14,-12,-14,-20,-15],"quadratic":[[0,1,40],[0,2,20],[0,5,20],[1,3,20],[1,4,20],[1,6,20],[2,3,40],[2,4,40],[2,5,40],[3,4,40],[3,5,40],[3,6,20],[4,5,40],[6,7,40]],"domains":[[0,1],[2,3,4,5],[6,7]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r2","start":8,"cost":6},{"index":1,"task":"t1","resource":"r0","start":7,"cost":5},{"index":2,"task":"t2","resource":"r2","start":8,"cost":0},{"index":3,"task":"t2","resource":"r0","start":8,"cost":6},{"index":4,"task":"t2","resource":"r0","start":5,"cost":8},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6},{"index":6,"task":"t3","resource":"r0","start":11,"cost":0},{"index":7,"task":"t3","resource":"r1","start":12,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource"]},{"i":0,"j":5,"reasons":["resource"]},{"i":1,"j":3,"reasons":["resource"]},{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":6,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":7,"end":10,"reserved_end":12,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r1","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,0,1,1,0,0,0,0,1],"qubo_energy":18},"components":[{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r0","start":7,"end":10,"reserved_end":12,"changed":true},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r1","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[0,1,1,0,0,0,0,1],"qubo_energy":10},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.7719352496622381,1.3505735896096658],"expected_energy":24.00752426628361,"initial_expected_energy":27.321618172533455,"history":[27.321618172533455,30.801245623050914,35.2905206408054,29.40154943014406,31.17776403339812,28.138533748499693,27.148562457746962,26.816247181059644,26.887143549893487,26.6511152088504,26.552770322624717,26.64885743027235,26.501328871700544,26.41127948042217,26.316009257045934,26.506234089574185,26.28700100343381,26.192420905720688,26.016914257949036,25.676051179683427,25.16831712525834,25.631246518386046,26.758333161394482,25.004588745491546,24.801366890758096,24.908647374513997,24.68300962528138,24.564016536334634,24.898805168885154,24.400686970478006,24.36900414795594,24.271198805847778,24.20021175218798,24.114071110888673,24.10163425851684,24.02395485285915,24.14005172784843,24.142440933066,24.029946815580466,24.031099068902265,24.02754610171551,24.020006622632454,24.017984777224438,24.02510121681429,24.01617468209934,24.015036215942068,24.013701197136335,24.01148442702713,24.00914611907218,24.015027768654726,24.015467564887683,24.008801992278386,24.00833827410529,24.008555960452078,24.008755560607455,24.00833652470196,24.008243471744613,24.008185426925124,24.008257329343323,24.008106510205348,27.085829358681195,30.652378158499317,35.668909014339036,29.43439278227472,30.61235777915376,27.7653361868609,27.81460308877218,27.08261166642128,26.62695322145636,26.367001139219138,25.540204195708004,25.52347886233202,24.92701734248066,25.156703680985533,25.182937750053917,25.156696417507973,24.81721045266442,24.72363341717866,24.776282794155264,24.664736964707746,24.644976820773472,24.715590983821265,24.640170829616146,24.61520357064813,24.57066873211837,24.48742634847447,24.406443029535275,24.273833696702898,24.272113792920564,24.486009252401807,24.28022748577606,24.202431450709305,24.16150268074431,24.171526293044842,24.147157854394813,24.135293727051142,24.115035747549257,24.080306633783046,24.04768541339224,24.063977961762347,24.139068914232542,24.05977940277615,24.030485524435615,24.02877092891115,24.040285496592077,24.02194771028606,24.018683349830816,24.015825318014773,24.018898131215174,24.015819960246183,24.012407101553777,24.010525362014192,24.010045807531185,24.007785876298204,24.01137288922778,24.01338298275397,24.008225717024928,24.00752426628361,24.0075783696118,24.00756678461024],"feasible_probability":0.502356529505599,"one_hot_probability":1.0,"sampled_feasible_fraction":0.548828125,"counts":{"01000101":38,"01000110":18,"01001001":25,"01001010":6,"01010001":42,"01010010":6,"01100001":35,"01100010":11,"10000101":27,"10000110":79,"10001001":61,"10001010":4,"10010001":57,"10010010":43,"10100001":18,"10100010":42},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11259296600474045}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.502356529505599,"total_shots":512,"runtime_seconds":0.11277238800539635},"direct_metrics":{"exact_objective":18,"optimal_count":1,"combinations":16,"optimal_probability":0.16247421258501915,"feasible_probability":0.7304175568362904,"uniform_optimal_probability":0.0625,"uniform_feasible_probability":0.3125,"shots_for_95_percent":17,"hit_curve":[{"shots":8,"quantum":0.7579051768830676,"uniform":0.4032805261667818},{"shots":16,"quantum":0.9413900966199812,"uniform":0.6439258695482073},{"shots":32,"quantum":0.9965648792257848,"uniform":0.8732112136229997},{"shots":64,"quantum":0.9999881999452666,"uniform":0.9839246036490473},{"shots":128,"quantum":0.9999999998607587,"uniform":0.9997415816321598},{"shots":512,"quantum":1.0,"uniform":0.9999999999999956}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":18},{"shots":16,"best_objective":18},{"shots":32,"best_objective":18},{"shots":64,"best_objective":18},{"shots":128,"best_objective":18},{"shots":512,"best_objective":18}]},"component_metrics":[{"exact_objective":10,"optimal_count":1,"combinations":16,"optimal_probability":0.15000971278604633,"feasible_probability":0.502356529505599,"uniform_optimal_probability":0.0625,"uniform_feasible_probability":0.3125,"shots_for_95_percent":19,"hit_curve":[{"shots":8,"quantum":0.7275343835380899,"uniform":0.4032805261667818},{"shots":16,"quantum":0.9257624878460313,"uniform":0.6439258695482073},{"shots":32,"quantum":0.9944887917891894,"uniform":0.8732112136229997},{"shots":64,"quantum":0.9999696265840571,"uniform":0.9839246036490473},{"shots":128,"quantum":0.9999999990774556,"uniform":0.9997415816321598},{"shots":512,"quantum":1.0,"uniform":0.9999999999999956}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]}],"reduced_single_joint_draw_p_opt":0.15000971278604633,"diagnostic_seconds":0.003966035001212731}
+{"instance":"n4-s1-r2.json","seed":8,"direct":{"status":"feasible","best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":7,"end":10,"reserved_end":12,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r1","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,0,1,1,0,0,0,0,1],"qubo_energy":18},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.6364096782322153,0.4285197955712687],"expected_energy":37.874916950721776,"initial_expected_energy":43.93108269400744,"history":[43.93108269400744,43.72816548155745,47.50539743661444,40.50676701398552,44.93474785690146,43.84218844618836,49.00662285158984,41.23980957487941,41.583681213609914,40.66702987238315,40.21525589466795,40.74374323994685,39.900834638487765,39.64379393559936,39.18136328147612,39.05282978501904,38.40743500184065,39.756585449610355,38.21103195909602,38.22060534245925,38.331270560222094,38.13586925377611,38.28445401760504,38.164509080309216,38.11323136686754,38.070411826927135,38.01092050984025,38.132562591646405,37.98150662917445,37.966174829267764,38.03022180566624,37.95152794292255,37.94157582958147,37.93268372370588,37.92968017992405,37.90937452014026,37.90757283302236,37.89745858339044,37.89190264360238,37.88224191227128,37.8757057756487,37.922869938993855,37.90176691478679,37.876144295092644,37.87624976574939,37.876792183275285,37.87708305577171,37.875687050911935,37.876075339318106,37.87566071457218,37.87536831639861,37.875055203329744,37.875157772086396,37.874993955302685,37.87494462175812,37.874951861592535,37.8749273811608,37.87492783761305,37.87493346819519,37.874916950721776,51.25058218654452,45.26730361606329,46.32901993325839,39.55121419786577,48.04740792652757,47.568924930830846,40.752038562432205,40.66229931215446,40.04775136693513,39.59622711343093,39.22518306815649,39.58789177836768,39.26169521429888,39.22856883704406,39.22375039704726,39.23722509921775,39.224199693857074,39.216689009990844,39.216313785751254,39.220412101697,39.21361304425079,39.211913607322586,39.21317405441028,39.212881264987004,39.21288967879549,39.21205536299993,39.21180406654742,39.21163284907582,39.21150879162338,39.211758255186005,39.21141801868124,39.21136591478993,39.211466549147325,39.211271686634674,39.21119933409037,39.211073510521814,39.21097741987673,39.2109153017294,39.21087761507227,39.21086244174597,39.21089717189557,39.21092288547011,39.21085766865384,39.21086144908365,39.21085832786274,39.21085844470512,39.21085799794421,39.210857567307855,39.21085747180318,39.210857576636656,39.21085741599064,39.2108573967057,39.21085749286546,39.21085737046852,39.210857355412315,39.210857341221434,39.210857331265125,39.210857326409936,39.21085731943993,39.21085731770807],"feasible_probability":0.46312079573545994,"one_hot_probability":1.0,"sampled_feasible_fraction":0.455078125,"counts":{"010001011":70,"010001101":9,"010010011":20,"010010101":8,"010100011":83,"010100101":26,"011000011":39,"011000101":22,"100001011":18,"100001101":51,"100010011":32,"100010101":12,"100100011":19,"100100101":36,"101000011":19,"101000101":48},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12063589900208171},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":9,"fixed_variables":[0],"fixed_cost":8,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[1,2,3,4,5,6,7,8]],"components":[{"qubits":8,"penalty":20,"objective_bound":19,"offset":60,"linear":[-14,-15,-20,-14,-12,-14,-20,-15],"quadratic":[[0,1,40],[0,2,20],[0,5,20],[1,3,20],[1,4,20],[1,6,20],[2,3,40],[2,4,40],[2,5,40],[3,4,40],[3,5,40],[3,6,20],[4,5,40],[6,7,40]],"domains":[[0,1],[2,3,4,5],[6,7]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r2","start":8,"cost":6},{"index":1,"task":"t1","resource":"r0","start":7,"cost":5},{"index":2,"task":"t2","resource":"r2","start":8,"cost":0},{"index":3,"task":"t2","resource":"r0","start":8,"cost":6},{"index":4,"task":"t2","resource":"r0","start":5,"cost":8},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6},{"index":6,"task":"t3","resource":"r0","start":11,"cost":0},{"index":7,"task":"t3","resource":"r1","start":12,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource"]},{"i":0,"j":5,"reasons":["resource"]},{"i":1,"j":3,"reasons":["resource"]},{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":6,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":7,"end":10,"reserved_end":12,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r1","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,0,1,1,0,0,0,0,1],"qubo_energy":18},"components":[{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r0","start":7,"end":10,"reserved_end":12,"changed":true},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r1","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[0,1,1,0,0,0,0,1],"qubo_energy":10},"seed":3257320810,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.7726607645642735,1.3511469174937925],"expected_energy":24.00749517890042,"initial_expected_energy":43.87733674439053,"history":[43.87733674439053,39.862127679019196,31.222889690465582,29.64368158062806,26.796112104325594,38.153044519966805,28.587924683980702,26.546653591106292,28.99328463984638,26.333500262963412,26.010858870868432,25.679749773105748,25.217136350680093,25.098893704402663,24.704269958604655,24.242886463774873,24.048448011736014,25.359006773579203,24.26913793302464,24.4347664046328,24.084093761383265,24.095070845600922,24.043876560745222,24.034626726251297,24.029834386059747,24.035311076678816,24.027582568513598,24.025802427235213,24.023695395414155,24.01998284541203,24.01628411972147,24.01274673111572,24.011774494920147,24.039597218566712,24.008202794521107,24.0113492884621,24.008031554982615,24.00918232038431,24.008004099259388,24.007910202033784,24.00776760906795,24.00762924037372,24.007688280061906,24.007814701192395,24.00766179523206,24.007599792677794,24.007579676090018,24.007635447700057,24.00756357658932,24.007554091963904,24.00754171918374,24.007522542089596,24.007496953620382,24.007612677417328,24.00753052961447,24.007495276526228,24.007505569312407,24.007495797330712,24.00749517890042,24.00749737682299,29.20737018008804,31.09859935561259,32.825804889804935,29.425395016111864,33.02408855481055,30.24921758129414,27.96230555894087,28.784971445304258,27.758278848252463,27.58941630899434,27.19374769404547,26.423820819047315,25.088661388040457,28.0165788954042,29.464621230288927,26.051345202330246,24.954797884007792,25.269755795849182,24.90762367119399,25.47484997543833,24.72153474588776,24.62639878259298,24.52223223817086,24.407936878406076,24.30440740616999,24.285316102462332,25.023048794323074,24.12630340124492,24.125085736223014,24.090771049000512,24.044074471840162,24.020152257006792,24.090958644912877,24.026070905881472,24.023847907920178,24.024471644111443,24.01778563474221,24.014812599701834,24.01299922656559,24.01910953491913,24.01190029494274,24.011317882915883,24.013271275869418,24.010762622690706,24.010363700895027,24.00995939245719,24.00933494604992,24.009232903739218,24.00814504716317,24.009117674665568,24.00923142981756,24.00827886345099,24.0081352779442,24.008053517271968,24.007978399288916,24.00784980856083,24.007706771449605,24.008588813820126,24.00764400986518,24.007620401526292],"feasible_probability":0.5023564488955425,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.482421875,"counts":{"01000101":54,"01000110":15,"01001001":27,"01001010":8,"01010001":27,"01010010":8,"01100001":35,"01100010":21,"10000101":30,"10000110":70,"10001001":72,"10010001":52,"10010010":52,"10100001":15,"10100010":26},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11498627599212341}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.5023564488955425,"total_shots":512,"runtime_seconds":0.11516560000018217},"direct_metrics":{"exact_objective":18,"optimal_count":1,"combinations":16,"optimal_probability":0.10236088597139892,"feasible_probability":0.46312079573545994,"uniform_optimal_probability":0.0625,"uniform_feasible_probability":0.3125,"shots_for_95_percent":28,"hit_curve":[{"shots":8,"quantum":0.5784839194194403,"uniform":0.4032805261667818},{"shots":16,"quantum":0.8223241938120032,"uniform":0.6439258695482073},{"shots":32,"quantum":0.9684313078954454,"uniform":0.8732112136229997},{"shots":64,"quantum":0.9990034176788078,"uniform":0.9839246036490473},{"shots":128,"quantum":0.999999006823677,"uniform":0.9997415816321598},{"shots":512,"quantum":1.0,"uniform":0.9999999999999956}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":24},{"shots":16,"best_objective":18},{"shots":32,"best_objective":18},{"shots":64,"best_objective":18},{"shots":128,"best_objective":18},{"shots":512,"best_objective":18}]},"component_metrics":[{"exact_objective":10,"optimal_count":1,"combinations":16,"optimal_probability":0.15007567549259218,"feasible_probability":0.5023564488955427,"uniform_optimal_probability":0.0625,"uniform_feasible_probability":0.3125,"shots_for_95_percent":19,"hit_curve":[{"shots":8,"quantum":0.7277034931283939,"uniform":0.4032805261667818},{"shots":16,"quantum":0.9258546123455214,"uniform":0.6439258695482073},{"shots":32,"quantum":0.9945024614895671,"uniform":0.8732112136229997},{"shots":64,"quantum":0.9999697770703263,"uniform":0.9839246036490473},{"shots":128,"quantum":0.9999999990865746,"uniform":0.9997415816321598},{"shots":512,"quantum":1.0,"uniform":0.9999999999999956}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":10},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]}],"reduced_single_joint_draw_p_opt":0.15007567549259218,"diagnostic_seconds":0.0034966730017913505}
+{"instance":"n4-s1-r2.json","seed":9,"direct":{"status":"feasible","best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":7,"end":10,"reserved_end":12,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r1","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,0,1,1,0,0,0,0,1],"qubo_energy":18},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.7815102837437431,1.349402437642423],"expected_energy":36.114884491146526,"initial_expected_energy":36.93082539294787,"history":[36.93082539294787,39.937218760870515,54.81745204981262,44.08877253901794,50.65098125338557,36.91508700670656,36.76350713682779,36.705215778394454,37.34303746644313,36.164814191811075,36.609484805108174,36.239915846441185,36.17634691390877,36.15896237208917,36.2155091645199,36.147810422892434,36.13989706655035,36.12917381073095,36.129848943366994,36.130790856600726,36.126009860465885,36.12996942594323,36.12427055270253,36.12288115181268,36.12384332739327,36.1221066989701,36.122022255567444,36.1230222038415,36.121842476977896,36.12150244450673,36.12086645436719,36.11974540575788,36.117895518691554,36.12203735319119,36.120538117993256,36.11801806295793,36.117748632198406,36.11765378770549,36.11827714978163,36.117392748730865,36.11717996039385,36.11685003043274,36.11624592651326,36.116094767384816,36.11575722700758,36.11875387850405,36.11693942445257,36.11607238439532,36.11523414051156,36.11504479774807,36.11523988962441,36.115001606151345,36.11499800472371,36.114947829468605,36.114940384137256,36.11489150927959,36.11501042526727,36.114941765056535,36.114884491146526,36.11494145301694,45.487417317095904,45.84596688158999,46.280547837034575,39.093113403503736,45.2105450079551,43.37487260920355,46.43022024895162,38.76906621781654,38.455271720039555,38.85206883256633,38.99383319870799,37.89564044138522,38.229833740711335,37.87600512346789,37.907573295973066,37.87528533201835,37.878784436913264,37.87861476616181,37.876157188531074,37.875291390005565,37.87524665412315,37.87517775708799,37.87506653562685,37.87503342951993,37.87656095811154,37.874811003344405,37.874934478259696,37.87480257004228,37.874879431027566,37.87480225492688,37.874773196697134,37.87478560770134,37.874822311581596,37.87477295946478,37.87476766617732,37.87476294249845,37.874759628655724,37.874767849902895,37.87475982122404,37.87475945980799,37.87475997571502,37.87476003325634,37.874759315027,37.87475899684168,37.87475871811419,37.87475842823922,37.87475831793249,37.8747580289256,37.87475786948056,37.874757578074984,37.87475790925181,37.87475801249826,37.87475747901727,37.87475742916483,37.87475738240978,37.874757376867606,37.874757442033044,37.874757340160606,37.874757328274306,37.874757312224276],"feasible_probability":0.5117198610113363,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.54296875,"counts":{"010001011":45,"010001101":21,"010010011":33,"010010101":2,"010100011":39,"010100101":8,"011000011":32,"011000101":14,"100001011":18,"100001101":89,"100010011":55,"100010101":1,"100100011":63,"100100101":45,"101000011":15,"101000101":32},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11890980799216777},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":9,"fixed_variables":[0],"fixed_cost":8,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[1,2,3,4,5,6,7,8]],"components":[{"qubits":8,"penalty":20,"objective_bound":19,"offset":60,"linear":[-14,-15,-20,-14,-12,-14,-20,-15],"quadratic":[[0,1,40],[0,2,20],[0,5,20],[1,3,20],[1,4,20],[1,6,20],[2,3,40],[2,4,40],[2,5,40],[3,4,40],[3,5,40],[3,6,20],[4,5,40],[6,7,40]],"domains":[[0,1],[2,3,4,5],[6,7]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r2","start":8,"cost":6},{"index":1,"task":"t1","resource":"r0","start":7,"cost":5},{"index":2,"task":"t2","resource":"r2","start":8,"cost":0},{"index":3,"task":"t2","resource":"r0","start":8,"cost":6},{"index":4,"task":"t2","resource":"r0","start":5,"cost":8},{"index":5,"task":"t2","resource":"r2","start":6,"cost":6},{"index":6,"task":"t3","resource":"r0","start":11,"cost":0},{"index":7,"task":"t3","resource":"r1","start":12,"cost":5}],"conflicts":[{"i":0,"j":2,"reasons":["resource"]},{"i":0,"j":5,"reasons":["resource"]},{"i":1,"j":3,"reasons":["resource"]},{"i":1,"j":4,"reasons":["resource"]},{"i":1,"j":6,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":18,"raw_cost":18,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":4,"reserved_end":4,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":7,"end":10,"reserved_end":12,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r1","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[1,0,1,1,0,0,0,0,1],"qubo_energy":18},"components":[{"status":"feasible","best":{"feasible":true,"objective":10,"raw_cost":10,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r0","start":7,"end":10,"reserved_end":12,"changed":true},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":11,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r1","start":12,"end":13,"reserved_end":15,"changed":true}],"bits":[0,1,1,0,0,0,0,1],"qubo_energy":10},"seed":747784396,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.458134516089404,1.8288449350764089],"expected_energy":25.911965021965766,"initial_expected_energy":31.635089055328375,"history":[31.635089055328375,31.59905570851987,26.958682409213203,30.869241338705343,27.304265843426954,26.32183046422484,26.134096061607067,25.970557252188264,26.688144109599993,26.076289377689463,26.005641791268054,26.25652548604601,26.01456017834461,25.994640245174907,25.96431425190677,25.954569211613784,25.946779947225288,25.94446456850374,25.93863601630084,25.933683815564542,25.92939740154611,25.92103792565169,25.921073896923488,25.925562656004203,25.922239929662435,25.918421223836965,25.916051166898637,25.915857927172716,25.912702515224478,25.913463622669184,25.91271201961843,25.915805687250476,25.912597102019667,25.91294628464226,25.912655210012332,25.912479792259305,25.912389396002308,25.91240338107609,25.91232681617594,25.912272927901903,25.912197072451328,25.91245102068062,25.912120271261657,25.912097437418808,25.912330148779727,25.912043081209024,25.912020531892903,25.911999303766844,25.91199736787779,25.91197644369689,25.911989538638238,25.91197587206186,25.91198103432035,25.911976345476972,25.911973612534304,25.91197156275704,25.91197472318748,25.911970433249575,25.911969839373715,25.911968709272724,26.77432454589632,27.265243566986584,30.97191517417373,31.989503278381928,29.417954088432722,26.184010953067038,28.25123760958873,26.223443235248745,26.076037917199315,26.158400580489353,26.205187522523406,26.040346351023153,26.04172974699643,26.03449088300595,26.023506087311915,26.003586374201408,25.973802959351676,26.04539768453369,25.959924303719653,25.939784882196122,25.94321598412398,25.92776810209869,25.93502371075491,25.929900180483585,25.926915498209997,25.934094032373007,25.922391514371967,25.919491142821393,25.91684286714667,25.91437389737247,25.914538281672783,25.91652601386745,25.914651785144414,25.91561147266131,25.914743449571297,25.913706714966466,25.913429624527687,25.913110752370436,25.912996358564932,25.91272435774153,25.9125096853792,25.91225251091965,25.91214386478608,25.911967715408625,25.91202027182218,25.912101983248384,25.9119718232121,25.911991488999114,25.91198599063491,25.91197270697546,25.911967480013097,25.911966670341965,25.911966035590396,25.91196534037796,25.91196792163948,25.911965090758073,25.91196511144971,25.91196582862752,25.911965021965766,25.911965184110755],"feasible_probability":0.4565416600746436,"one_hot_probability":1.0,"sampled_feasible_fraction":0.505859375,"counts":{"01000101":65,"01000110":12,"01001001":9,"01001010":31,"01010001":103,"01100001":27,"01100010":37,"10000101":20,"10000110":59,"10001001":26,"10001010":30,"10010001":53,"10010010":15,"10100001":7,"10100010":18},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11379124999803025}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.4565416600746436,"total_shots":512,"runtime_seconds":0.11396268800308462},"direct_metrics":{"exact_objective":18,"optimal_count":1,"combinations":16,"optimal_probability":0.1513420237894894,"feasible_probability":0.5117198610113363,"uniform_optimal_probability":0.0625,"uniform_feasible_probability":0.3125,"shots_for_95_percent":19,"hit_curve":[{"shots":8,"quantum":0.7309322923403324,"uniform":0.4032805261667818},{"shots":16,"quantum":0.9276025686947716,"uniform":0.6439258695482073},{"shots":32,"quantum":0.9947586119404047,"uniform":0.8732112136229997},{"shots":64,"quantum":0.9999725278512087,"uniform":0.9839246036490473},{"shots":128,"quantum":0.999999999245281,"uniform":0.9997415816321598},{"shots":512,"quantum":1.0,"uniform":0.9999999999999956}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":25},{"shots":16,"best_objective":18},{"shots":32,"best_objective":18},{"shots":64,"best_objective":18},{"shots":128,"best_objective":18},{"shots":512,"best_objective":18}]},"component_metrics":[{"exact_objective":10,"optimal_count":1,"combinations":16,"optimal_probability":0.09545518023616659,"feasible_probability":0.4565416600746436,"uniform_optimal_probability":0.0625,"uniform_feasible_probability":0.3125,"shots_for_95_percent":30,"hit_curve":[{"shots":8,"quantum":0.5518321211451073,"uniform":0.4032805261667818},{"shots":16,"quantum":0.7991455523627061,"uniform":0.6439258695482073},{"shots":32,"quantum":0.9596574908643176,"uniform":0.8732112136229997},{"shots":64,"quantum":0.9983724819566374,"uniform":0.9839246036490473},{"shots":128,"quantum":0.9999973511850185,"uniform":0.9997415816321598},{"shots":512,"quantum":1.0,"uniform":0.9999999999999956}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":7.979727989493313e-17,"independent_samples":[{"shots":8,"best_objective":14},{"shots":16,"best_objective":10},{"shots":32,"best_objective":10},{"shots":64,"best_objective":10},{"shots":128,"best_objective":10},{"shots":512,"best_objective":10}]}],"reduced_single_joint_draw_p_opt":0.09545518023616659,"diagnostic_seconds":0.0033983839966822416}
+{"instance":"n4-s1-r3.json","seed":0,"direct":{"status":"feasible","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t1","group":"g1","resource":"r2","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":8,"reserved_end":8,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":9,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":12,"end":14,"reserved_end":16,"changed":false}],"bits":[1,0,1,1,0,0,1],"qubo_energy":15},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.0230231755488535,1.080391275503525],"expected_energy":18.19979929901138,"initial_expected_energy":19.07772779918723,"history":[19.07772779918723,20.26225348609884,27.20471810812762,38.47089943824432,21.067079000590848,19.122329804966206,23.477199091630766,18.630242364628188,18.22376138058684,18.3615488563221,18.23306717771038,18.238760746863882,18.216567363865742,18.222614881265546,18.219721202049556,18.21465082335427,18.219290236009403,18.21257652982154,18.21341654692656,18.21186171860129,18.212939168037597,18.21159736144329,18.211253737273594,18.210764735381698,18.209852134444155,18.208685204634726,18.20753480528772,18.20704630854584,18.2141054935607,18.205530066255335,18.205258654913287,18.204497775601588,18.203226870297655,18.201925924288986,18.205982143666976,18.207612322540204,18.201680452497335,18.201116781636124,18.201489014836724,18.20137870759806,18.201119413003525,18.20103534595651,18.200905205732283,18.20063197023617,18.200184909826493,18.20438252760741,18.20235576479068,18.200081777994235,18.200454985117155,18.200130123439948,18.20005502819271,18.200053441926386,18.200204757203355,18.19995309113279,18.199902868970483,18.199877452158894,18.19994385143812,18.19985569686642,18.199836425188217,18.19979929901138,41.1142710834122,38.70154790999802,22.1980030772367,25.7120257799804,25.65407092864001,25.116653100810034,18.686754588036294,19.31015478864142,18.784153926915057,19.163113335906505,18.452602840605078,18.863724463015444,18.401544554074874,18.455564913804615,18.402619066719538,18.379993283995685,18.341483662523746,18.28999635531637,18.384852613064165,18.412172343177883,18.27676425630473,18.27628096673223,18.2916048256578,18.277396137850843,18.26612211447429,18.26188437537562,18.26682817331232,18.257794589237683,18.257843489243353,18.255887386396783,18.254769014670696,18.255548738812394,18.254154349878117,18.253104029328785,18.25187285734227,18.253761490567577,18.251387415087834,18.250341879557958,18.24830343123113,18.245651881255633,18.241753545752857,18.238796796103557,18.252325322192956,18.2366477625374,18.233505769646477,18.228393835118347,18.251272825156974,18.228337976945884,18.223868948679353,18.21701115589139,18.209050735021954,18.22580565166285,18.225376805704727,18.208032240524226,18.20904788013096,18.208625040442755,18.207348261413806,18.20754734046213,18.20785427561661,18.207372742779803],"feasible_probability":0.9989550687554233,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.998046875,"counts":{"1001011":117,"1001101":141,"1010011":110,"1010101":143,"1100101":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08778447400254663},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[0,6],"fixed_cost":11,"removals":[{"variable":5,"forced_by":6,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[2,2],"max_component_qubits":2,"component_to_original":[[1,2],[3,4]],"components":[{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-1,-2],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":6,"cost":5},{"index":1,"task":"t1","resource":"r2","start":4,"cost":4}],"conflicts":[]},{"qubits":2,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1],"quadratic":[[0,1,14]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":9,"cost":0},{"index":1,"task":"t2","resource":"r1","start":10,"cost":6}],"conflicts":[]}]},"best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t1","group":"g1","resource":"r2","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":8,"reserved_end":8,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":9,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":12,"end":14,"reserved_end":16,"changed":false}],"bits":[1,0,1,1,0,0,1],"qubo_energy":15},"components":[{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r2","start":4,"end":6,"reserved_end":6,"changed":true}],"bits":[0,1],"qubo_energy":4},"seed":3757552657,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.8212516284766744,1.1865657984076299],"expected_energy":4.202827479483611,"initial_expected_energy":4.673210841699957,"history":[4.673210841699957,4.710487965340471,4.464677272661395,4.358671437422986,4.481857333730748,4.537616538677459,4.396775301758675,4.38532597162464,4.32875277072572,4.334782126271164,4.329960942302394,4.33365269108692,4.325679483993157,4.329187107597405,4.3239655938317085,4.324552574106196,4.323055411162059,4.322322805796804,4.321842293166112,4.325065002329542,4.320583934738903,4.318491954674033,4.315337176155413,4.307748881869339,4.295639493578781,4.26353197460409,4.528040446550198,4.522999363409755,4.319730070461849,4.285754446238769,4.261272947854044,4.263242334732852,4.261859772315615,4.259698141952658,4.260253879015227,4.258881000209055,4.258458428143448,4.259283668819909,4.258276655802719,4.257888098192176,4.257143657750531,4.256264982355305,4.254752980092198,4.253350763384734,4.250445677199105,4.244698354291988,4.233740600557473,4.2301800980704005,4.298968161664466,4.3391750640158575,4.210913853865954,4.217327099104317,4.210211459366828,4.217551605699924,4.209287611493818,4.208134293969735,4.206897745603106,4.205569212672573,4.202827479483611,4.203242018935672,4.534410143030849,4.558004870169871,4.441037068521865,4.509218273470043,4.4668962037635955,4.442603763613192,4.433095658291739,4.436353076116786,4.437960158408238,4.4336660158156205,4.42870612041311,4.420880942111051,4.404799920188979,4.376561396126624,4.506877713727556,4.464601976805621,4.434098423248953,4.371356104371433,4.369192637123492,4.365681994338965,4.362934503472024,4.3636770063877215,4.3577896858282195,4.355772500309108,4.351506478405309,4.3477793977904104,4.339827970483113,4.325128287308615,4.3573554080803145,4.3861805207442135,4.328597499101793,4.32612606589613,4.3307851516656575,4.323191609391426,4.322760984911164,4.325469580735707,4.322669335239139,4.321496795485182,4.319616148207384,4.315813084335993,4.311015584872925,4.305375555244213,4.304431250559799,4.34171958590765,4.295868890626047,4.294065819921496,4.2903649447636845,4.283681184197155,4.2816644775647665,4.28291010612515,4.311580461531592,4.28854916527719,4.270162429207033,4.26540388335442,4.271108732060789,4.2635616406784305,4.262505387274178,4.260438978823725,4.257350199811514,4.249812204972087],"feasible_probability":0.9999999999999999,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":1.0,"counts":{"01":100,"10":412},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07330465799896047},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":673228719,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.8244847133993989,1.1793968860011448],"expected_energy":0.00011303766891073718,"initial_expected_energy":0.8762498498188558,"history":[0.8762498498188558,0.9364892339198065,5.767872549403052,2.000090482114762,3.5908627401764344,0.14338837942393157,0.11037862705638463,0.15297605851570747,0.18892055617422626,0.0334470904392111,0.06119407403575891,0.041813016499160374,0.03701167069383619,0.028842212686219344,0.025178234945511864,0.035235272978784864,0.023411068181281202,0.019420296310942414,0.012473692243943506,0.005258382528856557,0.03666711710504564,0.030130911487669772,0.0043144760241828626,0.003120841138397565,0.003377052587238637,0.0038230696013409633,0.002474063850148511,0.003056754390253444,0.002738656258079646,0.002468455386778334,0.002339685944054063,0.002092581048146801,0.0016513280080049505,0.0012069567980668478,0.0013635611316964611,0.0018850236927939756,0.001428014894912504,0.000924264743988223,0.001016233973424788,0.0008783813054527475,0.0008013599260595398,0.0006900184945664593,0.0007004734701200764,0.0006484862857824094,0.0006107133964183734,0.000664314151427098,0.0005973181370361251,0.000576103552394129,0.000551487649998742,0.0005071425393572356,0.0005069239378863266,0.00043115898670408645,0.0003581902647972848,0.00031078294199748805,0.00047764975975722514,0.00026588610006778165,0.00024444748459262727,0.00021026845072415762,0.00015492290188528742,0.00011303766891073718,3.5588958215884086,3.7205335384359426,4.7162375109106565,0.9339121059767406,4.057571743843885,2.124180855764876,2.1534063054377324,0.8223259748995368,0.8393270087329991,0.8662762950581101,0.7362305825197019,0.6863615858530714,0.8016355241397062,0.6044266094123816,0.5347457432347131,0.4081554021779708,0.18744630229484915,0.4372230904770269,1.0678554373524118,0.1441179228840578,0.3675972162658211,0.16833685774750956,0.14196204434786036,0.1586046125507319,0.14228352048595233,0.1363926723783705,0.12745731553640016,0.1267386509892066,0.11892166012146543,0.11148097612473933,0.09754650129695824,0.073330251884421,0.06958164282666776,0.03032357933734159,0.05434032143702966,0.027694676121851475,0.042137351885470256,0.0263750752803123,0.023479663870212775,0.02360879274954176,0.022067550835215687,0.02409792953508704,0.02309638912817095,0.0206889982634571,0.020756083517916184,0.019318282454151056,0.018094444048443032,0.016516200457399266,0.021843283071136844,0.01481532530205103,0.01367943333632897,0.012514179644955237,0.010956050417539491,0.009000560622290474,0.007885534995145986,0.012798071278649714,0.0067317283398450525,0.006167780989095508,0.005317327076904273,0.003893523590540858],"feasible_probability":0.9999999999999999,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.06790361700404901}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9999999999999998,"total_shots":1024,"runtime_seconds":0.14141074499639217},"direct_metrics":{"exact_objective":15,"optimal_count":1,"combinations":6,"optimal_probability":0.30398884172317525,"feasible_probability":0.9989550687554232,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.6666666666666666,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9449281561399882,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9969670920138585,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999908014691476,"uniform":0.9970744998381338},{"shots":64,"quantum":0.999999999915387,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":15},{"shots":16,"best_objective":15},{"shots":32,"best_objective":15},{"shots":64,"best_objective":15},{"shots":128,"best_objective":15},{"shots":512,"best_objective":15}]},"component_metrics":[{"exact_objective":4,"optimal_count":1,"combinations":2,"optimal_probability":0.7971725205163885,"feasible_probability":0.9999999999999999,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":2,"hit_curve":[{"shots":8,"quantum":0.9999971357273898,"uniform":0.99609375},{"shots":16,"quantum":0.9999999999917959,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":4},{"shots":16,"best_objective":4},{"shots":32,"best_objective":4},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999811603885148,"feasible_probability":0.9999999999999999,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.7971575020958154,"diagnostic_seconds":0.0023668329959036782}
+{"instance":"n4-s1-r3.json","seed":1,"direct":{"status":"feasible","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t1","group":"g1","resource":"r2","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":8,"reserved_end":8,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":9,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":12,"end":14,"reserved_end":16,"changed":false}],"bits":[1,0,1,1,0,0,1],"qubo_energy":15},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.9680877422596788,1.0764637710316762],"expected_energy":18.213967603123272,"initial_expected_energy":39.61041384124521,"history":[39.61041384124521,38.939922616863214,18.613968221099476,27.91738641951583,19.644295466435487,19.273422197948264,20.19217641239642,18.593425336202372,18.59252325046546,18.41686701504095,18.49184344450586,18.739897237484634,18.423442919735457,18.42318975204747,18.42548659658582,18.4079292802697,18.400022500856643,18.40034316737985,18.393809795320387,18.390221336879037,18.394209646455945,18.38106875056202,18.373706176642767,18.358330482703508,18.332905564318523,18.36195375148132,18.387269484998825,18.32599441046687,18.313919073903783,18.29436680937591,18.36059296990223,18.298735830491143,18.296856596853047,18.300444777419237,18.286214939941186,18.283783249105152,18.291066877985735,18.27824145151501,18.27328433056934,18.26750878413832,18.258152377049342,18.25711137052782,18.245700464817205,18.250694349872973,18.244392371426635,18.252154697015552,18.239933562985073,18.236663425783107,18.229832594357497,18.218280654548842,18.304645623016707,18.264768640364487,18.215971576912395,18.230446776651164,18.216448585530937,18.215634272256715,18.217083018048342,18.215219783789728,18.214554746937033,18.213967603123272,21.815212765681544,19.338750752531787,28.255419233409537,39.56656764967347,23.30427751423291,22.606791401753114,19.195355580582472,19.087320482403662,19.06163383309094,19.824816329058322,18.881904591915315,18.83614872921518,18.767406600239035,18.697796088869396,19.35971623856162,18.600102861412175,18.619930121724853,18.589703949393577,18.60219002042474,18.584749473089047,18.572952318696917,18.55283731747189,18.53740323002448,18.488961797889054,18.490292069135585,18.47864898106768,18.48569842628345,18.485022188395206,18.46925324609561,18.46619523833712,18.499950138359836,18.459748119981384,18.448284858713095,18.428814334565175,18.39594196467919,18.362543473326582,18.313261172291114,18.35099139267458,18.411255738449547,18.312247383324163,18.29740096482679,18.30486323485458,18.303487966693183,18.295423792040946,18.304520178840423,18.288967114873316,18.283672465180587,18.27316374013621,18.257531713206944,18.315233217502318,18.32951783590336,18.253742975521924,18.250110022933242,18.244542900647403,18.260287082794726,18.238517565804866,18.24141169069982,18.245429023372907,18.236634402337387,18.236463796977738],"feasible_probability":0.9995191420368501,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":1.0,"counts":{"1001011":111,"1001101":163,"1010011":99,"1010101":139},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09029242099495605},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[0,6],"fixed_cost":11,"removals":[{"variable":5,"forced_by":6,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[2,2],"max_component_qubits":2,"component_to_original":[[1,2],[3,4]],"components":[{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-1,-2],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":6,"cost":5},{"index":1,"task":"t1","resource":"r2","start":4,"cost":4}],"conflicts":[]},{"qubits":2,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1],"quadratic":[[0,1,14]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":9,"cost":0},{"index":1,"task":"t2","resource":"r1","start":10,"cost":6}],"conflicts":[]}]},"best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t1","group":"g1","resource":"r2","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":8,"reserved_end":8,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":9,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":12,"end":14,"reserved_end":16,"changed":false}],"bits":[1,0,1,1,0,0,1],"qubo_energy":15},"components":[{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r2","start":4,"end":6,"reserved_end":6,"changed":true}],"bits":[0,1],"qubo_energy":4},"seed":1641411168,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.826839636720204,1.166459007999288],"expected_energy":4.140157542319008,"initial_expected_energy":4.263773538033856,"history":[4.263773538033856,4.2299134120335005,4.538786230192983,4.685900484226336,4.284508578848922,4.2957557073615575,4.226095176718605,4.216986946170993,4.216521652916807,4.2241844461810905,4.213866772962302,4.211758965175541,4.208509016897483,4.201996940257114,4.188568200035628,4.165792707921566,4.796743710708048,4.5507000675829845,4.234807587294924,4.164025837898658,4.210393245804008,4.15995507903733,4.16591862284742,4.162125829358889,4.160285542820733,4.159127548884321,4.159124639278353,4.158752741190675,4.158397648187198,4.157736298211519,4.156553172004875,4.154175051868006,4.150036734112117,4.177601725959871,4.173993550236549,4.150179377407559,4.149688451273376,4.15013580382143,4.150434516677249,4.148551321529104,4.147824616337503,4.1497729443823,4.147217885793249,4.146767769372796,4.14693970389423,4.146432540367702,4.146196754049388,4.146247991000187,4.1459315936943035,4.145694720355195,4.145334078893356,4.1459810180526855,4.144755055176886,4.144279449930249,4.145140904403955,4.143825748386549,4.143259816050758,4.14214917005794,4.140157542319008,4.156039877211515,4.516289814540393,4.543761725665042,4.50997997552965,4.500478835242129,4.5464359538118115,4.482337149238511,4.469097613519555,4.502735064923547,4.489865477061691,4.459213217250057,4.444922527608392,4.536670060956258,4.43681667173121,4.430876848782889,4.436860843917253,4.417031206353862,4.416948251148152,4.410656744243775,4.405297674023805,4.39746054106816,4.383896262397488,4.463689215297161,4.394199970218445,4.39333757376467,4.387143341546549,4.380144737979283,4.38332288138125,4.376097316351077,4.372742827283047,4.364530616487899,4.3517868344660275,4.385617869446937,4.4145653366089475,4.348229126868563,4.345235521370754,4.341503755052771,4.361576756490264,4.333945421351754,4.331579798013177,4.327724910365401,4.321399815440436,4.3475313865235705,4.321984318942747,4.3207212537864415,4.325467953644776,4.31449969781834,4.313739512811356,4.308952654943269,4.302793277544116,4.294261693699821,4.289636983151115,4.287735156767378,4.275485502204702,4.253134141240809,4.304181988102105,4.309685604463051,4.274856727206878,4.255908168264218,4.253350718739203,4.251544378245764],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":77,"10":435},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07605563099787105},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":1454127163,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.8264921988737222,1.1782254192701387],"expected_energy":4.144840871068041e-05,"initial_expected_energy":1.4845646786640936,"history":[1.4845646786640936,1.5428173130164957,1.3008694679322605,5.797100235617193,0.21882610394792812,0.4820349327298425,0.4407822549680863,0.05328087414947453,0.013431044988041214,0.4445384584025289,0.04166459966409935,0.01187821428933172,0.11024444591697857,0.006393650998474798,0.025840078155618132,0.003731474710897157,0.0026156248972245572,0.008182591906458174,0.0021368001131633766,0.002035924539556871,0.0035154171495012394,0.001658594974035567,0.001471564768090202,0.0013094665410927583,0.0015691589191345076,0.001205831896109719,0.0010408270659144235,0.000769202761609339,0.0014080847509012353,0.0008575567211416457,0.0007367773005123341,0.0009380868622185592,0.0006775726484843114,0.0005972032497502032,0.0005430931358020722,0.0005936643020659137,0.0005201113258414023,0.0005101326744953352,0.0004856797402323301,0.0004400362127402113,0.0003563443319489547,0.0002202209053621644,0.0008911724553192595,0.0006521853998133996,0.00018824657415079585,0.00025214073420246487,0.00018785719708027217,0.00016544778903920405,0.00013986209861023877,0.00012515166019525312,0.0001759848400980973,0.00011151488407751714,0.00010232733369032517,9.185712056315477e-05,7.340945743207787e-05,5.1338934948934125e-05,6.233985397025047e-05,8.063207335697408e-05,5.9354191057313865e-05,4.144840871068041e-05,4.978266412990623,4.914630546663039,4.153866643977695,0.1571541263193172,5.930981027903171,1.311444386299392,1.0398581430182758,0.14150665735987084,0.6042683029009353,0.11069681651050864,0.09745407486455923,0.05935555368120218,0.057111044478756354,0.016581568498394317,0.22334207794436564,0.05727851871775063,0.012533721150228059,0.09709013283224854,0.012866675508766606,0.01281973746273556,0.014213765919942563,0.011563445046473934,0.00981650205294392,0.009539288260917829,0.00859139737117167,0.007887873315164835,0.0094121236138601,0.007137564730633003,0.006491170027000462,0.008022898549097171,0.005892697099793188,0.005250777793455336,0.005160429802219795,0.00376344718776926,0.0032755022915680965,0.002839840273437196,0.0031987739361756034,0.002548593819573985,0.0025999024459675635,0.002486216504449413,0.00238260883257643,0.002249701753885478,0.0024939075992929187,0.0021689679224684132,0.002045647071383496,0.002062267091089572,0.0020207709004834394,0.0019728934899639412,0.0018793569351036963,0.001700111887374062,0.0013759956365129748,0.0013689475274383065,0.0007854996983926619,0.0013940428826778358,0.0011714010529948419,0.0008652288706837358,0.0007535106145488002,0.0006400561197357559,0.0005443719228059419,0.0004791407075006382],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07301510799152311}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.14925803898950107},"direct_metrics":{"exact_objective":15,"optimal_count":1,"combinations":6,"optimal_probability":0.3007215737503586,"feasible_probability":0.9995191420368501,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.6666666666666666,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9428256759682093,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9967310966715078,"uniform":0.9459121070676046},{"shots":32,"quantum":0.999989314271029,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999998858152,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":15},{"shots":16,"best_objective":15},{"shots":32,"best_objective":15},{"shots":64,"best_objective":15},{"shots":128,"best_objective":15},{"shots":512,"best_objective":15}]},"component_metrics":[{"exact_objective":4,"optimal_count":1,"combinations":2,"optimal_probability":0.859842457680992,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":2,"hit_curve":[{"shots":8,"quantum":0.999999851087283,"uniform":0.99609375},{"shots":16,"quantum":0.9999999999999778,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.551115123125783e-17,"independent_samples":[{"shots":8,"best_objective":4},{"shots":16,"best_objective":4},{"shots":32,"best_objective":4},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999930919318816,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.8598365178307232,"diagnostic_seconds":0.0020882590033579618}
+{"instance":"n4-s1-r3.json","seed":2,"direct":{"status":"feasible","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t1","group":"g1","resource":"r2","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":8,"reserved_end":8,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":9,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":12,"end":14,"reserved_end":16,"changed":false}],"bits":[1,0,1,1,0,0,1],"qubo_energy":15},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.051203227789611,1.0849809862068251],"expected_energy":18.201043079107038,"initial_expected_energy":38.04980073892165,"history":[38.04980073892165,32.8470017375803,21.082919351436743,23.762034588532178,18.58454751743723,18.593274849315925,18.29916887629005,20.06944202355414,18.325394942122664,18.450231116785517,18.639494451757763,18.301577326180006,18.295614968717075,18.307406360236243,18.304199822931327,18.281874157788184,18.27101052879853,18.284290993019255,18.26871598619328,18.266915502102044,18.26172416302545,18.255106139097947,18.246511991342267,18.234010678914203,18.253000842420732,18.29048827195571,18.23438369777817,18.233403803254113,18.23419442939211,18.236848086768077,18.230011735027748,18.231959979408096,18.23157515618734,18.230043402479094,18.229250376932264,18.227756093937067,18.224905604324277,18.22268243292949,18.218177283360216,18.22326404179733,18.223928316711543,18.21659384038258,18.215575466591034,18.216283780538426,18.2147982034907,18.214379839414427,18.214697348074004,18.214283902628083,18.214072547796903,18.213647822289293,18.212862608456874,18.211679091664102,18.209993388598217,18.207766311171277,18.206032593084785,18.203580402860148,18.20121348972833,18.2133909351833,18.213075758996386,18.201043079107038,22.17716245089174,20.502558333254566,27.968844052687714,29.8379933630656,23.94452624793167,22.148746769941077,20.478406886042205,20.59422366607696,20.72341961309892,20.481641472220595,20.477627425978856,20.49043570874059,20.475055099037853,20.46600574780534,20.46119749122521,20.461772081881094,20.460201520846624,20.459852924139934,20.459279628839326,20.458472388475542,20.458826161262127,20.458851437283318,20.45856007557237,20.458519363017697,20.458468897451056,20.45840164233512,20.458289238388918,20.458090740051304,20.458098480683685,20.458319970831326,20.458055781266275,20.45816638783885,20.458025846327665,20.45798978981481,20.45793320835705,20.458229569489173,20.457931812703972,20.45789223966365,20.45783764179869,20.457807120045793,20.457844771240715,20.45782949590828,20.45780434744486,20.45781521657052,20.457802506394252,20.45779944154742,20.457794389289205,20.457793149460592,20.45778681333063,20.457811262294374,20.4577833684516,20.457784506033935,20.45778440939751,20.45778320675524,20.457784324767914,20.45778248564866,20.457781881974206,20.4577810066032,20.457783258637328,20.45778161267426],"feasible_probability":0.9981105124853049,"one_hot_probability":1.0,"sampled_feasible_fraction":0.998046875,"counts":{"1001011":118,"1001101":154,"1010011":97,"1010101":142,"1100101":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08924095000838861},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[0,6],"fixed_cost":11,"removals":[{"variable":5,"forced_by":6,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[2,2],"max_component_qubits":2,"component_to_original":[[1,2],[3,4]],"components":[{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-1,-2],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":6,"cost":5},{"index":1,"task":"t1","resource":"r2","start":4,"cost":4}],"conflicts":[]},{"qubits":2,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1],"quadratic":[[0,1,14]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":9,"cost":0},{"index":1,"task":"t2","resource":"r1","start":10,"cost":6}],"conflicts":[]}]},"best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t1","group":"g1","resource":"r2","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":8,"reserved_end":8,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":9,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":12,"end":14,"reserved_end":16,"changed":false}],"bits":[1,0,1,1,0,0,1],"qubo_energy":15},"components":[{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r2","start":4,"end":6,"reserved_end":6,"changed":true}],"bits":[0,1],"qubo_energy":4},"seed":2001025171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.4123727514195306,1.158991630370059],"expected_energy":4.231505278948143,"initial_expected_energy":4.491186589177599,"history":[4.491186589177599,4.472895827764548,4.461061030803183,4.537505976957533,4.478031926720048,4.473695447999228,4.441300101933816,4.440312591003105,4.426522970260372,4.413310218726474,4.390450414684721,4.35276752901942,4.605292355438162,4.586341173258264,4.342240633790712,4.392669004403732,4.352643215297567,4.344464647491775,4.344658873490017,4.33831786314135,4.336439212425818,4.344589216661555,4.333934161482929,4.3320021272124976,4.328456333787999,4.330722242126167,4.327150934134737,4.334716982942039,4.3258578488983055,4.323616349132653,4.319619502844907,4.31200407957875,4.296743991102805,4.2835003860873675,4.39453362635282,4.41024068081963,4.281780174381721,4.262487669109299,4.2781152012722465,4.259954785741994,4.263271196814024,4.259551528863798,4.258428871497646,4.257542166377039,4.258454847388144,4.256738376029229,4.25627214773048,4.257150104078464,4.256069079719501,4.25565654355772,4.254891739925626,4.253504192495653,4.250606052498173,4.244927897286731,4.234534961894797,4.329370502899377,4.300091979320642,4.231505278948143,4.237891790018236,4.233959800420605,4.576336485706002,4.601935164364235,4.551585288072875,4.4271567102105,4.491715320154662,4.472003412584636,4.443055149897857,4.454040929665212,4.423187651538088,4.414292622112187,4.407712399319145,4.407305229586251,4.403781690780059,4.401289723380506,4.407664665436321,4.397356382950204,4.394013854846665,4.399121592488363,4.3910501117185685,4.387153006777494,4.379512691592274,4.366273036923589,4.5084314770258045,4.378883169327872,4.37963752172327,4.369815087281005,4.361982922355154,4.36546518104945,4.358099912865321,4.35422889077439,4.346254741617652,4.330477545458529,4.306495177491581,4.668562821503642,4.556044744709031,4.322799455329902,4.334314566507063,4.31052207708036,4.299914872487515,4.297624208407116,4.305484183844886,4.295376184431835,4.2934284799516345,4.289638661692362,4.283196851829313,4.277998921489003,4.265863121943329,4.409922970230999,4.28920764692948,4.264895663873394,4.311021954218625,4.258782432634267,4.253254215516582,4.252322812232739,4.262932958347939,4.249504087451539,4.247880258018476,4.246331749045726,4.246177161554401,4.242784432269656],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":117,"10":395},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07582013600040227},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":2240297063,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.8127535894398719,1.1782558045332114],"expected_energy":0.0004344772538004115,"initial_expected_energy":4.119986407816121,"history":[4.119986407816121,3.572973082296248,3.624383787821558,2.9495758068673843,2.9382331622450906,5.1155798287406835,0.8183467481879145,3.699772676551443,1.3077463892738865,1.9662779748801191,1.7099014279576492,2.5677528597846035,0.752978127248433,0.8585863297368962,0.7504896406410719,0.6750935451522431,0.587464094271072,0.9569768948991382,0.49448181732485846,0.4456048369685699,0.3764163280755447,0.26116935398719004,0.22879633266704535,0.30008846576597875,0.7762973472518133,0.21227909598129266,0.09671126442627005,0.08903392708108558,0.053408969514700255,0.031343165282830855,0.05879475083196049,0.06116114112137447,0.04608695570428703,0.028343395835834246,0.028302541440614098,0.02643877736417427,0.024647507690463477,0.02130117141500331,0.015570250388511755,0.01251419547239313,0.015622784488642152,0.032233811078700915,0.010282148894606904,0.006351912896305825,0.005663964298661363,0.009542363033602508,0.004628675531327032,0.003867435177313882,0.0026868364700362735,0.005340224161919604,0.004921246222058719,0.0027425707167479424,0.0025499571881519977,0.002551997857278837,0.002648830522769742,0.0023905812315731184,0.002225438498005045,0.0024240962719035072,0.002100492247352758,0.0019825646723147213,2.804003362672281,2.2779129203810244,4.636523015619195,1.7529455276938992,4.249742519636362,2.464688553822521,2.0926466239935793,1.2094824252583463,1.2795237279015925,1.3656310797772124,1.0734330767785618,0.9737546287719451,0.812892484935139,1.3520505134279228,0.7599769635909356,0.6583520302566018,0.48680702571464296,0.2779703738358009,0.3933109549507946,0.5543796647655085,0.29496529605188027,0.24007028137771047,0.20840131760336228,0.16143477829254432,0.08703868865890622,0.27049319261562504,0.26077777464253427,0.14172962249247947,0.08424524231926094,0.09566474407727144,0.08514625162334366,0.08012295340206257,0.07427331439474492,0.0839940754428774,0.06889507923200323,0.06387179277007582,0.05392036736237024,0.04202128775507375,0.03561292450635098,0.021198039969459896,0.001953931854558029,0.03636820783462413,0.035869504832495874,0.001235319347495009,0.013405884117306716,0.002153207418712791,0.0020502282532658058,0.0010038575589442654,0.0011658789422015398,0.0009672321738680785,0.0008906818228272916,0.0007416905979837025,0.0004869761858032314,0.000798915779593672,0.0010345635874784045,0.000524162606192158,0.0004673371233427717,0.0004830547550179942,0.00045713505505700464,0.0004344772538004115],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.0683252180024283}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.14432874201156665},"direct_metrics":{"exact_objective":15,"optimal_count":1,"combinations":6,"optimal_probability":0.30627910397048624,"feasible_probability":0.9981105124853049,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.6666666666666666,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9463613040367345,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9971228902953604,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999917222397474,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999999314787,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":15},{"shots":16,"best_objective":15},{"shots":32,"best_objective":15},{"shots":64,"best_objective":15},{"shots":128,"best_objective":15},{"shots":512,"best_objective":15}]},"component_metrics":[{"exact_objective":4,"optimal_count":1,"combinations":2,"optimal_probability":0.768494721051857,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9999917493685394,"uniform":0.99609375},{"shots":16,"quantum":0.9999999999319271,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":4},{"shots":16,"best_objective":4},{"shots":32,"best_objective":4},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999275871243666,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.7684390721391965,"diagnostic_seconds":0.002017346996581182}
+{"instance":"n4-s1-r3.json","seed":3,"direct":{"status":"feasible","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t1","group":"g1","resource":"r2","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":8,"reserved_end":8,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":9,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":12,"end":14,"reserved_end":16,"changed":false}],"bits":[1,0,1,1,0,0,1],"qubo_energy":15},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.9387536806619563,1.073609989234439],"expected_energy":18.23004196607618,"initial_expected_energy":27.867720936631912,"history":[27.867720936631912,23.693450614912496,24.80223663602893,18.63640033002934,25.88582052909333,36.199992952908815,19.424046279310385,18.94052451697322,19.671586534579536,18.68688438866686,18.943784407846113,18.641938748956346,18.647441186311696,18.627045830927326,18.64250712436496,18.637799596535444,18.60920391642385,18.591058825784053,18.612710927866498,18.579101765790355,18.56879821328498,18.545576377966622,18.502763467709556,18.472195230575142,18.403902089345667,18.491328884240673,18.380392152490614,18.461324729683266,18.381165000576193,18.365168481402513,18.368578578972674,18.373504777346632,18.360195216700827,18.360101223613995,18.372375276767627,18.350448028527573,18.338471522822232,18.325514147677048,18.30744383333173,18.337201708011534,18.29505605582789,18.313603740681707,18.292750666078394,18.288208331219167,18.283191031728386,18.27583493051675,18.347245354312953,18.270023325013945,18.264383457965664,18.27423805110903,18.257589643913356,18.25478226681172,18.250262295497897,18.242183037821498,18.23409482404471,18.235600359794645,18.24595775565696,18.23370321100039,18.23841731357402,18.23004196607618,25.541021911328286,31.836239544186316,27.927027116319067,23.560973508297593,27.799419510990745,21.146057334340334,24.038487600165645,20.83425270953002,22.03578019339073,20.81989721807906,20.68123249779196,20.676167007330662,20.554004268830436,20.747030095580115,20.53862331328229,20.519909418842957,20.491918903376103,20.496711180864942,20.506658946905223,20.49871815357836,20.49617614717784,20.48631396325358,20.485454346155606,20.49028175908112,20.481548257774968,20.474957623291065,20.47199300880156,20.468888271236807,20.475334804441488,20.473273724617286,20.4629559653415,20.4616907769084,20.46344854829015,20.46186737978541,20.462790204032537,20.46142214288534,20.461388291155597,20.461921370797697,20.461376071418513,20.461193243885006,20.460886536963972,20.460360043902707,20.46054144241309,20.460194421352018,20.460827737154297,20.4600483459978,20.459831458265494,20.459623220467012,20.459559672791823,20.459064402675605,20.458843618444096,20.458513786558687,20.458145505062276,20.45838315438617,20.458608974996352,20.458222748618386,20.45807788219358,20.458022081293986,20.458127588100297,20.45798174576674],"feasible_probability":0.999553429578626,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"1001011":135,"1001101":147,"1010011":100,"1010101":130},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09229913700255565},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[0,6],"fixed_cost":11,"removals":[{"variable":5,"forced_by":6,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[2,2],"max_component_qubits":2,"component_to_original":[[1,2],[3,4]],"components":[{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-1,-2],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":6,"cost":5},{"index":1,"task":"t1","resource":"r2","start":4,"cost":4}],"conflicts":[]},{"qubits":2,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1],"quadratic":[[0,1,14]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":9,"cost":0},{"index":1,"task":"t2","resource":"r1","start":10,"cost":6}],"conflicts":[]}]},"best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t1","group":"g1","resource":"r2","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":8,"reserved_end":8,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":9,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":12,"end":14,"reserved_end":16,"changed":false}],"bits":[1,0,1,1,0,0,1],"qubo_energy":15},"components":[{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r2","start":4,"end":6,"reserved_end":6,"changed":true}],"bits":[0,1],"qubo_energy":4},"seed":819382448,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.266956004578481,1.1867249629087706],"expected_energy":4.173838062128091,"initial_expected_energy":4.426527521753158,"history":[4.426527521753158,4.400565874994031,4.6479790100639224,4.431469342125926,4.51483164524908,4.355855507951887,4.345239000752333,4.346488585061059,4.34847588872581,4.3426015075079984,4.345892528639807,4.344827515869144,4.340996180906031,4.3482839288923065,4.338629516841358,4.336511140691586,4.332512123763592,4.324681787273659,4.309419799832881,4.303003362522997,4.375654914296424,4.42896853083653,4.304566232533414,4.27945165505564,4.290404416039866,4.283245042960763,4.280424986717316,4.277717240258664,4.2761060172802114,4.276338254304773,4.2749329605868205,4.275350219051838,4.275461706530663,4.27411930051903,4.273530011635432,4.276662946776721,4.272382229148432,4.2713698276160486,4.269551758391966,4.265987160920334,4.2617584581708545,4.258782322142181,4.2538931744037765,4.243476522349798,4.211505846441293,4.676300738595254,4.561988613024724,4.212346189836977,4.201381235103651,4.197275561913067,4.360725723215202,4.182229712112336,4.188947000815813,4.1815193093978085,4.196425758967726,4.17787170679314,4.177000795169019,4.175287101669557,4.173838062128091,4.175074834384945,4.502450558788532,4.515851301482233,4.492433893915886,4.506926661537303,4.47588339511678,4.4680351716620255,4.56872380412275,4.426594924399005,4.51170316170224,4.457076884516793,4.421312175281061,4.428559413795666,4.4208801757863885,4.416549300797856,4.40857563283183,4.392841827190112,4.377776743035608,4.415590456038872,4.461380017531173,4.372809293653528,4.356377087907637,4.35770138747035,4.359510584769318,4.355886474442476,4.357566406037977,4.355229667589312,4.354007076840853,4.352834539274835,4.354328701895575,4.352396428313026,4.351423567329256,4.3494426342477635,4.345533040963548,4.340346092342441,4.333591066569012,4.331778042798451,4.363426798795473,4.324346207075298,4.3221452571066825,4.318412119635884,4.311553679617548,4.307999904744944,4.306458587765633,4.301859644034261,4.276622182569316,4.2799170384364995,4.369546101351481,4.286121178934015,4.270279359206745,4.271257120854266,4.280377103569428,4.267934604220684,4.2677422690051205,4.268991672006094,4.26778217101163,4.267288680130802,4.266503732211535,4.265966154618819,4.2643772074148565,4.262889033312419],"feasible_probability":0.9999999999999999,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":1.0,"counts":{"01":80,"10":432},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.0698842129932018},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":1645421708,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.8326008251202301,2.7503362049146394],"expected_energy":4.9948451155626655e-05,"initial_expected_energy":5.2517721487589935,"history":[5.2517721487589935,5.163532753311751,0.39775891791126683,3.0013122407176818,1.114194712878668,0.7336496863614252,0.132100432287872,0.2583181124524445,0.16768595680751938,0.15029697120803542,0.15061214560397157,0.13216340717785194,0.1687994883786038,0.12221539382711327,0.11803810519709713,0.12336203683950359,0.11620247992978527,0.11264342560092713,0.1058666422491086,0.09351322582685233,0.08462171172414738,0.060290067505479786,0.07525297865315712,0.05518452905966919,0.07446479338598437,0.053732456797270546,0.048507640261343514,0.045080401268050206,0.04991126318258349,0.04286144536894828,0.04070878264609437,0.03705527262223468,0.029862379042615766,0.016987355714324498,0.030248199059479067,0.04778576908415489,0.024131256039445166,0.015731816965933544,0.017790197055072052,0.01480921963825086,0.01351587064976334,0.01115269100395979,0.0073071337823513716,0.017580968541920403,0.01753925109583786,0.007631114735572693,0.007030110105125277,0.007944486373991191,0.005965439289268671,0.005514277649852359,0.004687705696389226,0.003466156850658834,0.002556038478008867,0.0022134704826251416,5.5793904437721805e-05,0.011649285173440601,0.010658861309627362,4.9948451155626655e-05,0.0017468255710445357,0.0009930392293715671,4.220803605674116,3.1894836945139198,3.030933837371778,3.1691220827789577,2.6400888947345527,2.3368645748807406,3.5826362214080354,2.7817593939497587,2.0118931741741006,2.629174576417605,1.8003976910112494,1.8941981856354642,1.7344796694214448,1.633472926513639,1.5931353456671258,1.883360987783937,1.4690225744372583,1.2371062194336708,0.846370779010819,0.32139735425189925,1.5074360944231835,1.4618262652704817,0.25716687514049974,0.2962479537906011,0.24996162088378882,0.4281707379666527,0.1653478784750895,0.17566774615142022,0.15672179946820808,0.17714230223395241,0.14942946349115765,0.13901696235057306,0.1413434278838912,0.13695541217707421,0.13304869881230652,0.12548579620542458,0.11114856243573565,0.08646264535136544,0.18630150237107712,0.09535415467949393,0.08595194472965922,0.09905623686435389,0.08610366973005862,0.08068798897563617,0.07288149255887173,0.07608006315394483,0.06731661827508903,0.06275000923947345,0.057863377193149886,0.08219887941444416,0.05390914730074667,0.04812962110316968,0.04430192736798763,0.039998300936927536,0.032181066176657315,0.02322980593736646,0.01667890121954116,0.00767101842840625,0.002331518100269846,0.18425781397354019],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07009462399582844}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9999999999999999,"total_shots":1024,"runtime_seconds":0.14016798599914182},"direct_metrics":{"exact_objective":15,"optimal_count":1,"combinations":6,"optimal_probability":0.29877874141843347,"feasible_probability":0.9995534295786261,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.6666666666666666,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9415424524871414,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9965827151387818,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999883221641773,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999998636282,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":15},{"shots":16,"best_objective":15},{"shots":32,"best_objective":15},{"shots":64,"best_objective":15},{"shots":128,"best_objective":15},{"shots":512,"best_objective":15}]},"component_metrics":[{"exact_objective":4,"optimal_count":1,"combinations":2,"optimal_probability":0.8261619378719081,"feasible_probability":0.9999999999999999,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":2,"hit_curve":[{"shots":8,"quantum":0.9999991660135855,"uniform":0.99609375},{"shots":16,"quantum":0.9999999999993044,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.7733391199176196e-32,"independent_samples":[{"shots":8,"best_objective":4},{"shots":16,"best_objective":4},{"shots":32,"best_objective":4},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999916752581407,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.625802136488331e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.8261550602870413,"diagnostic_seconds":0.0022802409948781133}
+{"instance":"n4-s1-r3.json","seed":4,"direct":{"status":"feasible","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t1","group":"g1","resource":"r2","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":8,"reserved_end":8,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":9,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":12,"end":14,"reserved_end":16,"changed":false}],"bits":[1,0,1,1,0,0,1],"qubo_energy":15},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.830552027476001,2.598621578466603],"expected_energy":18.146607303994656,"initial_expected_energy":29.49289103738139,"history":[29.49289103738139,29.105892748548857,20.38128711775167,30.53008423968928,18.935940267975166,23.67724140910435,19.1039485341021,20.248142952367132,18.94974909189775,18.911314963863312,19.32328208690286,18.808579961606554,18.7803421895072,18.720562422455856,18.611828440381167,18.43382227752151,20.685549051157775,19.535907304946157,18.647145580864457,18.416164341340146,18.497945898123028,18.413256865708853,18.396067823545778,18.367198839954582,18.46324182260568,18.37496370255843,18.370996056891585,18.376608695929733,18.36474208350652,18.357072063445507,18.353865016233772,18.37990808646567,18.34561009304207,18.3386977958181,18.32668516719034,18.31825772630973,18.29567180283307,18.320886086644315,18.288632978176658,18.30871248622398,18.283030843546264,18.278488972347734,18.277973397009056,18.26951181911531,18.263559694490777,18.256764285232293,18.257333417761245,18.25297374168808,18.247752494639897,18.254772092984155,18.242468168622153,18.243441280491158,18.249530090338695,18.240518699559345,18.23982296050957,18.2415052696113,18.239363836940225,18.23848680253922,18.236801374878432,18.233662225586926,26.94121739368313,24.22171182977172,28.703146456837544,37.13941523541232,27.82576192189034,25.10713413841023,24.359483208306173,24.392351588162224,24.01443436701301,24.04186791146716,24.223178354950985,24.025524258334897,23.925814012361414,23.769845848849606,23.463936488246766,23.120139525127687,22.587874656273776,22.769224124868586,23.273339317523195,22.422466508566302,22.415375484963633,22.507631261585797,22.42102380419684,22.378748143895834,22.311582426642254,22.225545784683227,22.10268476159521,21.978032409346163,21.737797489858572,21.27073120944361,20.348628347679494,19.128290375188463,25.783648137533955,25.583311992649616,18.961947671539555,19.056060300131676,19.028431697633685,19.153021703441134,18.91652556850442,18.816641620265177,18.73168820478083,18.664748437126125,18.685632450925617,18.6458110558896,18.663714173425006,18.628444448823952,18.618317724359713,18.628580066956687,18.602197550893727,18.586319659439926,18.55626135866886,18.499495501605836,18.384036039109375,18.1944268092418,20.335667461517033,19.50654798251405,18.15072484143694,18.372709347530506,18.218004693765582,18.146607303994656],"feasible_probability":0.9891636243095321,"one_hot_probability":1.0,"sampled_feasible_fraction":0.974609375,"counts":{"1001011":112,"1001101":178,"1010011":93,"1010101":116,"1100011":5,"1100101":8},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09471173500060104},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[0,6],"fixed_cost":11,"removals":[{"variable":5,"forced_by":6,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[2,2],"max_component_qubits":2,"component_to_original":[[1,2],[3,4]],"components":[{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-1,-2],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":6,"cost":5},{"index":1,"task":"t1","resource":"r2","start":4,"cost":4}],"conflicts":[]},{"qubits":2,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1],"quadratic":[[0,1,14]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":9,"cost":0},{"index":1,"task":"t2","resource":"r1","start":10,"cost":6}],"conflicts":[]}]},"best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t1","group":"g1","resource":"r2","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":8,"reserved_end":8,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":9,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":12,"end":14,"reserved_end":16,"changed":false}],"bits":[1,0,1,1,0,0,1],"qubo_energy":15},"components":[{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r2","start":4,"end":6,"reserved_end":6,"changed":true}],"bits":[0,1],"qubo_energy":4},"seed":367776961,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.603343436469568,2.7615648785945064],"expected_energy":4.217811710538733,"initial_expected_energy":4.545825623420507,"history":[4.545825623420507,4.572022919086653,4.530972780420642,4.4817292358366165,4.543491025866762,4.449574343486415,4.469513103990202,4.524106387731554,4.442960933981871,4.478712174397947,4.437569035563711,4.431360784732982,4.43951421815227,4.427774300491847,4.421757349248534,4.415161657842507,4.4070593490454755,4.3953466270496815,4.436098140491493,4.398264462687642,4.397240970446477,4.39941179607644,4.389784084968081,4.38814363902293,4.393374525117453,4.383944060403064,4.379990259490935,4.373137961455918,4.404372688655841,4.371659988567539,4.366738037502089,4.3572295325091615,4.342634071641768,4.3165479265086315,4.283460001518371,4.533486754738689,4.620699502059418,4.257434268853279,4.348956699180143,4.274673162958625,4.259169154874766,4.248491970303558,4.249426769825652,4.250158597495139,4.249041496648715,4.247415638932126,4.245933248858201,4.24408969089876,4.240514022751677,4.233439178071063,4.226328938346548,4.243372589582438,4.2704508945192075,4.224271906430255,4.2178965266310895,4.21977343688986,4.219620328855965,4.217811710538733,4.218282516072021,4.21781659441084,4.508664893232245,4.517886976890448,4.530838819719107,4.477140021794515,4.49899119831452,4.508324927169266,4.4872914895558385,4.471950343359477,4.464319668031621,4.466422246944383,4.462179296092109,4.4585881319059695,4.45473671014198,4.463060108481832,4.450204888146238,4.445865632603816,4.437441082982601,4.421186396105938,4.388433224074525,4.32490597925649,4.753241711490334,4.683731541797616,4.512612122966007,4.316896676069915,4.372697767865022,4.325760567227295,4.3182664192945275,4.315309561299884,4.321871552366772,4.312782171036718,4.310896917818289,4.307391886201762,4.308825373812491,4.30653106186257,4.30999538215098,4.306114766377149,4.304773693963091,4.303678830727547,4.304042304913044,4.302716837277551,4.301789960334656,4.299981178226193,4.296548431221292,4.292266924014246,4.287847861095212,4.289856135005899,4.298419996421963,4.284876409942374,4.283977266607788,4.2862416897480555,4.283029406275791,4.282192751839996,4.281037436094689,4.283681825315217,4.279914581058475,4.278971114597614,4.277219249441918,4.276944918361303,4.273803085916947,4.271045240276854],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":120,"10":392},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07802118700055871},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":3166742020,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.8256121777987773,2.7487563200690524],"expected_energy":5.4198239875052396e-05,"initial_expected_energy":0.8459564212836775,"history":[0.8459564212836775,1.805324182239965,4.579248534456566,3.076271453353625,2.2857039195140425,0.6885503459277857,0.626196372424886,1.3088671323148586,0.487476954690579,0.4220138863513904,0.3749453025038627,0.44414686621151855,0.34384535759211565,0.3171402290066504,0.33079177493161177,0.2979533336273161,0.3013996477353811,0.30567377270451046,0.28507103703484443,0.26933105117617884,0.28335093110897747,0.25541380637305283,0.2470762911855166,0.2542062786992887,0.24461764423483814,0.2396797147999921,0.23106033772378448,0.22377933389754145,0.20228029336543094,0.1850452746301679,0.15129905114447478,0.11051547329537176,0.10274688717918248,0.06025094614633482,0.031683865341169154,0.00525010058415213,0.003955113850818577,0.017103326061841926,0.00583362365492025,0.017733246088279052,0.0003205607550223808,0.001273948190101808,0.0003695688618501716,0.0007854236392688802,0.0003137042118752418,0.00018711997622516496,0.00013201944773909993,0.00010295190500927815,0.00011660107324095141,9.997465999985875e-05,0.00011835747203752402,8.779302331062851e-05,7.96968653425361e-05,7.043707296052087e-05,5.4198239875052396e-05,7.91391298265822e-05,6.253329657561113e-05,5.429307843519072e-05,5.887020097879743e-05,5.4613232965542636e-05,2.433786449226618,2.5414810308083977,0.6335421179621136,5.54535572618232,0.007423505288207653,0.06646055436535493,0.07517942093678581,0.3851882383587082,0.010425952174604848,0.039397095828335144,0.08529616774197099,0.009995947737482967,0.013550066236242019,0.0077871830769209475,0.006558904398770237,0.00553082186114012,0.0049603863087941905,0.006061461751681811,0.004592075674336353,0.0042485402781354915,0.0038979820855718494,0.003205081606503507,0.0028320612375814895,0.0022781263414599555,0.0019721623211248684,0.0015774940463829758,0.0014292290208676728,0.0028299460718044568,0.0011229561906992713,0.001020978878849968,0.00085250008414431,0.0005768316888370671,0.000926495951864654,0.0008749413737654229,0.0006865297480784492,0.0005327553676432229,0.0005980337070121498,0.0005217072575350981,0.0005003606317466504,0.00047770333138522607,0.0004383444597472981,0.0004121223275008096,0.00031576770561546477,0.00031695528322253,0.0002992683887722036,0.00031189132743715016,0.00031141518763126914,0.00028141968296275686,0.00027540337620923165,0.00033360625690550654,0.00026434702149401415,0.0002447607418771357,0.0002112046218205819,0.00015573003895694902,0.00016977332074499002,0.00022282390012483494,0.00014364382087399754,0.00016613896300664768,0.0001345973108452253,0.00012214149185484915],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07433955300075468}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.15255260599951725},"direct_metrics":{"exact_objective":15,"optimal_count":1,"combinations":6,"optimal_probability":0.3438192595609546,"feasible_probability":0.9891636243095321,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.6666666666666666,"shots_for_95_percent":8,"hit_curve":[{"shots":8,"quantum":0.9656293429793898,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9988186579359716,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999986044309278,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999999980523,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":15},{"shots":16,"best_objective":15},{"shots":32,"best_objective":15},{"shots":64,"best_objective":15},{"shots":128,"best_objective":15},{"shots":512,"best_objective":15}]},"component_metrics":[{"exact_objective":4,"optimal_count":1,"combinations":2,"optimal_probability":0.7821882894612674,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":2,"hit_curve":[{"shots":8,"quantum":0.9999949341794035,"uniform":0.99609375},{"shots":16,"quantum":0.9999999999743374,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.311115933264679e-33,"independent_samples":[{"shots":8,"best_objective":4},{"shots":16,"best_objective":4},{"shots":32,"best_objective":4},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999909669600209,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":7.115076756936123e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.7821812239231775,"diagnostic_seconds":0.002153321009245701}
+{"instance":"n4-s1-r3.json","seed":5,"direct":{"status":"feasible","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t1","group":"g1","resource":"r2","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":8,"reserved_end":8,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":9,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":12,"end":14,"reserved_end":16,"changed":false}],"bits":[1,0,1,1,0,0,1],"qubo_energy":15},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.6889612993917262,2.7340259790551413],"expected_energy":19.158893233980717,"initial_expected_energy":27.70324468035073,"history":[27.70324468035073,27.869577736394053,20.75233501408878,34.54739224214925,19.85696479893648,19.58271714461523,19.269254415762937,19.23289840611142,19.919457870960883,19.67968208643574,19.239170915588314,19.200291155873245,19.572529366099207,19.195937714152787,19.25146983102811,19.19352554318124,19.17840648198824,19.167593261414765,19.160866557403484,19.16148214488253,19.160652344539933,19.163780414885988,19.160054189586276,19.16387503565585,19.160071017920593,19.1598648102747,19.159639976872654,19.159580888376624,19.15942838440241,19.159257267929704,19.15913406826679,19.158976646197036,19.158896710795702,19.16092683617624,19.159468122273903,19.15890344961093,19.159014197398488,19.15892400753415,19.158910466236474,19.158903869440515,19.15889602075665,19.158896168896085,19.158895612655215,19.158895353511525,19.158895750157573,19.158894732213064,19.15889471878453,19.158894235386725,19.158894045183445,19.158893727565246,19.15889354900585,19.158893647233434,19.158894267393556,19.158893821918245,19.158893364588458,19.158894022343652,19.158893276992927,19.158893395249553,19.15889324939669,19.158893233980717,27.79220771514353,28.96594817592738,22.524523725885985,34.10541250253713,20.973229591624893,19.942163982580514,19.542040414150343,20.19520290798748,21.843041934875416,19.518453809761684,19.213903810074754,19.327959706092155,19.21032192982738,19.261065799708618,19.21016570202607,19.19664575930529,19.18722627315546,19.181457927362175,19.17922365637865,19.17675860561934,19.177467228015367,19.175531901235235,19.175174121740252,19.177060482331417,19.174780318873484,19.17404822525001,19.172713929490293,19.170374343528366,19.16679799929692,19.164107125242932,19.1611671126499,19.158959487085273,19.19030244533145,19.168650650660574,19.16052580835469,19.15895640361213,19.15983114133001,19.15891766247716,19.15897495099366,19.158911402654304,19.158898766407695,19.158916317378008,19.158902919921385,19.15889998922629,19.158897391641922,19.158896602752485,19.158898545231413,19.158896126569168,19.158895778414166,19.15889637258948,19.158895515663975,19.158895312506637,19.15889488430083,19.158894199620516,19.158896106098695,19.158896130610056,19.15889422640334,19.15889415573213,19.158894146068356,19.15889454917785],"feasible_probability":0.9993842729204423,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"1001011":110,"1001101":106,"1010011":149,"1010101":147},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09379637498932425},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[0,6],"fixed_cost":11,"removals":[{"variable":5,"forced_by":6,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[2,2],"max_component_qubits":2,"component_to_original":[[1,2],[3,4]],"components":[{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-1,-2],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":6,"cost":5},{"index":1,"task":"t1","resource":"r2","start":4,"cost":4}],"conflicts":[]},{"qubits":2,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1],"quadratic":[[0,1,14]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":9,"cost":0},{"index":1,"task":"t2","resource":"r1","start":10,"cost":6}],"conflicts":[]}]},"best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t1","group":"g1","resource":"r2","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":8,"reserved_end":8,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":9,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":12,"end":14,"reserved_end":16,"changed":false}],"bits":[1,0,1,1,0,0,1],"qubo_energy":15},"components":[{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r2","start":4,"end":6,"reserved_end":6,"changed":true}],"bits":[0,1],"qubo_energy":4},"seed":803261128,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.823193088229145,2.7452235504020424],"expected_energy":4.2025588982572994,"initial_expected_energy":4.474393511350216,"history":[4.474393511350216,4.461829839934494,4.408787874909306,4.619676921416476,4.361470228169134,4.3448867026150895,4.352055764986446,4.369083846451458,4.345517543305693,4.349059520758349,4.339389894567354,4.337458019182095,4.332995476541342,4.32570845342629,4.309851175305912,4.283425607446308,4.592853924688021,4.546666201412261,4.314841884350987,4.281890915026934,4.319073550722768,4.277566187147922,4.274492892002983,4.271658882809228,4.274479755248575,4.269684398229385,4.270465046595272,4.268810564081494,4.268185946838018,4.268359217725923,4.268015412232796,4.267619687347121,4.266863009861134,4.265423450082171,4.262481335100251,4.256671755275098,4.246750389194194,4.270157497904052,4.310573439505958,4.2483186413288205,4.24620255320867,4.2511767336044155,4.243802354935794,4.2425767746797405,4.241165001464228,4.240077794500522,4.237304806542368,4.233466060466317,4.227752737449556,4.221429756042026,4.207414708551347,4.292042871660395,4.249869790529421,4.226867995624234,4.205687127076498,4.206560044539965,4.206375447193458,4.204423726441615,4.20402725428937,4.2066540932882015,4.538402685355908,4.5794169812406,4.4885560128487665,4.488168028432403,4.499168933254836,4.5040183739020385,4.483243666316311,4.4829737748825185,4.4880620044503825,4.48302595084224,4.477874716608848,4.468647564746375,4.464527263664724,4.446807787233016,4.430266488142488,4.402358362113385,4.632692822937721,4.461231559955124,4.4240895755812275,4.398235910219174,4.388962729228774,4.368742590730666,4.337605050143779,4.293249657020543,4.517237344147632,4.594307948624514,4.288313205238806,4.2813186293166545,4.2970176564333995,4.290243865441734,4.268615560539578,4.265847837037292,4.269604142859294,4.2658888277529705,4.268248440180909,4.266113645206996,4.264920384997538,4.263174565147893,4.260047385443694,4.280289625407004,4.2596534908063015,4.257154957327659,4.25289963473581,4.247042327153945,4.240439158487666,4.236671742556445,4.221824467870423,4.426751225214012,4.259282685037474,4.220321376257349,4.269503883733059,4.211385777791754,4.212932673012174,4.210642823299777,4.213591289747763,4.209955439543566,4.208892812647877,4.207696778177996,4.205882055532598,4.2025588982572994],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":114,"10":398},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07581883099919651},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":3767054407,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.827108755097868,1.1783983102465703],"expected_energy":3.535411917467985e-05,"initial_expected_energy":0.6389280091962909,"history":[0.6389280091962909,1.1813866720461692,5.424904429676166,2.4970849558666703,2.9522999453825087,0.15740146273056127,0.3303902731146714,0.14776950504037908,0.2745898189537599,0.11691714278793558,0.13801148058072743,0.147546078180883,0.11688975926409376,0.10792601149470431,0.10214390392499074,0.10882373519784938,0.10047154012394822,0.09737668550659494,0.09106545791591321,0.08182676349084515,0.06939111119650511,0.04528150452603312,0.026864208596036943,0.04490470233375402,0.0964036097466849,0.032276787480487804,0.01703249934494451,0.01871461016161062,0.020118301308103312,0.017549442368292215,0.015696137117084622,0.013295194025712598,0.009534152456589175,0.005878233860663244,0.001240668247006832,0.03222880835878668,0.008484974318466152,0.0009811331583163786,0.004665234923746594,0.0008404657722500949,0.0007812364298820958,0.0021671614575134203,0.00048045475403568757,0.00044225757373088685,0.0003262394139416283,0.00023650750668394846,0.00026612070669538765,0.0002673909487850055,0.00026559663734768873,0.00020580446337608877,0.00017397589997716453,0.00018519378333497734,0.00016223241981328215,0.00023469660610252977,0.00015350523130375606,0.00013917284303582248,0.00011477584726747494,8.278002718591352e-05,0.0001293881776728464,6.8690468112027e-05,2.878592755483987,2.057479884064271,4.345284890316421,2.1066827400464585,2.360215732697869,2.1425758175627223,2.171699357622036,1.8463810193682781,1.5181818333274244,1.3397486399861231,0.8635747239105234,0.5544125360156155,0.4728688593105492,0.23217746131642647,0.7107146423890105,0.20082436139468357,0.28406874025763496,0.2544997846845862,0.14167291595531048,0.12427478713294934,0.24330194717648249,0.10000610025392956,0.09039550043800132,0.07368459116808118,0.049731134453048234,0.04663525275445062,0.011721686123150232,0.22115218823184984,0.04991694745639323,0.009979982830689758,0.036277637398658476,0.00786212552482709,0.007739825198251731,0.00632105574930694,0.005221372660962124,0.003790085363196841,0.0026154951644810466,0.002496526543826891,0.0007720608396449161,0.008850242239101715,0.0024871883076423924,0.0006654734595383817,0.0016107656224668278,0.0007495726049761185,0.000759851648682821,0.0005847943822941881,0.0005884913256087787,0.0005760907112106333,0.0005505041217046232,0.0005265955583236555,0.0005029263610006325,0.00045284049963551366,0.0003742470266200119,0.0002342846105391885,0.00011327446305459833,0.0006279346539973402,0.000811833997654674,0.00010417150012100731,3.535411917467985e-05,0.00014220971137050457],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07463153199933004}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.15063879700028338},"direct_metrics":{"exact_objective":15,"optimal_count":1,"combinations":6,"optimal_probability":0.2007734980914638,"feasible_probability":0.9993842729204423,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.6666666666666666,"shots_for_95_percent":14,"hit_curve":[{"shots":8,"quantum":0.8335211714014746,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9722847996284628,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9992318676683656,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999994099727211,"uniform":0.9999914414488029},{"shots":128,"quantum":0.9999999999996518,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":15},{"shots":16,"best_objective":15},{"shots":32,"best_objective":15},{"shots":64,"best_objective":15},{"shots":128,"best_objective":15},{"shots":512,"best_objective":15}]},"component_metrics":[{"exact_objective":4,"optimal_count":1,"combinations":2,"optimal_probability":0.7974411017427007,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":2,"hit_curve":[{"shots":8,"quantum":0.9999971659297624,"uniform":0.99609375},{"shots":16,"quantum":0.9999999999919681,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":4},{"shots":16,"best_objective":4},{"shots":32,"best_objective":4},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999941076468042,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.285485590866834e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.7974364029380764,"diagnostic_seconds":0.00206423900090158}
+{"instance":"n4-s1-r3.json","seed":6,"direct":{"status":"feasible","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t1","group":"g1","resource":"r2","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":8,"reserved_end":8,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":9,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":12,"end":14,"reserved_end":16,"changed":false}],"bits":[1,0,1,1,0,0,1],"qubo_energy":15},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.032624962746254,1.0811597958693826],"expected_energy":18.199405023269872,"initial_expected_energy":36.56598255540713,"history":[36.56598255540713,35.01811244902288,18.438848325620885,28.16603192310881,18.890901749736422,18.213485150808552,19.18845484982968,18.256466841748654,18.42180026859183,18.224847288385796,18.21779052730907,18.225405661864883,18.20979157364812,18.20209008844075,18.200156997354444,18.201910284952156,18.200207287654788,18.200069548706725,18.20017347396712,18.20009070241243,18.200083399477343,18.200035725969407,18.200049185437873,18.200062319663456,18.20003624438652,18.20002351192824,18.200000756741332,18.19995824008958,18.199953410791636,18.19988026178775,18.199838295629654,18.19976017213603,18.199625397771356,18.199483273139364,18.200724561055896,18.2001799187993,18.199469722163492,18.199482930043086,18.199503657350174,18.199444677512574,18.199466759779654,18.199452784255755,18.199444262410825,18.199442444193192,18.199439000113685,18.19943266388215,18.199423556750215,18.19949550915681,18.19947866951988,18.199422735687207,18.199419853736288,18.199414492470584,18.199406795360748,18.199438658378124,18.19944230136263,18.199415785414253,18.1994060700607,18.19940863812439,18.19940586926581,18.199405023269872,35.928771530673764,31.261483829697696,27.789563435492937,19.456802288806365,24.988999826617675,26.25978791048864,21.005130896606627,26.050057874224706,19.50063120292477,19.4130487775732,19.45682715557536,19.732038137320252,19.087130649607403,19.18954664763642,19.153898267199093,19.100934350467266,19.054924678000333,19.055682323864964,19.033898895742595,19.021103931721868,19.03549028264957,19.012649029934302,18.996914276704977,18.97059420272011,18.92814834681483,18.84749344412014,19.09374829583688,18.853570124183946,18.882631293951796,18.804269493548418,18.77290902947827,18.830416333246465,18.74911164762179,18.729633653423384,18.68684075966221,18.60732259372692,18.496061022326657,18.729783786092046,18.773518857967815,18.472647225990094,18.444228858554084,18.435524346148142,18.540341563925757,18.410264601418262,18.39831119886402,18.38564224504355,18.37760846620477,18.346273728529653,18.367347175584403,18.34012415589312,18.36336183965837,18.332874670685147,18.326487428914355,18.314819045434763,18.301705760936095,18.2858837338026,18.28831350970897,18.313036375364035,18.286494199758813,18.278858464457088],"feasible_probability":0.9987673131302622,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.998046875,"counts":{"1001011":130,"1001101":161,"1010011":104,"1010101":116,"1100011":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.0912297419999959},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[0,6],"fixed_cost":11,"removals":[{"variable":5,"forced_by":6,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[2,2],"max_component_qubits":2,"component_to_original":[[1,2],[3,4]],"components":[{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-1,-2],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":6,"cost":5},{"index":1,"task":"t1","resource":"r2","start":4,"cost":4}],"conflicts":[]},{"qubits":2,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1],"quadratic":[[0,1,14]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":9,"cost":0},{"index":1,"task":"t2","resource":"r1","start":10,"cost":6}],"conflicts":[]}]},"best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t1","group":"g1","resource":"r2","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":8,"reserved_end":8,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":9,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":12,"end":14,"reserved_end":16,"changed":false}],"bits":[1,0,1,1,0,0,1],"qubo_energy":15},"components":[{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r2","start":4,"end":6,"reserved_end":6,"changed":true}],"bits":[0,1],"qubo_energy":4},"seed":3153149895,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.6273002914300316,2.761979063152828],"expected_energy":4.21619324796403,"initial_expected_energy":4.55037169248978,"history":[4.55037169248978,4.577675572853619,4.427998333251406,4.505245352607283,4.458123747685117,4.432831527629066,4.4199023127379355,4.435382708799808,4.415530557662551,4.41173237096022,4.403700992073357,4.389755783403183,4.497249129279874,4.399776792796872,4.397827305039634,4.393829606573521,4.385870281210473,4.382801055306441,4.385268445460017,4.380811580163199,4.379904631520894,4.382016358118207,4.3788462792727225,4.376779875524235,4.372705614476756,4.3646645666648825,4.348730702545615,4.320023810029384,4.4978655677262385,4.5354499731375535,4.347325562516076,4.318023999829975,4.34755612796369,4.312425329539335,4.311949654950592,4.30921670222688,4.3069785893483825,4.3034398287899585,4.295799444394957,4.2806758799298485,4.253941591104361,4.721828680532178,4.544027240993605,4.298655946005709,4.285301136034898,4.251478877324546,4.249728043070579,4.247580369612006,4.2513697506251305,4.245014523720432,4.243990630058191,4.2420736279137135,4.238448591091233,4.231382645864938,4.217648881167991,4.247026909794807,4.305898675445473,4.234324074645018,4.21619324796403,4.224166502013498,4.646190054318471,4.684357936631714,4.4083625037046446,4.429827502641356,4.444352895015857,4.439363595060067,4.362087317966876,4.370093444462795,4.362647227663497,4.369038884272802,4.3520329972432705,4.348693308666881,4.365405659067524,4.344452028481372,4.341473501480837,4.34296122261258,4.336896189504325,4.338493444232871,4.338844000864048,4.337050027644,4.335919192149421,4.334008070720321,4.330506587895023,4.340616030472639,4.32904160483797,4.3247625095018085,4.316608488371469,4.30278384755038,4.325326772181404,4.374314359136925,4.305844868156685,4.304604143741493,4.304443825296287,4.300650144185462,4.300531346816086,4.3016702832957705,4.300610180231759,4.300078349702226,4.29926499860429,4.298418506402461,4.2968591398111595,4.295333026612777,4.29234347686543,4.286356260511411,4.27449537303732,4.259217263557413,4.342363013003588,4.34428282609454,4.256439802251972,4.248058178995217,4.257358923934968,4.252042715639854,4.248567813045311,4.246604231117881,4.246556159381305,4.245646177436061,4.244814122566467,4.243343073053125,4.240714110966285,4.235125982707104],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":111,"10":401},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07555818901164457},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":4186225163,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.8387137683924306,-0.39246832585026864],"expected_energy":4.2527875535732186e-05,"initial_expected_energy":3.6973209914606304,"history":[3.6973209914606304,3.660768845646018,5.2280705330003014,0.23155568931004614,4.395814011135829,1.1053418443980707,1.9559946042313352,0.19573972500044814,0.2219001408654191,0.2725953631141622,0.11952662757512796,0.1372395846085983,0.11365131736683413,0.1286415600565864,0.1119223111037135,0.10671592684202386,0.0983588583527554,0.08847571276007285,0.1063998398931271,0.08214139502890941,0.07627423130065952,0.06657263715135464,0.047265392029611,0.017649602199940405,0.2806460306597446,0.17183711392107556,0.048157199458308264,0.015377606028717029,0.02843924521093434,0.014218502785003018,0.011806770559157596,0.007594302081326578,0.0046912931629174304,0.019130898135613774,0.024465405334480904,0.0017627180241633037,0.0029680845690577213,0.0016449112321003398,0.002751874948009156,0.001420169915964694,0.001223345231889654,0.0018317630925198342,0.0009351885276528313,0.0008667427620926118,0.0006991274650432573,0.0004482293349567879,0.0004281186269782442,0.00011411126127973596,0.0008119820514001408,7.341038433716123e-05,0.00016109940356994937,8.122057041578999e-05,6.31687013270486e-05,6.517699543426697e-05,6.716155181499241e-05,5.794766655540738e-05,5.763597390600258e-05,7.785803570979283e-05,4.600950870027236e-05,4.2527875535732186e-05,1.6633418416524672,2.523204095981089,4.655956188622681,2.2232813655974746,2.697957669707544,1.8249387852419954,1.5466270335472883,1.3406412728237393,1.0829946353396165,0.9283892676864351,1.1834180309562956,0.8413474649878924,0.7560542432443087,0.6572571375258394,0.5067780455501822,0.4586570869700638,0.909826181312173,0.3551530534934817,0.31912983446192256,0.26130283101038065,0.1668617678866885,0.30596440808115444,0.29601178878780116,0.21468640951437706,0.15416439075819957,0.18306396751958073,0.15110927223928994,0.1407739625320831,0.13195791325801337,0.13947455796992483,0.12478285578880013,0.12371333759817585,0.1379685748951569,0.12130607318972338,0.11683591785202796,0.10899440517857861,0.09660452370950162,0.07227095891488379,0.044762520081073134,0.07306363326520685,0.10767000077490146,0.038055114516722485,0.03163149643301959,0.028753190519702307,0.05009384157991745,0.02368093716335731,0.021411895600392573,0.01844433847577242,0.013697989294711475,0.036389755869347194,0.016063909105193515,0.01475370461149399,0.014653081710743407,0.012514085649912009,0.012553818479504646,0.01306785384344152,0.011544310125721694,0.010118961429171711,0.014406685994927955,0.008765564898361186],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.0773357220023172}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.15307520399801433},"direct_metrics":{"exact_objective":15,"optimal_count":1,"combinations":6,"optimal_probability":0.3045783986764996,"feasible_probability":0.9987673131302622,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.6666666666666666,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9453002409129827,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9970079363558223,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999910475551492,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999999198538,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.942890293094024e-16,"independent_samples":[{"shots":8,"best_objective":16},{"shots":16,"best_objective":15},{"shots":32,"best_objective":15},{"shots":64,"best_objective":15},{"shots":128,"best_objective":15},{"shots":512,"best_objective":15}]},"component_metrics":[{"exact_objective":4,"optimal_count":1,"combinations":2,"optimal_probability":0.78380675203597,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":2,"hit_curve":[{"shots":8,"quantum":0.9999952275981066,"uniform":0.99609375},{"shots":16,"quantum":0.9999999999772242,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":6.933347799794049e-33,"independent_samples":[{"shots":8,"best_objective":4},{"shots":16,"best_objective":4},{"shots":32,"best_objective":4},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.999992912020744,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.622795403048777e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.7838011964299708,"diagnostic_seconds":0.002314368000952527}
+{"instance":"n4-s1-r3.json","seed":7,"direct":{"status":"feasible","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t1","group":"g1","resource":"r2","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":8,"reserved_end":8,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":9,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":12,"end":14,"reserved_end":16,"changed":false}],"bits":[1,0,1,1,0,0,1],"qubo_energy":15},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.7669605170765319,2.740616285147603],"expected_energy":19.18554213566473,"initial_expected_energy":33.061908316320434,"history":[33.061908316320434,30.386960745663448,33.677995318532346,28.720715482325033,29.31610931603481,26.881659426159658,29.724177850761183,28.131262966999476,27.20068157943092,26.216713815085903,28.606017876026822,26.807387090939994,26.083192580480272,25.800104431029812,25.24070445427426,24.393291600616685,25.818036355181462,27.799237885314938,23.874761777590198,23.95319877216065,24.44301691312259,23.725769235563938,23.68625103858739,23.871339357025448,23.65931464493701,23.57305386203081,23.418692305812968,23.173572846458256,24.78320924842781,22.96906109498635,22.686907660734406,22.178974006795436,22.713253791721716,22.227277638222304,22.14546622887804,22.76424167174685,21.965837738410755,21.692644476837017,21.4949376222662,21.19024330705918,20.72171683101985,25.16377840671198,21.085501092687302,21.143302284699743,20.864432955094614,20.67055415763703,20.5729615222778,20.43899127914028,20.565406888349926,20.375550063030825,20.355580174654445,20.279427284848836,20.152750204294552,19.912365514501563,19.928375796734503,19.99696309143046,19.982925009446628,19.812946040019995,19.69897472431792,19.523480110329317,24.119936083707184,26.685461532708523,31.20482779857823,27.03515941899476,22.86676837732756,24.961124296958648,24.511760417627794,22.585151078406582,22.628806912055826,22.178570057705137,22.083463417948977,22.398539071593987,21.84543864854027,21.62890271646122,21.33146789390652,20.980004223110058,20.94943953620239,21.68207293369131,20.52015217902147,20.389749845372094,20.244523979729173,20.249954860400408,20.150893793851548,20.13064612158165,20.267646528656194,20.12301022832164,20.0705185933339,19.99676071898473,19.843399053492675,19.703517507740788,19.47851263469728,19.72381839886154,20.398535043539308,19.50573729982775,19.487686351248406,19.500207310822326,19.44993176087168,19.442697802099048,19.47925312166243,19.43680349321918,19.42587492379579,19.405198419530258,19.36716344785367,19.30390880793603,19.4310343348807,19.439901439018787,19.302005951244873,19.28240263112093,19.25196430793776,19.2152820468572,19.219476382567926,19.246458613003966,19.223903251706812,19.208842162059288,19.221020731960877,19.204973052003076,19.20410542433828,19.198532233439337,19.19356252253923,19.18554213566473],"feasible_probability":0.9967026013668876,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.99609375,"counts":{"1001011":103,"1001101":117,"1010011":137,"1010101":153,"1100011":1,"1100101":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09374238099553622},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[0,6],"fixed_cost":11,"removals":[{"variable":5,"forced_by":6,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[2,2],"max_component_qubits":2,"component_to_original":[[1,2],[3,4]],"components":[{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-1,-2],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":6,"cost":5},{"index":1,"task":"t1","resource":"r2","start":4,"cost":4}],"conflicts":[]},{"qubits":2,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1],"quadratic":[[0,1,14]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":9,"cost":0},{"index":1,"task":"t2","resource":"r1","start":10,"cost":6}],"conflicts":[]}]},"best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t1","group":"g1","resource":"r2","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":8,"reserved_end":8,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":9,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":12,"end":14,"reserved_end":16,"changed":false}],"bits":[1,0,1,1,0,0,1],"qubo_energy":15},"components":[{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r2","start":4,"end":6,"reserved_end":6,"changed":true}],"bits":[0,1],"qubo_energy":4},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.897362334102738,1.19318299786385],"expected_energy":4.198132237404145,"initial_expected_energy":4.4275433503828,"history":[4.4275433503828,4.402835725873217,4.653132126825193,4.424573476041262,4.506182531386857,4.4076984391107175,4.390920813272275,4.370276738406108,4.344436961904609,4.337836143477865,4.354133017364637,4.3332955276385015,4.329983108678581,4.325936192449552,4.322718747468806,4.312964322609569,4.305372266699104,4.286845407394653,4.386259990948743,4.328448026829528,4.310290430059253,4.284279179079717,4.283963825871152,4.280116764503449,4.272670347457611,4.258726834572905,4.270716772384002,4.3063179003902174,4.286226543223295,4.256746155950617,4.254853373407027,4.26030552260464,4.252080739772971,4.250902584348093,4.249084270847115,4.24560630892411,4.239963661114674,4.2686382114278425,4.27072606674969,4.2379273774225865,4.236591706023617,4.247044467944892,4.233467950097738,4.232284137594085,4.230638656275588,4.22806567879812,4.246369370042279,4.226974909966488,4.225337534973745,4.221636744947922,4.213850944873672,4.203128598586339,4.2095699636711235,4.236692520697764,4.202778989166468,4.2044012860427635,4.203146842838694,4.201934046624536,4.200704037012075,4.198132237404145,4.421993854215532,4.395067197189792,4.648856616032389,4.435194397070886,4.518618604924743,4.3517360456264536,4.3433977794172565,4.3415663246400875,4.387725755463862,4.33261938222315,4.329073927041538,4.326835757172425,4.333719775545907,4.324467603129428,4.322708039517702,4.319035587006387,4.313890913177227,4.309954862247734,4.305141620418571,4.312103358029766,4.299839976543105,4.306541129571675,4.307342095639832,4.300790979267069,4.297015152972667,4.296157475667979,4.294204614677649,4.292382405152695,4.2901601694782565,4.286138561152518,4.285911296094357,4.278236297316111,4.281545704292079,4.281196874794288,4.279549065666804,4.277033491912764,4.279085022616466,4.276565432743124,4.275682015069247,4.274421026268858,4.274897089506659,4.273863796945577,4.273065635431553,4.27310157558855,4.272303934098762,4.2713476323980215,4.269530524999603,4.265876092783673,4.258992720227186,4.275302095855383,4.280371372005084,4.259162018115917,4.258446291976311,4.2578568592894985,4.259010760817551,4.257055815349118,4.255745107429284,4.254135337353031,4.252447528158058,4.250728365761636],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":104,"10":408},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07589341700077057},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":3618983171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.83946353128372,1.1788645767707744],"expected_energy":6.611059921192291e-05,"initial_expected_energy":1.771032036369542,"history":[1.771032036369542,2.431451124965126,4.995225552902449,1.862737759814685,2.2360973391177614,1.8442505484484977,1.9416887992641239,1.4629897332920752,1.020303262004711,0.9435474698592448,0.6953433240339113,0.5056834986093075,0.26334289695732094,0.901820630892066,0.19619452217614164,0.4025521703874563,0.1699663496794403,0.12979173612322403,0.12206139963645618,0.08263242753457944,0.11776725240894868,0.07597457081176875,0.1050573920105936,0.06757791579694705,0.06052501500675937,0.048872679020911275,0.06868377542390944,0.04959645609990067,0.046457774743069585,0.046963952716523275,0.048371829425131956,0.04331804339127873,0.03981717686894895,0.04192947755252422,0.03782521149347428,0.03653352135286012,0.03762359368552512,0.03453752942664212,0.033177360668037836,0.03435332949611812,0.0313181160319405,0.029980987106858696,0.031099419158638904,0.028225855028465807,0.027102757405750126,0.02870034459388636,0.025379987246832297,0.023748978291345105,0.020657914781411827,0.015572626766231836,0.011747771204607762,0.008440943190098853,0.007622671703432976,0.07839224411216351,0.00028949581332673687,0.01191337974215241,0.00012553034108589867,0.001696714480531969,0.001034887486305613,6.611059921192291e-05,3.4788205010599715,3.3396434957078833,1.1430328345864793,4.160347339913521,1.5869963397506113,1.0219577854074586,0.8134306591640266,0.9336090853111362,0.7508331278935869,0.8065829846515012,0.6714202325201515,0.6501810767400641,0.5572778393394282,0.4934641987372717,0.4246212409729429,0.3108144353770354,0.3396914333774153,0.3795926987101856,0.33218752879048274,0.3874076696152984,0.2866657081984155,0.2899446646053084,0.29328500795319323,0.275142158258014,0.2575717379437758,0.26558323180334586,0.23611124124714206,0.21566791146330722,0.2212161867053709,0.20008817077393481,0.2073206658564963,0.20650055405427015,0.19058391826101617,0.18649079975507687,0.2268668569630038,0.17229523953798456,0.16020587469763317,0.14042383745382134,0.10467249615198926,0.12185514319340712,0.12947812606707174,0.10775347215857725,0.10917539579509046,0.09911291216079574,0.09895580759688045,0.10380611401668594,0.09943029273802478,0.09461577102072602,0.08807297949592793,0.09401005033960658,0.08262862486001557,0.07973163620559572,0.08686681973832781,0.0761570763189547,0.07300685394518658,0.06748552597569817,0.05711397872813748,0.04753847888271863,0.03439901645810207,0.03963730522835486],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07307683599356096}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.14916366500256117},"direct_metrics":{"exact_objective":15,"optimal_count":1,"combinations":6,"optimal_probability":0.2047464856104391,"feasible_probability":0.9967026013668876,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.6666666666666666,"shots_for_95_percent":14,"hit_curve":[{"shots":8,"quantum":0.840027704696173,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9744088647352253,"uniform":0.9459121070676046},{"shots":32,"quantum":0.99934509379586,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999995710978637,"uniform":0.9999914414488029},{"shots":128,"quantum":0.999999999999816,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":15},{"shots":16,"best_objective":15},{"shots":32,"best_objective":15},{"shots":64,"best_objective":15},{"shots":128,"best_objective":15},{"shots":512,"best_objective":15}]},"component_metrics":[{"exact_objective":4,"optimal_count":1,"combinations":2,"optimal_probability":0.8018677625958543,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":2,"hit_curve":[{"shots":8,"quantum":0.9999976251228408,"uniform":0.99609375},{"shots":16,"quantum":0.99999999999436,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":4},{"shots":16,"best_objective":4},{"shots":32,"best_objective":4},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.999988981566798,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.776764700274328e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.8018589272694754,"diagnostic_seconds":0.0021239040070213377}
+{"instance":"n4-s1-r3.json","seed":8,"direct":{"status":"feasible","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t1","group":"g1","resource":"r2","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":8,"reserved_end":8,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":9,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":12,"end":14,"reserved_end":16,"changed":false}],"bits":[1,0,1,1,0,0,1],"qubo_energy":15},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.9395403839591694,1.0728001180827487],"expected_energy":18.22972654016217,"initial_expected_energy":24.34089601332222,"history":[24.34089601332222,21.424930070694636,29.21264870823592,41.015309797094844,23.96419863102208,24.895170218960374,21.747110937900963,20.884584781947368,20.730093969688017,21.344611440211203,20.54985020859406,20.40075647796245,20.128822103756427,19.65981256746379,20.81865114138383,20.987819256765448,19.7061570135303,19.626890917202278,19.659280313905743,19.560230900433343,19.509747169815796,19.402133911919115,19.222106079319904,19.05488445015969,18.748336029717102,20.394451817111502,19.27058064749586,19.325337567583706,18.814910200264503,18.656959211573174,18.637221642749864,18.81592741911442,18.591147163466093,18.563973539020072,18.53806159419326,18.52788832391291,18.462403891428156,18.498006483891096,18.452954361449418,18.50058835678139,18.4468040459548,18.436099838096,18.416919977027092,18.382665523934623,18.360856767651054,18.338284236091525,18.37085405737865,18.44891723740514,18.310121707469406,18.289652972005065,18.263050555882756,18.260181845056643,18.24149011144622,18.268410035461166,18.251495862731097,18.24404667650924,18.24083130422445,18.24597493886781,18.23683031046037,18.22972654016217,22.383035138248676,20.61504897716474,27.97859684507407,29.53266591671234,25.282785973010085,21.04484776696012,20.639943626867,21.11538586102802,20.46245719258892,20.737791359139674,20.469555032654863,20.473833458471642,20.46021937957858,20.462971404219594,20.462677256525097,20.457825648589427,20.4592169931098,20.457832515481638,20.457869986940693,20.45791083017292,20.457857918144175,20.457837714127336,20.457822558401297,20.45786773661071,20.45781249198658,20.45780588460899,20.457806870256817,20.457802531083075,20.457801470858826,20.45780522942664,20.457799755284523,20.457798181950267,20.457795319961377,20.45779127069412,20.45778860274578,20.457785117816943,20.457783270780524,20.457829744436417,20.457780915026444,20.457789999790652,20.457782110820574,20.457781515876363,20.45778015474678,20.45778032289844,20.457780042971706,20.457780034723136,20.457779968571767,20.457779960175237,20.457779910141113,20.45777987512918,20.45777985096226,20.457779841571906,20.457779821176867,20.457779837272273,20.457779833535213,20.457779823718898,20.457779832231473],"feasible_probability":0.9996287937714221,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"1001011":142,"1001101":165,"1010011":107,"1010101":98},"circuit_evaluations":117,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":57}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09201497198955622},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[0,6],"fixed_cost":11,"removals":[{"variable":5,"forced_by":6,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[2,2],"max_component_qubits":2,"component_to_original":[[1,2],[3,4]],"components":[{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-1,-2],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":6,"cost":5},{"index":1,"task":"t1","resource":"r2","start":4,"cost":4}],"conflicts":[]},{"qubits":2,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1],"quadratic":[[0,1,14]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":9,"cost":0},{"index":1,"task":"t2","resource":"r1","start":10,"cost":6}],"conflicts":[]}]},"best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t1","group":"g1","resource":"r2","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":8,"reserved_end":8,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":9,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":12,"end":14,"reserved_end":16,"changed":false}],"bits":[1,0,1,1,0,0,1],"qubo_energy":15},"components":[{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r2","start":4,"end":6,"reserved_end":6,"changed":true}],"bits":[0,1],"qubo_energy":4},"seed":3257320810,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.4930939611895564,1.1828986026267918],"expected_energy":4.225126668476424,"initial_expected_energy":4.553181383858348,"history":[4.553181383858348,4.576933531306924,4.544928654568761,4.492768512659794,4.520875509594431,4.439396007722186,4.559102570739883,4.471559016118501,4.473492178647535,4.484020480191855,4.446529307452496,4.431556809229178,4.424611327619896,4.435449240409228,4.419923108487515,4.4160600971038555,4.408324696112638,4.400348024620769,4.389211954408525,4.3997611458036054,4.408318132352362,4.383682908909872,4.383442750930666,4.387654957170478,4.379479041426953,4.371624242796479,4.356318951802891,4.333834017905044,4.675345836187955,4.564365448686647,4.3369634520141735,4.3330751836438175,4.362462348658382,4.322115524832785,4.317598019408639,4.314116424659642,4.316379212997704,4.312641579496349,4.313458808429203,4.312150554063924,4.3113705248343175,4.310982661048817,4.314032673524016,4.310985706724766,4.309802446405138,4.3081525649103884,4.3092355647201135,4.307232124060963,4.306587689824259,4.306898163194781,4.306423224320596,4.306028247841061,4.3052615262806855,4.304038252336847,4.301123816639372,4.295128537391158,4.28427036283129,4.297071009590171,4.307728833395956,4.299504589178258,4.467604768153718,4.457171145075042,4.661537514402219,4.37229128372727,4.652421785562051,4.319423351695715,4.302915067703902,4.341264179170439,4.340926075296062,4.298854985850632,4.297485483951459,4.307395940478255,4.29475195608951,4.292977647168004,4.291303040750046,4.290751346091723,4.285684862724956,4.285230406998284,4.282299334658992,4.278967712004976,4.276232368198592,4.290037461344235,4.274272309792183,4.271808633008078,4.273961479174656,4.268917189804934,4.26860437969655,4.273723174689257,4.2686830613069695,4.266713100147517,4.264389491808778,4.265622855661898,4.263435791789184,4.262558208207755,4.261249301473422,4.258039827588138,4.255333369222272,4.2690777495058745,4.253737116807827,4.2510551658101985,4.247988013129044,4.284010564287491,4.241234185935391,4.242901381378092,4.240614324691284,4.24165861807905,4.240236036716845,4.239374818279515,4.238323248697151,4.236596887056339,4.2352192354564355,4.240056450773192,4.234048995029539,4.232522004821992,4.230089184951031,4.247571387401969,4.228474491073335,4.227454374097278,4.228586063986841,4.225126668476424],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":104,"10":408},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.0687833510019118},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":631391383,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.848036333674507,1.1786281427725138],"expected_energy":0.00026950057205176516,"initial_expected_energy":5.707949218351544,"history":[5.707949218351544,4.927400013163652,2.153918222613923,1.8616460912247856,2.550148761874902,4.08659473002943,2.13582664402867,2.2387451791362807,1.7498757370315752,1.5391503440804448,1.3445549786122761,1.5027314172832147,1.2964462873070997,1.190967961092005,1.0167508139300423,0.753557539356096,0.4083101970937185,0.3074656134904059,1.6734829859694804,1.9487057971534512,0.33118216194308014,0.05176761732172053,0.26377739625713575,0.08092328565351939,0.10198838212894382,0.056680885446764875,0.04945213420555181,0.049985352417858016,0.04852706040555672,0.046206271587063925,0.04294002716098236,0.043352932252289894,0.04091774834075629,0.039533559372199344,0.039458735429925645,0.042238154819788556,0.037038199497039785,0.03313231806852228,0.026831471125446107,0.06002792883998183,0.026852336509656106,0.02605045565052564,0.02541254812828933,0.0290485300252289,0.02256379992116957,0.02056329079509913,0.01820794550617081,0.015432378165168556,0.012947619953620535,0.010303318531103289,0.0069867608203082205,0.007012448088458316,0.012249701815336455,0.007177838347556461,0.005876450441039619,0.005518101256849584,0.004720850407538868,0.004080379899521503,0.0030899231374573004,0.001925868020188611,0.33869916031689773,0.26335452340223753,3.098442666772498,5.173934452164725,0.5596157539053137,1.1416920905777395,0.25864091718524695,0.09201217020621075,0.04071842516099313,0.07003726666335092,0.06706298400246369,0.0466518381142184,0.04299738860385907,0.04147376066257913,0.038870431011443524,0.03777817766828816,0.03839299522671942,0.03575632116328933,0.034249444442299576,0.03562475506223534,0.03255760294254392,0.031693867867649404,0.03345039607560848,0.02973162410749865,0.027957446946259096,0.024576631107776734,0.020512738820776054,0.01565716918045181,0.013705038804550153,0.03456115761641146,0.00977982142671813,0.009438570659576222,0.00807373941164532,0.006141380857634,0.0037027494981423004,0.0013881989519474154,0.012328641042440976,0.009893384335607991,0.003593408712608611,0.0011911393767948296,0.001798603992994851,0.0011942036415047276,0.0014019002051106674,0.0012288374938175081,0.0011061712115815023,0.0010200247819539788,0.0008595746120865777,0.0007435873717966042,0.0004889738229292067,0.0006863686405211146,0.00043044832596195333,0.000693990694940856,0.00036891111708337135,0.0003248828700082513,0.0003285673321902428,0.00031258686995351776,0.0002949315093434589,0.000291080254012615,0.0003475447824371414,0.00026950057205176516],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07063258699781727}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.13960325199877843},"direct_metrics":{"exact_objective":15,"optimal_count":1,"combinations":6,"optimal_probability":0.29860418997054267,"feasible_probability":0.9996287937714221,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.6666666666666666,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9414259386897125,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9965690793416186,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999882287834359,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999998614385,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":15},{"shots":16,"best_objective":15},{"shots":32,"best_objective":15},{"shots":64,"best_objective":15},{"shots":128,"best_objective":15},{"shots":512,"best_objective":15}]},"component_metrics":[{"exact_objective":4,"optimal_count":1,"combinations":2,"optimal_probability":0.7748733315235766,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9999934019507014,"uniform":0.99609375},{"shots":16,"quantum":0.9999999999564657,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":4},{"shots":16,"best_objective":4},{"shots":32,"best_objective":4},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999550832379914,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.743384504624082e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.7748385267225578,"diagnostic_seconds":0.0021305940026650205}
+{"instance":"n4-s1-r3.json","seed":9,"direct":{"status":"feasible","best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t1","group":"g1","resource":"r2","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":8,"reserved_end":8,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":9,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":12,"end":14,"reserved_end":16,"changed":false}],"bits":[1,0,1,1,0,0,1],"qubo_energy":15},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.9276006244313724,1.080664605235635],"expected_energy":18.24453791311576,"initial_expected_energy":31.812482694760188,"history":[31.812482694760188,31.66329037061451,22.537564345232013,27.190767834569332,21.402500806057347,27.455117762989897,21.10240113695677,21.004237778346045,23.10904368938237,20.70204823456309,20.741016678014184,20.690384958355892,21.088159032068553,20.62010858971435,20.61974607350395,20.583518497864176,20.548309013866955,20.52448273271539,20.598671351098048,20.508308909024155,20.50407285184496,20.53689632304723,20.496670996359573,20.4914236205015,20.484114870884227,20.476909583701364,20.465734747150233,20.52024347591571,20.49711247801574,20.46384888418341,20.47456854848658,20.463807122471927,20.461527781429503,20.460279276438712,20.4592599013858,20.458886478821242,20.472707586979123,20.457990022179825,20.461392420856935,20.45796698943959,20.459216989185652,20.458920117377648,20.457883812861798,20.458077729318102,20.457897254266395,20.457874201841264,20.45785446694724,20.457836414176327,20.458004490537064,20.45781016392862,20.457816633096762,20.457807035476296,20.457840113856225,20.457800965172073,20.457798043813966,20.457810534937124,20.45779484842336,20.457792827648838,20.457790691159417,20.45778754552444,26.365596223989535,26.603487285023448,24.07940249116931,24.796974174765438,23.160197118976875,21.30802764813351,25.25486595592459,23.197786634541295,21.406911104411286,24.858683848729257,20.812088698020695,20.195521462118013,20.062333306230506,19.778480561898206,19.554152193988735,19.57094946954188,19.73075827759333,19.51294710155505,19.71896455931717,19.478619328739807,19.418675099982522,19.311272512345397,19.11707872691872,18.81931099863403,20.757192702617317,20.60475114178622,18.73959859072332,18.879520063995543,18.802594093754095,18.695999697231507,18.638487252077482,18.61805258095461,19.16860110350286,18.49767616342651,18.50990016587008,18.491223519470466,18.50961588151869,18.484899505605107,18.473729101735763,18.456224745493472,18.426220446623276,18.623786925791805,18.420884348896365,18.398189071719248,18.359288846654604,18.309634658874383,18.310597975484065,18.35470936702106,18.320304013689473,18.305536387852317,18.29408107124243,18.286429374275237,18.303218479984167,18.27915564818231,18.275344940624013,18.27012681863816,18.26069958782791,18.25687700037517,18.24453791311576,18.290112297462866],"feasible_probability":0.998513698949121,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"1001011":134,"1001101":134,"1010011":120,"1010101":124},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.0904900649911724},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":7,"fixed_variables":[0,6],"fixed_cost":11,"removals":[{"variable":5,"forced_by":6,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[2,2],"max_component_qubits":2,"component_to_original":[[1,2],[3,4]],"components":[{"qubits":2,"penalty":6,"objective_bound":5,"offset":6,"linear":[-1,-2],"quadratic":[[0,1,12]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":6,"cost":5},{"index":1,"task":"t1","resource":"r2","start":4,"cost":4}],"conflicts":[]},{"qubits":2,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1],"quadratic":[[0,1,14]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":9,"cost":0},{"index":1,"task":"t2","resource":"r1","start":10,"cost":6}],"conflicts":[]}]},"best":{"feasible":true,"objective":15,"raw_cost":15,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t1","group":"g1","resource":"r2","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":8,"reserved_end":8,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":9,"end":12,"reserved_end":12,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":12,"end":14,"reserved_end":16,"changed":false}],"bits":[1,0,1,1,0,0,1],"qubo_energy":15},"components":[{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r2","start":4,"end":6,"reserved_end":6,"changed":true}],"bits":[0,1],"qubo_energy":4},"seed":747784396,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.8636389974032492,1.1793805429933062],"expected_energy":4.199828493985916,"initial_expected_energy":4.421686393754941,"history":[4.421686393754941,4.404226269745559,4.710799339502483,4.3670397994849806,4.707249088362335,4.393741346741388,4.41198206067785,4.3030575587813304,4.32136492182034,4.308632406111634,4.312365821670177,4.290056975841108,4.285360034232405,4.290212202610773,4.282094233849092,4.286343627969322,4.280680856746803,4.27900895980003,4.276657351454673,4.285413530700014,4.274377935929925,4.2730857280292955,4.27114760489738,4.26739871267196,4.260094690399498,4.248228724272603,4.310068723912032,4.349208750051363,4.244490302620284,4.2504902339331405,4.248771728332919,4.241866674929385,4.2407518094881285,4.238895561721544,4.237131263479175,4.233802929037026,4.226815519652298,4.215019923403142,4.409403269758264,4.325855905029057,4.222123672891303,4.223375639578786,4.216703137110969,4.21281879555294,4.211499068102429,4.213797269378128,4.210665323561255,4.209842110290071,4.208728354791839,4.206974873210667,4.205117914835222,4.2018642946483205,4.202208064316798,4.200904605063308,4.202663383428212,4.201408998987421,4.2003057743142875,4.201003328951403,4.2001527151006455,4.199828493985916,4.686484501305281,4.723527096094639,4.457358493442532,4.351065943489463,4.472644444176275,4.551902289938542,4.388599605311699,4.381184262662918,4.316403079812914,4.322133543813821,4.318082294359035,4.313814034148806,4.311702715187753,4.317090413756186,4.309163423743257,4.307527447019004,4.305709238847592,4.302708015543569,4.319940924139802,4.300816212942058,4.297494059089729,4.291077327450385,4.282854118853745,4.391805807842822,4.273529382374491,4.29008928524281,4.275955018086835,4.2740064544126595,4.27142369417846,4.271260224267891,4.272562722930797,4.271316545721802,4.270781912446815,4.269962474662604,4.269477406463076,4.267899008302783,4.2663984087988815,4.263465065364542,4.258071548904665,4.2562723041778145,4.248996725153575,4.297189475440803,4.23973278051408,4.2509795709520075,4.241471004180087,4.240219719983836,4.238577211047536,4.238850046719813,4.238932278702029,4.238012441842955,4.237436301927296,4.239218408397363,4.236553377408525,4.235801875381403,4.234469089141253,4.231677050745256,4.2262584510290715,4.229336614897807,4.233446276083178,4.229333590981739],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":101,"10":411},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07151987800898496},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":9,"end":12,"reserved_end":12,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":4053640108,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.852686414712362,1.1784764279309168],"expected_energy":0.00044826280784977584,"initial_expected_energy":5.307374745194156,"history":[5.307374745194156,4.693087385005002,1.2813332667330644,2.701790946553511,2.070603415153678,1.5448259600282321,0.9174114099041101,0.8309693064501025,1.3467397972333393,0.7092078893748265,0.6176956469041092,0.4780545954462885,0.31034907412399637,0.19514555658332555,0.025166192860285465,0.17482294316877892,1.094141985794198,0.13784596412655345,0.02939211769865262,0.12076613108561433,0.014012722246651756,0.03366693571800805,0.016715733951953644,0.013515702656980145,0.012379384014785328,0.011710038214200098,0.009153341133817505,0.008556635892735177,0.006322904185734529,0.00788307008786883,0.007250191122952443,0.006201011387875023,0.00790631537829026,0.00519488345776265,0.0046280555147105926,0.003908108803272832,0.0026923129549761646,0.0033653243525743276,0.004259979306544678,0.0029097614301304446,0.002598972190593022,0.004052707571340815,0.002212969809339189,0.0019506601726792371,0.0017439856088619261,0.0013661151425471262,0.0006976252672662033,0.0009356569979824329,0.0030377515547066235,0.0005646444459962553,0.001205170494728942,0.0005809372466626231,0.0005410867342184088,0.0005804140005656577,0.0005580359890640903,0.0005135775077579005,0.0004939063571252451,0.0005528925074485725,0.000470149568338663,0.00044826280784977584,4.350241232325415,3.423315441316946,2.522044459182121,3.230908836322971,1.907101601797661,1.37033889083016,0.4617484719964339,5.28874540214815,3.9210146021288317,1.5987628471291426,0.38025404730753,0.7269920533142852,0.3784259709066227,0.3140014323980117,0.2172255776620136,0.13887489015471277,0.2526319779191602,0.5986663530708802,0.11823155015808369,0.056147328359647135,0.08758422799085733,0.06970992736066103,0.058315869207460326,0.05030002414220509,0.04393404769346829,0.034626170128721004,0.032528579900278166,0.06778694092589409,0.02447508169595914,0.021871097132320553,0.018355950675145085,0.014475256430351826,0.04171437497013663,0.010648122036810054,0.01131051585064167,0.011180800026256347,0.010313830045273083,0.011637062849505265,0.00915877770610338,0.008207163827759772,0.0064156525259228365,0.004293377121057838,0.004444461424370248,0.006414511805546643,0.005057961335584873,0.003496002783721801,0.004168339524065878,0.0029273666609165223,0.0024996958961953893,0.0019636155644649957,0.0011774682194892047,0.003897221017307527,0.003931996599317381,0.000991476357785738,0.0013797944664412083,0.0011856574259815305,0.0012167907738637293,0.0009998582263600823,0.0009056676199551824,0.0007651756237242189],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07328507000056561}],"circuit_evaluations":240,"status":"feasible","feasible_probability":1.0,"total_shots":1024,"runtime_seconds":0.14500338801008184},"direct_metrics":{"exact_objective":15,"optimal_count":1,"combinations":6,"optimal_probability":0.3000510252576211,"feasible_probability":0.998513698949121,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.6666666666666666,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9423855986196097,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9966805807535792,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999889814558665,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999998785917,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":15},{"shots":16,"best_objective":15},{"shots":32,"best_objective":15},{"shots":64,"best_objective":15},{"shots":128,"best_objective":15},{"shots":512,"best_objective":15}]},"component_metrics":[{"exact_objective":4,"optimal_count":1,"combinations":2,"optimal_probability":0.8001715060140834,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":2,"hit_curve":[{"shots":8,"quantum":0.9999974575095957,"uniform":0.99609375},{"shots":16,"quantum":0.9999999999935357,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":4},{"shots":16,"best_objective":4},{"shots":32,"best_objective":4},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999252895320251,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6263032587282567e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.8001117248264089,"diagnostic_seconds":0.0020814289891859517}
+{"instance":"n4-s2-r0.json","seed":0,"direct":{"status":"feasible","best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":7},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.58022443518991,1.2270038865958097],"expected_energy":43.0125693576528,"initial_expected_energy":60.88467204133598,"history":[60.88467204133598,65.74233245163506,61.84065155921776,59.12368198281022,71.2989077903814,49.85430914490073,51.94265963408833,49.675133701868575,54.30581785812444,48.91990256622763,47.80115582610081,47.42294374473451,46.087098457415166,45.34495741099932,44.89178984962883,44.02322063687464,43.93941668579491,43.30215345496977,46.10705804132903,43.15529772704817,43.27334155190643,43.150594248806954,44.195842449034515,43.02355947758119,43.14161614758551,43.02007757102737,43.05571500351705,43.02034996119414,43.01882422807758,43.021208394008,43.017246152163665,43.01720730357612,43.01640217234295,43.015607004523346,43.01500827497609,43.016354585832815,43.01461085739729,43.014458217697836,43.015209518228964,43.014280377251566,43.01414133633093,43.01391367386853,43.013498579657174,43.012969231045716,43.01342560778475,43.01417356083518,43.013078039814935,43.0128767771975,43.012843252829995,43.013309508271654,43.01274133797664,43.01271399523114,43.012664759782425,43.012587816179206,43.012816422704155,43.01268499963578,43.012638384839526,43.01257335942287,43.012594227462394,43.0125693576528,80.3715079216112,71.98762165463319,61.05925561011618,57.848574227958395,64.22139469315316,60.97759307401627,59.07321275073545,56.554018714056426,54.85834042045036,51.52867720888436,47.265169443241945,72.03514157995048,48.730831748619124,47.3516105327525,52.11070816811631,46.505929969502766,45.470872542109305,45.344762965131835,45.805698206831416,45.08174150713541,45.15496612154752,45.541234571624244,45.08205576421081,44.92182304922245,44.80757828643493,44.61610774058555,44.56660209261341,44.364557412921016,44.116033601925295,43.8083338503677,43.46695656112668,44.08024437495462,44.246497469908725,43.40512698082111,43.337976335608914,43.320217324816284,43.63659846915216,43.24984234851968,43.22596982258963,43.19536787553744,43.16513349619188,43.27934522612931,43.12569953024613,43.12445925153194,43.10831740950112,43.08939295982075,43.07949096190011,43.06533091031008,43.06112324910521,43.10822357905398,43.050677717481456,43.04701603167578,43.04157432621092,43.032998993964085,43.06935328500992,43.03956103354158,43.03699303691811,43.0382969021158,43.030885195507764,43.03208278135903],"feasible_probability":0.5735665963441959,"one_hot_probability":1.0,"sampled_feasible_fraction":0.53125,"counts":{"0100010011":42,"0100010101":15,"0100011001":14,"0100100011":9,"0100100101":8,"0101000011":10,"0101000101":1,"0101001001":6,"0110000011":15,"0110000101":3,"0110001001":2,"1000010011":40,"1000010101":10,"1000011001":41,"1000100011":7,"1000100101":17,"1000101001":4,"1001000011":104,"1001000101":20,"1001001001":36,"1010000011":62,"1010000101":35,"1010001001":11},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13493639399530366},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":7,"removals":[{"variable":3,"forced_by":0,"reasons":["precedence"]}],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[1,2,4,5,6,7,8,9]],"components":[{"qubits":8,"penalty":33,"objective_bound":32,"offset":99,"linear":[-33,-23,-33,-24,-25,-29,-33,-20],"quadratic":[[0,1,66],[1,2,33],[1,4,33],[1,5,33],[2,3,66],[2,4,66],[2,5,66],[3,4,66],[3,5,66],[3,6,33],[4,5,66],[4,6,33],[5,6,33],[6,7,66]],"domains":[[0,1],[2,3,4,5],[6,7]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r2","start":9,"cost":10},{"index":2,"task":"t2","resource":"r2","start":7,"cost":0},{"index":3,"task":"t2","resource":"r2","start":12,"cost":9},{"index":4,"task":"t2","resource":"r0","start":9,"cost":8},{"index":5,"task":"t2","resource":"r1","start":8,"cost":4},{"index":6,"task":"t3","resource":"r0","start":10,"cost":0},{"index":7,"task":"t3","resource":"r0","start":16,"cost":13}],"conflicts":[{"i":1,"j":2,"reasons":["resource","precedence"]},{"i":1,"j":4,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":3,"j":6,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]},{"i":5,"j":6,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":7},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":10,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,0,1,0,0,0,1,0],"qubo_energy":0},"seed":3757552657,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4049569859705664,1.2301270177325776],"expected_energy":21.01889291521613,"initial_expected_energy":58.34735419994492,"history":[58.34735419994492,49.367940792535144,41.284663744838966,41.31543073347986,36.70621749286581,31.380614529837096,45.73818607857302,41.69325320175841,33.15032994738241,27.290759091120854,28.672520973244957,26.53817630667423,26.242151143958697,25.392518909821604,25.039804905468877,23.607787816973808,23.466820607117512,22.60775069075573,22.81558965034373,22.890298394407505,22.9565046222709,22.434186029887663,22.57232440401792,22.384871183258557,22.313679089718818,22.347624909922267,22.29420373288074,22.25908306273463,22.203917953180053,22.211775939873164,22.140692133490965,22.093610804071986,22.086757791186646,22.207778467307186,22.09106707460426,22.034767331377914,21.952153261746915,21.946952032201235,21.881633540763485,21.81936959687632,21.703380714903535,21.513115826213582,21.907070521134866,21.54407518253574,21.50071609654407,21.722922866168346,21.470163734538282,21.396613293967206,21.348082939826003,21.36643412924505,21.327947451275136,21.309741210909642,21.279468808305722,21.305341035165988,21.252798390013165,21.269330043825043,21.236850264194246,21.228334001725322,21.24321301390966,21.211960746710623,46.38477821615651,49.20382524791432,28.34692035483165,45.0632215944358,35.11699152562717,29.378474362134956,26.22525031822645,28.87834794631128,25.44155147690593,24.81798477288416,24.113873201520725,22.95498291893041,21.55020358970637,25.279749985331357,24.257471818708673,21.405087602685256,21.536368939694114,21.462673983740363,21.67043986430334,21.39893052816462,21.335035910719636,21.316454732635854,21.389324707421576,21.316170846184946,21.292272471586706,21.256861139862778,21.191620555436128,21.1831963493627,21.08375413418869,21.10459095101137,21.080435945987794,21.12161597903409,21.069846687801146,21.064092099731692,21.056455075001686,21.043750828846708,21.027719468746835,21.07140206830431,21.055963261959462,21.026027618909364,21.023758581532555,21.024646304023193,21.022353764971474,21.023539178920174,21.02262570164246,21.02221642288802,21.021630795052232,21.020860671081543,21.020096541724044,21.019251148596613,21.02173723324703,21.021123276654706,21.01915157988135,21.01914526914718,21.019091028565445,21.019045096673466,21.018993551576443,21.019234752457223,21.018940415685165,21.01889291521613],"feasible_probability":0.8217458438391605,"one_hot_probability":1.0,"sampled_feasible_fraction":0.837890625,"counts":{"01000101":75,"01001001":10,"01001010":4,"01010001":18,"01010010":2,"01100001":21,"01100010":1,"10000101":62,"10000110":11,"10001001":12,"10001010":14,"10010001":172,"10010010":5,"10100001":94,"10100010":11},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11499954199825879}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.8217458438391605,"total_shots":512,"runtime_seconds":0.11518727800284978},"direct_metrics":{"exact_objective":7,"optimal_count":1,"combinations":24,"optimal_probability":0.09396021705660929,"feasible_probability":0.5735665963441959,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.25,"shots_for_95_percent":31,"hit_curve":[{"shots":8,"quantum":0.5458721474123255,"uniform":0.2885690504976606},{"shots":16,"quantum":0.7937678935041074,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9574683182502668,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9981910560475394,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999967277217768,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":24},{"shots":16,"best_objective":7},{"shots":32,"best_objective":7},{"shots":64,"best_objective":7},{"shots":128,"best_objective":7},{"shots":512,"best_objective":7}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":16,"optimal_probability":0.16030025869238146,"feasible_probability":0.8217458438391605,"uniform_optimal_probability":0.0625,"uniform_feasible_probability":0.375,"shots_for_95_percent":18,"hit_curve":[{"shots":8,"quantum":0.7528320502597243,"uniform":0.4032805261667818},{"shots":16,"quantum":0.9389080046211885,"uniform":0.6439258695482073},{"shots":32,"quantum":0.9962677681006353,"uniform":0.8732112136229997},{"shots":64,"quantum":0.9999860704450494,"uniform":0.9839246036490473},{"shots":128,"quantum":0.9999999998059675,"uniform":0.9997415816321598},{"shots":512,"quantum":1.0,"uniform":0.9999999999999956}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":6.591949208711867e-17,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.16030025869238146,"diagnostic_seconds":0.004114719995413907}
+{"instance":"n4-s2-r0.json","seed":1,"direct":{"status":"feasible","best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":7},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.5925155921140788,1.2262138235703217],"expected_energy":43.014924349773736,"initial_expected_energy":75.14745557346077,"history":[75.14745557346077,69.34577836878583,56.27755681643567,61.83374138377064,50.950519374310005,48.98408414617219,59.37225755520643,47.072490270663735,46.35839501909645,45.46582027350496,46.791948207090144,44.74961445087648,44.79001316519883,45.13049570282098,44.696674359657635,44.856144323546985,44.769531741608425,44.5834957858079,44.54457180020245,44.63266628102869,44.53952780084538,44.50435239330111,44.43562318153272,44.30347781681708,44.11181905270565,43.88551565554863,43.651122427223534,45.893636785473866,43.48004227844417,43.59970243966859,43.627510584799616,43.44268796575783,43.45968689567823,43.42374298694708,43.407840628938736,43.39293916637739,43.35096917991819,43.32344007393333,43.29052427997739,43.23163272673752,43.23406442942852,43.25544207655473,43.2273925634759,43.288122233442905,43.208011813844635,43.1931139086696,43.17154349878812,43.12677184772715,43.065830285091415,43.200156844107156,43.17536743147164,43.059260610129954,43.04892367235799,43.04707971171878,43.099467735086776,43.03522387741615,43.03217958868324,43.028811860546256,43.02982626134855,43.02692117208745,51.504954542147956,55.72790471386555,58.46198863974696,76.0111258823806,44.64330673870106,57.060749708649794,44.135006628214406,46.541463417162745,44.27163193476605,44.145861143041635,44.116037493629136,44.19130064728735,44.141582666747915,44.06647006240279,43.998034529440496,43.99738250609963,43.970812311087535,43.94529658707841,43.8980329548426,43.827154300354024,44.15062167363164,43.73907463610347,43.67984089802232,43.83239861510815,43.62515692418259,43.584194243122575,43.50033655472484,43.38950217956395,43.344908643503516,43.18697323701673,43.11789625356095,43.45972937055019,43.70129895329026,43.12270341770399,43.039493582323296,43.12088944821339,43.05048962633005,43.04021166619184,43.03595532317321,43.035775270261,43.04982458506721,43.029265235655096,43.02995480278636,43.02851751492505,43.030180279363464,43.02731595347585,43.02635649635443,43.024731110338536,43.02174981777628,43.01715833988444,43.017187355321965,43.02197878540932,43.018013160619944,43.01705273748567,43.01655749774406,43.0161239850588,43.015479313491355,43.01751200980884,43.014924349773736,43.01498210245055],"feasible_probability":0.5741657349400187,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.521484375,"counts":{"0100010011":47,"0100010101":19,"0100011001":12,"0100100011":7,"0100100101":8,"0100101001":1,"0101000011":8,"0101000101":1,"0101001001":2,"0110000011":13,"0110000101":7,"0110001001":2,"1000010011":42,"1000010101":17,"1000011001":35,"1000100011":6,"1000100101":18,"1000101001":14,"1001000011":106,"1001000101":22,"1001001001":46,"1010000011":48,"1010000101":20,"1010001001":11},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1320412080094684},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":7,"removals":[{"variable":3,"forced_by":0,"reasons":["precedence"]}],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[1,2,4,5,6,7,8,9]],"components":[{"qubits":8,"penalty":33,"objective_bound":32,"offset":99,"linear":[-33,-23,-33,-24,-25,-29,-33,-20],"quadratic":[[0,1,66],[1,2,33],[1,4,33],[1,5,33],[2,3,66],[2,4,66],[2,5,66],[3,4,66],[3,5,66],[3,6,33],[4,5,66],[4,6,33],[5,6,33],[6,7,66]],"domains":[[0,1],[2,3,4,5],[6,7]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r2","start":9,"cost":10},{"index":2,"task":"t2","resource":"r2","start":7,"cost":0},{"index":3,"task":"t2","resource":"r2","start":12,"cost":9},{"index":4,"task":"t2","resource":"r0","start":9,"cost":8},{"index":5,"task":"t2","resource":"r1","start":8,"cost":4},{"index":6,"task":"t3","resource":"r0","start":10,"cost":0},{"index":7,"task":"t3","resource":"r0","start":16,"cost":13}],"conflicts":[{"i":1,"j":2,"reasons":["resource","precedence"]},{"i":1,"j":4,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":3,"j":6,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]},{"i":5,"j":6,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":7},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":10,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,0,1,0,0,0,1,0],"qubo_energy":0},"seed":1641411168,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4067586905237295,1.2301398462356472],"expected_energy":21.01883485436192,"initial_expected_energy":42.33034523587602,"history":[42.33034523587602,46.49863140074743,40.952532526260946,43.009895665762045,37.88220963270872,36.608254333396545,40.8952376654512,38.24873369093933,36.72191309214331,36.96082249179432,36.22117458433072,36.265766230808396,36.48801593254957,35.86800307517137,35.715713222090535,35.78522495309579,35.60305830752996,35.551055105427515,35.579925308314266,35.569142625021655,35.55717830744294,35.54664672544013,35.55579504397327,35.546219942115215,35.54382537242125,35.54210381218358,35.54144766924829,35.54012242120196,35.54235160825125,35.54102078474866,35.54020875821559,35.54007226459633,35.540038518141216,35.54004502953904,35.5400433623626,35.54004179932061,35.5400419243156,35.54003840325687,35.54005436838673,35.5400365359527,35.540038711333736,35.54003680849007,35.5400366431975,35.54003646263715,35.54003682179719,35.54003626123654,35.54003621817087,35.54003625844034,35.540036459911626,35.540036221663115,35.5400362325574,35.54003620304805,35.54003620509526,35.5400362043661,35.540036203901224,46.803639611288936,55.40237156110841,42.388303765873324,44.44835368940356,39.82844034244789,25.428386649532,56.446204804686815,35.789242532763545,30.564369292961043,26.28496695719479,27.889538106022748,24.672404707084844,24.13186279842959,24.682377467022008,23.82895178470026,23.52942683155598,23.06849342507965,22.412967721309904,21.575332026406166,21.123129902741653,27.039037870067247,23.680529838124322,21.151685351036598,21.151478403195615,21.136316926482966,21.041175871968427,21.02020023113563,21.02555299795136,21.023289933564524,21.021013734638217,21.020365619069473,21.027177465932247,21.019453763895566,21.02123316663168,21.019604773863612,21.0193970875072,21.019312966964073,21.019242902838865,21.01931068772786,21.019210563501222,21.019316523655306,21.019139278221566,21.01908296562669,21.019005282129555,21.01892097606257,21.018861690089167,21.019934543945265,21.01891678073475,21.01886482864775,21.018971912868867,21.018839127102428,21.01884159501341,21.0188413680045,21.018840748066005,21.01883705722028,21.01883648554194,21.018835563612306,21.01883485436192,21.01883575522215,21.01883547334123],"feasible_probability":0.8218957374323261,"one_hot_probability":1.0,"sampled_feasible_fraction":0.837890625,"counts":{"01000101":84,"01001001":6,"01001010":1,"01010001":13,"01010010":2,"01100001":33,"01100010":1,"10000101":60,"10000110":8,"10001001":8,"10001010":23,"10010001":174,"10010010":5,"10100001":80,"10100010":14},"circuit_evaluations":115,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":55},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10409133600478526}],"circuit_evaluations":115,"status":"feasible","feasible_probability":0.8218957374323261,"total_shots":512,"runtime_seconds":0.1042578299966408},"direct_metrics":{"exact_objective":7,"optimal_count":1,"combinations":24,"optimal_probability":0.09344742182326912,"feasible_probability":0.5741657349400187,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.25,"shots_for_95_percent":31,"hit_curve":[{"shots":8,"quantum":0.5438118721025537,"uniform":0.2885690504976606},{"shots":16,"quantum":0.7918923919654232,"uniform":0.49386600409019976},{"shots":32,"quantum":0.956691223478127,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9981243498761785,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999964819366131,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1796119636642288e-16,"independent_samples":[{"shots":8,"best_objective":24},{"shots":16,"best_objective":7},{"shots":32,"best_objective":7},{"shots":64,"best_objective":7},{"shots":128,"best_objective":7},{"shots":512,"best_objective":7}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":16,"optimal_probability":0.16030270502007415,"feasible_probability":0.8218957374323261,"uniform_optimal_probability":0.0625,"uniform_feasible_probability":0.375,"shots_for_95_percent":18,"hit_curve":[{"shots":8,"quantum":0.7528378108677609,"uniform":0.4032805261667818},{"shots":16,"quantum":0.9389108522633594,"uniform":0.6439258695482073},{"shots":32,"quantum":0.9962681160288109,"uniform":0.8732112136229997},{"shots":64,"quantum":0.9999860730420256,"uniform":0.9839246036490473},{"shots":128,"quantum":0.9999999998060398,"uniform":0.9997415816321598},{"shots":512,"quantum":1.0,"uniform":0.9999999999999956}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.885780586188048e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.16030270502007415,"diagnostic_seconds":0.0041246089967899024}
+{"instance":"n4-s2-r0.json","seed":2,"direct":{"status":"feasible","best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":7},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.428573722480216,2.857180261372539],"expected_energy":41.59273123371206,"initial_expected_energy":67.80932636882392,"history":[67.80932636882392,60.55852993358157,65.54198391504077,56.26530003007017,65.9219045733448,54.30142944158188,53.27232256938852,57.288415747896785,52.87558614478742,54.04550223521194,53.000056574629525,53.029660614862024,53.24555221809844,52.63194717817457,52.95177420367837,52.57912831117281,52.602784697463775,52.57307404992514,52.564169109167864,52.554788989674094,52.54376544337152,52.52615280281737,52.512300786145,52.49162435474132,52.46638792288444,52.44372209610252,52.56495504345603,52.51529939132418,52.44180526953722,52.43963495684576,52.44112886824438,52.44450323252647,52.43767932168429,52.437330386648675,52.43829215049311,52.437434250116844,52.43696271000478,52.43693313053715,52.437741877738254,52.43687749740262,52.436630820456244,52.436269586895854,52.43576328273576,52.43558772935832,52.43508766237599,52.43446866379587,52.434178273624845,52.43397907609354,52.43373030212922,52.43419679767039,52.435197293065364,52.43438811721394,52.433717580165634,52.43375800441737,52.43375771698206,52.4337067016909,52.43371171508583,52.43370590597324,52.43370676080448,52.43370554855059,81.54066576217267,77.19533619900615,61.43705757859502,45.12274184000419,67.47378433897453,56.36458061122087,47.25033281728584,59.12202598880938,45.911872047240756,47.736464418943214,45.16064951890813,44.69617824194601,44.51702381657081,45.74931892531396,43.865752939301814,43.816884105587604,43.22272638581215,43.09276458915549,42.63822583919507,42.99279513481186,42.90355747224522,42.80887550212484,42.81697592491974,42.61635287750849,42.72482257072181,42.607542258661155,42.570176063827056,42.50558564408117,42.3851216728538,42.23917513550052,42.05644880492142,41.9752695524338,42.57892138284113,41.859898437112335,41.85954224798289,41.80735837450274,41.75454556090072,41.71662901843272,41.807109172447156,41.694662803305334,41.68667160916326,41.73979092685926,41.672986847792885,41.66450929109602,41.656445960430474,41.65134906736942,41.63384480011774,41.63746228835949,41.631413679169164,41.64195769517663,41.62441493305326,41.61919324434268,41.61066330136836,41.602379572941814,41.59329784886778,41.65662279757652,41.615542954445196,41.59273123371206,41.59683106664025,41.597926298736766],"feasible_probability":0.6161055868293407,"one_hot_probability":1.0,"sampled_feasible_fraction":0.5546875,"counts":{"0100010011":55,"0100010101":14,"0100011001":31,"0100100011":7,"0100100101":9,"0100101001":3,"0101000011":4,"0110000011":17,"0110001001":10,"1000010011":28,"1000010101":26,"1000011001":18,"1000100011":64,"1000100101":54,"1000101001":9,"1001000011":46,"1001000101":14,"1001001001":29,"1010000011":37,"1010000101":1,"1010001001":36},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13102614499803167},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":7,"removals":[{"variable":3,"forced_by":0,"reasons":["precedence"]}],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[1,2,4,5,6,7,8,9]],"components":[{"qubits":8,"penalty":33,"objective_bound":32,"offset":99,"linear":[-33,-23,-33,-24,-25,-29,-33,-20],"quadratic":[[0,1,66],[1,2,33],[1,4,33],[1,5,33],[2,3,66],[2,4,66],[2,5,66],[3,4,66],[3,5,66],[3,6,33],[4,5,66],[4,6,33],[5,6,33],[6,7,66]],"domains":[[0,1],[2,3,4,5],[6,7]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r2","start":9,"cost":10},{"index":2,"task":"t2","resource":"r2","start":7,"cost":0},{"index":3,"task":"t2","resource":"r2","start":12,"cost":9},{"index":4,"task":"t2","resource":"r0","start":9,"cost":8},{"index":5,"task":"t2","resource":"r1","start":8,"cost":4},{"index":6,"task":"t3","resource":"r0","start":10,"cost":0},{"index":7,"task":"t3","resource":"r0","start":16,"cost":13}],"conflicts":[{"i":1,"j":2,"reasons":["resource","precedence"]},{"i":1,"j":4,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":3,"j":6,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]},{"i":5,"j":6,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":7},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":10,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,0,1,0,0,0,1,0],"qubo_energy":0},"seed":2001025171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3568773622079429,2.8531798311221284],"expected_energy":20.633202057753657,"initial_expected_energy":40.64145682093995,"history":[40.64145682093995,36.76398783219735,30.985404159273664,58.2413207540111,35.14786880394858,33.883203283989346,29.89660836809437,28.089381501671408,27.00693318770454,28.881754207926367,26.580595603305067,26.155620000024648,27.056106533105805,25.317088932314878,24.604068289507346,23.38575558096826,22.556080065918163,22.794392798385754,25.479020235864333,22.27248436800368,22.427861095799088,22.757880830523796,21.830919236511374,21.900934400669012,21.76158485298305,21.956273992401883,21.67097275970189,21.595439762653527,21.463808783925238,21.26371891681832,21.357107592280535,21.357745347556182,21.294139908650834,21.245658989830126,21.307268495667945,21.23621346389719,21.220137658368373,21.194196270595903,21.199153015416016,21.171646919116156,21.181697450832196,21.179164148984007,21.161563142254813,21.15994702383518,21.17957631700014,21.144324631213394,21.121085982676444,21.082499843068838,21.23208414536544,21.115155481971076,21.09669318662621,21.09309808897941,21.075927958679706,21.08345758976081,21.067681008363778,21.060595882732418,21.047686581373124,21.029430688910534,21.043203024634302,21.053365912285926,54.60372629703643,50.80548131270734,46.470464554505675,35.29962654934869,44.67711136920626,34.324236935434044,22.259605836336522,34.61491061708033,63.86069912889517,24.125851108166273,23.443845836189425,22.476647631280624,21.222148145155977,21.42832570417664,21.06418318106406,21.007279872663673,20.88573178889212,20.92429064552739,20.862925316975396,20.930431136682124,20.853940951390896,20.83833030950072,20.82307565950879,20.813482936326807,20.77841312620727,20.757107807176418,20.73133932664089,20.691251583861817,20.644943052418874,20.858789059987053,20.771277207632053,20.641235512045032,20.64772941987813,20.64686954179428,20.638470124957365,20.637706807847998,20.636358017496036,20.63530448130404,20.637366271236285,20.635902126123426,20.63524518904628,20.635583965851676,20.635251175828657,20.634981242826107,20.63468528878925,20.63507515488503,20.63451440217211,20.63436632735968,20.63406071858867,20.633531698057766,20.634785415604398,20.63403822211518,20.63360031436026,20.633594026354473,20.63346657304642,20.63351504167362,20.633356209945727,20.633320791663365,20.63348979098481,20.633202057753657],"feasible_probability":0.8457992866256222,"one_hot_probability":1.0,"sampled_feasible_fraction":0.849609375,"counts":{"01000101":94,"01001001":26,"01001010":10,"01010001":3,"01100001":20,"01100010":2,"10000101":49,"10000110":2,"10001001":120,"10001010":32,"10010001":57,"10010010":1,"10100001":83,"10100010":13},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1111568110063672}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.8457992866256222,"total_shots":512,"runtime_seconds":0.11132773599820212},"direct_metrics":{"exact_objective":7,"optimal_count":1,"combinations":24,"optimal_probability":0.11203627515494266,"feasible_probability":0.6161055868293406,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.25,"shots_for_95_percent":26,"hit_curve":[{"shots":8,"quantum":0.613489056807954,"uniform":0.2885690504976606},{"shots":16,"quantum":0.8506092907927949,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9776824160025683,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9995019254445175,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999997519217372,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":9.71445146547012e-17,"independent_samples":[{"shots":8,"best_objective":7},{"shots":16,"best_objective":7},{"shots":32,"best_objective":20},{"shots":64,"best_objective":7},{"shots":128,"best_objective":7},{"shots":512,"best_objective":7}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":16,"optimal_probability":0.18066056622244975,"feasible_probability":0.8457992866256223,"uniform_optimal_probability":0.0625,"uniform_feasible_probability":0.375,"shots_for_95_percent":16,"hit_curve":[{"shots":8,"quantum":0.7968995623320967,"uniform":0.4032805261667818},{"shots":16,"quantum":0.9587502122191062,"uniform":0.6439258695482073},{"shots":32,"quantum":0.9982984550080313,"uniform":0.8732112136229997},{"shots":64,"quantum":0.9999971047446403,"uniform":0.9839246036490473},{"shots":128,"quantum":0.9999999999916175,"uniform":0.9997415816321598},{"shots":512,"quantum":1.0,"uniform":0.9999999999999956}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.18066056622244975,"diagnostic_seconds":0.0040049680101219565}
+{"instance":"n4-s2-r0.json","seed":3,"direct":{"status":"feasible","best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":7},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.5827411502096689,1.2270362025612367],"expected_energy":43.01279540146724,"initial_expected_energy":43.42678838129054,"history":[43.42678838129054,46.52249683077799,71.16276276055325,69.09921323219089,52.1259554058048,47.25317748631402,43.31875106346083,43.16139790323737,43.55101363029087,43.25289738089298,43.20819583946185,43.10425957916969,43.09435096187751,43.141995345965796,43.08317762237992,43.07424033606196,43.059953337160955,43.06605739217026,43.06471730316021,43.062945630759536,43.05498461306546,43.06154328387453,43.0519706442033,43.04902858346085,43.044304921526376,43.03612504346808,43.02705638086965,43.01601641482182,43.093621887779264,43.03260657570742,43.015264275914,43.02197918669454,43.01528242696367,43.015093937901185,43.015045096974276,43.016116079128054,43.01493634667868,43.01462048382461,43.01438209439416,43.01438231768081,43.014207705605735,43.0140580395627,43.01382200931818,43.013419394240444,43.01450752358383,43.01383272984849,43.013353916252015,43.01365917007311,43.01327037255427,43.01320435433345,43.01338474574186,43.01314284263441,43.01307084647617,43.01297017223112,43.01332184722389,43.01289499461728,43.01285971564202,43.01297509152574,43.01282438942903,43.01279540146724,64.0804780765196,59.04892290566266,65.22541411992529,63.42622410586999,59.11472191830677,59.9543632571029,59.12734163564061,58.71655382642456,58.154898686350506,57.76476743382084,57.3774911308695,57.70691314946268,57.95212256233637,57.36493561844024,57.340837978364775,57.4645249528851,57.331976527190065,57.34248195295979,57.33043709142021,57.3274018453173,57.32600094489966,57.32585591712284,57.32668527438031,57.325942534471615,57.325897310669234,57.325821259732955,57.32584423750119,57.32581628073531,57.32581974454668,57.32581422220346,57.3258226336401,57.32581458491005,57.3258143234819,57.3258149549452,57.325813900886175,57.32581389282564,57.325813871901,57.32581396362098,57.325813874267055,57.325813876707656,57.32581386933796,57.32581388349543,57.32581385841503,57.32581385312059,57.32581385101312,57.3258138558155],"feasible_probability":0.5736781033033722,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.546875,"counts":{"0100010011":42,"0100010101":13,"0100011001":13,"0100100011":10,"0100100101":8,"0101000011":14,"0101001001":1,"0110000011":12,"0110000101":11,"0110001001":3,"1000010011":52,"1000010101":9,"1000011001":31,"1000100011":6,"1000100101":18,"1000101001":12,"1001000011":110,"1001000101":23,"1001001001":43,"1010000011":52,"1010000101":21,"1010001001":8},"circuit_evaluations":106,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":46}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11098520598898176},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":7,"removals":[{"variable":3,"forced_by":0,"reasons":["precedence"]}],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[1,2,4,5,6,7,8,9]],"components":[{"qubits":8,"penalty":33,"objective_bound":32,"offset":99,"linear":[-33,-23,-33,-24,-25,-29,-33,-20],"quadratic":[[0,1,66],[1,2,33],[1,4,33],[1,5,33],[2,3,66],[2,4,66],[2,5,66],[3,4,66],[3,5,66],[3,6,33],[4,5,66],[4,6,33],[5,6,33],[6,7,66]],"domains":[[0,1],[2,3,4,5],[6,7]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r2","start":9,"cost":10},{"index":2,"task":"t2","resource":"r2","start":7,"cost":0},{"index":3,"task":"t2","resource":"r2","start":12,"cost":9},{"index":4,"task":"t2","resource":"r0","start":9,"cost":8},{"index":5,"task":"t2","resource":"r1","start":8,"cost":4},{"index":6,"task":"t3","resource":"r0","start":10,"cost":0},{"index":7,"task":"t3","resource":"r0","start":16,"cost":13}],"conflicts":[{"i":1,"j":2,"reasons":["resource","precedence"]},{"i":1,"j":4,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":3,"j":6,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]},{"i":5,"j":6,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":7},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":10,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,0,1,0,0,0,1,0],"qubo_energy":0},"seed":819382448,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3407219002823594,2.8529669257003722],"expected_energy":20.633472590119403,"initial_expected_energy":26.62033470741148,"history":[26.62033470741148,28.596634224802393,60.005333298479854,35.154685244056004,47.472198427313856,21.36690025579621,22.345216639362743,21.441888188523087,22.509932762802073,21.054507057551962,21.627404105177767,21.100643174787592,21.08454882920325,21.034882049863032,21.04520027956802,21.039050276095765,21.034072301359064,21.04057642887578,21.0299468922557,21.02682364915663,21.03019766702767,21.025968511521793,21.02340061423012,21.020787101406416,21.04360205576598,21.02036640169669,21.020987502971202,21.025505967008343,21.019936235211865,21.020661542526085,21.019476227481572,21.018999178725096,21.019129647668017,21.018966561568895,21.018929001985192,21.018917701371386,21.018881735342802,21.01884766264118,21.018895918431063,21.018920275876624,21.018843593144304,21.01884134651634,21.0188426489139,21.018839196710523,21.018839086305572,21.01884058041832,21.01883787536017,21.018835896599597,21.018834637710967,21.01884118732813,21.018842712335154,21.0188335189876,21.018834109583967,21.01883348158986,21.018834976075983,21.018833380221558,21.018833545723457,21.018833488686194,21.018833394043625,21.018833343332705,43.06393364789601,45.82139564888516,37.7885511174312,39.938049409896166,32.880256674490695,29.05245606128322,23.779263015780998,28.610246125663373,45.88110646848412,22.51338439791939,23.898062901370857,22.518175663578546,22.066282113389782,21.361182793636715,24.07730745513202,22.46297400253888,22.00575080935907,21.270631142584364,21.485712999429555,21.271932951650356,21.20155929468575,21.161591079322136,21.244312995328904,21.147925234699144,21.12047430284548,21.0699921657194,20.978943759911303,20.971586769473944,20.82788719201166,20.874624154287595,20.899038884898427,20.852469298115103,20.80641661421533,20.846003470626385,20.791628854475004,20.781360504936,20.766454685093606,20.743492026342686,20.70381692678898,20.669305211796253,20.65403608311765,20.794611335813602,20.83168637658891,20.656068089507098,20.634661526205548,20.659935454430453,20.636507088573246,20.63500183903927,20.63599472000957,20.635747479228645,20.634565894614436,20.635599797512107,20.634477299706408,20.63420915594187,20.63401606873215,20.634037423146502,20.633936452273712,20.63386135652312,20.63372155713415,20.633472590119403],"feasible_probability":0.844792412317096,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.857421875,"counts":{"01000101":85,"01000110":1,"01001001":20,"01001010":11,"01010001":4,"01100001":25,"01100010":3,"10000101":49,"10000110":1,"10001001":116,"10001010":30,"10010001":82,"10010010":1,"10100001":77,"10100010":7},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10863040000549518}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.844792412317096,"total_shots":512,"runtime_seconds":0.1087976489943685},"direct_metrics":{"exact_objective":7,"optimal_count":1,"combinations":24,"optimal_probability":0.09392921119471045,"feasible_probability":0.5736781033033722,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.25,"shots_for_95_percent":31,"hit_curve":[{"shots":8,"quantum":0.545747805745542,"uniform":0.2885690504976606},{"shots":16,"quantum":0.7936549440150102,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9574217178705514,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9981870898909051,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999967133569363,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":7},{"shots":16,"best_objective":7},{"shots":32,"best_objective":7},{"shots":64,"best_objective":7},{"shots":128,"best_objective":7},{"shots":512,"best_objective":7}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":16,"optimal_probability":0.18038316049735226,"feasible_probability":0.8447924123170959,"uniform_optimal_probability":0.0625,"uniform_feasible_probability":0.375,"shots_for_95_percent":16,"hit_curve":[{"shots":8,"quantum":0.7963487963699019,"uniform":0.4032805261667818},{"shots":16,"quantum":0.9585261872600123,"uniform":0.6439258695482073},{"shots":32,"quantum":0.9982799228568084,"uniform":0.8732112136229997},{"shots":64,"quantum":0.9999970413346214,"uniform":0.9839246036490473},{"shots":128,"quantum":0.9999999999912463,"uniform":0.9997415816321598},{"shots":512,"quantum":1.0,"uniform":0.9999999999999956}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.498001805406602e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":13},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.18038316049735226,"diagnostic_seconds":0.004278642998542637}
+{"instance":"n4-s2-r0.json","seed":4,"direct":{"status":"feasible","best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":7},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.437826346650947,2.856847822217537],"expected_energy":41.59556324743693,"initial_expected_energy":63.511722732996276,"history":[63.511722732996276,62.68642113862107,61.13978604523895,60.337296138122475,59.591642677158745,66.78425610146866,61.36096428562149,59.96362658488995,58.80938717247397,58.10122407529746,57.421102679572726,58.725956278028,58.22684092140251,57.37825225719452,57.3412336550191,57.38219532969517,57.36664540941721,57.34291253994375,57.33914639923577,57.33606494951596,57.33461572168467,57.342096383679774,57.33324184187839,57.33103881957677,57.32819201448268,57.330694885718174,57.32738960012881,57.32715980429999,57.32637926297303,57.326137573365614,57.32788357384822,57.325940617618805,57.32643096118616,57.32622176698638,57.32601262574252,57.32583381598267,57.325814305290464,57.32585861694899,57.32581869285222,57.325817000296084,57.32581475435408,57.325816770717736,57.325814590323766,57.32581447391701,57.32581410640039,57.32581410612659,57.32581388330201,57.32581394553319,57.32581389553897,57.32581389590621,57.325813872494116,57.325813885908715,57.32581386484824,57.32581385971643,57.325813855173905,57.32581385195442,57.325813852640366,65.98043439731381,67.65717258492361,62.51914316560716,69.67627302802524,63.532677134938524,63.607185044020014,62.26917075428639,61.82797718413691,61.241007251430624,60.00533796752659,58.342953387820046,62.705043220232064,56.31424570589239,55.07179158598796,53.48640667336746,50.201042712661796,44.66217831832681,70.73920273872524,58.849574977765954,50.41048690027633,46.556031320466836,44.978586302415145,44.60023153914074,43.979604994502395,43.09546609997956,42.06391136821241,44.33115830488199,45.90448851360813,41.98370719817562,41.84251640979588,41.91176787232934,41.71514737089615,41.85922189430117,41.72998050608882,41.730372661475506,41.710080022530974,41.7228681330684,41.69815907283342,41.68845265580009,41.66906882018639,41.638954253062224,41.74155093082513,41.732926812605854,41.639972817932694,41.63723302329626,41.63744357960262,41.6433595324845,41.630668773224286,41.63202799319787,41.634046789280205,41.630943856537705,41.629063202376145,41.62596189364766,41.62025997773058,41.61893242897528,41.610068999255994,41.60920219648568,41.60192719589916,41.60088906812081,41.59556324743693],"feasible_probability":0.6162590043702972,"one_hot_probability":1.0,"sampled_feasible_fraction":0.634765625,"counts":{"0100010011":47,"0100010101":14,"0100011001":23,"0100100011":9,"0100100101":4,"0100101001":2,"0101000011":1,"0101001001":3,"0110000011":12,"0110001001":8,"1000010011":42,"1000010101":14,"1000011001":17,"1000100011":80,"1000100101":53,"1000101001":8,"1001000011":50,"1001000101":12,"1001001001":32,"1010000011":53,"1010000101":2,"1010001001":26},"circuit_evaluations":117,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":57},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1195410689979326},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":7,"removals":[{"variable":3,"forced_by":0,"reasons":["precedence"]}],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[1,2,4,5,6,7,8,9]],"components":[{"qubits":8,"penalty":33,"objective_bound":32,"offset":99,"linear":[-33,-23,-33,-24,-25,-29,-33,-20],"quadratic":[[0,1,66],[1,2,33],[1,4,33],[1,5,33],[2,3,66],[2,4,66],[2,5,66],[3,4,66],[3,5,66],[3,6,33],[4,5,66],[4,6,33],[5,6,33],[6,7,66]],"domains":[[0,1],[2,3,4,5],[6,7]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r2","start":9,"cost":10},{"index":2,"task":"t2","resource":"r2","start":7,"cost":0},{"index":3,"task":"t2","resource":"r2","start":12,"cost":9},{"index":4,"task":"t2","resource":"r0","start":9,"cost":8},{"index":5,"task":"t2","resource":"r1","start":8,"cost":4},{"index":6,"task":"t3","resource":"r0","start":10,"cost":0},{"index":7,"task":"t3","resource":"r0","start":16,"cost":13}],"conflicts":[{"i":1,"j":2,"reasons":["resource","precedence"]},{"i":1,"j":4,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":3,"j":6,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]},{"i":5,"j":6,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":7},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":10,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,0,1,0,0,0,1,0],"qubo_energy":0},"seed":367776961,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3468353295982267,2.853104604099991],"expected_energy":20.63254927262887,"initial_expected_energy":53.88119212838385,"history":[53.88119212838385,54.88219717459016,48.67750674461543,26.73549363866683,61.74119588173495,33.806140124382864,25.535725641120344,23.449616092126544,20.81243704609989,22.036299564947214,21.099321201627696,22.84868380686993,20.80864008034982,21.98299092918646,20.68156674375506,20.816725302647257,20.675035274928174,20.694399050051107,20.676622593509464,20.66436284390511,20.66420150367146,20.67304403855189,20.65696124325815,20.6467588223057,20.635379971871416,20.684555264464503,20.665055801825577,20.63450717967402,20.636162571447876,20.638984965814288,20.63560406057357,20.63492110313521,20.63432174244462,20.63401746458513,20.633789808236575,20.634071730082802,20.633695281930684,20.633760996572544,20.63357657596034,20.63353505435242,20.633714283630905,20.633403391934536,20.633295949701274,20.63309816585172,20.63299576810092,20.632799481724426,20.63334638069375,20.633188884584417,20.63285680646618,20.632672487343868,20.63266780989489,20.63262378126999,20.63259399773976,20.63263967269603,20.632557330065993,20.632566030644387,20.632587595544223,20.632549789156823,20.63254927262887,20.632555448847963,44.27722357545497,46.1300354829308,51.746742348910495,35.92349775993338,43.34906775977283,44.74283620155468,43.79754788146211,30.988470049809703,36.97728108185822,29.635962383495606,30.07067372798256,29.543294399680093,28.48738434691892,26.691959859664507,23.7472783770585,30.556488956274595,29.056749233634346,24.713697706824206,23.54501871497349,24.6420700450577,22.914039559209414,22.49476498319163,22.080634280407175,21.458404114563713,22.1342496522904,21.811090156084333,21.464935838453833,21.48438763233674,21.42681279119308,21.423860370764135,21.465829718497474,21.423139928285433,21.386089723132834,21.33221224179337,21.254685056737834,21.294196005428145,21.23459896472565,21.266973114041136,21.216580425534932,21.200357004201237,21.17058094476335,21.142737446134447,21.094971774377612,21.09061685212776,21.056981436338916,21.05400681678354,21.0454548723067,21.033475672751333,21.021352399837124,21.03219245611878,21.042227489003416,21.02249716100158,21.024939052628596,21.024200932280216,21.022695084283058,21.021219428763878,21.020801034442783,21.020463364672818,21.020496773004677,21.02026764921309],"feasible_probability":0.8451951686458934,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.828125,"counts":{"01000101":86,"01000110":1,"01001001":27,"01001010":6,"01010001":6,"01010010":1,"01100001":24,"01100010":2,"10000101":56,"10000110":7,"10001001":106,"10001010":43,"10010001":59,"10010010":2,"10100001":74,"10100010":12},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10727319199941121}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.8451951686458934,"total_shots":512,"runtime_seconds":0.10744955700647552},"direct_metrics":{"exact_objective":7,"optimal_count":1,"combinations":24,"optimal_probability":0.11198394018743853,"feasible_probability":0.6162590043702972,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.25,"shots_for_95_percent":26,"hit_curve":[{"shots":8,"quantum":0.6133067771918757,"uniform":0.2885690504976606},{"shots":16,"quantum":0.8504683514342664,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9776402860772139,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9995000431932912,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999997500431914,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":7},{"shots":16,"best_objective":7},{"shots":32,"best_objective":7},{"shots":64,"best_objective":7},{"shots":128,"best_objective":7},{"shots":512,"best_objective":7}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":16,"optimal_probability":0.18050802205556704,"feasible_probability":0.8451951686458934,"uniform_optimal_probability":0.0625,"uniform_feasible_probability":0.375,"shots_for_95_percent":16,"hit_curve":[{"shots":8,"quantum":0.796596860112224,"uniform":0.4032805261667818},{"shots":16,"quantum":0.9586271626837938,"uniform":0.6439258695482073},{"shots":32,"quantum":0.9982882883324068,"uniform":0.8732112136229997},{"shots":64,"quantum":0.9999970700431671,"uniform":0.9839246036490473},{"shots":128,"quantum":0.9999999999914153,"uniform":0.9997415816321598},{"shots":512,"quantum":1.0,"uniform":0.9999999999999956}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":13},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.18050802205556704,"diagnostic_seconds":0.004351394993136637}
+{"instance":"n4-s2-r0.json","seed":5,"direct":{"status":"feasible","best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":7},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4053894633125514,2.8576115665067072],"expected_energy":41.59422318191562,"initial_expected_energy":62.300363810738794,"history":[62.300363810738794,62.46218807018451,41.8868988012527,83.59851824210253,44.467547563645105,41.99368737923058,43.93002473933459,42.016351826753834,42.55262144865813,41.92381240932516,41.936097614449736,41.823420702679726,41.79565715672591,41.76046367082887,41.7086891114028,42.11985478081802,41.736668054596095,41.72820899238216,41.71789667096097,41.6961137732942,41.694502342183505,41.70615571395814,41.684398836246366,41.66605285588686,41.64066672635616,41.66516438246114,41.63224091459843,41.664528407150634,41.625214889105706,41.62145729726072,41.63182840435502,41.61575483003778,41.614318226753525,41.62646510791768,41.61089513160384,41.608654631223786,41.60677314060881,41.60855485227726,41.60570576856698,41.60790256692367,41.605181244155915,41.60420448159934,41.60243088143413,41.599707965364914,41.60112171925881,41.60436183207589,41.598859531583756,41.59931642347347,41.59888734619433,41.598223748440454,41.59766529129535,41.60059352159921,41.59687135214904,41.59632769907243,41.59581505062211,41.595374474258094,41.594401179291964,41.594425921432546,41.59422318191562,41.594530983426765,63.819302609545375,68.00170292473851,59.78462273981779,67.1139286281429,63.45778055584728,59.11046462938277,61.920294325696084,58.506861204469814,57.38007551345622,55.61703069231296,53.153045781993576,50.193282669378185,48.8172679896137,78.32518552486621,47.86167863475765,44.02065730067817,48.30531412676328,45.17605427567332,44.304742209246996,43.481197616012025,43.67080574977229,43.29745712687533,43.22080976063755,43.50985818589391,43.182487631659804,43.05676110376044,42.8645604233467,42.703895488935075,43.6470566026271,42.490311648468705,42.35975367942913,42.22399056569202,42.02368290712183,42.576510490922935,42.533387585507434,41.96440247784838,41.88751514214543,41.9130156407295,41.85557876879059,41.8222401771511,41.77812333227699,41.87597276137872,41.74424296066836,41.71645948763641,41.75125395006831,41.71074074935729,41.704888476350746,41.69303165796819,41.67433913169877,41.640774431756945,41.64476595115336,41.70294605160922,41.650408009532,41.63778467948125,41.64081396346402,41.63304704584182,41.63232918971628,41.64743116590221,41.62366291217744,41.620596046134864],"feasible_probability":0.6155564952064941,"one_hot_probability":1.0,"sampled_feasible_fraction":0.6171875,"counts":{"0100010011":62,"0100010101":5,"0100011001":21,"0100100011":14,"0100100101":2,"0100101001":4,"0101000011":1,"0101001001":5,"0110000011":22,"0110000101":1,"0110001001":8,"1000010011":36,"1000010101":16,"1000011001":19,"1000100011":80,"1000100101":41,"1000101001":6,"1001000011":48,"1001000101":18,"1001001001":24,"1010000011":49,"1010000101":1,"1010001001":29},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12340590301027987},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":7,"removals":[{"variable":3,"forced_by":0,"reasons":["precedence"]}],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[1,2,4,5,6,7,8,9]],"components":[{"qubits":8,"penalty":33,"objective_bound":32,"offset":99,"linear":[-33,-23,-33,-24,-25,-29,-33,-20],"quadratic":[[0,1,66],[1,2,33],[1,4,33],[1,5,33],[2,3,66],[2,4,66],[2,5,66],[3,4,66],[3,5,66],[3,6,33],[4,5,66],[4,6,33],[5,6,33],[6,7,66]],"domains":[[0,1],[2,3,4,5],[6,7]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r2","start":9,"cost":10},{"index":2,"task":"t2","resource":"r2","start":7,"cost":0},{"index":3,"task":"t2","resource":"r2","start":12,"cost":9},{"index":4,"task":"t2","resource":"r0","start":9,"cost":8},{"index":5,"task":"t2","resource":"r1","start":8,"cost":4},{"index":6,"task":"t3","resource":"r0","start":10,"cost":0},{"index":7,"task":"t3","resource":"r0","start":16,"cost":13}],"conflicts":[{"i":1,"j":2,"reasons":["resource","precedence"]},{"i":1,"j":4,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":3,"j":6,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]},{"i":5,"j":6,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":7},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":10,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,0,1,0,0,0,1,0],"qubo_energy":0},"seed":803261128,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3500542449035415,2.8530193591910917],"expected_energy":20.632461366401046,"initial_expected_energy":36.88990037332482,"history":[36.88990037332482,36.904170766451585,23.792777305161152,60.36982323268562,25.152503801257314,22.132366237546755,21.793424979363113,21.166147216899603,21.030701587641765,20.893886695674038,21.08903777786865,21.850467546804666,20.70301225542927,20.63807392087481,20.661044180931427,20.653786274460277,20.646263107029107,20.641717074008348,20.636002080431364,20.645039753804593,20.634897203912978,20.63647287496945,20.634544484585803,20.634342144274328,20.634017733712785,20.633982412791063,20.63350024683369,20.633496122937203,20.6333176215296,20.63308507912353,20.632960643319976,20.632821791662053,20.63273428049635,20.633090813389426,20.632667199186834,20.63265412130588,20.632781242195968,20.632617958442825,20.632594614402915,20.632575690334647,20.632605173231916,20.63256629868318,20.6325464852455,20.632514195729208,20.632477950127935,20.632566500857052,20.63256542113799,20.63247328472485,20.632471112989307,20.632469323754723,20.63247176874806,20.63246592546252,20.632464340076346,20.63246303747904,20.632463288417952,20.632462524764957,20.63246242871793,20.632463450835004,20.63246203208829,20.632461366401046,54.81736393847735,60.74582162463082,38.574125555841626,33.938606860355634,44.353842345048434,49.00833439489518,39.24064636849136,33.97799342863514,33.38939737506014,32.5042278108681,31.73895478028807,33.42083689120191,30.684962534786784,29.6772705174546,27.782856634629336,24.608776905119083,29.28021716160871,30.93382824961772,25.450822486187775,24.298917999485937,24.41013754575908,24.633517977669158,23.945617687369587,24.12259391643125,24.360949990320286,23.936564816930435,23.761725939485935,23.47539114710331,23.601039335009567,23.26941650881146,23.22223826961657,23.673434730616354,23.12746434112448,22.955852498260445,22.676624360612603,22.273292117088104,21.555910989655253,28.007473573974547,22.414061985878185,22.24098980948649,21.434447794724637,21.40335367792974,21.331261138161658,21.271130496005714,21.20337805970669,21.488315652935984,21.148372272834123,21.06845158394519,21.019069355968487,20.965221458442667,20.915296223641523,20.83595060310133,20.776596344648464,20.725203725819902,20.72630637646564,21.03641300741395,20.72930771087307,20.660357419954757,20.660754954058234,20.658133994039304],"feasible_probability":0.8453893801566119,"one_hot_probability":1.0,"sampled_feasible_fraction":0.83203125,"counts":{"01000101":90,"01001001":23,"01001010":9,"01010001":5,"01100001":26,"01100010":6,"10000101":54,"10000110":5,"10001001":127,"10001010":37,"10010001":64,"10010010":1,"10100001":54,"10100010":11},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10939719500311185}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.8453893801566119,"total_shots":512,"runtime_seconds":0.1095903040113626},"direct_metrics":{"exact_objective":7,"optimal_count":1,"combinations":24,"optimal_probability":0.1120543519652183,"feasible_probability":0.6155564952064942,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.25,"shots_for_95_percent":26,"hit_curve":[{"shots":8,"quantum":0.6135519998042732,"uniform":0.2885690504976606},{"shots":16,"quantum":0.8506579431447235,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9776969500542354,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9995025739631167,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999997525673379,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":7},{"shots":16,"best_objective":7},{"shots":32,"best_objective":7},{"shots":64,"best_objective":7},{"shots":128,"best_objective":7},{"shots":512,"best_objective":7}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":16,"optimal_probability":0.18053111751140757,"feasible_probability":0.8453893801566119,"uniform_optimal_probability":0.0625,"uniform_feasible_probability":0.375,"shots_for_95_percent":16,"hit_curve":[{"shots":8,"quantum":0.7966427151054254,"uniform":0.4032805261667818},{"shots":16,"quantum":0.9586458146803069,"uniform":0.6439258695482073},{"shots":32,"quantum":0.9982898313565445,"uniform":0.8732112136229997},{"shots":64,"quantum":0.9999970753232109,"uniform":0.9839246036490473},{"shots":128,"quantum":0.9999999999914463,"uniform":0.9997415816321598},{"shots":512,"quantum":1.0,"uniform":0.9999999999999956}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.18053111751140757,"diagnostic_seconds":0.004620081002940424}
+{"instance":"n4-s2-r0.json","seed":6,"direct":{"status":"feasible","best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":7},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.5770800689975077,1.2269851136220942],"expected_energy":43.012451842218624,"initial_expected_energy":68.45757130230211,"history":[68.45757130230211,63.96093840688905,58.785308603201834,63.471869876712134,53.8754184311572,50.76269935164734,48.091274566001545,45.251183077746724,43.08652342046837,62.700532162027386,53.50460538976702,43.158321574647786,46.415303663984595,43.01916690497946,43.60290480034109,43.062863632047254,43.01340305408586,43.02652078181138,43.01257498951409,43.01556404700315,43.01283976087903,43.012857528771875,43.01255905546701,43.01261305470823,43.01256966915899,43.01257361423509,43.01255818126067,43.012571158228596,43.01255243015497,43.01254311726467,43.01253020665931,43.01251562302889,43.012492725879405,43.01266770500435,43.01252389339682,43.01251116596923,43.01248823664096,43.01249509804815,43.01248558471181,43.01248354371438,43.012480960554136,43.012476588364464,43.0124690781759,43.012459366892045,43.01246260824925,43.01248179379037,43.01246188702893,43.01245729924795,43.012456855283645,43.01246057050776,43.01245487498528,43.01245440327709,43.0124535002071,43.012452101424266,43.01245612954727,43.01245426963767,43.01245320050948,43.01245187087425,43.01245228997121,43.012451842218624,73.04534627579628,63.50587848302196,63.0925323723728,63.727818466053925,62.65373340886951,51.91325090758964,57.24382994075216,65.20644459563039,50.714337234894586,58.99188051097583,49.417438321041914,49.49404578310206,49.79022407506555,48.79493229095367,48.34902003029917,49.126118869817105,48.05460370261896,47.78947493347745,47.72203353718075,47.01341799678499,46.64772559357728,46.11568403351917,45.2364223040403,44.34893863114807,45.501482094967315,48.12649947562666,43.80681576100778,43.945910954687484,43.87025184049943,43.86559107975185,43.761574947962835,43.696129729877555,43.58535965031694,43.39034137448168,43.2819700879905,43.70560616740826,44.404495846124775,43.108558859901166,43.14279512246224,43.10623076450769,43.17968563027491,43.09834539488612,43.08789308478789,43.0819205927594,43.07445967300873,43.06728096675421,43.05834277370457,43.0481777926384,43.04395549218449,43.08750247015738,43.03531769113506,43.034126307772794,43.02895315034317,43.023279396235885,43.01897856904433,43.01430810703084,43.012969195385324,43.08324280181292,43.037030121972776,43.01331435549277],"feasible_probability":0.5734225245592673,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.546875,"counts":{"0100010011":51,"0100010101":16,"0100011001":15,"0100100011":4,"0100100101":7,"0100101001":1,"0101000011":2,"0101000101":1,"0110000011":16,"0110000101":3,"0110001001":4,"1000010011":43,"1000010101":18,"1000011001":46,"1000100011":5,"1000100101":23,"1000101001":14,"1001000011":109,"1001000101":15,"1001001001":39,"1010000011":49,"1010000101":27,"1010001001":4},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12887491799483541},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":7,"removals":[{"variable":3,"forced_by":0,"reasons":["precedence"]}],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[1,2,4,5,6,7,8,9]],"components":[{"qubits":8,"penalty":33,"objective_bound":32,"offset":99,"linear":[-33,-23,-33,-24,-25,-29,-33,-20],"quadratic":[[0,1,66],[1,2,33],[1,4,33],[1,5,33],[2,3,66],[2,4,66],[2,5,66],[3,4,66],[3,5,66],[3,6,33],[4,5,66],[4,6,33],[5,6,33],[6,7,66]],"domains":[[0,1],[2,3,4,5],[6,7]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r2","start":9,"cost":10},{"index":2,"task":"t2","resource":"r2","start":7,"cost":0},{"index":3,"task":"t2","resource":"r2","start":12,"cost":9},{"index":4,"task":"t2","resource":"r0","start":9,"cost":8},{"index":5,"task":"t2","resource":"r1","start":8,"cost":4},{"index":6,"task":"t3","resource":"r0","start":10,"cost":0},{"index":7,"task":"t3","resource":"r0","start":16,"cost":13}],"conflicts":[{"i":1,"j":2,"reasons":["resource","precedence"]},{"i":1,"j":4,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":3,"j":6,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]},{"i":5,"j":6,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":7},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":10,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,0,1,0,0,0,1,0],"qubo_energy":0},"seed":3153149895,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.353002098702683,2.852946314285636],"expected_energy":20.632627487335427,"initial_expected_energy":53.31407973521611,"history":[53.31407973521611,53.1568063441742,25.504145161162036,45.421367427563375,30.509024584318663,27.939757300631392,21.27577308649589,30.01002643848059,23.19769021161426,21.80306899586712,20.676418040291722,20.947040640453064,20.741707420738685,20.834828534875257,20.686429161200067,20.683713131179083,20.666094517599973,20.65865387582479,20.648124593113753,20.655119484393246,20.651241155596328,20.653098060505783,20.64692309889255,20.649884150755856,20.646333184220328,20.645244767700916,20.64331825220357,20.64165877804964,20.638563818837703,20.64007805629513,20.641350692620595,20.63863107592772,20.63774828749342,20.637238448845057,20.636626622509603,20.63605702345656,20.635268427769695,20.63444295953886,20.633865132232046,20.635547810342135,20.633565669221934,20.63347609204977,20.634332421107704,20.633294880177825,20.633181506659646,20.633098538952893,20.633160719212462,20.633056820906987,20.633042404705357,20.632995501572033,20.632953015782014,20.632874764107985,20.632738700199837,20.63302145330841,20.632901401123874,20.632711460720067,20.632765530242974,20.63270601702873,20.63267805829465,20.632627487335427,58.69155703593604,53.033224227530724,37.03898581695787,36.33656084152526,40.044130839766844,46.947814483356794,37.602059437191414,38.289750631074554,37.22757761690027,34.54484571582422,32.12215845902478,32.701559492476974,31.233508286914912,30.457175159385265,29.24378475975338,33.4768690906034,28.31660275441194,27.396848386469557,28.305297106299946,26.471937324025436,26.393946074058498,27.229198512143956,25.682981558534927,24.406630376709632,22.47993694706414,24.658095451498433,27.420262488902445,22.19202664805288,25.242042098356105,22.039581606561544,21.950228976984228,22.970840717726773,21.708577745054072,21.599631951242397,21.47949339931561,21.363182744554386,21.301588568867196,21.203666604160105,21.39346478185354,22.085193187748807,21.06111217428239,21.05576576812515,21.027606994233558,21.034018164920738,21.027994076043317,21.03306004069158,21.026897677609988,21.0375243173633,21.02461876199554,21.023192071642942,21.02210119959525,21.0241176727067,21.02245866860833,21.021917445872006,21.022031350258132,21.021840620213485,21.021647961038525,21.021331303255057,21.02115660191016,21.020396773173186],"feasible_probability":0.8455619519663585,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.845703125,"counts":{"01000101":94,"01001001":28,"01001010":8,"01010001":3,"01010010":1,"01100001":19,"01100010":2,"10000101":51,"10000110":9,"10001001":127,"10001010":34,"10010001":56,"10100001":71,"10100010":9},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11272220899991225}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.8455619519663585,"total_shots":512,"runtime_seconds":0.112918290993548},"direct_metrics":{"exact_objective":7,"optimal_count":1,"combinations":24,"optimal_probability":0.09400625972499344,"feasible_probability":0.5734225245592673,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.25,"shots_for_95_percent":31,"hit_curve":[{"shots":8,"quantum":0.5460567356826959,"uniform":0.2885690504976606},{"shots":16,"quantum":0.7939355127809502,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9575374271071501,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9981969299033194,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999967489382264,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":7},{"shots":16,"best_objective":7},{"shots":32,"best_objective":7},{"shots":64,"best_objective":7},{"shots":128,"best_objective":7},{"shots":512,"best_objective":7}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":16,"optimal_probability":0.18055185174778565,"feasible_probability":0.8455619519663585,"uniform_optimal_probability":0.0625,"uniform_feasible_probability":0.375,"shots_for_95_percent":16,"hit_curve":[{"shots":8,"quantum":0.7966838742974406,"uniform":0.4032805261667818},{"shots":16,"quantum":0.958662553029301,"uniform":0.6439258695482073},{"shots":32,"quantum":0.9982912154779446,"uniform":0.8732112136229997},{"shots":64,"quantum":0.9999970800554572,"uniform":0.9839246036490473},{"shots":128,"quantum":0.9999999999914739,"uniform":0.9997415816321598},{"shots":512,"quantum":1.0,"uniform":0.9999999999999956}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.942890293094024e-16,"independent_samples":[{"shots":8,"best_objective":17},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.18055185174778565,"diagnostic_seconds":0.004365501998108812}
+{"instance":"n4-s2-r0.json","seed":7,"direct":{"status":"feasible","best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":7},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4382869499385467,2.8585442152899785],"expected_energy":41.595591058573035,"initial_expected_energy":74.40152592004532,"history":[74.40152592004532,66.73091909692803,63.83775820364238,64.22282877243606,61.92274810201107,53.58956577547664,63.4488242742314,50.26218131562548,73.84922583770842,48.46360049178529,47.68840952306226,47.25202994435248,51.66127393715109,46.26454312808951,44.709880082479735,44.04290253252427,44.39888801381092,43.89343808792502,43.835376416730455,43.68280899168573,43.6704458066998,43.46189582370703,43.50775558748118,43.541877376273995,43.49901331375487,43.42720962124162,43.479810263801944,43.41786161092237,43.40099800536935,43.3867799084888,43.34525303897843,43.300529112403666,43.233662630730116,43.16389781491746,43.167593228973615,43.232513096449104,43.19058619277242,43.13600442946285,43.157572355524316,43.12569740195978,43.117790358005365,43.107824882177155,43.0906282644651,43.06453603882365,43.046844829665694,43.02490659156457,43.02261772583104,43.03022660515438,43.033360603741706,43.01410881239169,43.01481332821478,43.01790945920728,43.013678054121016,43.01817522702341,43.016056201177626,43.01337394100608,43.014411010078135,43.01295317242366,43.012508108028456,43.01256920488572,46.63490626771956,53.107019215124346,73.79205605394513,69.73386334656337,45.95309310267996,45.03447498598395,45.65412034767249,46.65064588403001,42.942736225611114,42.25656320908351,42.66247200012829,42.129731000287066,41.93727511685783,42.00826171890002,42.234276961036045,41.88389954855192,41.90435278934883,41.8752964867946,41.86372658728625,41.86579470853111,41.84683004372539,41.83515479417767,41.83828310953107,41.81999022265266,41.808614047653535,41.81821061992107,41.79550465606876,41.781471263444956,41.75883378832841,41.767895382937425,41.744438160069066,41.773208159564575,41.75203571476871,41.73497031388652,41.74461416508427,41.722837329492705,41.71229792613962,41.69074424230219,41.65376145771945,41.763767447786435,41.71554983928776,41.665679621078674,41.65101297689898,41.66481456426184,41.64224478018288,41.63564094344056,41.622998034181855,41.60686193471921,41.62561008609127,41.638195639179074,41.604226768611476,41.60369449224608,41.60092951969063,41.59939082351071,41.60751313111413,41.59664677987013,41.60044053625715,41.59854006015572,41.59634775874403,41.595591058573035],"feasible_probability":0.6162806758893566,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.603515625,"counts":{"0100010011":55,"0100010101":15,"0100011001":20,"0100100011":9,"0100100101":2,"0100101001":3,"0101000011":8,"0101000101":1,"0101001001":2,"0110000011":8,"0110001001":5,"1000010011":33,"1000010101":16,"1000011001":21,"1000100011":77,"1000100101":46,"1000101001":10,"1001000011":41,"1001000101":14,"1001001001":26,"1010000011":57,"1010001001":43},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13102329899265897},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":7,"removals":[{"variable":3,"forced_by":0,"reasons":["precedence"]}],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[1,2,4,5,6,7,8,9]],"components":[{"qubits":8,"penalty":33,"objective_bound":32,"offset":99,"linear":[-33,-23,-33,-24,-25,-29,-33,-20],"quadratic":[[0,1,66],[1,2,33],[1,4,33],[1,5,33],[2,3,66],[2,4,66],[2,5,66],[3,4,66],[3,5,66],[3,6,33],[4,5,66],[4,6,33],[5,6,33],[6,7,66]],"domains":[[0,1],[2,3,4,5],[6,7]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r2","start":9,"cost":10},{"index":2,"task":"t2","resource":"r2","start":7,"cost":0},{"index":3,"task":"t2","resource":"r2","start":12,"cost":9},{"index":4,"task":"t2","resource":"r0","start":9,"cost":8},{"index":5,"task":"t2","resource":"r1","start":8,"cost":4},{"index":6,"task":"t3","resource":"r0","start":10,"cost":0},{"index":7,"task":"t3","resource":"r0","start":16,"cost":13}],"conflicts":[{"i":1,"j":2,"reasons":["resource","precedence"]},{"i":1,"j":4,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":3,"j":6,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]},{"i":5,"j":6,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":7},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":10,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,0,1,0,0,0,1,0],"qubo_energy":0},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4070761601827833,1.2301544352763596],"expected_energy":21.018833248944006,"initial_expected_energy":27.270253591184463,"history":[27.270253591184463,29.56643341509171,59.79631005863275,34.56878239565799,47.86262520412122,21.522583812333817,22.062509476681377,21.580850293584547,22.746584888072633,21.019677231817973,21.503606871873842,21.039404268399547,21.02549426076991,21.046538718980706,21.020961995321258,21.025237457667544,21.02024493548933,21.019907921154704,21.01975208501974,21.019596614046694,21.019667857798247,21.019501123831702,21.019432227175123,21.01934377026231,21.019204953645968,21.019166117305897,21.01895373369451,21.019296045446513,21.019168870163277,21.018977189338315,21.018972239024098,21.01894481947293,21.018968055792605,21.018932204524198,21.018922886497624,21.018908129223906,21.018947501012207,21.018901398705935,21.0188856236504,21.01886384124462,21.018848856550807,21.018843153981365,21.01883884344801,21.018836147503833,21.018879177059766,21.01883845469366,21.01883645971337,21.018842957525205,21.018834252726094,21.018834242840942,21.01883367723883,21.018833355096717,21.018833454413617,21.018834127261385,21.018833636332005,21.018833372730597,21.01883333511386,21.018833288801552,21.018833248944006,21.01883326739138,26.074893570578965,28.369300638567232,59.69412506169547,35.634737278575756,46.732108345885266,21.22397371781768,22.58020006325308,21.279669175643185,22.312122650239925,21.085238037303643,21.706877816021958,21.112912257912235,21.18922655542405,21.077444855042792,21.048824556199463,21.029722503838414,21.025016679748354,21.02001944156232,21.02482437625325,21.019489580333477,21.019630247156677,21.019452450568473,21.019472854926736,21.019381116558023,21.01935390780695,21.019504025834756,21.019261453033046,21.019204902676215,21.01913624532225,21.01902412740464,21.018892484543745,21.019338822208532,21.019188619799316,21.01887827827315,21.018879772808553,21.018866908005386,21.018869230060155,21.018908196489882,21.018866348818605,21.018855087358613,21.018849754377957,21.018852975933687,21.018847845098293,21.018845974072686,21.01884319211704,21.018841018496488,21.01883547117432,21.01885562384966,21.01884652975164,21.018840294568708,21.018834994683065,21.018835344846067,21.018834682057737,21.018836124571873,21.01883423708385,21.01883414056389,21.018833874969488,21.0188335643104,21.01883350036071,21.018833341375554],"feasible_probability":0.8219241946788419,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.8125,"counts":{"01000101":84,"01001001":9,"01001010":4,"01010001":22,"01010010":5,"01100001":24,"01100010":1,"10000101":65,"10000110":12,"10001001":8,"10001010":16,"10010001":167,"10010010":3,"10100001":76,"10100010":16},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11472210900683422}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.8219241946788419,"total_shots":512,"runtime_seconds":0.1148982349986909},"direct_metrics":{"exact_objective":7,"optimal_count":1,"combinations":24,"optimal_probability":0.11228869350637487,"feasible_probability":0.6162806758893566,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.25,"shots_for_95_percent":26,"hit_curve":[{"shots":8,"quantum":0.6143671597254018,"uniform":0.2885690504976606},{"shots":16,"quantum":0.8512873125017462,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9778845365770467,"uniform":0.7438283781843783},{"shots":64,"quantum":0.999510906277588,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999997607873307,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.249000902703301e-16,"independent_samples":[{"shots":8,"best_objective":28},{"shots":16,"best_objective":7},{"shots":32,"best_objective":7},{"shots":64,"best_objective":7},{"shots":128,"best_objective":7},{"shots":512,"best_objective":7}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":16,"optimal_probability":0.1603095196783839,"feasible_probability":0.8219241946788419,"uniform_optimal_probability":0.0625,"uniform_feasible_probability":0.375,"shots_for_95_percent":18,"hit_curve":[{"shots":8,"quantum":0.7528538573934239,"uniform":0.4032805261667818},{"shots":16,"quantum":0.93891878419469,"uniform":0.6439258695482073},{"shots":32,"quantum":0.9962690850757452,"uniform":0.8732112136229997},{"shots":64,"quantum":0.999986080273828,"uniform":0.9839246036490473},{"shots":128,"quantum":0.9999999998062412,"uniform":0.9997415816321598},{"shots":512,"quantum":1.0,"uniform":0.9999999999999956}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.0531133177191805e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.1603095196783839,"diagnostic_seconds":0.004551314996206202}
+{"instance":"n4-s2-r0.json","seed":8,"direct":{"status":"feasible","best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":7},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4382417997132788,2.8571518433621206],"expected_energy":41.59561588080638,"initial_expected_energy":52.9703027273464,"history":[52.9703027273464,54.92418546573518,53.4021826669738,59.61561726287158,54.45147571299776,56.53801959392406,46.711633134930274,45.23734953853297,47.282542484469836,49.504078983294505,46.18827373558615,43.618112777269495,43.056421924709156,43.21369837007503,43.01955454942939,43.04719561419526,43.02570593612914,43.02683330929985,43.020371584299596,43.0218257999893,43.02013183985618,43.0200457588477,43.0189504866893,43.018998196402435,43.019065264621645,43.018740388241596,43.01837040897145,43.01791722415801,43.019396746226256,43.01731646218333,43.01692654940052,43.016551609523326,43.01626339963398,43.01543564879891,43.01527318049477,43.0145186067639,43.01450501782541,43.01404017958859,43.01381019269217,43.01334146422168,43.01275139971992,43.01314389558301,43.01366848836409,43.01282018233681,43.012835233553496,43.01274641357121,43.01290325292658,43.012670691513634,43.01266755336806,43.01261179736529,43.01258412655405,43.01254797942747,43.01250456182689,43.01255638325969,43.012577758151174,43.0124939866596,43.012489902217894,43.01251870639024,43.01248314184489,43.01247995589452,82.2341810672264,77.23502278707522,58.78173320695683,46.706722812380434,66.00134423968194,71.08200342357688,50.82218004072058,52.14804545054128,46.10887456401493,45.62889879477308,45.22006657770254,45.79549151041393,44.90975937387307,44.652939268521266,44.12711701028273,43.281178459705956,44.82929648830034,46.10631714294698,43.26999654604754,43.00158338399616,42.58057853470104,42.10064171942929,42.39484692648943,42.86373552652594,42.14155399916893,42.05457559597123,41.99232528930281,41.95118549547919,41.9022946044625,41.81850835948799,41.68974246843837,43.297887474819575,42.177985590137865,41.78172412715149,41.680080445009345,41.727680787403344,41.67619826475996,41.66785897480795,41.6692808887465,41.66295187551854,41.665518647445,41.66853534795831,41.656336751849295,41.6582107197917,41.6609269473291,41.65654126738282,41.65420183689565,41.65013326638577,41.642517801772755,41.640875345540515,41.62930761654797,41.623038457392646,41.61078807967155,41.59779747605701,41.61950440118386,41.62582330598222,41.596452306447496,41.59743112414948,41.59649800054348,41.59561588080638],"feasible_probability":0.6162697987921257,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.6015625,"counts":{"0100010011":64,"0100010101":10,"0100011001":25,"0100100011":11,"0100100101":9,"0100101001":1,"0101000011":2,"0101001001":2,"0110000011":18,"0110000101":3,"0110001001":11,"1000010011":38,"1000010101":18,"1000011001":18,"1000100011":70,"1000100101":41,"1000101001":13,"1001000011":53,"1001000101":11,"1001001001":17,"1010000011":42,"1010000101":3,"1010001001":32},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1305649100104347},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":7,"removals":[{"variable":3,"forced_by":0,"reasons":["precedence"]}],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[1,2,4,5,6,7,8,9]],"components":[{"qubits":8,"penalty":33,"objective_bound":32,"offset":99,"linear":[-33,-23,-33,-24,-25,-29,-33,-20],"quadratic":[[0,1,66],[1,2,33],[1,4,33],[1,5,33],[2,3,66],[2,4,66],[2,5,66],[3,4,66],[3,5,66],[3,6,33],[4,5,66],[4,6,33],[5,6,33],[6,7,66]],"domains":[[0,1],[2,3,4,5],[6,7]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r2","start":9,"cost":10},{"index":2,"task":"t2","resource":"r2","start":7,"cost":0},{"index":3,"task":"t2","resource":"r2","start":12,"cost":9},{"index":4,"task":"t2","resource":"r0","start":9,"cost":8},{"index":5,"task":"t2","resource":"r1","start":8,"cost":4},{"index":6,"task":"t3","resource":"r0","start":10,"cost":0},{"index":7,"task":"t3","resource":"r0","start":16,"cost":13}],"conflicts":[{"i":1,"j":2,"reasons":["resource","precedence"]},{"i":1,"j":4,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":3,"j":6,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]},{"i":5,"j":6,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":7},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":10,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,0,1,0,0,0,1,0],"qubo_energy":0},"seed":3257320810,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.406225347345713,1.230089176197353],"expected_energy":21.018843838605356,"initial_expected_energy":57.19321722660672,"history":[57.19321722660672,58.274518710039935,47.66014333533479,23.690570844899995,58.139669070463384,30.781301223371244,25.789995246851937,24.093423592924413,26.27872132229569,22.776393270986333,22.688421985351642,23.28556381819679,22.256819708933804,21.65340292607266,22.467025369510715,21.530582968593055,21.39851608759383,21.796882130135785,21.22458743268832,21.238665972563336,21.214781627060166,21.236448520505856,21.205360094486938,21.188557971641718,21.162048591016415,21.119514151304564,21.210097046952264,21.10443718621385,21.08857628890534,21.091420516052015,21.07899203161766,21.077850272809293,21.091057464912474,21.068151922670314,21.053801496472435,21.03190973157011,21.156633529950312,21.109325599726134,21.046917662917245,21.030179383804594,21.036391419381047,21.02938440024762,21.039968990897584,21.02687881420856,21.025621798762874,21.024191448877655,21.02216182200264,21.023003776622232,21.02175599362807,21.024211908508917,21.021451996147164,21.02099972779334,21.020476273126274,21.02256214476059,21.020211706672278,21.019963164468578,21.019696537900515,21.019610223331306,21.019332479732043,21.01943360578217,35.50936865312973,36.907816550822645,58.755379562330596,28.829194821528617,55.67432178374015,21.869905055694794,23.037167426949882,21.138892531906407,23.278762864216695,21.236191624791317,21.295043095436377,21.21959776007853,21.101855667559818,21.093186627571797,21.1605578998875,21.079141853280824,21.06975799358851,21.062340592046475,21.07371706131243,21.058818056037772,21.051181247264818,21.03978375653199,21.02661646691013,21.04470221714263,21.05822299044392,21.024750559031972,21.023880506801845,21.023004309248105,21.029723354392644,21.02092938781854,21.02098560947865,21.020838839639964,21.020892540898664,21.020971942524547,21.020632306470116,21.020462296913912,21.02083697841743,21.020312286912606,21.020182504559912,21.02002950517608,21.01977148733589,21.019642125750096,21.01944927456071,21.019336497549418,21.01971939272387,21.019249988697503,21.019198564049773,21.01913042332884,21.019026303377984,21.018878295895366,21.019563673537725,21.019026140105808,21.01892727891884,21.018910890454066,21.018876612152134,21.01887004932363,21.018858981212112,21.018843838605356,21.018867868217168,21.01884945919711],"feasible_probability":0.8218430454852008,"one_hot_probability":1.0,"sampled_feasible_fraction":0.8515625,"counts":{"01000101":85,"01001001":5,"01001010":4,"01010001":21,"01100001":26,"01100010":3,"10000101":65,"10000110":4,"10001001":15,"10001010":13,"10010001":177,"10100001":81,"10100010":13},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11989188399456907}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.8218430454852008,"total_shots":512,"runtime_seconds":0.12008176500967238},"direct_metrics":{"exact_objective":7,"optimal_count":1,"combinations":24,"optimal_probability":0.11203944926927555,"feasible_probability":0.6162697987921257,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.25,"shots_for_95_percent":26,"hit_curve":[{"shots":8,"quantum":0.6135001096430317,"uniform":0.2885690504976606},{"shots":16,"quantum":0.8506178347540515,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9776849687064322,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9995020393783671,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999997520352193,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.249000902703301e-16,"independent_samples":[{"shots":8,"best_objective":7},{"shots":16,"best_objective":7},{"shots":32,"best_objective":7},{"shots":64,"best_objective":7},{"shots":128,"best_objective":7},{"shots":512,"best_objective":7}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":16,"optimal_probability":0.16027755937458318,"feasible_probability":0.8218430454852008,"uniform_optimal_probability":0.0625,"uniform_feasible_probability":0.375,"shots_for_95_percent":18,"hit_curve":[{"shots":8,"quantum":0.7527785923444137,"uniform":0.4032805261667818},{"shots":16,"quantum":0.9388815755967904,"uniform":0.6439258695482073},{"shots":32,"quantum":0.9962645381984692,"uniform":0.8732112136229997},{"shots":64,"quantum":0.9999860463251293,"uniform":0.9839246036490473},{"shots":128,"quantum":0.999999999805295,"uniform":0.9997415816321598},{"shots":512,"quantum":1.0,"uniform":0.9999999999999956}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.16027755937458318,"diagnostic_seconds":0.004216526009258814}
+{"instance":"n4-s2-r0.json","seed":9,"direct":{"status":"feasible","best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":7},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.5759294973523874,1.2270710949543617],"expected_energy":43.01245577426609,"initial_expected_energy":53.48359032465502,"history":[53.48359032465502,50.3152181447394,82.14245229330258,55.33750562553449,67.48185435255606,48.10186554188482,43.533515585823864,44.43399431228609,43.587059905748994,43.94535994144633,43.347733613308066,43.78264540043854,43.260834356271694,43.4295650616648,43.24012668209297,43.21133489283183,43.17680120473658,43.13687360569387,43.08222394601805,43.02398758486531,43.490183999448355,43.12547044384708,43.060118003322934,43.021956899046074,43.02399704710127,43.02112097480049,43.0323526002985,43.018677043227946,43.018146995820956,43.01694081476668,43.01507385751752,43.01668059082654,43.01862839817198,43.01602944992487,43.014879727197695,43.01506741313773,43.01486128472974,43.014707475014525,43.01442944899421,43.01392334027494,43.013900823624,43.01306125280449,43.01516512851167,43.01380599239646,43.012988896531596,43.013181380465085,43.01296309702364,43.01288458575641,43.01278841632421,43.012676750689636,43.01254504773243,43.01250795146085,43.01275561593356,43.0126445193037,43.01248864463889,43.01252361115769,43.01255825626698,43.012459457286866,43.01245577426609,43.01245879016528,62.55900563430039,63.31675852148692,53.730764608962204,65.14062282310208,50.249389268747976,57.86642007907554,49.36157243094868,49.83380476662462,49.737741154007864,48.73852986615866,48.57900588703608,49.77386680228608,47.86786110534402,47.450246754597266,46.87563899648081,45.93158505436006,44.83241808506799,45.08016221906567,46.99368863395106,44.66628697484754,44.97821483350586,44.54205040600857,45.623703908446814,44.302794934258216,44.13516950899771,43.98846881705963,43.9120396594115,43.619506223964635,43.81675807268827,43.590297287329115,43.68901138469075,43.593144520242504,43.55937397024046,43.517116792917435,43.539656230911376,43.49682575069501,43.47965590626097,43.46477771327223,43.418993737438676,43.38686075430616,43.351573362497135,43.290103376417754,43.238927937884185,43.20920845278237,43.184772581679546,43.197045536259765,43.41468732636296,43.181279593446455,43.122384199602955,43.10099549548123,43.12200474739809,43.094593339312794,43.08573138563463,43.07215461198623,43.05692512307694,43.03291625512793,43.08554638489985,43.082340422603856,43.05897868995561,43.036186436210734],"feasible_probability":0.573361685988942,"one_hot_probability":1.0,"sampled_feasible_fraction":0.541015625,"counts":{"0100010011":56,"0100010101":18,"0100011001":14,"0100100011":11,"0100100101":2,"0101000011":8,"0101000101":2,"0101001001":2,"0110000011":10,"0110000101":3,"1000010011":45,"1000010101":18,"1000011001":32,"1000100011":3,"1000100101":19,"1000101001":15,"1001000011":110,"1001000101":18,"1001001001":44,"1010000011":44,"1010000101":31,"1010001001":7},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12639636000676546},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":7,"removals":[{"variable":3,"forced_by":0,"reasons":["precedence"]}],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[1,2,4,5,6,7,8,9]],"components":[{"qubits":8,"penalty":33,"objective_bound":32,"offset":99,"linear":[-33,-23,-33,-24,-25,-29,-33,-20],"quadratic":[[0,1,66],[1,2,33],[1,4,33],[1,5,33],[2,3,66],[2,4,66],[2,5,66],[3,4,66],[3,5,66],[3,6,33],[4,5,66],[4,6,33],[5,6,33],[6,7,66]],"domains":[[0,1],[2,3,4,5],[6,7]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r2","start":9,"cost":10},{"index":2,"task":"t2","resource":"r2","start":7,"cost":0},{"index":3,"task":"t2","resource":"r2","start":12,"cost":9},{"index":4,"task":"t2","resource":"r0","start":9,"cost":8},{"index":5,"task":"t2","resource":"r1","start":8,"cost":4},{"index":6,"task":"t3","resource":"r0","start":10,"cost":0},{"index":7,"task":"t3","resource":"r0","start":16,"cost":13}],"conflicts":[{"i":1,"j":2,"reasons":["resource","precedence"]},{"i":1,"j":4,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":3,"j":6,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]},{"i":5,"j":6,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":7,"raw_cost":7,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":4,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":7},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":2,"task":"t2","group":"g0","resource":"r2","start":7,"end":10,"reserved_end":10,"changed":false},{"variable":6,"task":"t3","group":"g1","resource":"r0","start":10,"end":11,"reserved_end":11,"changed":false}],"bits":[1,0,1,0,0,0,1,0],"qubo_energy":0},"seed":747784396,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4074872152698947,1.2301067959782233],"expected_energy":21.018835372208954,"initial_expected_energy":34.159529088687336,"history":[34.159529088687336,38.593645362561375,50.99375585983368,33.464847308761634,28.07002515079448,32.422557719374176,55.612300540106034,21.20747866207975,25.522108397610747,22.134120452258088,21.11256020573411,21.234200944580802,21.14901467125525,21.743908631942638,21.165963930594735,21.166169679982207,21.047147644435103,21.039380332943647,21.026732900946755,21.02743121747086,21.02556791952812,21.034782067225944,21.027073590295895,21.02526644430515,21.022279336776656,21.019175802692992,21.02535614590748,21.02430575343618,21.019956491368156,21.019255883173507,21.019555211205095,21.019140001133657,21.01907533502884,21.01897568651026,21.018932074323523,21.019118871359062,21.019372739794868,21.018857148231973,21.018865621973887,21.018859481218705,21.018903545419903,21.01886143819712,21.01886169215673,21.01885223059076,21.01885398078332,21.01885331553833,21.018850912183566,21.018851422153475,21.018848866093013,21.018848220043708,21.018851205401784,21.018846092858084,21.018844354691545,21.018841233457984,21.018840197809464,21.018837695062874,21.0188509873574,21.01884391814358,21.018838978138874,21.018835372208954,47.31044375776571,40.09174007541445,41.89147798290414,36.70396287981637,42.427191724823956,36.032902438779544,35.861137470923424,36.94900415694819,35.79030877608173,35.59706777377066,35.54761842924466,35.56301789778276,35.58056357422027,35.54631389915706,35.549531155042146,35.546751767205194,35.54389216318582,35.542387343121945,35.54900135423908,35.540862746526074,35.54017092565262,35.5407652172528,35.54047132128184,35.54039746806132,35.54021890212693,35.5401475271066,35.54011304398452,35.54010059033314,35.54012764064707,35.540078360854594,35.54006529638271,35.54008386863945,35.54005043487781,35.5400410417039,35.540047086982135,35.54003930825153,35.540043804946386,35.540038571662876,35.54003744619544,35.54003687418369,35.54003641839071,35.540036272337076,35.54003714858848,35.54003621706003,35.540036317838,35.54003636239353,35.54003623437908,35.54003624703404,35.54003621377284,35.54003620464697,35.54003620183026,35.54003620360042],"feasible_probability":0.8219489091298007,"one_hot_probability":1.0,"sampled_feasible_fraction":0.787109375,"counts":{"01000101":72,"01001001":3,"01001010":2,"01010001":24,"01010010":4,"01100001":37,"01100010":5,"10000101":54,"10000110":13,"10001001":6,"10001010":18,"10010001":163,"10010010":7,"10100001":90,"10100010":14},"circuit_evaluations":112,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":52}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10210545700101648}],"circuit_evaluations":112,"status":"feasible","feasible_probability":0.8219489091298007,"total_shots":512,"runtime_seconds":0.10228807799285278},"direct_metrics":{"exact_objective":7,"optimal_count":1,"combinations":24,"optimal_probability":0.09405762291017115,"feasible_probability":0.5733616859889421,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.25,"shots_for_95_percent":31,"hit_curve":[{"shots":8,"quantum":0.5462625768048035,"uniform":0.2885690504976606},{"shots":16,"quantum":0.7941223507921832,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9576143935566631,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9982034603664306,"uniform":0.9343761001763541},{"shots":128,"quantum":0.999996772445345,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":20},{"shots":16,"best_objective":7},{"shots":32,"best_objective":7},{"shots":64,"best_objective":7},{"shots":128,"best_objective":7},{"shots":512,"best_objective":7}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":16,"optimal_probability":0.16028357531097623,"feasible_probability":0.8219489091298007,"uniform_optimal_probability":0.0625,"uniform_feasible_probability":0.375,"shots_for_95_percent":18,"hit_curve":[{"shots":8,"quantum":0.7527927611306626,"uniform":0.4032805261667818},{"shots":16,"quantum":0.9388885810505984,"uniform":0.6439258695482073},{"shots":32,"quantum":0.9962653944739908,"uniform":0.8732112136229997},{"shots":64,"quantum":0.9999860527215652,"uniform":0.9839246036490473},{"shots":128,"quantum":0.9999999998054734,"uniform":0.9997415816321598},{"shots":512,"quantum":1.0,"uniform":0.9999999999999956}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":13},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.16028357531097623,"diagnostic_seconds":0.004414780007209629}
+{"instance":"n4-s2-r1.json","seed":0,"direct":{"status":"feasible","best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":5,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":9,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":3},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9793556291456813,1.2497994206629315],"expected_energy":31.575025394684815,"initial_expected_energy":47.803960181986646,"history":[47.803960181986646,49.01189143037754,47.9789103603988,45.63779384123614,44.6598762214317,37.78475648097041,37.71251785874408,42.948818755674424,48.33311161586529,41.820956035787106,47.0652699542575,38.80472703687386,33.56786167800581,34.86183909133741,34.41631698813727,32.9937687196409,32.16853523244893,31.870745339273327,31.70108991141752,31.853725817176745,31.751374248892663,31.736431584062615,31.701824657979998,31.6883003900387,31.665151517478442,31.6388496775134,31.616711784151086,31.60482903671538,31.71575676039418,31.585116605556763,31.590124666244826,31.584158241816024,31.590818040622892,31.581563503703926,31.586875971028164,31.580223259746134,31.57896513703769,31.578400094245197,31.576405576469035,31.578621330982642,31.576132348928283,31.57673721013959,31.576164107675062,31.57595464825024,31.57577837634433,31.57604359291936,31.57567651882121,31.575605060128673,31.57551050058806,31.575365907565384,31.57525715868232,31.575083163715988,31.575245229106123,31.575336837158687,31.575078813475514,31.57505412608525,31.575103410817626,31.575042268877038,31.575038689333894,31.57503425412338,52.032969562914374,49.214763755575376,46.64414682375444,50.14476046127423,45.949273996506484,47.568304432880375,45.82171833962881,45.61093232922896,47.00687655187948,45.18608959882121,44.894894633766896,44.628922551832225,43.94926960179974,42.046485692919106,41.027138467054186,35.6978444348118,60.194412112420395,38.29130448084394,42.55942665459654,36.73254285203922,34.608856254563975,34.01629572599191,35.97243373225094,33.417142423746824,33.028265841876724,32.63284867751418,32.13565905588143,32.13822224890827,32.361432698262966,32.1541911394722,32.195962747599495,32.03682667591964,31.916225633187622,31.84418763496417,32.0076178812105,31.79548071341273,31.75704602152137,31.813160002579693,31.734354743639134,31.696993563517836,31.63919921300153,31.633794372653632,31.578813301716387,31.682462970591764,31.57555935633843,31.59285942922327,31.577028974520417,31.577062896449057,31.576139584624784,31.575838641849344,31.575316940246672,31.57558295815597,31.57528486275768,31.575266872535998,31.575200481978854,31.575123803879883,31.57505784319344,31.575025394684815,31.575084667706435,31.57507817303037],"feasible_probability":0.18595521007198662,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.17578125,"counts":{"0100010011":90,"0100010101":8,"0100011001":30,"0100100011":9,"0100100101":14,"0100101001":24,"0101000011":71,"0101000101":35,"0101001001":84,"0110000011":42,"0110000101":4,"0110001001":27,"1000010011":10,"1000010101":6,"1000011001":5,"1000100011":11,"1000101001":5,"1001000011":18,"1001000101":2,"1001001001":3,"1010000011":11,"1010001001":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13464850299351383},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":3,"removals":[],"infeasible_task":null,"component_qubits":[9],"max_component_qubits":9,"component_to_original":[[1,2,3,4,5,6,7,8,9]],"components":[{"qubits":9,"penalty":21,"objective_bound":20,"offset":63,"linear":[-21,-15,-18,-21,-11,-15,-13,-21,-17],"quadratic":[[0,1,42],[0,2,42],[0,6,21],[1,2,42],[1,3,21],[1,6,21],[1,8,21],[2,3,21],[2,6,21],[2,8,21],[3,4,42],[3,5,42],[3,6,42],[3,8,21],[4,5,42],[4,6,42],[4,7,21],[4,8,21],[5,6,42],[5,7,21],[5,8,21],[7,8,42]],"domains":[[0,1,2],[3,4,5,6],[7,8]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r0","start":7,"cost":6},{"index":2,"task":"t1","resource":"r2","start":7,"cost":3},{"index":3,"task":"t2","resource":"r2","start":9,"cost":0},{"index":4,"task":"t2","resource":"r2","start":15,"cost":10},{"index":5,"task":"t2","resource":"r2","start":11,"cost":6},{"index":6,"task":"t2","resource":"r1","start":7,"cost":8},{"index":7,"task":"t3","resource":"r0","start":11,"cost":0},{"index":8,"task":"t3","resource":"r2","start":8,"cost":4}],"conflicts":[{"i":0,"j":6,"reasons":["resource","precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":6,"reasons":["precedence"]},{"i":1,"j":8,"reasons":["group"]},{"i":2,"j":3,"reasons":["resource","precedence"]},{"i":2,"j":6,"reasons":["precedence"]},{"i":2,"j":8,"reasons":["resource","group"]},{"i":3,"j":8,"reasons":["resource","precedence"]},{"i":4,"j":7,"reasons":["precedence"]},{"i":4,"j":8,"reasons":["precedence"]},{"i":5,"j":7,"reasons":["precedence"]},{"i":5,"j":8,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":5,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":9,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":3},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":9,"end":10,"reserved_end":10,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,0,0,0,1,0],"qubo_energy":0},"seed":3757552657,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.969977665522939,1.244099885770458],"expected_energy":25.660686404663537,"initial_expected_energy":44.741893053319146,"history":[44.741893053319146,42.12191812812051,39.546583654850096,43.03314212066306,38.7052293590712,39.51657353329881,39.195831770672356,38.89880491290901,38.69470641562827,38.47012343832038,37.925905696760466,36.73415501958513,35.73742774916602,30.55940340053391,50.82160941383095,31.706204409363046,34.461621743550445,31.546551332113985,29.67683655000593,30.914456914054156,29.17394615242724,29.04346346810516,28.391616852251758,27.581180349695593,26.75576021207545,26.52960232783171,27.21880959333926,30.037020855777165,25.83629088964644,25.764307198938432,25.70540986038827,26.00045629434192,25.66790989587591,25.758921259606076,25.679348542203606,25.67606216119581,25.664810155620355,25.661310554865192,25.662008371580367,25.66200635787702,25.66150490927074,25.661264175791924,25.661224471798043,25.661136930215363,25.66099012983807,25.66081062293592,25.660912103951425,25.66096752214188,25.660844137590068,25.660782786905656,25.660755241389875,25.6607760015833,25.660741517952886,25.660748576019348,25.660738081304338,25.660733236739766,25.660733856691763,25.660729664808436,25.660726666347678,25.660723164114547,45.98552140751504,46.68560450979334,28.025558605094037,43.86244675800073,32.77323926791524,29.418561942881432,26.340978464841488,26.53556941733894,26.525549509499974,26.448198873067987,26.492658615159264,26.30445339699524,27.2131419050245,26.077756482622178,25.956545323246885,25.876260150364395,25.9784239878215,25.83885493478978,25.80302381613054,25.78702568017475,25.717679245682675,25.74185910874857,25.713273657851104,25.728942203922013,25.71347643463293,25.702519854146765,25.696765431505156,25.703495509922192,25.689967292354147,25.684516913263955,25.67534764750229,25.667370352977226,25.666814983812095,25.661704286122863,25.68018315608795,25.661233592016547,25.661916704873583,25.66296592001095,25.6619888877036,25.66155901324,25.660831724401895,25.660876380148764,25.660800356422698,25.66075979257287,25.660742430571112,25.660826484963568,25.660711065803632,25.660725505093808,25.6607236104838,25.660712130724587,25.660706426096176,25.660698626606834,25.660688238937418,25.660722889943003,25.660693646226036,25.660687603804078,25.660690762836275,25.660686978623872,25.660686404663537,25.660686699288],"feasible_probability":0.1930687643155929,"one_hot_probability":1.0,"sampled_feasible_fraction":0.1875,"counts":{"010001001":96,"010001010":4,"010001100":29,"010010001":19,"010010010":15,"010010100":21,"010100001":84,"010100010":23,"010100100":62,"011000001":47,"011000010":8,"011000100":33,"100001001":6,"100001010":8,"100001100":3,"100010001":13,"100010010":2,"100010100":6,"100100001":20,"100100010":2,"101000001":6,"101000010":2,"101000100":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12533718699705787}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.1930687643155929,"total_shots":512,"runtime_seconds":0.12551767900004052},"direct_metrics":{"exact_objective":3,"optimal_count":1,"combinations":24,"optimal_probability":0.18595521007198662,"feasible_probability":0.18595521007198662,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.041666666666666664,"shots_for_95_percent":15,"hit_curve":[{"shots":8,"quantum":0.8071647574293991,"uniform":0.2885690504976606},{"shots":16,"quantum":0.9628145692227374,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9986172437379094,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9999980879851197,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999999999963441,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":3},{"shots":16,"best_objective":3},{"shots":32,"best_objective":3},{"shots":64,"best_objective":3},{"shots":128,"best_objective":3},{"shots":512,"best_objective":3}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":24,"optimal_probability":0.1930687643155929,"feasible_probability":0.1930687643155929,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.041666666666666664,"shots_for_95_percent":14,"hit_curve":[{"shots":8,"quantum":0.8202403491126824,"uniform":0.2885690504976606},{"shots":16,"quantum":0.9676864679128697,"uniform":0.49386600409019976},{"shots":32,"quantum":0.998955835644054,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9999989097207977,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999999999988113,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.8041124150158794e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.1930687643155929,"diagnostic_seconds":0.004921079002087936}
+{"instance":"n4-s2-r1.json","seed":1,"direct":{"status":"feasible","best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":5,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":9,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":3},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9783177189229518,1.249697718896864],"expected_energy":31.57501835516105,"initial_expected_energy":52.02893240949183,"history":[52.02893240949183,49.49892573492403,47.30395599060479,49.467609255621284,46.817008814448855,44.330447532040914,52.57473453357358,44.43547920972122,44.03368624721877,44.03610558456552,44.27564382326402,43.65016902136197,43.23572063863133,43.655774393648365,42.67233215153416,42.11950496089196,41.02079473933868,38.933144077275585,34.38148703963758,45.5819372742492,48.033797666782434,33.603131518497705,35.059099173416215,34.09232954986351,33.765022937774916,33.40785209686802,33.82224727055567,32.9459989744599,32.58972778207769,32.15685510319361,31.762264075094816,31.631559766922507,33.76683758080977,31.71265846993419,32.13666666338904,31.642252927820493,31.725582551260946,31.627948990925105,31.603534317941463,31.586848797259044,31.58207892005632,31.576792539743593,31.57930229811864,31.57606013901883,31.576792455352635,31.575985603496285,31.575758982753378,31.575799168630986,31.575668507008306,31.57563816164665,31.5757560987458,31.57553803865338,31.57545273147175,31.575307477857862,31.57533194484792,31.57535488886603,31.57528160247547,31.575288259982795,31.575314588245025,31.5752401677777,42.39125823676261,46.02024016395011,45.8732367964526,51.92322723451079,44.514424088491424,42.891292311183264,42.066561574805206,41.581686153148446,41.415210016340865,42.85548756473544,40.73706883022316,39.3734743107716,36.729298803586374,32.5853084218974,62.261020829802675,44.93283709607602,31.959423153034162,37.99834047073319,32.88888765669813,32.21863055820944,31.928154037373496,32.14996392920822,31.923958954700637,31.85017364370597,31.80540940112678,31.76334567147733,31.731589928506303,31.695701827987975,31.639177814076398,31.60527455795253,31.7366605568443,31.801716006925325,31.602797639007022,31.57690754649189,31.596165616411334,31.57638198850926,31.58337856360246,31.576129773321856,31.5760131499269,31.582629624369154,31.575023961740754,31.575888018219576,31.575044022596092,31.575276064427097,31.575027128960187,31.575024236793983,31.575040262736167,31.575022337623736,31.57502521331872,31.575023072205866,31.57502170239905,31.575020507854944,31.57501870069782,31.57502303458143,31.575019683290265,31.57501895586209,31.57501988657508,31.57501835516105,31.57501837168992,31.5750184435398],"feasible_probability":0.18587948928283063,"one_hot_probability":1.0,"sampled_feasible_fraction":0.1796875,"counts":{"0100010011":92,"0100010101":8,"0100011001":33,"0100100011":8,"0100100101":19,"0100101001":31,"0101000011":78,"0101000101":22,"0101001001":54,"0110000011":47,"0110000101":8,"0110001001":27,"1000010011":8,"1000010101":5,"1000011001":4,"1000100011":13,"1000100101":1,"1000101001":8,"1001000011":32,"1001000101":1,"1001001001":4,"1010000011":9},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1327096890017856},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":3,"removals":[],"infeasible_task":null,"component_qubits":[9],"max_component_qubits":9,"component_to_original":[[1,2,3,4,5,6,7,8,9]],"components":[{"qubits":9,"penalty":21,"objective_bound":20,"offset":63,"linear":[-21,-15,-18,-21,-11,-15,-13,-21,-17],"quadratic":[[0,1,42],[0,2,42],[0,6,21],[1,2,42],[1,3,21],[1,6,21],[1,8,21],[2,3,21],[2,6,21],[2,8,21],[3,4,42],[3,5,42],[3,6,42],[3,8,21],[4,5,42],[4,6,42],[4,7,21],[4,8,21],[5,6,42],[5,7,21],[5,8,21],[7,8,42]],"domains":[[0,1,2],[3,4,5,6],[7,8]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r0","start":7,"cost":6},{"index":2,"task":"t1","resource":"r2","start":7,"cost":3},{"index":3,"task":"t2","resource":"r2","start":9,"cost":0},{"index":4,"task":"t2","resource":"r2","start":15,"cost":10},{"index":5,"task":"t2","resource":"r2","start":11,"cost":6},{"index":6,"task":"t2","resource":"r1","start":7,"cost":8},{"index":7,"task":"t3","resource":"r0","start":11,"cost":0},{"index":8,"task":"t3","resource":"r2","start":8,"cost":4}],"conflicts":[{"i":0,"j":6,"reasons":["resource","precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":6,"reasons":["precedence"]},{"i":1,"j":8,"reasons":["group"]},{"i":2,"j":3,"reasons":["resource","precedence"]},{"i":2,"j":6,"reasons":["precedence"]},{"i":2,"j":8,"reasons":["resource","group"]},{"i":3,"j":8,"reasons":["resource","precedence"]},{"i":4,"j":7,"reasons":["precedence"]},{"i":4,"j":8,"reasons":["precedence"]},{"i":5,"j":7,"reasons":["precedence"]},{"i":5,"j":8,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":5,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":9,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":3},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":9,"end":10,"reserved_end":10,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,0,0,0,1,0],"qubo_energy":0},"seed":1641411168,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9676376761834119,1.2442666508724327],"expected_energy":25.660743644604068,"initial_expected_energy":42.427508048825985,"history":[42.427508048825985,43.22668405089182,39.4562096529709,40.678833148421745,40.801275939660655,40.179532709198114,38.61187833299823,38.653630662585584,38.648693469159774,38.575327954699794,38.47314701679139,38.18935787234044,37.609829420844584,36.8092624754068,35.55375338267511,41.14021268314965,36.51948375542092,38.13743434607803,35.933929247833774,34.46192243781499,35.27001230222009,34.69358923061945,34.187400056593916,34.10285690218872,33.922643958159284,33.71195465497935,33.78431439741051,33.92099561455251,33.787052588354086,33.79946565987209,33.69709585556882,33.674553668116666,33.6570530988261,33.66721837645487,33.64985722600371,33.64628633168578,33.65293425050447,33.63871167043172,33.631633945663054,33.61864032836088,33.60627867392845,33.58503579411842,33.58093044434011,33.57197990049144,33.59761332632651,33.58500801925874,33.57423225054295,33.56757046128291,33.56780099479101,33.56657047738382,33.56574425038683,33.56465023033358,33.566684440750166,33.564110031057325,33.56380181379563,33.563369967337714,33.56347128914368,33.56316430930279,33.563196629985775,33.56320578851606,45.72969433836524,51.73328245587886,42.131843885486845,40.12210587404152,41.90674993132073,40.26876655223358,39.720038589889725,41.39720314715855,39.26410344812653,38.251144386049624,39.486877224218006,36.29099463077189,34.2725173066971,30.75306187740962,27.2144960987045,30.47793025469273,41.748684204967695,27.478764975631137,25.738624450836035,27.941186282645017,25.85386325384252,25.953815686622285,25.775360209475956,25.797336651968717,25.760955936110015,25.725506335544694,25.70278206947509,25.67557116886306,25.666249112129222,25.67990545123453,25.665330964543585,25.662850091288984,25.66334001909489,25.662690412019135,25.663490938649808,25.66266590996092,25.662425336013293,25.662081630803236,25.66156831870856,25.661568754780042,25.661485415443092,25.6615320974806,25.66156269920062,25.66136958659873,25.66130170642454,25.6616195968555,25.66120011998601,25.661114195617145,25.6609772023332,25.661086413852953,25.660960871911847,25.661074412152708,25.660886277368697,25.66082767547249,25.660748569859138,25.660749854602493,25.660743644604068,25.66077716532527,25.660762799129223,25.66074373979344],"feasible_probability":0.19289001747249704,"one_hot_probability":1.0,"sampled_feasible_fraction":0.1796875,"counts":{"010001001":92,"010001010":6,"010001100":43,"010010001":12,"010010010":13,"010010100":18,"010100001":61,"010100010":19,"010100100":71,"011000001":52,"011000010":8,"011000100":31,"100001001":3,"100001010":4,"100001100":4,"100010001":23,"100010100":12,"100100001":25,"100100010":1,"100100100":4,"101000001":9,"101000100":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13427180900180247}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.19289001747249704,"total_shots":512,"runtime_seconds":0.13457378800376318},"direct_metrics":{"exact_objective":3,"optimal_count":1,"combinations":24,"optimal_probability":0.18587948928283063,"feasible_probability":0.18587948928283063,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.041666666666666664,"shots_for_95_percent":15,"hit_curve":[{"shots":8,"quantum":0.8070212135697927,"uniform":0.2885690504976606},{"shots":16,"quantum":0.9627591879879245,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9986131219206813,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9999980765691932,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999999999963004,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":3},{"shots":32,"best_objective":3},{"shots":64,"best_objective":3},{"shots":128,"best_objective":3},{"shots":512,"best_objective":3}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":24,"optimal_probability":0.19289001747249704,"feasible_probability":0.19289001747249704,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.041666666666666664,"shots_for_95_percent":14,"hit_curve":[{"shots":8,"quantum":0.819921547298947,"uniform":0.2885690504976606},{"shots":16,"quantum":0.9675717508727946,"uniform":0.49386600409019976},{"shots":32,"quantum":0.998948408658544,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9999988941556506,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999999999987771,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":9.71445146547012e-17,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.19289001747249704,"diagnostic_seconds":0.0049130629922728986}
+{"instance":"n4-s2-r1.json","seed":2,"direct":{"status":"feasible","best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":5,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":9,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":3},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0322029795727936,2.834986939240045],"expected_energy":32.40283406625443,"initial_expected_energy":48.64134829160872,"history":[48.64134829160872,46.28641572013268,48.583170806765665,45.486506358983874,49.748176407200326,43.56395029451769,45.212570401564086,46.66151094649415,43.87507075509811,43.75947086976038,43.617802880060516,43.36772651238437,43.36519391886344,43.73058171950613,43.312641242209644,43.01896092082287,42.92009407347098,42.54550676532073,42.396851033832675,42.605422307546974,42.426771057291056,42.54084833317677,42.3612476732203,42.421562914037715,42.347414997605334,42.34533247440697,42.33107305271924,42.335081231854396,42.33571043586802,42.32905468921825,42.332180764683635,42.32560523103082,42.322560770528966,42.320856201625546,42.31538039204574,42.316412922313724,42.315133755709724,42.31936342044486,42.31310302282248,42.312071121245395,42.31122337441654,42.31062878381239,42.31101023515104,42.311029106805876,42.31068051870893,42.31070792461739,42.31061090360954,42.310572657679884,42.31052581357293,42.31048241350285,42.310452788921864,42.310479225939076,42.31046417319021,42.31045876737932,42.31045299689825,42.31045033258518,42.31044680502001,42.31046446942293,42.31044492622344,42.31044168359936,61.29604428736039,54.582785981383,45.969566066960475,43.44323889180336,48.11114281558844,45.616582115150806,43.575456740191285,43.11180522044876,42.48579221791719,41.498977657715955,41.98157840418434,40.65656069043182,39.38461575697909,37.005278714963865,33.226770409622624,55.45777457436381,50.978759225217914,37.673452899330314,32.90033836287405,33.89921781795596,33.04400397786115,32.837076454074825,32.92916416855692,33.09479381991858,32.82676734295825,32.74896838506944,32.707135708586975,32.751971639131106,32.69873497360672,32.67995562204706,32.64324317986475,32.582985105638926,32.53642511711528,32.44208639950114,32.490812947994286,32.4508804585335,32.44622831041124,32.454316032688865,32.43321251767513,32.428400621820444,32.42285682322424,32.41798430044895,32.41213705298643,32.40750256102024,32.40407807847825,32.41406620376509,32.40421975633305,32.404001830567495,32.40908660743134,32.40294500105411,32.403685480858485,32.40296972335881,32.40297223381827,32.402941871660836,32.40301658687126,32.402899048722134,32.40286996997642,32.40285167685284,32.402850196116674,32.40283406625443],"feasible_probability":0.18901315436805058,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.19140625,"counts":{"0100010011":98,"0100010101":29,"0100011001":14,"0100100011":52,"0100100101":26,"0100101001":34,"0101000011":56,"0101000101":48,"0101001001":40,"0110000011":18,"0110000101":16,"0110001001":5,"1000010011":3,"1000010101":6,"1000100011":11,"1000101001":5,"1001000011":31,"1001000101":6,"1001001001":5,"1010000011":5,"1010000101":4},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13845552600105293},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":3,"removals":[],"infeasible_task":null,"component_qubits":[9],"max_component_qubits":9,"component_to_original":[[1,2,3,4,5,6,7,8,9]],"components":[{"qubits":9,"penalty":21,"objective_bound":20,"offset":63,"linear":[-21,-15,-18,-21,-11,-15,-13,-21,-17],"quadratic":[[0,1,42],[0,2,42],[0,6,21],[1,2,42],[1,3,21],[1,6,21],[1,8,21],[2,3,21],[2,6,21],[2,8,21],[3,4,42],[3,5,42],[3,6,42],[3,8,21],[4,5,42],[4,6,42],[4,7,21],[4,8,21],[5,6,42],[5,7,21],[5,8,21],[7,8,42]],"domains":[[0,1,2],[3,4,5,6],[7,8]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r0","start":7,"cost":6},{"index":2,"task":"t1","resource":"r2","start":7,"cost":3},{"index":3,"task":"t2","resource":"r2","start":9,"cost":0},{"index":4,"task":"t2","resource":"r2","start":15,"cost":10},{"index":5,"task":"t2","resource":"r2","start":11,"cost":6},{"index":6,"task":"t2","resource":"r1","start":7,"cost":8},{"index":7,"task":"t3","resource":"r0","start":11,"cost":0},{"index":8,"task":"t3","resource":"r2","start":8,"cost":4}],"conflicts":[{"i":0,"j":6,"reasons":["resource","precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":6,"reasons":["precedence"]},{"i":1,"j":8,"reasons":["group"]},{"i":2,"j":3,"reasons":["resource","precedence"]},{"i":2,"j":6,"reasons":["precedence"]},{"i":2,"j":8,"reasons":["resource","group"]},{"i":3,"j":8,"reasons":["resource","precedence"]},{"i":4,"j":7,"reasons":["precedence"]},{"i":4,"j":8,"reasons":["precedence"]},{"i":5,"j":7,"reasons":["precedence"]},{"i":5,"j":8,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":5,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":9,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":3},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":9,"end":10,"reserved_end":10,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,0,0,0,1,0],"qubo_energy":0},"seed":2001025171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9692680897480016,1.244115438905888],"expected_energy":25.660686802437812,"initial_expected_energy":37.720554772892015,"history":[37.720554772892015,35.63585676826342,29.712304828865786,54.081768764620186,32.390195496139256,34.29069639742684,28.90674549746096,27.342414228440298,26.41781582382734,26.387121822838292,26.284605781939,26.655489599021603,26.470222658877713,26.247405985407013,26.153951808728536,26.07119574554884,25.95756611900545,25.868471773518323,25.800324870633954,25.736449852191868,25.680587914133227,25.830192117019912,25.819265765381488,25.666873060587115,25.671221652670717,25.66959966236225,25.666515966935428,25.67108313329394,25.663892086442637,25.66217074637254,25.663302885366477,25.662739117139026,25.66302546718299,25.662488719904154,25.661690013042588,25.66144601029708,25.661800162714876,25.661346190008018,25.661257105251977,25.661100904090503,25.66086049322675,25.660808686446046,25.660766320438384,25.660821099686835,25.661056081433202,25.66079193938244,25.66069666883343,25.660694436359773,25.660699539249983,25.6607017301488,25.660695771934748,25.660692478419158,25.66068952841509,25.66068790885259,25.660690335923128,25.660688228937722,25.660687176585046,25.660687695738723,25.66068680996761,25.660686802437812,48.295957197554955,43.20876079050164,42.8419054187879,41.019743018155744,39.81217944164645,41.72054129928485,39.074730559515544,36.46327727657193,35.87540455725892,40.3007995927388,40.98492127289493,34.444510370309736,41.050719841095614,34.54734561886552,34.132674779456025,34.31162893855005,34.380196795477666,33.859563285942755,34.04252454725848,33.787337383606285,33.809088633555056,33.76996668638107,33.7521852805046,33.776475425533135,33.74569109003635,33.734026480932656,33.72691850849434,33.702776708462736,33.68135688110063,33.645716021322606,33.65088543044455,33.65519234751221,33.635217534995355,33.64203490103384,33.62769882100989,33.62352531687988,33.62872249446498,33.61654989177353,33.610077828213434,33.59927341513581,33.585628460739144,33.570546097662266,33.564307174838426,33.60619635136009,33.5664085923458,33.56420586556085,33.56948221625517,33.56283552364464,33.565159178891435,33.56252984897945,33.56241101495564,33.562313711202115,33.56225282446378,33.56220127105997,33.562163679186085,33.562226138223615,33.5621680151745,33.562161393124,33.562186510816964,33.56215643223929],"feasible_probability":0.19301444252591612,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.2109375,"counts":{"010001001":108,"010001010":9,"010001100":28,"010010001":10,"010010010":18,"010010100":19,"010100001":79,"010100010":27,"010100100":60,"011000001":40,"011000010":9,"011000100":36,"100001001":1,"100001010":4,"100001100":4,"100010001":15,"100010010":1,"100010100":7,"100100001":23,"100100010":3,"100100100":4,"101000001":4,"101000010":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13119064400962088}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.19301444252591612,"total_shots":512,"runtime_seconds":0.13138101100048516},"direct_metrics":{"exact_objective":3,"optimal_count":1,"combinations":24,"optimal_probability":0.18901315436805058,"feasible_probability":0.18901315436805058,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.041666666666666664,"shots_for_95_percent":15,"hit_curve":[{"shots":8,"quantum":0.8128841919588965,"uniform":0.2885690504976606},{"shots":16,"quantum":0.9649876743811249,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9987741370547578,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9999984972600395,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999999999977418,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":3},{"shots":16,"best_objective":3},{"shots":32,"best_objective":3},{"shots":64,"best_objective":3},{"shots":128,"best_objective":3},{"shots":512,"best_objective":3}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":24,"optimal_probability":0.19301444252591612,"feasible_probability":0.19301444252591612,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.041666666666666664,"shots_for_95_percent":14,"hit_curve":[{"shots":8,"quantum":0.8201435164053719,"uniform":0.2885690504976606},{"shots":16,"quantum":0.9676516453089753,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9989535839487836,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9999989050134478,"uniform":0.9343761001763541},{"shots":128,"quantum":0.999999999998801,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.19301444252591612,"diagnostic_seconds":0.006290702993283048}
+{"instance":"n4-s2-r1.json","seed":3,"direct":{"status":"feasible","best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":5,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":9,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":3},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9815347199278923,1.2496378075274412],"expected_energy":31.575136179026885,"initial_expected_energy":37.50916267378786,"history":[37.50916267378786,44.29714234109055,51.92424915500736,49.07341626914403,40.123063512160634,36.884093574898515,38.25330835982736,36.64813178757481,36.01959344099997,34.980875846595964,39.6801197568272,34.54552203267592,33.42115817056714,31.992918334017702,32.199044985661544,33.651079635145145,32.15378082136079,32.120781642287945,31.939320459299307,32.12326195691422,31.899437409123756,31.837948332263686,31.792170074728112,31.80197003246831,31.776843309729607,31.764471856727003,31.75282832395076,31.8029267107437,31.733185771855037,31.716797268101878,31.690211955026967,31.645057319044206,31.640229099045953,31.583799404420482,31.618128722098717,31.582647294314675,31.60678171102926,31.57936367568805,31.579728629423624,31.57888959113442,31.580371078689296,31.578548523463,31.578106902127764,31.57762669735969,31.577318148783135,31.576353159105018,31.576212027225914,31.57553264368116,31.5758241897119,31.575513636447326,31.575661997777516,31.575543963044424,31.575401139660556,31.57537942939208,31.575515952223355,31.575364598642256,31.575274643626557,31.57523227099627,31.575181980422336,31.575136179026885,47.61202474829771,45.335953365777556,47.412556448849344,46.3287308029056,45.74665669608302,45.90570414317479,45.20574664436233,44.899624282376486,44.411701562215974,43.75917126427582,46.77534290198777,43.14555130723364,42.86054624320333,42.25297309904698,41.39274098942908,40.3846128292643,45.20449096287994,43.75484046718155,40.40816106679365,40.20145247659087,41.984112723711604,40.15995143738537,40.710374727136795,40.04334358953848,40.359830906169535,40.02575398971968,40.040379721553805,40.026696952345276,40.026444427365774,40.025469617557675,40.02957272891555,40.025002423112284,40.02564129943771,40.02497513876596,40.025110216298074,40.02498157585472,40.02497606808221,40.02498101988,40.024971881055066,40.024968724555,40.024964935629704,40.02496003643563,40.02495753815896,40.02496953386808,40.02495526242689,40.024954505968594,40.02495292124128,40.02495207059784,40.02495128470093,40.024950678428745,40.024951903204474,40.024950406693,40.02495036797615,40.02495153644455,40.024950107412934,40.02495003944787,40.02494995519832,40.02494993948195,40.02494985452074,40.02494995571655],"feasible_probability":0.1861086877240807,"one_hot_probability":1.0000000000000004,"sampled_feasible_fraction":0.23046875,"counts":{"0100010011":118,"0100010101":3,"0100011001":39,"0100100011":8,"0100100101":16,"0100101001":19,"0101000011":49,"0101000101":30,"0101001001":67,"0110000011":51,"0110000101":6,"0110001001":28,"1000010011":7,"1000010101":4,"1000011001":4,"1000100011":10,"1000100101":1,"1000101001":7,"1001000011":22,"1001000101":4,"1001001001":3,"1010000011":12,"1010000101":1,"1010001001":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1396317140024621},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":3,"removals":[],"infeasible_task":null,"component_qubits":[9],"max_component_qubits":9,"component_to_original":[[1,2,3,4,5,6,7,8,9]],"components":[{"qubits":9,"penalty":21,"objective_bound":20,"offset":63,"linear":[-21,-15,-18,-21,-11,-15,-13,-21,-17],"quadratic":[[0,1,42],[0,2,42],[0,6,21],[1,2,42],[1,3,21],[1,6,21],[1,8,21],[2,3,21],[2,6,21],[2,8,21],[3,4,42],[3,5,42],[3,6,42],[3,8,21],[4,5,42],[4,6,42],[4,7,21],[4,8,21],[5,6,42],[5,7,21],[5,8,21],[7,8,42]],"domains":[[0,1,2],[3,4,5,6],[7,8]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r0","start":7,"cost":6},{"index":2,"task":"t1","resource":"r2","start":7,"cost":3},{"index":3,"task":"t2","resource":"r2","start":9,"cost":0},{"index":4,"task":"t2","resource":"r2","start":15,"cost":10},{"index":5,"task":"t2","resource":"r2","start":11,"cost":6},{"index":6,"task":"t2","resource":"r1","start":7,"cost":8},{"index":7,"task":"t3","resource":"r0","start":11,"cost":0},{"index":8,"task":"t3","resource":"r2","start":8,"cost":4}],"conflicts":[{"i":0,"j":6,"reasons":["resource","precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":6,"reasons":["precedence"]},{"i":1,"j":8,"reasons":["group"]},{"i":2,"j":3,"reasons":["resource","precedence"]},{"i":2,"j":6,"reasons":["precedence"]},{"i":2,"j":8,"reasons":["resource","group"]},{"i":3,"j":8,"reasons":["resource","precedence"]},{"i":4,"j":7,"reasons":["precedence"]},{"i":4,"j":8,"reasons":["precedence"]},{"i":5,"j":7,"reasons":["precedence"]},{"i":5,"j":8,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":5,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":9,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":3},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":9,"end":10,"reserved_end":10,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,0,0,0,1,0],"qubo_energy":0},"seed":819382448,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9694529590293425,1.2440971149527256],"expected_energy":25.660685242473832,"initial_expected_energy":30.908318076004687,"history":[30.908318076004687,36.1650826568695,52.34017385819463,34.84240465127507,40.02947242134445,31.744372318167176,30.01635387958948,28.58365808593265,27.251013812688047,26.7116449122351,28.475993811719547,26.371739859878716,26.19966440425744,26.850464362273758,26.057934457673873,25.97511098758897,25.880494938456014,25.80456807115287,25.929204561984346,25.824107810562975,25.79276475352856,25.835375095699177,25.78482082595932,25.770895333508825,25.758439744076696,25.75190538132756,25.72874906919768,25.710576769475423,25.68519211216269,25.683076673006592,25.666686830249123,25.676388215943838,25.68433266423358,25.668810071469764,25.665824964238148,25.664045876983224,25.66457375411829,25.662838403953216,25.663317184093543,25.6630483945329,25.66267048580702,25.66322360486829,25.662569100793164,25.662384865768225,25.662076375551315,25.661589636693954,25.660918956103195,25.661991591132413,25.661447877350106,25.660863733353274,25.660975578223244,25.660845105597062,25.660793286821235,25.6607542030984,25.660711101533533,25.66070827803646,25.66079727282919,25.660685500128142,25.660727567319263,25.660685242473832,39.78533047822865,41.894980783344536,38.72557295520001,45.561399215071084,33.32126543702998,26.99810280165776,36.68207429113358,31.358936630072613,26.858739677131872,30.51443049122173,26.675740549655107,26.693476114469995,26.690480663782626,26.708181823277144,26.636794453043507,26.634638073647857,26.65656723105844,26.637456173115424,26.61519465369323,26.58820589910212,26.60544847335406,26.57471313965192,26.564820414507242,26.567046921431086,26.55227287320338,26.542381911499763,26.540593073102045,26.525454832161216,26.51313769969238,26.494980708003624,26.46635149471073,26.531796082391367,26.505798216643846,26.47060390075334,26.46010224135476,26.482654106558126,26.454616610209733,26.451479145191616,26.44824312154395,26.445649709838563,26.449813793874863,26.446808697745283,26.446327466290576,26.44707337590046,26.44531590448785,26.445511042547096,26.44521204803413,26.44500040968816,26.44461942649115,26.444165553963835,26.44346334759893,26.443077921669605,26.444173003199516,26.4427980348567,26.4425935245166,26.442712475766378,26.442501999975896,26.44247310287522,26.442605213131287,26.442366998873858],"feasible_probability":0.19302847816061125,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.208984375,"counts":{"010001001":107,"010001010":6,"010001100":32,"010010001":9,"010010010":17,"010010100":32,"010100001":66,"010100010":19,"010100100":59,"011000001":47,"011000010":9,"011000100":28,"100001001":3,"100001010":5,"100001100":2,"100010001":13,"100010010":3,"100010100":6,"100100001":28,"100100010":1,"100100100":5,"101000001":12,"101000010":2,"101000100":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12602984499244485}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.19302847816061125,"total_shots":512,"runtime_seconds":0.12621546800073702},"direct_metrics":{"exact_objective":3,"optimal_count":1,"combinations":24,"optimal_probability":0.1861086877240807,"feasible_probability":0.1861086877240807,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.041666666666666664,"shots_for_95_percent":15,"hit_curve":[{"shots":8,"quantum":0.8074554183685496,"uniform":0.2885690504976606},{"shots":16,"quantum":0.9629265840843697,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9986255618323467,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9999981109197233,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999999999964314,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.498001805406602e-16,"independent_samples":[{"shots":8,"best_objective":3},{"shots":16,"best_objective":3},{"shots":32,"best_objective":3},{"shots":64,"best_objective":3},{"shots":128,"best_objective":3},{"shots":512,"best_objective":3}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":24,"optimal_probability":0.19302847816061125,"feasible_probability":0.19302847816061125,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.041666666666666664,"shots_for_95_percent":14,"hit_curve":[{"shots":8,"quantum":0.8201685403598855,"uniform":0.2885690504976606},{"shots":16,"quantum":0.9676606461237058,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9989541661908639,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9999989062316437,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999999999988036,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.942890293094024e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":null},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.19302847816061125,"diagnostic_seconds":0.004804166994290426}
+{"instance":"n4-s2-r1.json","seed":4,"direct":{"status":"feasible","best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":5,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":9,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":3},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.483216877711054,0.24672649104168845],"expected_energy":42.31060176983926,"initial_expected_energy":47.18900640217478,"history":[47.18900640217478,46.886099972111424,50.46970042835392,46.36708655374545,48.944511251183926,47.01230034862222,45.92345997557249,45.162414753902254,46.436644127701655,47.31141112236726,45.16538213968746,44.376331204785906,44.440175812814125,44.25980875267586,44.498575729087165,44.467103806099296,43.90934490258071,43.78633629908359,44.24670074232546,43.60725561715424,43.365626388338185,43.63914508310644,43.10082925391843,42.9456931945658,42.79017754494643,42.77314401935045,42.50637176544904,42.48683256760878,42.37512848309223,42.36661594256822,42.339377471754254,42.59594821073399,42.325953650177276,42.43340027936003,42.3809915212221,42.3228062837758,42.341546949519625,42.32096225139583,42.31867858317517,42.31862842318873,42.31473202488486,42.31402745182595,42.312424670808134,42.31143924848062,42.31298896022795,42.311959877280486,42.31170041891992,42.31170133696793,42.311408903425146,42.311310440386336,42.31118597297561,42.31120259655908,42.311120809113625,42.3110720813987,42.311059051278406,42.3113062753304,42.31096833998561,42.31083960467608,42.31071248450253,42.31060176983926,47.79110170980202,48.9925275814516,47.386271370710844,47.09283378132076,50.607739869275846,47.27049642845458,47.301520565663125,46.93136613242544,46.888172289172196,47.427671970374746,46.87429955981794,46.89732903851666,46.906572644526634,46.8962692064621,46.879908624185695,46.86518688685895,46.86095606477788,46.86738940287606,46.859366335715634,46.857646435667704,46.85421792461429,46.847423223104,46.832499501512714,46.83395665200061,46.85625669402671,46.840653534127746,46.830573101965264,46.83117176042236,46.828980764895,46.82786956678742,46.82808812371097,46.82569696181741,46.82412790478086,46.82534698648322,46.822250738104685,46.82009165758142,46.815637001535265,46.80617127734007,46.78888679125123,46.723910410307866,46.95468664794087,46.801343365027364,46.722802395698785,46.69396791704447,46.63712941363101,46.507840322990575,46.19265900845568,46.06041792830676,44.955180448138606,42.89423229558465,51.67489812048872,50.28651503276775,45.75994544697174,43.33296169568993,44.059892820580785,42.54838299499914,42.33979656890759,42.83070615376123,42.39192515607685,42.33569151523582],"feasible_probability":0.06405809091124286,"one_hot_probability":1.0,"sampled_feasible_fraction":0.056640625,"counts":{"0100010011":29,"0100010101":5,"0100011001":11,"0100100011":33,"0100100101":111,"0100101001":15,"0101000011":11,"0101000101":59,"0101001001":15,"0110000011":2,"0110000101":41,"0110001001":6,"1000010011":5,"1000010101":18,"1000011001":17,"1000100011":47,"1000100101":13,"1001000011":27,"1001000101":2,"1001001001":1,"1010000011":24,"1010000101":16,"1010001001":4},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13363584900798742},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":3,"removals":[],"infeasible_task":null,"component_qubits":[9],"max_component_qubits":9,"component_to_original":[[1,2,3,4,5,6,7,8,9]],"components":[{"qubits":9,"penalty":21,"objective_bound":20,"offset":63,"linear":[-21,-15,-18,-21,-11,-15,-13,-21,-17],"quadratic":[[0,1,42],[0,2,42],[0,6,21],[1,2,42],[1,3,21],[1,6,21],[1,8,21],[2,3,21],[2,6,21],[2,8,21],[3,4,42],[3,5,42],[3,6,42],[3,8,21],[4,5,42],[4,6,42],[4,7,21],[4,8,21],[5,6,42],[5,7,21],[5,8,21],[7,8,42]],"domains":[[0,1,2],[3,4,5,6],[7,8]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r0","start":7,"cost":6},{"index":2,"task":"t1","resource":"r2","start":7,"cost":3},{"index":3,"task":"t2","resource":"r2","start":9,"cost":0},{"index":4,"task":"t2","resource":"r2","start":15,"cost":10},{"index":5,"task":"t2","resource":"r2","start":11,"cost":6},{"index":6,"task":"t2","resource":"r1","start":7,"cost":8},{"index":7,"task":"t3","resource":"r0","start":11,"cost":0},{"index":8,"task":"t3","resource":"r2","start":8,"cost":4}],"conflicts":[{"i":0,"j":6,"reasons":["resource","precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":6,"reasons":["precedence"]},{"i":1,"j":8,"reasons":["group"]},{"i":2,"j":3,"reasons":["resource","precedence"]},{"i":2,"j":6,"reasons":["precedence"]},{"i":2,"j":8,"reasons":["resource","group"]},{"i":3,"j":8,"reasons":["resource","precedence"]},{"i":4,"j":7,"reasons":["precedence"]},{"i":4,"j":8,"reasons":["precedence"]},{"i":5,"j":7,"reasons":["precedence"]},{"i":5,"j":8,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":5,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":9,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":3},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":9,"end":10,"reserved_end":10,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,0,0,0,1,0],"qubo_energy":0},"seed":367776961,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9694440642515958,1.2440522524411444],"expected_energy":25.66068530814238,"initial_expected_energy":50.6549233059538,"history":[50.6549233059538,49.0409448426721,44.07454026693404,29.702961918102645,55.30905240172357,35.190231960908065,30.269037587795264,30.453992669869926,30.101231386573225,29.137353739294948,29.03135698255916,29.60235163900943,28.56154145219226,27.776011472345942,27.835681198911427,27.96152480137861,27.71831063323547,28.643300669774106,27.235970154212282,27.148592032451504,26.8384275603104,26.677622057284857,26.564477140443433,26.46133618620372,26.471032185428815,26.525695129038958,26.46757114799055,26.48494617424514,26.458930000518315,26.454327368186767,26.447406784066466,26.457736268240108,26.45529292350318,26.44940888644188,26.446593391324623,26.44818428222146,26.44627153234224,26.445679382550466,26.44481155925355,26.443833449830358,26.4422706806818,26.44224464978349,26.443539399684546,26.442506389548228,26.4430746828783,26.441920779500315,26.441919414796743,26.442018481318286,26.441955358758612,26.441844442439617,26.44182210969931,26.441877631055256,26.441790273522848,26.441771241776998,26.441763415536187,26.441746669820567,26.441740153335218,26.44186080301757,26.44177630558481,26.441743331627677,42.65466864496914,43.875867828138084,44.7469406125701,33.85571778510081,42.09090524851508,42.81104802912293,36.758111251711384,32.636186202000005,30.961120575162816,32.74606221648027,30.50738949463898,29.954989287744624,29.212041764252334,28.07553654921268,31.22349962745878,27.635177635325327,26.62355586013252,25.69429071684454,30.164693927514094,26.728263517100842,26.033858791473428,25.838443190730437,25.727413302654373,25.696519479330874,25.700669940970116,25.68612629352475,25.684212438826453,25.692401109478453,25.678545481752785,25.673940276032003,25.67096016285598,25.665316043668106,25.672623740881956,25.67129276607291,25.662935622812945,25.66433632761502,25.66286221674988,25.665974680346405,25.661900064878623,25.661228147777607,25.660977495676235,25.66251298726484,25.660879339486904,25.660722886993398,25.66085334340204,25.66075712018766,25.660725324944632,25.660702011228715,25.66068993989998,25.660708875817146,25.66072015573443,25.66069446111572,25.66069057041212,25.660690585415665,25.66068939306743,25.660690417218134,25.660688276127093,25.660687376035852,25.66068648057363,25.66068530814238],"feasible_probability":0.19302736959662115,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.19140625,"counts":{"010001001":98,"010001010":8,"010001100":46,"010010001":10,"010010010":15,"010010100":35,"010100001":78,"010100010":21,"010100100":56,"011000001":45,"011000010":10,"011000100":22,"100001001":1,"100001010":3,"100001100":3,"100010001":15,"100010100":9,"100100001":24,"100100010":4,"100100100":1,"101000001":7,"101000100":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13257962599163875}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.19302736959662115,"total_shots":512,"runtime_seconds":0.1328832620056346},"direct_metrics":{"exact_objective":3,"optimal_count":1,"combinations":24,"optimal_probability":0.06405809091124286,"feasible_probability":0.06405809091124286,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.041666666666666664,"shots_for_95_percent":46,"hit_curve":[{"shots":8,"quantum":0.4111683378369367,"uniform":0.2885690504976606},{"shots":16,"quantum":0.653277273634284,"uniform":0.49386600409019976},{"shots":32,"quantum":0.8797833510215248,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9855479573083861,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9997911384620398,"uniform":0.9956935037719361},{"shots":512,"quantum":0.9999999999999981,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.3592239273284576e-16,"independent_samples":[{"shots":8,"best_objective":3},{"shots":16,"best_objective":3},{"shots":32,"best_objective":3},{"shots":64,"best_objective":3},{"shots":128,"best_objective":3},{"shots":512,"best_objective":3}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":24,"optimal_probability":0.19302736959662115,"feasible_probability":0.19302736959662115,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.041666666666666664,"shots_for_95_percent":14,"hit_curve":[{"shots":8,"quantum":0.8201665640260639,"uniform":0.2885690504976606},{"shots":16,"quantum":0.9676599353058082,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9989541202155755,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9999989061354765,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999999999988035,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":9.71445146547012e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.19302736959662115,"diagnostic_seconds":0.005594442001893185}
+{"instance":"n4-s2-r1.json","seed":5,"direct":{"status":"feasible","best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":5,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":9,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":3},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.031529412396762,2.8350075563579886],"expected_energy":32.40283204712441,"initial_expected_energy":46.550724940745994,"history":[46.550724940745994,46.620779319638785,33.383348627999396,61.70514989498599,33.88555741399954,33.3612383288297,34.58007248427562,33.28255880348241,33.401645249282396,33.46071965808855,33.26017210258891,33.17654598338144,33.065236148346784,33.233814793029296,32.99467705295101,32.92835730559031,32.82528603350853,32.6453180740293,32.491237550733025,32.639666896981204,32.77394074860338,32.542412131643374,32.47986887038726,32.50270967028492,32.47691553577722,32.46722812574016,32.45018412093005,32.451890823131365,32.448168859514396,32.459798415143624,32.44374320898555,32.43546851262744,32.429841525417324,32.43432461332272,32.42708030578257,32.42606409148604,32.42308468900296,32.420470554274154,32.41585534160425,32.415634588498435,32.408934839787264,32.40961118222033,32.41141066677078,32.410140297756804,32.407767396254165,32.40907393418343,32.40713157045394,32.40670824341138,32.40611720187213,32.40514272230657,32.4040753761775,32.403624613080574,32.40283204712441,32.40510976526525,32.406459051579525,32.40286184551527,32.40380989243172,32.40287684142784,32.40306672497094,32.40285779194504,47.917413735012204,51.48987224102251,49.36676867973656,52.54438571471667,47.10385800235659,38.117381343203384,45.04998931857909,36.086845085182745,50.54031434578269,34.601718452649834,33.3469739569718,33.8292835922162,34.02641916814565,33.36868364351319,32.976770112370346,32.906546041665536,32.63386864509115,32.7355947204134,32.61298209113872,32.69821412800481,32.61323249337838,32.588455332845236,32.55578806828337,32.57027943827129,32.54133733666305,32.52951407264762,32.521331834785116,32.49091969138089,32.474095078530986,32.45449662166987,32.426167491886986,32.445894594055225,32.43597698253917,32.43216623278488,32.42563500899135,32.42054325444039,32.4132749005498,32.46264736547704,32.41541888874536,32.41256841604449,32.418567919473304,32.41590034695609,32.409505170967165,32.414367051651425,32.408010452226705,32.40828834388705,32.40749984599097,32.40722131289952,32.407739947451084,32.407070527628996,32.40678308667701,32.40628632360537,32.40548339545433,32.40419903547925,32.40583669312938,32.40414995450252,32.403811869651754,32.40334161799045,32.403066915212975,32.40327985864695],"feasible_probability":0.18897509706235543,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.177734375,"counts":{"0100010011":91,"0100010101":20,"0100011001":18,"0100100011":49,"0100100101":31,"0100101001":38,"0101000011":45,"0101000101":50,"0101001001":30,"0110000011":33,"0110000101":13,"0110001001":9,"1000010011":1,"1000010101":1,"1000011001":4,"1000100011":21,"1000100101":1,"1000101001":4,"1001000011":31,"1001000101":8,"1001001001":4,"1010000011":10},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13500140300311614},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":3,"removals":[],"infeasible_task":null,"component_qubits":[9],"max_component_qubits":9,"component_to_original":[[1,2,3,4,5,6,7,8,9]],"components":[{"qubits":9,"penalty":21,"objective_bound":20,"offset":63,"linear":[-21,-15,-18,-21,-11,-15,-13,-21,-17],"quadratic":[[0,1,42],[0,2,42],[0,6,21],[1,2,42],[1,3,21],[1,6,21],[1,8,21],[2,3,21],[2,6,21],[2,8,21],[3,4,42],[3,5,42],[3,6,42],[3,8,21],[4,5,42],[4,6,42],[4,7,21],[4,8,21],[5,6,42],[5,7,21],[5,8,21],[7,8,42]],"domains":[[0,1,2],[3,4,5,6],[7,8]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r0","start":7,"cost":6},{"index":2,"task":"t1","resource":"r2","start":7,"cost":3},{"index":3,"task":"t2","resource":"r2","start":9,"cost":0},{"index":4,"task":"t2","resource":"r2","start":15,"cost":10},{"index":5,"task":"t2","resource":"r2","start":11,"cost":6},{"index":6,"task":"t2","resource":"r1","start":7,"cost":8},{"index":7,"task":"t3","resource":"r0","start":11,"cost":0},{"index":8,"task":"t3","resource":"r2","start":8,"cost":4}],"conflicts":[{"i":0,"j":6,"reasons":["resource","precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":6,"reasons":["precedence"]},{"i":1,"j":8,"reasons":["group"]},{"i":2,"j":3,"reasons":["resource","precedence"]},{"i":2,"j":6,"reasons":["precedence"]},{"i":2,"j":8,"reasons":["resource","group"]},{"i":3,"j":8,"reasons":["resource","precedence"]},{"i":4,"j":7,"reasons":["precedence"]},{"i":4,"j":8,"reasons":["precedence"]},{"i":5,"j":7,"reasons":["precedence"]},{"i":5,"j":8,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":5,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":9,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":3},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":9,"end":10,"reserved_end":10,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,0,0,0,1,0],"qubo_energy":0},"seed":803261128,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0293102829017253,2.830610779996688],"expected_energy":26.441742454701025,"initial_expected_energy":37.1606498315095,"history":[37.1606498315095,37.12529541442841,30.78375139466503,52.077489369588065,31.191629287572347,29.317888349583836,27.974213309893308,27.926065283739586,27.234313994884534,26.912854622726684,26.829666997290076,27.52416245877181,26.683545313510812,26.625773129912687,26.552595194517913,26.467817211802267,26.531783862610197,26.507730141730136,26.473130531006568,26.49980324880488,26.464710325860796,26.46000452812404,26.45722071500697,26.465256751144985,26.453042825126076,26.45045598556968,26.45642328183476,26.448751547611487,26.447463890622146,26.448083066031344,26.446870121499785,26.446627622358548,26.447396777985062,26.446548875042467,26.446269967632418,26.44577505077127,26.444907439483416,26.443905000455807,26.4427522636936,26.442223665694982,26.445560918193138,26.442002512949145,26.442117357895768,26.442131702984792,26.441934927001668,26.442168484642277,26.44188477699917,26.441866320376526,26.441818489749593,26.441808940600367,26.44177665950626,26.441766590229417,26.441751829629048,26.441755805474514,26.441769087073617,26.441752275269515,26.441748015984622,26.441746752592504,26.441744216034653,26.441742454701025,48.68597782133328,54.129240771360884,38.49658340420007,35.387992033826905,42.87472073039392,41.06903588245396,35.858918590256934,32.92674577906162,29.509101340835947,34.450089666248786,28.520711811758133,27.454054715848272,27.838393987372203,27.136312667407402,27.555329017919,26.85447590398765,26.797502565557686,26.57368250560566,26.68181022788319,26.579715101958868,26.58590722426691,26.564461330363244,26.5862393488527,26.575186373299253,26.54707171461152,26.53318828037908,26.559991136851195,26.52254484127847,26.514790602066107,26.517441344273816,26.505138152280992,26.49947637536838,26.506663133804047,26.490877294140795,26.48303814299171,26.474923695556274,26.46193697500498,26.455882385077558,26.450764994356835,26.44773822750951,26.469233410082587,26.44372121018874,26.44508535902794,26.443416607766096,26.449002761786804,26.44272748957862,26.442752678695534,26.443151463993146,26.44264335132213,26.442611771553235,26.442687328334117,26.442499298035123,26.442399939212628,26.442224664348018,26.44218807520626,26.44195420408566,26.441967545299637,26.44203688578476,26.44199690030979,26.441914032978957],"feasible_probability":0.19657741831448508,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.212890625,"counts":{"010001001":109,"010001010":11,"010001100":21,"010010001":52,"010010010":24,"010010100":38,"010100001":54,"010100010":36,"010100100":28,"011000001":26,"011000010":18,"011000100":4,"100001001":2,"100001100":3,"100010001":23,"100010100":6,"100100001":38,"100100010":5,"100100100":4,"101000001":9,"101000010":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1305783790012356}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.19657741831448508,"total_shots":512,"runtime_seconds":0.13077801799227018},"direct_metrics":{"exact_objective":3,"optimal_count":1,"combinations":24,"optimal_probability":0.18897509706235543,"feasible_probability":0.18897509706235543,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.041666666666666664,"shots_for_95_percent":15,"hit_curve":[{"shots":8,"quantum":0.8128139339194287,"uniform":0.2885690504976606},{"shots":16,"quantum":0.96496137666528,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9987722948748076,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9999984927401255,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999999999977282,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":3},{"shots":16,"best_objective":3},{"shots":32,"best_objective":3},{"shots":64,"best_objective":3},{"shots":128,"best_objective":3},{"shots":512,"best_objective":3}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":24,"optimal_probability":0.19657741831448508,"feasible_probability":0.19657741831448508,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.041666666666666664,"shots_for_95_percent":14,"hit_curve":[{"shots":8,"quantum":0.8263989795180073,"uniform":0.2885690504976606},{"shots":16,"quantum":0.9698626856876108,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9990917422860363,"uniform":0.7438283781843783},{"shots":64,"quantum":0.999999175067925,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999999999993194,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.19657741831448508,"diagnostic_seconds":0.005047020997153595}
+{"instance":"n4-s2-r1.json","seed":6,"direct":{"status":"feasible","best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":5,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":9,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":3},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.479297612397189,0.24642724158722754],"expected_energy":42.31043822498598,"initial_expected_energy":49.33152281492532,"history":[49.33152281492532,47.63942427094202,49.39582958515785,46.3477106523205,44.23876720351179,44.78155422183087,51.52325405974202,44.730644208340735,44.578578158684095,43.82891803700266,43.98702239191623,43.6315948323109,43.405005912755925,43.4362766334322,43.20372004795398,43.02688421051102,42.82584465441955,43.59266319028049,42.701043390547376,42.67445066096154,42.57790816427471,42.56301937122497,42.943706904894846,42.40577844381034,42.52369258293176,42.40029753368284,42.43810613589598,42.40166762952365,42.38843005282184,42.372462933801565,42.37828471234755,42.36598452339583,42.360238605069256,42.35104006965094,42.367498921203186,42.344317725466226,42.33657995107828,42.33450501419086,42.31952513062039,42.347408158104315,42.31662706072798,42.31477614889545,42.31433587506775,42.31213059728338,42.312869071218515,42.31197920392744,42.31247967617131,42.311951933920284,42.31179634560131,42.31156089135124,42.31121622559638,42.311137351706094,42.31082919385609,42.31066224453233,42.310691697528064,42.31105305330004,42.31062036370625,42.310648201109956,42.31065543677547,42.31056995744647,48.414851910748986,46.877524702674364,47.00283986851576,44.75374987282457,43.05665022397748,45.53263003597674,48.209656799443344,48.999706251138434,42.87830672983151,42.94493971757889,43.149775345258774,42.61338454328849,42.613819201599384,42.69242400643884,42.59259823873669,42.5845912175075,42.61401830823928,42.57474882558503,42.55626925260768,42.53320956920673,42.54978966795314,42.5269623554483,42.5135906764006,42.48872888690411,42.45036050594234,42.4113996842463,42.34165045077782,42.34158682201011,42.33850047132547,42.413675774304664,42.33665768181573,42.31914418096711,42.31568597772628,42.320755832861835,42.31698104085982,42.31427000146928,42.31279816458679,42.31244367966348,42.311318447250784,42.31245818468692,42.31114826009427,42.31147987067372,42.311152685282146,42.31105506632514,42.31094422733012,42.31106406586202,42.31088588614244,42.31083658949019,42.31073681262312,42.31058013163967,42.311067526239924,42.31083360905953,42.31055130200143,42.310628073683894,42.31053725835095,42.31050967620785,42.31047136212017,42.31045658879854,42.31044993239753,42.31043822498598],"feasible_probability":0.06401722334036038,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.080078125,"counts":{"0100010011":41,"0100010101":3,"0100011001":6,"0100100011":35,"0100100101":90,"0100101001":22,"0101000011":5,"0101000101":60,"0101001001":15,"0110000011":1,"0110000101":41,"0110001001":7,"1000010011":13,"1000010101":32,"1000011001":15,"1000100011":44,"1000100101":12,"1001000011":28,"1001000101":2,"1001001001":3,"1010000011":24,"1010000101":10,"1010001001":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.137663788991631},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":3,"removals":[],"infeasible_task":null,"component_qubits":[9],"max_component_qubits":9,"component_to_original":[[1,2,3,4,5,6,7,8,9]],"components":[{"qubits":9,"penalty":21,"objective_bound":20,"offset":63,"linear":[-21,-15,-18,-21,-11,-15,-13,-21,-17],"quadratic":[[0,1,42],[0,2,42],[0,6,21],[1,2,42],[1,3,21],[1,6,21],[1,8,21],[2,3,21],[2,6,21],[2,8,21],[3,4,42],[3,5,42],[3,6,42],[3,8,21],[4,5,42],[4,6,42],[4,7,21],[4,8,21],[5,6,42],[5,7,21],[5,8,21],[7,8,42]],"domains":[[0,1,2],[3,4,5,6],[7,8]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r0","start":7,"cost":6},{"index":2,"task":"t1","resource":"r2","start":7,"cost":3},{"index":3,"task":"t2","resource":"r2","start":9,"cost":0},{"index":4,"task":"t2","resource":"r2","start":15,"cost":10},{"index":5,"task":"t2","resource":"r2","start":11,"cost":6},{"index":6,"task":"t2","resource":"r1","start":7,"cost":8},{"index":7,"task":"t3","resource":"r0","start":11,"cost":0},{"index":8,"task":"t3","resource":"r2","start":8,"cost":4}],"conflicts":[{"i":0,"j":6,"reasons":["resource","precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":6,"reasons":["precedence"]},{"i":1,"j":8,"reasons":["group"]},{"i":2,"j":3,"reasons":["resource","precedence"]},{"i":2,"j":6,"reasons":["precedence"]},{"i":2,"j":8,"reasons":["resource","group"]},{"i":3,"j":8,"reasons":["resource","precedence"]},{"i":4,"j":7,"reasons":["precedence"]},{"i":4,"j":8,"reasons":["precedence"]},{"i":5,"j":7,"reasons":["precedence"]},{"i":5,"j":8,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":5,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":9,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":3},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":9,"end":10,"reserved_end":10,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,0,0,0,1,0],"qubo_energy":0},"seed":3153149895,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9682353143728634,1.244028086661861],"expected_energy":25.66071297289239,"initial_expected_energy":46.55617915510716,"history":[46.55617915510716,46.591131162079485,29.432279346270377,42.25768488700742,33.7942191466428,31.148417376817875,26.761675985447695,27.281044738205175,26.74058812975091,27.3182337108723,26.63941904855527,27.27639713929002,26.545462020893897,26.526105092334078,26.494389667917748,26.48850861378193,26.53158109255517,26.477993562869365,26.470064889238547,26.45901141029459,26.45220104369829,26.446902120438097,26.442756115993763,26.446728267195915,26.44440158445427,26.444960144330224,26.44307358001099,26.443013412304133,26.442528452702604,26.442802760006497,26.442478801050374,26.442410023613697,26.44231798297792,26.442157567366383,26.44208270468474,26.441884077436676,26.44227322391491,26.441820039001755,26.441990755186964,26.44178890573975,26.441796598222886,26.44177781323237,26.44184140212286,26.44176487002231,26.441756811636605,26.441760740800774,26.44175513892995,26.44175185287901,26.44175260593731,26.441750323373956,26.441749583928924,26.441751476303327,26.4417477642125,26.441746341920165,26.44174375681045,26.44174170765028,26.441741352605213,26.441739322581718,26.441740050971383,26.441744125012548,48.33728857674175,44.43442576273089,38.1054097104158,41.872683677958065,36.25235355629007,35.52112370121789,31.55834275142275,40.08078274901646,34.671822911991114,30.788238998880473,31.194449695717548,30.717854059310056,30.08691029060352,28.917811326876134,27.025848579365984,42.052344608210845,29.716176859698578,27.997399720263868,26.88471057629434,27.514258834764465,26.48895459966795,26.203207910871456,25.92859167608823,25.94196586687838,26.261198210611838,25.94401895704557,26.133103085595124,25.964276941015314,25.849107858227992,25.798011662442555,25.809446091160083,25.78339027785716,25.770307625386863,25.74724714208176,25.715610537956277,25.703570755407494,25.67580117519909,25.662559519562755,25.878184708763918,25.71181804806527,25.664463981784657,25.677420554323476,25.66441332947123,25.66302444473375,25.662802226420933,25.662354028896225,25.662780560040524,25.662274592093755,25.66212856979233,25.661879890907716,25.66173279824679,25.66121831325578,25.661319072164943,25.661170520428435,25.661297728904913,25.661070584084676,25.66099300208961,25.660875031752365,25.660851829300455,25.66071297289239],"feasible_probability":0.192934030610681,"one_hot_probability":1.0,"sampled_feasible_fraction":0.18359375,"counts":{"010001001":94,"010001010":3,"010001100":33,"010010001":13,"010010010":11,"010010100":16,"010100001":86,"010100010":29,"010100100":63,"011000001":43,"011000010":10,"011000100":29,"100001001":4,"100001010":6,"100001100":6,"100010001":16,"100010010":1,"100010100":2,"100100001":30,"100100010":2,"100100100":5,"101000001":9,"101000100":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12369123099779245}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.192934030610681,"total_shots":512,"runtime_seconds":0.1238805539906025},"direct_metrics":{"exact_objective":3,"optimal_count":1,"combinations":24,"optimal_probability":0.06401722334036038,"feasible_probability":0.06401722334036038,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.041666666666666664,"shots_for_95_percent":46,"hit_curve":[{"shots":8,"quantum":0.4109626173971693,"uniform":0.2885690504976606},{"shots":16,"quantum":0.6530349618964064,"uniform":0.49386600409019976},{"shots":32,"quantum":0.8796152623337719,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9855075149370335,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9997899678766997,"uniform":0.9956935037719361},{"shots":512,"quantum":0.999999999999998,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":3},{"shots":16,"best_objective":3},{"shots":32,"best_objective":3},{"shots":64,"best_objective":3},{"shots":128,"best_objective":3},{"shots":512,"best_objective":3}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":24,"optimal_probability":0.192934030610681,"feasible_probability":0.192934030610681,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.041666666666666664,"shots_for_95_percent":14,"hit_curve":[{"shots":8,"quantum":0.8200000922846671,"uniform":0.2885690504976606},{"shots":16,"quantum":0.9676000332224717,"uniform":0.49386600409019976},{"shots":32,"quantum":0.998950242152815,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9999988980084623,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999999999987856,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.192934030610681,"diagnostic_seconds":0.00517242299974896}
+{"instance":"n4-s2-r1.json","seed":7,"direct":{"status":"feasible","best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":5,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":9,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":3},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0323785041521891,2.83505809044368],"expected_energy":32.402836053106434,"initial_expected_energy":47.97982020742469,"history":[47.97982020742469,47.02081081181569,47.51513344767004,47.489402169409814,46.92707952468686,47.789399376149895,47.05953857288749,46.917005365609256,46.86662467987324,46.950315316762,46.85666957364147,46.92134590021254,46.86752220462894,46.8547704733534,46.85968343690279,46.854299950420035,46.8525705367534,46.84910445323133,46.84202116396774,46.82669301933278,46.82134857393156,46.789812751222,46.89932432100447,46.75425756847867,46.76364472003312,46.74746931574156,46.74413497116763,46.7724958421239,46.73838499291632,46.72755064746498,46.70740386899556,46.66924513788087,46.57382089163508,46.19621977191547,45.71343878069801,45.32904522780032,47.65259035265162,44.248396501129335,43.44889531127051,45.962051737881076,44.318694393654724,43.1474405856995,43.27872588018646,43.124958110878026,42.98423312965959,42.7485820057764,43.11137601065007,42.80156636747026,42.71858931234467,42.78514384334873,42.650241002563945,42.60185809069723,42.55305669452259,42.48217026763854,42.415188797426765,42.363396659477615,42.42227705679327,42.35489635878695,42.33636459035935,42.32318627096096,39.38013367785976,45.05384823349257,50.12927503769026,49.53906082902704,40.58853306319436,39.164722734577154,41.83045766840286,39.105252925849044,38.22901657659399,37.014389769834054,35.880745153528416,35.60245348054997,34.338098593518275,34.03643232830004,33.15681005237667,33.34482124778748,33.17645352229974,33.46488449117758,33.08700266460919,33.10065422745988,33.14069492763822,33.00379465831182,32.93383705304789,33.09718193122788,32.866186763743436,32.80713823018101,32.7176759881806,32.63191948395534,32.4609705042633,32.575420091516825,32.80165963713976,32.442585396469454,32.55294144476622,32.44061493870967,32.42506103980464,32.40809959295869,32.51724016159144,32.41428442464872,32.40783330383082,32.418500890946106,32.40427401885172,32.40744765798175,32.40385638207458,32.40449892640504,32.40382079254276,32.40366187911478,32.403549072291085,32.40346402747648,32.40337144354305,32.403221117076015,32.40362410584939,32.40319754544307,32.403107493724356,32.40298599366132,32.40291275018042,32.40309499316182,32.40290239291024,32.40287085782654,32.402836053106434,32.40289972283844],"feasible_probability":0.1890190636781266,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.19921875,"counts":{"0100010011":102,"0100010101":23,"0100011001":23,"0100100011":58,"0100100101":35,"0100101001":30,"0101000011":35,"0101000101":50,"0101001001":33,"0110000011":23,"0110000101":12,"0110001001":6,"1000010011":3,"1000010101":5,"1000011001":1,"1000100011":15,"1000101001":5,"1001000011":32,"1001000101":7,"1001001001":3,"1010000011":11},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.14052076799271163},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":3,"removals":[],"infeasible_task":null,"component_qubits":[9],"max_component_qubits":9,"component_to_original":[[1,2,3,4,5,6,7,8,9]],"components":[{"qubits":9,"penalty":21,"objective_bound":20,"offset":63,"linear":[-21,-15,-18,-21,-11,-15,-13,-21,-17],"quadratic":[[0,1,42],[0,2,42],[0,6,21],[1,2,42],[1,3,21],[1,6,21],[1,8,21],[2,3,21],[2,6,21],[2,8,21],[3,4,42],[3,5,42],[3,6,42],[3,8,21],[4,5,42],[4,6,42],[4,7,21],[4,8,21],[5,6,42],[5,7,21],[5,8,21],[7,8,42]],"domains":[[0,1,2],[3,4,5,6],[7,8]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r0","start":7,"cost":6},{"index":2,"task":"t1","resource":"r2","start":7,"cost":3},{"index":3,"task":"t2","resource":"r2","start":9,"cost":0},{"index":4,"task":"t2","resource":"r2","start":15,"cost":10},{"index":5,"task":"t2","resource":"r2","start":11,"cost":6},{"index":6,"task":"t2","resource":"r1","start":7,"cost":8},{"index":7,"task":"t3","resource":"r0","start":11,"cost":0},{"index":8,"task":"t3","resource":"r2","start":8,"cost":4}],"conflicts":[{"i":0,"j":6,"reasons":["resource","precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":6,"reasons":["precedence"]},{"i":1,"j":8,"reasons":["group"]},{"i":2,"j":3,"reasons":["resource","precedence"]},{"i":2,"j":6,"reasons":["precedence"]},{"i":2,"j":8,"reasons":["resource","group"]},{"i":3,"j":8,"reasons":["resource","precedence"]},{"i":4,"j":7,"reasons":["precedence"]},{"i":4,"j":8,"reasons":["precedence"]},{"i":5,"j":7,"reasons":["precedence"]},{"i":5,"j":8,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":5,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":9,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":3},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":9,"end":10,"reserved_end":10,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,0,0,0,1,0],"qubo_energy":0},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9697421082094907,1.244028843766323],"expected_energy":25.66068504126282,"initial_expected_energy":31.683197704825442,"history":[31.683197704825442,36.83890556367507,51.883360874078,34.48292200119646,39.33488063097743,32.462862043021076,30.772220981404757,29.267701417225535,27.69558311113014,27.11592164133879,28.932919470037916,26.68297128144589,26.39606525268214,26.156755443010276,25.928849483661736,25.798772922498244,26.22753632129819,26.456602675177457,25.68196621008247,25.70243946121776,25.683141002560426,25.716297191180615,25.678075835585005,25.674719657702752,25.680231014454755,25.670616231908454,25.668061437858125,25.665230971520877,25.663427710908323,25.667937245396175,25.662708128807136,25.662186369608463,25.663304874733242,25.661797268858322,25.661580901574688,25.661990165671032,25.661467073048993,25.661364697089624,25.66124938650151,25.66107457064996,25.660949087970785,25.660886242817853,25.660780754953038,25.660714944781304,25.66094302611613,25.660962507476448,25.66071086219312,25.660687819581412,25.660726575901755,25.660692533498562,25.660691062185016,25.660687142980663,25.66068654745422,25.66068606007388,25.660686835472532,25.660685761270862,25.66068554570017,25.66068572935853,25.660685435900824,25.66068542433811,30.878433553718036,36.37241637498725,51.96961873652624,35.120374578450054,39.713348871005664,32.91928208215014,28.17425032112559,27.458538710292245,29.913995236001917,26.927127918682228,26.539926651482574,26.312566429072653,26.07626118283597,25.969674671792593,26.67560522552623,25.842299970033295,25.81689929026357,25.74107839886632,25.711257161181045,25.68829531909459,25.67157306936633,25.745161659766367,25.66419242683466,25.679551964669987,25.66734586596797,25.66217800868835,25.662132668431518,25.668819988060427,25.6609881799672,25.66128756002128,25.66096353341651,25.661430373668285,25.660914713009205,25.660852753055877,25.660817952698956,25.660881565453344,25.66079700992827,25.660778169283986,25.66076147319672,25.660729124635953,25.660717232540282,25.66070204348452,25.66070365507315,25.660721141709686,25.66070277455735,25.660697504250983,25.660695452879576,25.660692720771863,25.660690317499572,25.660689870292867,25.660686582648594,25.660689161970613,25.660688721856758,25.660687116885782,25.660686384384086,25.66068576881058,25.66068539454242,25.660686224528625,25.6606851945239,25.66068504126282],"feasible_probability":0.19305002593734544,"one_hot_probability":1.0,"sampled_feasible_fraction":0.216796875,"counts":{"010001001":111,"010001010":13,"010001100":35,"010010001":12,"010010010":11,"010010100":23,"010100001":61,"010100010":21,"010100100":71,"011000001":49,"011000010":6,"011000100":30,"100001001":5,"100001010":5,"100001100":2,"100010001":13,"100010100":4,"100100001":28,"100100010":1,"100100100":1,"101000001":6,"101000010":1,"101000100":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12802335299784318}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.19305002593734544,"total_shots":512,"runtime_seconds":0.12822435100679286},"direct_metrics":{"exact_objective":3,"optimal_count":1,"combinations":24,"optimal_probability":0.1890190636781266,"feasible_probability":0.1890190636781266,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.041666666666666664,"shots_for_95_percent":15,"hit_curve":[{"shots":8,"quantum":0.812895099135869,"uniform":0.2885690504976606},{"shots":16,"quantum":0.9649917560726237,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9987744228571214,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9999984979606669,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999999999977439,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":7.632783294297951e-17,"independent_samples":[{"shots":8,"best_objective":3},{"shots":16,"best_objective":3},{"shots":32,"best_objective":3},{"shots":64,"best_objective":3},{"shots":128,"best_objective":3},{"shots":512,"best_objective":3}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":24,"optimal_probability":0.19305002593734544,"feasible_probability":0.19305002593734544,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.041666666666666664,"shots_for_95_percent":14,"hit_curve":[{"shots":8,"quantum":0.8202069516882985,"uniform":0.2885690504976606},{"shots":16,"quantum":0.9676744597787862,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9989550594494067,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9999989080992457,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999999999988077,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.673617379884035e-17,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.19305002593734544,"diagnostic_seconds":0.005505067994818091}
+{"instance":"n4-s2-r1.json","seed":8,"direct":{"status":"feasible","best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":5,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":9,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":3},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9826341706137435,1.2495120537269704],"expected_energy":31.575247592895604,"initial_expected_energy":41.223883015595774,"history":[41.223883015595774,43.991218771836195,42.11634998476892,46.322347428286875,43.36853823392914,41.518307527684605,41.97677792905241,39.84945892771494,37.76837673373926,37.89029655595024,38.87864166302619,38.15640346254311,36.96557764202405,35.832471143169364,34.705635790384754,34.68832227077229,32.67109220466691,32.74540474643694,32.630662066003254,33.13301749862556,32.950394722469206,32.35948433090623,32.850252183105866,32.21535861722006,32.18307466995985,32.009761412495436,31.93508606551014,31.708199509547406,31.70739402202647,31.599882782614074,31.64113203986068,31.597848888578174,31.64390957903212,31.593425234884158,31.58833411515866,31.585481788039026,31.592679758931254,31.583486938195072,31.581945008691804,31.584381088606634,31.58104336271424,31.579560323728312,31.577314621503973,31.577909684952996,31.579947298490893,31.576934844536936,31.578038961354885,31.576654664639644,31.576290106118684,31.5757370515777,31.578204315502695,31.575998361063025,31.575666754729987,31.57600573198179,31.575603998392545,31.575503269633586,31.57536844342834,31.5755770301455,31.575308773428958,31.575247592895604,60.515570898678874,54.24570363390491,44.287367442675205,44.339795818018665,40.08529394773316,35.8983362903773,35.890177659379155,33.183466918815284,40.38426644824319,32.88935869741116,33.48496191019031,33.2371386436103,32.64213156450313,33.19711913315034,32.55865292061867,32.6325971325268,32.54775011795802,32.518000562552,32.51687480381146,32.498030992767404,32.48305527871424,32.4630690148301,32.44677521404904,32.46869136635816,32.4440132002044,32.434768725664455,32.42120199450014,32.407560053850695,32.404384701446006,32.439992489372884,32.40737114767275,32.41963442468073,32.403520583537336,32.40487724920459,32.40450390063974,32.40372839090581,32.40338996346205,32.40317831548396,32.40299193801362,32.403095634033974,32.402968438670406,32.40296564593784,32.402918156629354,32.402865459250094,32.402841718739694,32.40286586740251,32.40290717757041,32.40283324369648,32.40283384437427,32.402834144484586,32.40283458864944,32.40283367166431,32.40283352961974,32.40283370242411,32.402833271126866,32.40283303102931,32.402832633204,32.402831991692665,32.40283230192118,32.4028324196855],"feasible_probability":0.18618497600323042,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.197265625,"counts":{"0100010011":101,"0100010101":5,"0100011001":38,"0100100011":5,"0100100101":16,"0100101001":22,"0101000011":64,"0101000101":25,"0101001001":57,"0110000011":47,"0110000101":10,"0110001001":36,"1000010011":8,"1000010101":2,"1000011001":5,"1000100011":19,"1000101001":5,"1001000011":32,"1001000101":3,"1001001001":4,"1010000011":6,"1010001001":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.136909441993339},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":3,"removals":[],"infeasible_task":null,"component_qubits":[9],"max_component_qubits":9,"component_to_original":[[1,2,3,4,5,6,7,8,9]],"components":[{"qubits":9,"penalty":21,"objective_bound":20,"offset":63,"linear":[-21,-15,-18,-21,-11,-15,-13,-21,-17],"quadratic":[[0,1,42],[0,2,42],[0,6,21],[1,2,42],[1,3,21],[1,6,21],[1,8,21],[2,3,21],[2,6,21],[2,8,21],[3,4,42],[3,5,42],[3,6,42],[3,8,21],[4,5,42],[4,6,42],[4,7,21],[4,8,21],[5,6,42],[5,7,21],[5,8,21],[7,8,42]],"domains":[[0,1,2],[3,4,5,6],[7,8]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r0","start":7,"cost":6},{"index":2,"task":"t1","resource":"r2","start":7,"cost":3},{"index":3,"task":"t2","resource":"r2","start":9,"cost":0},{"index":4,"task":"t2","resource":"r2","start":15,"cost":10},{"index":5,"task":"t2","resource":"r2","start":11,"cost":6},{"index":6,"task":"t2","resource":"r1","start":7,"cost":8},{"index":7,"task":"t3","resource":"r0","start":11,"cost":0},{"index":8,"task":"t3","resource":"r2","start":8,"cost":4}],"conflicts":[{"i":0,"j":6,"reasons":["resource","precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":6,"reasons":["precedence"]},{"i":1,"j":8,"reasons":["group"]},{"i":2,"j":3,"reasons":["resource","precedence"]},{"i":2,"j":6,"reasons":["precedence"]},{"i":2,"j":8,"reasons":["resource","group"]},{"i":3,"j":8,"reasons":["resource","precedence"]},{"i":4,"j":7,"reasons":["precedence"]},{"i":4,"j":8,"reasons":["precedence"]},{"i":5,"j":7,"reasons":["precedence"]},{"i":5,"j":8,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":5,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":9,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":3},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":9,"end":10,"reserved_end":10,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,0,0,0,1,0],"qubo_energy":0},"seed":3257320810,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9693563504014278,1.2441065649048995],"expected_energy":25.660685931385142,"initial_expected_energy":50.66978398207701,"history":[50.66978398207701,47.06851098080806,44.75739960064872,36.762930694088325,43.060159353062765,33.92956040761463,35.51298274445011,43.08744199176587,32.09025040676775,37.55850757834101,32.704933972396645,30.89961533782874,29.721994195394515,32.272647820727286,29.02206048411051,28.56435878729819,27.89624472969384,29.758880921937035,27.057858840340415,27.288853071016376,27.630996749617033,26.93464293131605,26.987298550727346,26.842047444822903,26.76420868677766,26.67702725719087,26.906922277103938,26.579537000848077,26.492881212253707,26.339153486076576,26.087346671876567,26.028333269765586,25.716945340535673,26.496631637425573,26.05680842044097,25.696122796941115,25.7673231208647,25.70394467056093,25.692421071837458,25.69812350023123,25.68610071820092,25.680555682850308,25.676832946153965,25.667861551227993,25.66974691208177,25.667450773140317,25.674533867881436,25.66411669274129,25.66241110455241,25.661560742398272,25.660936174041794,25.660785158666123,25.663899876612195,25.66152314109127,25.66102988548024,25.66080289641595,25.660776406176858,25.660737289559982,25.660712268599745,25.660704648415873,36.61456321797727,38.933175888423335,50.46425119709365,31.698917101445844,49.736627906388165,34.44026268441767,33.48822850443612,31.019319298593985,29.725996771619773,28.237655632229227,29.03675197367201,27.730323535682466,27.28780309330999,27.262150595033972,26.593422499326543,26.329507365062042,25.783800019066348,26.055357892376016,27.171999621882367,25.846434624031637,25.908430200330947,25.872724085059325,25.8090178392818,25.756926698839273,25.787545912303834,25.75158935154332,25.74268774165339,25.732434853670455,25.714215156458728,25.707686927730595,25.678048578717622,25.711155117034338,25.67534571809689,25.683717632224123,25.67023695011114,25.666586453098205,25.664030431181303,25.680900572827753,25.66227578329385,25.66235494114479,25.661069668015898,25.66085374363086,25.664919573562372,25.66317411722204,25.662168551316803,25.660876645793174,25.6607859516175,25.660926987762586,25.660854161280152,25.660812659183563,25.66074467067632,25.66074866328166,25.6607595612958,25.66074723129394,25.6607376753234,25.660725333066953,25.66070957399152,25.660707259518936,25.6606963862615,25.660685931385142],"feasible_probability":0.19302114385729782,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.16796875,"counts":{"010001001":86,"010001010":6,"010001100":36,"010010001":9,"010010010":9,"010010100":13,"010100001":82,"010100010":31,"010100100":61,"011000001":64,"011000010":5,"011000100":39,"100001010":4,"100001100":1,"100010001":17,"100010010":1,"100010100":1,"100100001":29,"100100010":4,"100100100":3,"101000001":11},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13381134100200143}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.19302114385729782,"total_shots":512,"runtime_seconds":0.1340197710087523},"direct_metrics":{"exact_objective":3,"optimal_count":1,"combinations":24,"optimal_probability":0.18618497600323042,"feasible_probability":0.18618497600323042,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.041666666666666664,"shots_for_95_percent":15,"hit_curve":[{"shots":8,"quantum":0.8075997528915188,"uniform":0.2885690504976606},{"shots":16,"quantum":0.9629821449125954,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9986296784047279,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9999981222187255,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999999999964739,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.942890293094024e-16,"independent_samples":[{"shots":8,"best_objective":3},{"shots":16,"best_objective":3},{"shots":32,"best_objective":3},{"shots":64,"best_objective":3},{"shots":128,"best_objective":3},{"shots":512,"best_objective":3}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":24,"optimal_probability":0.19302114385729782,"feasible_probability":0.19302114385729782,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.041666666666666664,"shots_for_95_percent":14,"hit_curve":[{"shots":8,"quantum":0.8201554645038853,"uniform":0.2885690504976606},{"shots":16,"quantum":0.9676559430521867,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9989538619801566,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9999989055952434,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999999999988023,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.19302114385729782,"diagnostic_seconds":0.004903666995232925}
+{"instance":"n4-s2-r1.json","seed":9,"direct":{"status":"feasible","best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":5,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":9,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":3},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9787136952547995,1.2496595319901986],"expected_energy":31.575016619078788,"initial_expected_energy":36.00365381471481,"history":[36.00365381471481,37.32965040634913,62.520866978559006,41.86770392379775,53.31345445674819,32.09026415636307,33.0230481444109,32.233536552038096,32.59103753300369,31.878272162840204,32.43494774439645,31.766490076703054,31.72748022332722,31.65448394953974,31.660125579536974,31.646911212894643,31.658590693807646,31.64101906520766,31.630366855453893,31.6218429980253,31.621694092762247,31.61247250139025,31.605018711815305,31.59330096203268,31.57874367194664,31.613146439423033,31.5966679615737,31.577548175317418,31.57975008133115,31.578662990838303,31.579076939526864,31.5772524807142,31.577653258870843,31.577168898320586,31.577008628360858,31.576842183852996,31.576549073369158,31.576184577467806,31.575665972087712,31.575197279285383,31.576237190072632,31.576167086529786,31.57514590901649,31.57510809191377,31.57510285077392,31.575221710033425,31.575051509453516,31.575063806583763,31.575048727896927,31.57505953032205,31.575047700559796,31.575043020530167,31.57503688281129,31.575032576160723,31.57502925082179,31.575025710598915,31.575022232703663,31.57502116556924,31.57501893511312,31.575016619078788,46.81372300167439,47.084812973520684,49.33300907955717,48.93647578960355,47.475719140799924,48.02830258914511,46.7652941304694,46.536023959079415,46.48092520091351,46.6694978431494,46.40379898645082,46.24219971447204,45.8579493931829,45.32580430856199,43.50810696899306,43.1273666732943,39.59462149868605,34.83142405572238,34.378024593402344,31.897344753411822,40.75172244831478,31.763955752450386,32.161717522509214,32.12244447586183,31.62664685786646,32.080055479103365,31.627019862549716,31.662276986179783,31.58864585200093,31.59649835700482,31.59051687587567,31.59193592192173,31.584671483661637,31.587433051994864,31.58315479459104,31.58382219323441,31.582859542844993,31.582031440339293,31.580599080434382,31.57892230283823,31.577897173675083,31.576744566033163,31.578478100265734,31.57567131021879,31.575994240101195,31.57578405422082,31.575832682637802,31.575643850867387,31.57555098852726,31.575389332106347,31.575396276840326,31.57539402506028,31.57535086579162,31.575345066716586,31.57549461865159,31.575251859320087,31.575206313064985,31.575157837625156,31.575120322335128,31.575071025587413],"feasible_probability":0.18590750227184816,"one_hot_probability":1.0000000000000004,"sampled_feasible_fraction":0.197265625,"counts":{"0100010011":101,"0100010101":9,"0100011001":30,"0100100011":5,"0100100101":16,"0100101001":20,"0101000011":80,"0101000101":24,"0101001001":45,"0110000011":45,"0110000101":9,"0110001001":38,"1000010011":5,"1000010101":3,"1000011001":3,"1000100011":16,"1000101001":3,"1001000011":37,"1001000101":3,"1001001001":3,"1010000011":13,"1010000101":1,"1010001001":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13639135401172098},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":3,"removals":[],"infeasible_task":null,"component_qubits":[9],"max_component_qubits":9,"component_to_original":[[1,2,3,4,5,6,7,8,9]],"components":[{"qubits":9,"penalty":21,"objective_bound":20,"offset":63,"linear":[-21,-15,-18,-21,-11,-15,-13,-21,-17],"quadratic":[[0,1,42],[0,2,42],[0,6,21],[1,2,42],[1,3,21],[1,6,21],[1,8,21],[2,3,21],[2,6,21],[2,8,21],[3,4,42],[3,5,42],[3,6,42],[3,8,21],[4,5,42],[4,6,42],[4,7,21],[4,8,21],[5,6,42],[5,7,21],[5,8,21],[7,8,42]],"domains":[[0,1,2],[3,4,5,6],[7,8]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":5,"cost":0},{"index":1,"task":"t1","resource":"r0","start":7,"cost":6},{"index":2,"task":"t1","resource":"r2","start":7,"cost":3},{"index":3,"task":"t2","resource":"r2","start":9,"cost":0},{"index":4,"task":"t2","resource":"r2","start":15,"cost":10},{"index":5,"task":"t2","resource":"r2","start":11,"cost":6},{"index":6,"task":"t2","resource":"r1","start":7,"cost":8},{"index":7,"task":"t3","resource":"r0","start":11,"cost":0},{"index":8,"task":"t3","resource":"r2","start":8,"cost":4}],"conflicts":[{"i":0,"j":6,"reasons":["resource","precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":6,"reasons":["precedence"]},{"i":1,"j":8,"reasons":["group"]},{"i":2,"j":3,"reasons":["resource","precedence"]},{"i":2,"j":6,"reasons":["precedence"]},{"i":2,"j":8,"reasons":["resource","group"]},{"i":3,"j":8,"reasons":["resource","precedence"]},{"i":4,"j":7,"reasons":["precedence"]},{"i":4,"j":8,"reasons":["precedence"]},{"i":5,"j":7,"reasons":["precedence"]},{"i":5,"j":8,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":2,"end":5,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":9,"end":10,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0],"qubo_energy":3},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":5,"end":8,"reserved_end":8,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":9,"end":10,"reserved_end":10,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,0,0,1,0,0,0,1,0],"qubo_energy":0},"seed":747784396,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9735197487961014,1.2441980814694726],"expected_energy":25.660899394154214,"initial_expected_energy":39.03411635299658,"history":[39.03411635299658,41.20365257898863,44.46076935742886,35.2984528043017,47.255403671898485,32.37003386328664,36.426737242021346,31.64491908784126,30.54121984306404,29.07506605898813,26.71117898612407,31.904706645552537,32.38344381537438,28.420098194222007,26.504018422809253,26.540411319327994,26.273209108300478,26.156964635625467,26.749025576408698,25.895066159695503,26.07363334035866,26.01838788000702,25.88089757422952,25.839127672002874,25.80340473772501,25.763686475990326,25.721275370268927,25.71437087114272,25.90717972296272,25.679042721755124,25.679618814823925,25.678249576475835,25.67953922387369,25.682886087500044,25.673100262412294,25.67418398946377,25.67516642495547,25.67333667729555,25.6720899599401,25.670289015225357,25.66922396492356,25.66555585983751,25.664851464414518,25.66247762640993,25.663153210783552,25.662404345790968,25.663118650218514,25.662443204569662,25.66217581216533,25.66188023017828,25.6620477411,25.661752055925668,25.6616401751524,25.661513231207113,25.661291558554908,25.661156806123962,25.661017103730394,25.660899394154214,25.661026234665215,25.660912215610498,42.37975543857874,40.19573680803793,39.67498622410355,40.76923366790315,39.09593015723317,36.69882164110089,28.833114198689536,32.123344065663986,51.37119173258765,45.4074356993688,28.19694733364372,29.888299262569326,29.585857247013664,27.27614587419437,30.19935572914635,26.990964753005418,27.262901945683748,26.871856674963002,27.350156294717223,26.754305287147087,26.683003781344055,26.773413222541482,26.65150807891253,26.61424382165123,26.64192781358163,26.60779907028497,26.594428649854002,26.58102087104873,26.559493337950464,26.525949592923958,26.486452494327693,26.44619385906623,26.51192037313334,26.489244264006302,26.44857678941709,26.462992335441044,26.446226187242395,26.4457991221391,26.445942291764734,26.44633387746384,26.44499268329199,26.44445774529442,26.446094303320766,26.44397054217866,26.443604300976588,26.443721539649395,26.443309773078163,26.443377117720722,26.44338272700838,26.44319290051068,26.443061830639024,26.443265977189917,26.442914311499912,26.44278629494478,26.442561724854908,26.44227550259955,26.44201981919569,26.441850858712986,26.442364460012506,26.4418221796789],"feasible_probability":0.1933389978824385,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.17578125,"counts":{"010001001":90,"010001010":6,"010001100":37,"010010001":12,"010010010":15,"010010100":19,"010100001":64,"010100010":29,"010100100":75,"011000001":43,"011000010":12,"011000100":26,"100001001":5,"100001010":13,"100001100":5,"100010001":12,"100010010":2,"100010100":4,"100100001":22,"100100010":5,"100100100":9,"101000001":5,"101000100":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12263514399819542}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.1933389978824385,"total_shots":512,"runtime_seconds":0.12282266200054437},"direct_metrics":{"exact_objective":3,"optimal_count":1,"combinations":24,"optimal_probability":0.18590750227184816,"feasible_probability":0.18590750227184816,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.041666666666666664,"shots_for_95_percent":15,"hit_curve":[{"shots":8,"quantum":0.8070743286706488,"uniform":0.2885690504976606},{"shots":16,"quantum":0.9627796853421191,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9986146481767684,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9999980808003258,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999999999963167,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":3},{"shots":16,"best_objective":3},{"shots":32,"best_objective":3},{"shots":64,"best_objective":3},{"shots":128,"best_objective":3},{"shots":512,"best_objective":3}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":24,"optimal_probability":0.1933389978824385,"feasible_probability":0.1933389978824385,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.041666666666666664,"shots_for_95_percent":14,"hit_curve":[{"shots":8,"quantum":0.8207213833281777,"uniform":0.2885690504976606},{"shots":16,"quantum":0.9678591776042378,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9989669675357241,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9999989328439277,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999999999988611,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.551115123125783e-17,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.1933389978824385,"diagnostic_seconds":0.004713390007964335}
+{"instance":"n4-s2-r2.json","seed":0,"direct":{"status":"feasible","best":{"feasible":true,"objective":32,"raw_cost":32,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r1","start":5,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r0","start":7,"end":9,"reserved_end":9,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r1","start":12,"end":15,"reserved_end":15,"changed":true}],"bits":[1,0,0,1,0,0,0,1,0,1],"qubo_energy":32},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.2671180862995075,1.202853259469389],"expected_energy":59.78916961321694,"initial_expected_energy":63.21235297807321,"history":[63.21235297807321,64.50723913367833,66.72449115900918,71.68577302748541,60.34441754371194,66.66538152776491,60.262543940314416,60.32843803524711,60.60109205823062,59.90354209934314,60.056458575069065,59.937650782975616,59.920314721826436,59.88950689863608,59.89372881142011,59.891123042120924,59.890378973448556,59.890562600490604,59.88910998255146,59.896266737069226,59.88714504477011,59.88598439517325,59.88506756431966,59.88749204707641,59.88420258930975,59.88312527073972,59.881123988459976,59.880184769232045,59.875586748413824,59.88533014881224,59.87367130855617,59.87244393324197,59.877253929951436,59.870991672549394,59.87021621991106,59.8691247951714,59.86698619843082,59.86290331145612,59.86476079938528,59.86805324003524,59.86514838394571,59.86231724000119,59.862222121600766,59.86162425088764,59.86049662407649,59.85843901809408,59.85444785348031,59.851029783982014,59.85731576637814,59.87280960537295,59.84960062951903,59.84597545931239,59.84592604710166,59.84786115360757,59.846165657211564,59.8450918495306,59.84429480573651,59.845022792935744,59.84383593427665,59.84357505522574,78.26769698890686,74.65251229075798,66.32939199860463,62.444050550764956,68.82025534226025,62.01532759501098,65.91756519687809,61.8493220423064,60.800231480893885,60.100257873454495,59.89633194714441,59.81056888660116,59.99688563051897,59.81755742001408,59.85963952543747,59.809024069994734,59.797922146643224,59.79165638271886,59.790907235011346,59.790890266283455,59.79195854518948,59.79051420836588,59.789958934223975,59.789493549913885,59.799150433438115,59.791225704333925,59.79037525001597,59.78946103113097,59.789471978991514,59.789492744584,59.78942603856615,59.7894254190545,59.78946398387434,59.789412190089365,59.78940269010569,59.78938999150928,59.78937347998516,59.78935520029091,59.78934383222523,59.78931120146378,59.78927465303892,59.78922075332903,59.78949283221048,59.78951566948296,59.78921324792516,59.7893562584754,59.78920670978465,59.7892171586663,59.78921176046446,59.789205572380794,59.78920479737603,59.78920214609338,59.78919816783953,59.789189513080984,59.7891735216444,59.78926388259217,59.78925679813833,59.78917022759558,59.78920120997322,59.78916961321694],"feasible_probability":0.17630454933588752,"one_hot_probability":1.0,"sampled_feasible_fraction":0.1796875,"counts":{"0100010011":66,"0100010101":7,"0100011001":8,"0100100011":25,"0100100101":15,"0100101001":2,"0101000011":30,"0101000101":45,"0101001001":24,"0110000011":33,"0110000101":23,"0110001001":18,"1000010011":10,"1000010101":8,"1000011001":4,"1000100101":14,"1000101001":18,"1001000011":7,"1001000101":12,"1001001001":41,"1010000011":10,"1010000101":69,"1010001001":23},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1293065369973192},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":4,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[2,3,4,6,7,8,9]],"components":[{"qubits":7,"penalty":29,"objective_bound":28,"offset":87,"linear":[-19,-19,-29,-23,-21,-29,-19],"quadratic":[[0,1,58],[0,2,29],[0,3,29],[1,2,29],[1,3,29],[1,5,29],[2,3,58],[2,4,58],[3,4,58],[4,5,29],[5,6,58]],"domains":[[0,1],[2,3,4],[5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":4,"cost":10},{"index":1,"task":"t1","resource":"r1","start":5,"cost":10},{"index":2,"task":"t2","resource":"r2","start":3,"cost":0},{"index":3,"task":"t2","resource":"r0","start":4,"cost":6},{"index":4,"task":"t2","resource":"r0","start":7,"cost":8},{"index":5,"task":"t3","resource":"r0","start":6,"cost":0},{"index":6,"task":"t3","resource":"r1","start":12,"cost":10}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":3,"reasons":["resource","precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["group"]},{"i":4,"j":5,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":32,"raw_cost":32,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r1","start":5,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r0","start":7,"end":9,"reserved_end":9,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r1","start":12,"end":15,"reserved_end":15,"changed":true}],"bits":[1,0,0,1,0,0,0,1,0,1],"qubo_energy":32},"components":[{"status":"feasible","best":{"feasible":true,"objective":28,"raw_cost":28,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":7,"reserved_end":7,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r0","start":7,"end":9,"reserved_end":9,"changed":true},{"variable":6,"task":"t3","group":"g1","resource":"r1","start":12,"end":15,"reserved_end":15,"changed":true}],"bits":[0,1,0,0,1,0,1],"qubo_energy":28},"seed":3757552657,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9500105851014857,1.254106901654977],"expected_energy":43.5006063404387,"initial_expected_energy":59.33091493197134,"history":[59.33091493197134,55.79876350814616,50.93047480922329,51.885671387088905,50.56266519849872,50.487436874435666,50.10266224136163,48.868611953526866,56.46698934110132,48.99716681878743,48.08729238926199,49.49796572652352,48.77082146969508,48.068521100929075,47.81458738030502,47.359616572729436,47.603679546986676,47.10849807994951,46.5735451830092,45.541575810002925,44.58350640870844,51.27320531135201,44.32400658624963,44.63354961314874,44.73987163910533,43.792781786143294,43.68610347209336,43.822453382808035,43.727989232925914,43.77406752490491,43.68704294900465,43.65844707042815,43.64082854911618,43.619812581017364,43.583441752970785,43.537665230416806,43.61418934503959,43.6178004526144,43.52733202103726,43.52388265654424,43.55314172812466,43.51835760213068,43.515524923325316,43.51315620701795,43.51385428510397,43.51203120535712,43.511778320521415,43.51356763284599,43.511714326233516,43.510966077675555,43.50980644118235,43.50769250918415,43.50692102292127,43.5038176825792,43.510122472691435,43.502923410022426,43.505534688230355,43.50256474566103,43.502203110380194,43.503074491745096,52.73693665114378,52.64086593585179,45.15064550837453,53.851816670358645,48.00724125468159,46.11789168352359,43.86037755825268,44.30698118952644,43.90426754512228,44.15053353930523,43.78481296908424,43.67274805841174,43.5268770149755,43.85100219638251,43.71719213911029,43.68321950111138,43.55145238331983,43.53034964976307,43.520107708331366,43.52936282178132,43.51702389081389,43.51483551552798,43.517599781270164,43.513475201044656,43.51222848687205,43.51148366417937,43.50869675254252,43.507433003259976,43.50544173024343,43.50365541708841,43.50379858610076,43.50538861757562,43.504425672661014,43.50276285160835,43.50312927476782,43.50261458102176,43.5023933531969,43.50239066774036,43.50223783144692,43.502001268508494,43.50175523767968,43.50142700472401,43.500957131056765,43.500700697847606,43.50133264601806,43.500719815269676,43.50117575007406,43.50065938098349,43.50069894387415,43.50068769274909,43.50065973561822,43.500648996045896,43.50064517560602,43.50065945946561,43.500642442538435,43.500636297215706,43.50063075447906,43.500626931000134,43.500615861546414,43.5006063404387],"feasible_probability":0.28135137693708234,"one_hot_probability":1.0,"sampled_feasible_fraction":0.267578125,"counts":{"0100101":78,"0100110":11,"0101001":29,"0101010":8,"0110001":58,"0110010":5,"1000101":72,"1000110":36,"1001001":44,"1001010":34,"1010001":103,"1010010":34},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10025959799531847}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.28135137693708234,"total_shots":512,"runtime_seconds":0.10043307099840604},"direct_metrics":{"exact_objective":32,"optimal_count":2,"combinations":24,"optimal_probability":0.17630454933588752,"feasible_probability":0.17630454933588752,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.08333333333333333,"shots_for_95_percent":16,"hit_curve":[{"shots":8,"quantum":0.7880988377443294,"uniform":0.5014697532613109},{"shots":16,"quantum":0.955097897434696,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9979838011852149,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999959349423393,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999834753,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":32},{"shots":16,"best_objective":32},{"shots":32,"best_objective":32},{"shots":64,"best_objective":32},{"shots":128,"best_objective":32},{"shots":512,"best_objective":32}]},"component_metrics":[{"exact_objective":28,"optimal_count":2,"combinations":12,"optimal_probability":0.28135137693708234,"feasible_probability":0.28135137693708234,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":10,"hit_curve":[{"shots":8,"quantum":0.9288569004674699,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9949386593889046,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999743828312184,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999993437607,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":28},{"shots":16,"best_objective":28},{"shots":32,"best_objective":28},{"shots":64,"best_objective":28},{"shots":128,"best_objective":28},{"shots":512,"best_objective":28}]}],"reduced_single_joint_draw_p_opt":0.28135137693708234,"diagnostic_seconds":0.0046254539920482785}
+{"instance":"n4-s2-r2.json","seed":1,"direct":{"status":"feasible","best":{"feasible":true,"objective":32,"raw_cost":32,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r1","start":5,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r0","start":7,"end":9,"reserved_end":9,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r1","start":12,"end":15,"reserved_end":15,"changed":true}],"bits":[1,0,0,1,0,0,0,1,0,1],"qubo_energy":32},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.937180754489257,1.1705789358274588],"expected_energy":59.86272307718086,"initial_expected_energy":74.28091203708817,"history":[74.28091203708817,71.58139192115463,61.33899950617332,68.10260274541419,65.28016328170307,62.904547472965945,60.02158614986499,60.98204234521207,60.00943513080182,60.44236439987256,60.098162910371876,60.1564202139309,59.9795542874865,59.98218846344944,59.97871935744456,59.982044714442594,59.982066785893196,59.97491887302699,59.97762101434461,59.97345671419909,59.972838892594524,59.97112016935631,59.96858900088151,59.96276606386395,59.95119250567309,59.929266958634244,59.927491799753305,59.92826191720499,59.93302152732988,59.92254389766356,59.92357831312719,59.94141079859134,59.9009623496496,59.900379376711655,59.89733366321727,59.89456082301315,59.889616214595875,59.8831571404024,59.942674898698534,59.87892331401048,59.88264157656717,59.88087316448078,59.87799556058454,59.87696358837937,59.8754806811761,59.880578504589465,59.87416920393276,59.87276230207591,59.87645445798808,59.8709993976972,59.87074749024208,59.877658993817874,59.868810306960256,59.86773641511832,59.86694201546614,59.86786754143964,59.86640688583097,59.86588949311641,59.86522715492048,59.86411866641331,62.801742852180176,62.428109788690456,68.00592183898706,72.93187045077846,61.22983162917671,67.84280411905908,60.949053359035176,60.16847365888715,62.2651010788347,60.25278180778172,60.42118041984924,60.086022365886244,60.34111419918234,60.127760103613085,60.11363794737366,60.05197188132075,60.04874152957042,60.043644281242905,60.03966070426423,60.033438885377194,60.04540361536378,60.03338048936699,60.02854610855388,60.02051722957039,60.00901267179653,60.00593993579308,60.022866255332346,60.10659884500345,60.006960104720285,59.98571700342591,59.987059451096044,59.98821493889537,59.98515341740888,59.99242674458874,59.980138559686495,59.97929095903154,59.97572388224256,59.97024900026206,59.958386672200604,59.938903517422006,60.254194074522665,60.16416519900778,59.93815873861028,59.92821539980639,59.90922121389541,59.89583370220011,60.28580662510641,60.18186502759036,59.86749254046437,59.91951155586528,59.86478678608601,59.870945902024204,59.86573151349884,59.86385026016548,59.864337181663835,59.863353633488046,59.86304692600252,59.86340375707555,59.862936982603955,59.86272307718086],"feasible_probability":0.1819970589552763,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.16015625,"counts":{"0100010011":60,"0100010101":11,"0100011001":10,"0100100011":15,"0100100101":9,"0100101001":4,"0101000011":25,"0101000101":29,"0101001001":31,"0110000011":53,"0110000101":25,"0110001001":17,"1000010101":7,"1000011001":10,"1000100011":1,"1000100101":7,"1000101001":20,"1001000011":13,"1001000101":19,"1001001001":59,"1010000011":5,"1010000101":52,"1010001001":30},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12903649100917391},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":4,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[2,3,4,6,7,8,9]],"components":[{"qubits":7,"penalty":29,"objective_bound":28,"offset":87,"linear":[-19,-19,-29,-23,-21,-29,-19],"quadratic":[[0,1,58],[0,2,29],[0,3,29],[1,2,29],[1,3,29],[1,5,29],[2,3,58],[2,4,58],[3,4,58],[4,5,29],[5,6,58]],"domains":[[0,1],[2,3,4],[5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":4,"cost":10},{"index":1,"task":"t1","resource":"r1","start":5,"cost":10},{"index":2,"task":"t2","resource":"r2","start":3,"cost":0},{"index":3,"task":"t2","resource":"r0","start":4,"cost":6},{"index":4,"task":"t2","resource":"r0","start":7,"cost":8},{"index":5,"task":"t3","resource":"r0","start":6,"cost":0},{"index":6,"task":"t3","resource":"r1","start":12,"cost":10}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":3,"reasons":["resource","precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["group"]},{"i":4,"j":5,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":32,"raw_cost":32,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r1","start":5,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r0","start":7,"end":9,"reserved_end":9,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r1","start":12,"end":15,"reserved_end":15,"changed":true}],"bits":[1,0,0,1,0,0,0,1,0,1],"qubo_energy":32},"components":[{"status":"feasible","best":{"feasible":true,"objective":28,"raw_cost":28,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":7,"reserved_end":7,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r0","start":7,"end":9,"reserved_end":9,"changed":true},{"variable":6,"task":"t3","group":"g1","resource":"r1","start":12,"end":15,"reserved_end":15,"changed":true}],"bits":[0,1,0,0,1,0,1],"qubo_energy":28},"seed":1641411168,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9471702860425959,1.2539308574696897],"expected_energy":43.50054880355549,"initial_expected_energy":52.169634330245074,"history":[52.169634330245074,52.83294614640749,51.458642887591175,54.65531130526392,51.80987428840399,52.74821044847306,51.245063640529,50.818642806855834,50.63819055712526,50.65065854251948,50.629429108724096,50.62955033020006,50.63175495026458,50.62636768967269,50.62547716827372,50.627907937564615,50.623724463430705,50.62211343018603,50.620982270572824,50.61623248351958,50.6219785940456,50.616919047882966,50.615480974672835,50.61692662036184,50.61311319241551,50.61142019391447,50.6091036719381,50.604363439584574,50.59548526120409,50.57005696707134,50.70546903943681,50.645223158953335,50.579344035342906,50.567195699682806,50.56981507888355,50.563823665276345,50.56254546163405,50.56682130255194,50.55865677744168,50.55486021826825,50.547212638655935,50.53176186404354,50.502496633295415,50.40244752832926,51.328313675221345,50.617401037815945,50.3783774808727,50.48882574458697,50.37274964816818,50.34494341031278,50.28456528351654,50.129430668412226,50.380359328266785,50.29163074826981,50.15196529970487,50.064346739725565,50.05629110477666,49.868866822728435,49.75755259557462,49.68954916736726,55.52201142660913,60.25296729030863,52.438886875359884,48.78913320538096,53.94376450660927,51.462779031471236,48.700855169651774,48.535538766596915,49.69276359304011,48.20185516616503,47.980516758189026,47.77112072891213,47.76470669853673,47.26830956097292,46.5946019278674,46.277015833753524,45.52903048641967,45.03939269375435,44.50939820147356,43.95492531253419,48.174457526876424,43.9069773116876,43.7591864194541,43.56395982738006,43.65144612831956,43.561774570440505,43.623766995736204,43.54812962260837,43.58936488055682,43.66491667467009,43.534484986679885,43.50578598641732,43.501850937484846,43.5082755322111,43.50258646450426,43.503972165074515,43.50064464449646,43.50324535745076,43.50071446633141,43.500984054725706,43.50063759736626,43.50057535282164,43.50055484454044,43.50056297549186,43.50056807687571,43.50055866284287,43.50055415307987,43.50055522521748,43.500553585974274,43.500554162764985,43.5005528540518,43.50055214311136,43.50055119587613,43.50055027919995,43.50054962761075,43.5005516991671,43.500549126021795,43.500549068221304,43.50054997228284,43.50054880355549],"feasible_probability":0.28165961701738995,"one_hot_probability":1.0,"sampled_feasible_fraction":0.26171875,"counts":{"0100101":83,"0100110":16,"0101001":24,"0101010":8,"0110001":49,"0110010":2,"1000101":75,"1000110":48,"1001001":44,"1001010":29,"1010001":89,"1010010":45},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1005641179945087}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.28165961701738995,"total_shots":512,"runtime_seconds":0.10073849800392054},"direct_metrics":{"exact_objective":32,"optimal_count":2,"combinations":24,"optimal_probability":0.1819970589552763,"feasible_probability":0.1819970589552763,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.08333333333333333,"shots_for_95_percent":15,"hit_curve":[{"shots":8,"quantum":0.799534832561281,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9598137166437664,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9983850626300125,"uniform":0.9382316427138628},{"shots":64,"quantum":0.999997391977291,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999931982,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":32},{"shots":16,"best_objective":32},{"shots":32,"best_objective":32},{"shots":64,"best_objective":32},{"shots":128,"best_objective":32},{"shots":512,"best_objective":32}]},"component_metrics":[{"exact_objective":28,"optimal_count":2,"combinations":12,"optimal_probability":0.28165961701738995,"feasible_probability":0.28165961701738995,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":10,"hit_curve":[{"shots":8,"quantum":0.9291006497717811,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9949732821372164,"uniform":0.9459121070676046},{"shots":32,"quantum":0.999974732107528,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999993615336,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.942890293094024e-16,"independent_samples":[{"shots":8,"best_objective":28},{"shots":16,"best_objective":28},{"shots":32,"best_objective":28},{"shots":64,"best_objective":28},{"shots":128,"best_objective":28},{"shots":512,"best_objective":28}]}],"reduced_single_joint_draw_p_opt":0.28165961701738995,"diagnostic_seconds":0.004218759990180843}
+{"instance":"n4-s2-r2.json","seed":2,"direct":{"status":"feasible","best":{"feasible":true,"objective":32,"raw_cost":32,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r1","start":5,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r0","start":7,"end":9,"reserved_end":9,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r1","start":12,"end":15,"reserved_end":15,"changed":true}],"bits":[1,0,0,1,0,0,0,1,0,1],"qubo_energy":32},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.2817244018563034,2.0693675923428008],"expected_energy":53.02195605032971,"initial_expected_energy":72.75622752465787,"history":[72.75622752465787,73.06942588120069,64.31484766327773,65.75010816531636,65.45671925628272,66.42576366055422,60.66655504807535,62.11782859231356,61.452149554272076,61.1818520622526,59.99985407999395,59.8900958200589,59.91286262976073,60.25172708720907,59.88192416837485,59.89868879351484,59.88787630668952,59.872786948112704,59.86956785887415,59.871659841284526,59.86934261116475,59.86648121242679,59.86413923404426,59.8591996911061,59.86782335461362,59.8654065165383,59.85844922740998,59.86253452315613,59.857588181605465,59.8556054489176,59.85123990355815,59.84504369304346,59.86101131239543,59.8982378631364,59.846073917006876,59.846719642364256,59.84661820985362,59.84357522663342,59.842955954933004,59.84200488977333,59.84111730484639,59.83993428867966,59.83822014117459,59.837766118888716,59.83563563379392,59.83657297991435,59.83523300453325,59.83661199455503,59.83473613041427,59.83428857769805,59.83343175337784,59.83177510633211,59.82901893549166,59.82728940054764,59.826892064097436,59.818464453836704,59.81941243085902,59.83143924104586,59.82036463122273,59.81680826895857,63.63848073431309,61.9068074632378,70.41190087199882,66.10758481652398,61.50671084499747,60.74374183566779,62.24445553031288,70.09189958679684,58.609269889770765,58.60889699808132,57.87916931180495,57.37777535355447,56.85113656504749,58.284394826964444,56.8725215080642,56.78904007222694,56.839029491978806,57.4084139917938,56.21071980531178,56.58439064608454,56.38984670094605,56.21648920577736,56.125316222290834,55.96729093742388,55.81127070341993,55.49165308311394,55.666251372664455,55.78856019379222,55.41814412917414,55.43591871276105,55.40155151775343,55.37124763088518,55.31643467394492,55.24268317944219,55.44299000970468,55.20021515768934,55.12689500659085,55.01711314304947,54.759768364523254,54.290434440449445,53.49940112543308,68.95387796397937,60.14381349441949,55.15598270650565,53.4293090731292,54.06892897090565,53.43122569896393,53.4136631123565,53.41149853018782,53.53620094474903,53.36879478714822,53.33851535340833,53.30711183352618,53.27041351828014,53.2409607229958,53.18501166052697,53.07018709653082,53.02195605032971,53.949234796734046,54.060053550254665],"feasible_probability":0.24423315382240307,"one_hot_probability":1.0,"sampled_feasible_fraction":0.2265625,"counts":{"0100010011":10,"0100010101":50,"0100011001":14,"0100100011":5,"0100100101":2,"0100101001":4,"0101000011":41,"0101000101":42,"0101001001":10,"0110000011":22,"0110000101":20,"0110001001":1,"1000010011":70,"1000010101":10,"1000011001":14,"1000100011":10,"1000100101":8,"1000101001":8,"1001000011":13,"1001000101":32,"1001001001":9,"1010000011":1,"1010000101":3,"1010001001":113},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13840254700335208},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":4,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[2,3,4,6,7,8,9]],"components":[{"qubits":7,"penalty":29,"objective_bound":28,"offset":87,"linear":[-19,-19,-29,-23,-21,-29,-19],"quadratic":[[0,1,58],[0,2,29],[0,3,29],[1,2,29],[1,3,29],[1,5,29],[2,3,58],[2,4,58],[3,4,58],[4,5,29],[5,6,58]],"domains":[[0,1],[2,3,4],[5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":4,"cost":10},{"index":1,"task":"t1","resource":"r1","start":5,"cost":10},{"index":2,"task":"t2","resource":"r2","start":3,"cost":0},{"index":3,"task":"t2","resource":"r0","start":4,"cost":6},{"index":4,"task":"t2","resource":"r0","start":7,"cost":8},{"index":5,"task":"t3","resource":"r0","start":6,"cost":0},{"index":6,"task":"t3","resource":"r1","start":12,"cost":10}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":3,"reasons":["resource","precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["group"]},{"i":4,"j":5,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":32,"raw_cost":32,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r1","start":5,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r0","start":7,"end":9,"reserved_end":9,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r1","start":12,"end":15,"reserved_end":15,"changed":true}],"bits":[1,0,0,1,0,0,0,1,0,1],"qubo_energy":32},"components":[{"status":"feasible","best":{"feasible":true,"objective":28,"raw_cost":28,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":7,"reserved_end":7,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r0","start":7,"end":9,"reserved_end":9,"changed":true},{"variable":6,"task":"t3","group":"g1","resource":"r1","start":12,"end":15,"reserved_end":15,"changed":true}],"bits":[0,1,0,0,1,0,1],"qubo_energy":28},"seed":2001025171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4737820610522074,2.9370787796099442],"expected_energy":41.246772956696056,"initial_expected_energy":49.29655395350875,"history":[49.29655395350875,49.458717174500556,48.34874429571768,50.32914245049594,48.38239636147958,47.26862831105355,45.622170280666346,46.30231205556311,46.1138524582738,45.863255333678055,45.34948150174378,45.47389198151056,45.06147443522118,44.87113916994396,45.1894019624428,44.62811483890311,44.43580683001919,44.989777342407905,44.308158904042074,44.12584172572414,43.92320759809151,45.28135813913598,43.7460600878411,43.81411064745404,43.94580641451688,43.736662350202025,43.78629483810691,43.73766906054385,43.72076017964767,43.696980435354476,43.7153457219015,43.678315536398955,43.667776834758776,43.68852588983178,43.65590149941387,43.64567516932138,43.628076264799866,43.59681682690931,43.56177960321408,43.539762031213215,43.507892140275416,43.51783629892954,43.69027866726737,43.505406865154534,43.51609150352994,43.51312061253739,43.50225927125868,43.51053128193453,43.50394789459412,43.502822332693384,43.50195654959569,43.501518989963344,43.501406824022276,43.50126040170204,43.501319977353646,43.501207548002995,43.50119469486741,43.5012752284308,43.501129386023294,43.50102166393826,58.74482324960687,57.92194840086405,50.12938216262647,49.67465909690846,52.01483464697694,41.91597970072647,47.57059264999492,62.26746914291668,51.424508561814186,52.17773881542993,41.36447612244038,44.00569966671196,41.637582700793985,41.68071760232448,41.497321673131765,41.41095630034455,41.31321031547461,41.31282141106764,41.33433803032236,41.31661950180197,41.30069763433335,41.30286309914116,41.29819459271501,41.29715314981112,41.30253589983767,41.29513593662731,41.2936432220232,41.29148239609968,41.28907459218836,41.28439708636536,41.277171561235406,41.296678787144046,41.31338189013966,41.27626809701617,41.27391639808691,41.26938812254748,41.2624409558526,41.263163848710775,41.28709256433922,41.26628095219096,41.261885169592766,41.26442509684974,41.261581969989955,41.260927644546385,41.260861765429794,41.259640213837585,41.25888602725618,41.25835496317161,41.257660127815974,41.256440671288374,41.25425800405937,41.25096155053461,41.25087994425774,41.247270119001826,41.27010558206704,41.251679221573625,41.24703015932349,41.24981817304362,41.246772956696056,41.246883815940144],"feasible_probability":0.31131105848572266,"one_hot_probability":1.0,"sampled_feasible_fraction":0.322265625,"counts":{"0100101":92,"0101001":65,"0101010":6,"0110001":9,"0110010":8,"1000101":47,"1000110":77,"1001001":21,"1001010":22,"1010001":108,"1010010":57},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11872786900494248}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.31131105848572266,"total_shots":512,"runtime_seconds":0.11892359699413646},"direct_metrics":{"exact_objective":32,"optimal_count":2,"combinations":24,"optimal_probability":0.24423315382240307,"feasible_probability":0.24423315382240307,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.08333333333333333,"shots_for_95_percent":11,"hit_curve":[{"shots":8,"quantum":0.8935605328687846,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9886706398368229,"uniform":0.7514675930866618},{"shots":32,"quantum":0.999871645598293,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999835251475,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999999998,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":32},{"shots":16,"best_objective":32},{"shots":32,"best_objective":32},{"shots":64,"best_objective":32},{"shots":128,"best_objective":32},{"shots":512,"best_objective":32}]},"component_metrics":[{"exact_objective":28,"optimal_count":2,"combinations":12,"optimal_probability":0.31131105848572266,"feasible_probability":0.31131105848572266,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.949395996680373,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9974392348480272,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999934424818364,"uniform":0.9970744998381338},{"shots":64,"quantum":0.999999999956999,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":28},{"shots":16,"best_objective":28},{"shots":32,"best_objective":28},{"shots":64,"best_objective":28},{"shots":128,"best_objective":28},{"shots":512,"best_objective":28}]}],"reduced_single_joint_draw_p_opt":0.31131105848572266,"diagnostic_seconds":0.0042800160008482635}
+{"instance":"n4-s2-r2.json","seed":3,"direct":{"status":"feasible","best":{"feasible":true,"objective":32,"raw_cost":32,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r1","start":5,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r0","start":7,"end":9,"reserved_end":9,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r1","start":12,"end":15,"reserved_end":15,"changed":true}],"bits":[1,0,0,1,0,0,0,1,0,1],"qubo_energy":32},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.2390578329071116,2.088920133392566],"expected_energy":52.965806894767155,"initial_expected_energy":61.26230815445805,"history":[61.26230815445805,60.58293571821767,67.49435530522847,70.91823384529928,67.00747479111908,60.48537333588016,61.219991165134815,60.760580329177685,60.34956400485043,60.685968741822506,60.3936946834031,60.371921350787744,60.32529725130239,60.32369023942404,60.335087985341104,60.325578892808636,60.3155602669933,60.312832339013354,60.318576521890016,60.3080413749672,60.30052326151739,60.332320414746896,60.29596131211024,60.28777973343054,60.27275169507897,60.272945004891696,60.274242857912554,60.27111770772442,60.27644995625588,60.26166639006174,60.25690369820519,60.25239729884936,60.25066230427013,60.2451933993201,60.2389477697172,60.228695724700245,60.217368110718965,60.20015412112086,60.22541734930809,60.21759147896667,60.21277311238828,60.203532702170506,60.19674214869997,60.201526642682865,60.19265336446629,60.19073629821159,60.18571581497537,60.18122220361251,60.17145755344206,60.16854284684233,60.152805444422214,60.19225736445337,60.14598282391887,60.14552765840787,60.157723594070674,60.137772564412046,60.1341718917604,60.13151902771594,60.13570464630009,60.12942479547487,58.774360585323485,59.40928041148376,73.44167058517526,65.45714682524779,58.113813068048934,72.0393078119438,58.191223491593355,60.94822360566141,57.84350169612664,55.89518792856576,55.07598872815951,55.379992654782114,55.15427185846139,55.11990649270634,55.12800462613049,55.013383765792,55.01938861404914,55.02909480998113,54.98493830885209,54.9379083488689,54.905111304037604,55.20123484246801,54.81162614711489,54.74350387182224,54.64414341172551,54.407165943778395,54.00401408184558,59.19919625643314,55.114296995171344,54.64132005569479,53.94095550432132,53.9360062375698,53.8804329260615,53.77425116616453,53.58163047617281,53.30643409647467,58.16429507410349,55.733834253233034,53.465813859279976,53.2892266533314,53.565797872171586,53.223333397338735,53.208203530140665,53.17169680343271,53.13997638431039,53.099821274616275,53.05881301021896,53.04032601273156,53.31613381536729,52.98855885404235,52.99143295996094,52.98515583070147,52.98544567677314,52.99453102829743,52.974519233908794,52.97499598178409,52.98059773195187,52.97518905019785,52.97158190475844,52.965806894767155],"feasible_probability":0.24554633478474075,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.23828125,"counts":{"0100010011":10,"0100010101":39,"0100011001":9,"0100100011":4,"0100100101":10,"0100101001":5,"0101000011":53,"0101000101":42,"0101001001":12,"0110000011":26,"0110000101":20,"1000010011":70,"1000010101":2,"1000011001":7,"1000100011":12,"1000100101":5,"1000101001":13,"1001000011":9,"1001000101":32,"1001001001":9,"1010000011":1,"1010000101":2,"1010001001":120},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1525780539959669},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":4,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[2,3,4,6,7,8,9]],"components":[{"qubits":7,"penalty":29,"objective_bound":28,"offset":87,"linear":[-19,-19,-29,-23,-21,-29,-19],"quadratic":[[0,1,58],[0,2,29],[0,3,29],[1,2,29],[1,3,29],[1,5,29],[2,3,58],[2,4,58],[3,4,58],[4,5,29],[5,6,58]],"domains":[[0,1],[2,3,4],[5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":4,"cost":10},{"index":1,"task":"t1","resource":"r1","start":5,"cost":10},{"index":2,"task":"t2","resource":"r2","start":3,"cost":0},{"index":3,"task":"t2","resource":"r0","start":4,"cost":6},{"index":4,"task":"t2","resource":"r0","start":7,"cost":8},{"index":5,"task":"t3","resource":"r0","start":6,"cost":0},{"index":6,"task":"t3","resource":"r1","start":12,"cost":10}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":3,"reasons":["resource","precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["group"]},{"i":4,"j":5,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":32,"raw_cost":32,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r1","start":5,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r0","start":7,"end":9,"reserved_end":9,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r1","start":12,"end":15,"reserved_end":15,"changed":true}],"bits":[1,0,0,1,0,0,0,1,0,1],"qubo_energy":32},"components":[{"status":"feasible","best":{"feasible":true,"objective":28,"raw_cost":28,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":7,"reserved_end":7,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r0","start":7,"end":9,"reserved_end":9,"changed":true},{"variable":6,"task":"t3","group":"g1","resource":"r1","start":12,"end":15,"reserved_end":15,"changed":true}],"bits":[0,1,0,0,1,0,1],"qubo_energy":28},"seed":819382448,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.2677915242660076,2.9404953454631744],"expected_energy":41.44244460317731,"initial_expected_energy":45.47656185727853,"history":[45.47656185727853,47.31994161582472,61.014921262990384,49.82233589170079,53.61755238923257,44.38113558546883,45.08541151891492,44.48557877597388,44.428118279769706,44.303187326623416,44.60668328489422,44.18555168345336,44.09708401107125,43.942098254991734,44.05032003753983,43.99507198480188,43.92619643809641,44.06258796662404,43.913179376392954,43.86739175272274,43.83410034559594,43.886360545627824,43.80433185792835,43.78946775371553,43.75572220314157,43.709500605409296,43.65877692531684,43.581557977556926,44.01693808709318,43.797994853305504,43.601672537737784,43.57569824035259,43.58834090774644,43.572859689540536,43.56673300653695,43.56152133237906,43.54974805854797,43.54135665725144,43.53261822604418,43.518712542449435,43.59244621660927,43.53707715239882,43.52648702201176,43.516942150995284,43.516829819617186,43.51363179280101,43.51090955642478,43.50665729693642,43.52089742471735,43.512474860314455,43.50765258375215,43.506199356221586,43.507253823853496,43.5057219118501,43.505293047464484,43.50451639677455,43.50368459204658,43.50259557006152,43.50249969636833,43.50435548159382,49.74332263580423,49.74166598880663,49.48592106800849,57.142076236453654,54.40507346347578,51.295872756309066,45.703096091127435,51.34860002684872,47.3511396492961,46.14110524507683,45.09597552085853,44.832655454739495,45.80023833764946,44.57386639137272,44.37656211764042,43.97198694732851,43.36119272980061,46.71032411287452,46.094139903080666,43.24160912563535,43.0824253405259,42.77904188142254,42.31020805413052,46.632356050048415,43.316360765880546,43.37380100821061,42.2023570469661,42.08813248193381,42.060352074364914,42.41927946982395,41.97285644624096,41.9325113599788,41.88886080589061,41.856304576359356,41.76007896512361,41.84640254323149,41.732906676577784,41.81018732547642,41.727469481160156,41.70981834884882,41.69564931209004,41.71837173788642,41.6824867470428,41.666490785712874,41.635566428134396,41.579291078002505,41.624235312814456,41.66387472692333,41.565287600344334,41.58582668384834,41.5558294394632,41.5633435967829,41.5433280159404,41.541442390305214,41.52610889703287,41.51373293566886,41.490569312696984,41.48849331670108,41.44244460317731,41.46639291878293],"feasible_probability":0.30508217891777306,"one_hot_probability":1.0,"sampled_feasible_fraction":0.27734375,"counts":{"0100101":94,"0100110":5,"0101001":69,"0101010":3,"0110001":15,"0110010":7,"1000101":54,"1000110":61,"1001001":27,"1001010":35,"1010001":84,"1010010":58},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12061378100770526}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.30508217891777306,"total_shots":512,"runtime_seconds":0.12086753599578515},"direct_metrics":{"exact_objective":32,"optimal_count":2,"combinations":24,"optimal_probability":0.24554633478474075,"feasible_probability":0.24554633478474075,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.08333333333333333,"shots_for_95_percent":11,"hit_curve":[{"shots":8,"quantum":0.8950311155427544,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9889815332958014,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9998785933914884,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999852604354,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999999998,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.7755575615628914e-16,"independent_samples":[{"shots":8,"best_objective":32},{"shots":16,"best_objective":32},{"shots":32,"best_objective":32},{"shots":64,"best_objective":32},{"shots":128,"best_objective":32},{"shots":512,"best_objective":32}]},"component_metrics":[{"exact_objective":28,"optimal_count":2,"combinations":12,"optimal_probability":0.30508217891777306,"feasible_probability":0.30508217891777306,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9456164449472773,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9970424289398274,"uniform":0.9459121070676046},{"shots":32,"quantum":0.999991252773424,"uniform":0.9970744998381338},{"shots":64,"quantum":0.999999999923486,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.942890293094024e-16,"independent_samples":[{"shots":8,"best_objective":28},{"shots":16,"best_objective":28},{"shots":32,"best_objective":28},{"shots":64,"best_objective":28},{"shots":128,"best_objective":28},{"shots":512,"best_objective":28}]}],"reduced_single_joint_draw_p_opt":0.30508217891777306,"diagnostic_seconds":0.0044445929961511865}
+{"instance":"n4-s2-r2.json","seed":4,"direct":{"status":"feasible","best":{"feasible":true,"objective":32,"raw_cost":32,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r1","start":5,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r0","start":7,"end":9,"reserved_end":9,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r1","start":12,"end":15,"reserved_end":15,"changed":true}],"bits":[1,0,0,1,0,0,0,1,0,1],"qubo_energy":32},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.2868414759081936,1.2047460386888362],"expected_energy":59.78980649075252,"initial_expected_energy":69.42686713650549,"history":[69.42686713650549,69.25840961573547,59.97475536032079,70.78153569516192,60.83612044528542,59.79551357595578,59.82419662308564,59.835958576372704,59.86758940973744,59.82233427421684,59.80431765700758,59.79373535247773,59.795994946159254,59.79660550590779,59.79096956275986,59.7922576726431,59.79116436821707,59.791223664421565,59.790951311116444,59.790916501814536,59.79088798258902,59.790911158752195,59.790868075933176,59.79085922620575,59.79087932669324,59.79084914668282,59.79082951157491,59.79079090314042,59.79071563828048,59.79059324385944,59.790829178041946,59.791075832692,59.790564084612626,59.790532752958214,59.79047319825619,59.79038198762609,59.791518083175674,59.79039111968195,59.79049125669394,59.7902892244136,59.790323905890176,59.79030611868809,59.79027404286262,59.790236206543625,59.790201400901964,59.79012995345495,59.79011702934358,59.79000023214884,59.79018170199029,59.79008536220101,59.78998609345076,59.78999940736895,59.7899857024664,59.78997110222722,59.78994530910151,59.78989326578898,59.78980649075252,59.79051441974169,59.79032382222449,59.789810393616605,76.7969165652071,77.84246256554745,67.33710501904397,73.52925153578542,67.86438368692274,67.21750976162926,67.96272199530272,67.31702569311835,67.2573295061178,67.52101579039207,67.19819643120042,67.12877921107292,67.11732756033626,67.1269805973852,67.12248899352538,67.11487692073405,67.11636017289901,67.1144012042879,67.11630220712709,67.11408854741364,67.11372936182607,67.11362183908169,67.11423898364156,67.1134996799007,67.11341233178308,67.11325446645877,67.11339111770958,67.1132427671626,67.1131226878968,67.11294404251211,67.11272038645542,67.11249321997819,67.11234988955232,67.11366618192903,67.1120989021397,67.11215120704762,67.11207592641092,67.11210913029382,67.11211911801695,67.11203321077673,67.11209892840665,67.11199776385483,67.1119641618156,67.11190291424471,67.11178037051833,67.11154513875944,67.11163231298524,67.11196919346985,67.1115091383144,67.11186204316262,67.1114469514404,67.11142444385013,67.1115457167372,67.1113867337094,67.11135721262073,67.11130622106751,67.11119603123213,67.1109963157217,67.11062136780669,67.11284757277123],"feasible_probability":0.1763719809156311,"one_hot_probability":1.0,"sampled_feasible_fraction":0.177734375,"counts":{"0100010011":73,"0100010101":3,"0100011001":15,"0100100011":22,"0100100101":9,"0100101001":2,"0101000011":33,"0101000101":51,"0101001001":26,"0110000011":37,"0110000101":18,"0110001001":22,"1000010011":4,"1000010101":9,"1000011001":5,"1000100011":3,"1000100101":6,"1000101001":19,"1001000011":11,"1001000101":8,"1001001001":43,"1010000011":2,"1010000101":67,"1010001001":24},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.15346811199560761},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":4,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[2,3,4,6,7,8,9]],"components":[{"qubits":7,"penalty":29,"objective_bound":28,"offset":87,"linear":[-19,-19,-29,-23,-21,-29,-19],"quadratic":[[0,1,58],[0,2,29],[0,3,29],[1,2,29],[1,3,29],[1,5,29],[2,3,58],[2,4,58],[3,4,58],[4,5,29],[5,6,58]],"domains":[[0,1],[2,3,4],[5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":4,"cost":10},{"index":1,"task":"t1","resource":"r1","start":5,"cost":10},{"index":2,"task":"t2","resource":"r2","start":3,"cost":0},{"index":3,"task":"t2","resource":"r0","start":4,"cost":6},{"index":4,"task":"t2","resource":"r0","start":7,"cost":8},{"index":5,"task":"t3","resource":"r0","start":6,"cost":0},{"index":6,"task":"t3","resource":"r1","start":12,"cost":10}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":3,"reasons":["resource","precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["group"]},{"i":4,"j":5,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":32,"raw_cost":32,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r1","start":5,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r0","start":7,"end":9,"reserved_end":9,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r1","start":12,"end":15,"reserved_end":15,"changed":true}],"bits":[1,0,0,1,0,0,0,1,0,1],"qubo_energy":32},"components":[{"status":"feasible","best":{"feasible":true,"objective":28,"raw_cost":28,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":7,"reserved_end":7,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r0","start":7,"end":9,"reserved_end":9,"changed":true},{"variable":6,"task":"t3","group":"g1","resource":"r1","start":12,"end":15,"reserved_end":15,"changed":true}],"bits":[0,1,0,0,1,0,1],"qubo_energy":28},"seed":367776961,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[-0.9237396283450131,1.8902262119937325],"expected_energy":43.5036563843517,"initial_expected_energy":56.907442234932134,"history":[56.907442234932134,58.677365155337924,49.70083721735563,50.541151678424704,49.84962831984931,50.239811253558784,51.31072398054488,49.715147796696435,50.064455620131824,49.95425941394236,49.802165455111265,49.708109814619284,49.69997930846184,49.706953880905345,49.69689099628977,49.69661177016242,49.70467488058182,49.69402330201001,49.69227658124987,49.69095742851825,49.687710291597384,49.68127783140048,49.66829176080459,49.643093935450395,49.66959024873772,49.85679284244013,49.643187240805936,49.631340205177,49.60949075637006,49.64118223347718,49.68054827333629,49.69976886569401,49.59401465039177,49.59713080113087,49.59561578916046,49.594507150810614,49.592356802806265,49.591513971269976,49.59310327410948,49.590966667814364,49.58993216478636,49.58910049242052,49.587032064903866,49.585009067968905,49.581012563241956,49.57336290726928,49.564667536116644,49.55538018781971,49.55856524209744,49.58391589390356,49.55504171098528,49.54813312425671,49.545679267771085,49.55135015281223,49.54544866170046,49.542968126013236,49.538897377073056,49.529872758419174,49.511461775321486,49.47249526816749,52.35584620610889,53.37777742117652,49.84263013010965,54.17461892003366,50.20164687568149,49.42209486560792,50.89875523935574,49.32577033280376,49.27566371115749,49.256071201499594,49.66201118267648,49.162083760137676,49.1448388786897,49.09282647878389,48.97925893481681,48.699055148136765,48.31782785699366,46.79547587279987,48.13005220821686,47.78536964320067,46.582987627099996,47.68965279675311,46.17888971855416,45.80795071838514,45.15816886355317,44.18648826334015,52.59680207322658,46.152844724090365,44.93813952815993,44.087783583020965,44.21141813772533,44.09232563556323,44.00803091375474,43.91406793898277,44.2729656971876,43.824170134739745,43.77835641448877,43.714913626261286,43.62030154432446,43.87714623830509,43.823976388101286,43.62744732049956,43.61404545594468,43.616225978899664,43.61004300472206,43.60188613334989,43.588802341656304,43.56494208783612,43.54226978680357,43.51644913165989,43.56660017066504,43.567222066710514,43.5129255187045,43.51165398062072,43.509998597272514,43.509794578131675,43.51761480583349,43.50582665234038,43.505497786844074,43.5036563843517],"feasible_probability":0.2848061873806684,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.298828125,"counts":{"0100101":83,"0100110":13,"0101001":15,"0101010":9,"0110001":48,"0110010":1,"1000101":68,"1000110":46,"1001001":47,"1001010":29,"1010001":90,"1010010":63},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11720234699896537}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.2848061873806684,"total_shots":512,"runtime_seconds":0.1173914309911197},"direct_metrics":{"exact_objective":32,"optimal_count":2,"combinations":24,"optimal_probability":0.1763719809156311,"feasible_probability":0.1763719809156311,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.08333333333333333,"shots_for_95_percent":16,"hit_curve":[{"shots":8,"quantum":0.7882375757854484,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9551566756907763,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9979890762648977,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999959561857316,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999836475,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":32},{"shots":16,"best_objective":32},{"shots":32,"best_objective":32},{"shots":64,"best_objective":32},{"shots":128,"best_objective":32},{"shots":512,"best_objective":32}]},"component_metrics":[{"exact_objective":28,"optimal_count":2,"combinations":12,"optimal_probability":0.2848061873806684,"feasible_probability":0.2848061873806684,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9315473936556385,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9953142406846639,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999780436596387,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999995179191,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":28},{"shots":16,"best_objective":28},{"shots":32,"best_objective":28},{"shots":64,"best_objective":28},{"shots":128,"best_objective":28},{"shots":512,"best_objective":28}]}],"reduced_single_joint_draw_p_opt":0.2848061873806684,"diagnostic_seconds":0.004796932989847846}
+{"instance":"n4-s2-r2.json","seed":5,"direct":{"status":"feasible","best":{"feasible":true,"objective":32,"raw_cost":32,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r1","start":5,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r0","start":7,"end":9,"reserved_end":9,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r1","start":12,"end":15,"reserved_end":15,"changed":true}],"bits":[1,0,0,1,0,0,0,1,0,1],"qubo_energy":32},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.022384291370837,-0.2149458918298757],"expected_energy":49.62022066221694,"initial_expected_energy":69.43814429032156,"history":[69.43814429032156,69.49223877820901,52.190426318745985,93.86723637218898,62.1036071625031,55.60803256496726,52.56395664936513,51.82012731762085,52.48931089871597,50.32025209744365,50.7829194553699,50.311343338533135,50.606809566089225,50.31434222176763,50.223925724612066,50.106041407789924,50.11254437491968,50.06724920678677,50.0333947083118,49.97646539790557,49.8780372288134,50.10008728854965,49.97420780617517,49.89541583368968,49.89023181336452,49.86634142440742,49.88219427091988,49.844022783366775,49.8232878122908,49.80195869767584,49.76214133055856,49.74820011530817,49.714570985181645,49.718573811123804,49.70845288110333,49.72447776855932,49.717053943482874,49.70097255661653,49.71661443294376,49.694023859369864,49.69320384025755,49.689799979898716,49.68342768606487,49.67201972901952,49.65305885695021,49.70864055614205,49.69572663096548,49.65611059654758,49.651556219027114,49.652700331364976,49.649523740049496,49.64857094813672,49.65040830640335,49.6482113533459,49.64740338328089,49.64584781828238,49.643849190566655,49.64092575894017,49.638398562939564,49.640337605575034,70.75279609996988,76.95761282599437,74.37289663850486,81.15522734666892,69.29363995880091,56.76967986752656,71.1389845082114,52.052903210632806,71.91310204836314,54.9294322810671,53.282472422074314,52.645627966113835,51.99180030196145,53.938794046666146,51.52844010600636,51.22282768257318,51.263820765860984,51.14611150622123,50.990197271246295,51.044379976460945,50.89502137887403,50.8767656117583,51.13560683451793,50.83577780037258,50.76248996284641,50.647117391488,50.49918416712563,50.332433667774126,50.183904145320405,50.20792033894864,50.19658925030326,50.163070584692775,50.15672313751721,50.311676024152824,50.102561309978,50.06113416683321,50.00684694368605,49.94976718450545,49.87311999737522,49.81938673345415,49.74892485751685,49.70207668572795,50.77068110888389,49.659099657613645,49.73829863336958,49.67241295738267,49.63654676876408,49.63140875051686,49.64544905551326,49.62834264524996,49.626712517228505,49.62489898756086,49.62438365081325,49.631050441832855,49.62288578202354,49.622378213186195,49.621673734164865,49.6207533636507,49.62480479525646,49.62022066221694],"feasible_probability":0.20227549780433338,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.203125,"counts":{"0100010011":39,"0100010101":64,"0100011001":2,"0100100011":5,"0100100101":3,"0101000011":35,"0101000101":44,"0101001001":4,"0110000011":8,"0110000101":16,"1000010011":27,"1000010101":51,"1000011001":31,"1000100011":6,"1000100101":1,"1000101001":2,"1001000011":14,"1001000101":30,"1001001001":8,"1010000011":18,"1010000101":65,"1010001001":39},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.14415561000350863},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":4,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[2,3,4,6,7,8,9]],"components":[{"qubits":7,"penalty":29,"objective_bound":28,"offset":87,"linear":[-19,-19,-29,-23,-21,-29,-19],"quadratic":[[0,1,58],[0,2,29],[0,3,29],[1,2,29],[1,3,29],[1,5,29],[2,3,58],[2,4,58],[3,4,58],[4,5,29],[5,6,58]],"domains":[[0,1],[2,3,4],[5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":4,"cost":10},{"index":1,"task":"t1","resource":"r1","start":5,"cost":10},{"index":2,"task":"t2","resource":"r2","start":3,"cost":0},{"index":3,"task":"t2","resource":"r0","start":4,"cost":6},{"index":4,"task":"t2","resource":"r0","start":7,"cost":8},{"index":5,"task":"t3","resource":"r0","start":6,"cost":0},{"index":6,"task":"t3","resource":"r1","start":12,"cost":10}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":3,"reasons":["resource","precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["group"]},{"i":4,"j":5,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":32,"raw_cost":32,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r1","start":5,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r0","start":7,"end":9,"reserved_end":9,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r1","start":12,"end":15,"reserved_end":15,"changed":true}],"bits":[1,0,0,1,0,0,0,1,0,1],"qubo_energy":32},"components":[{"status":"feasible","best":{"feasible":true,"objective":28,"raw_cost":28,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":7,"reserved_end":7,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r0","start":7,"end":9,"reserved_end":9,"changed":true},{"variable":6,"task":"t3","group":"g1","resource":"r1","start":12,"end":15,"reserved_end":15,"changed":true}],"bits":[0,1,0,0,1,0,1],"qubo_energy":28},"seed":803261128,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3448349775157105,2.934065676160414],"expected_energy":41.313180412066245,"initial_expected_energy":53.128458320171,"history":[53.128458320171,53.276874791777786,42.42590780383626,62.30183173350337,47.373177958201246,42.989289611394476,44.64484562907291,42.7468418032315,42.825596464029886,42.4695396994481,42.38907489875896,42.4383683238749,42.37492096283008,42.35337607968384,42.35405398510218,42.32862164813244,42.30446547659834,42.25844088670607,42.185139529398846,42.330465690514,42.13799939287706,42.06108574885472,41.9544264874131,42.429524459206974,41.849341635428985,41.87274841783553,41.86815056006162,41.84207554375623,41.91178366902503,41.82974788503107,41.80797691470472,41.77120068338273,41.70795382338432,41.58835885075975,42.068112287821776,41.86749230316024,41.5675630035605,41.737329840807504,41.55419312947715,41.53934324624824,41.593292828014825,41.52406182686986,41.511696575215005,41.48754646473101,41.45363209806468,41.43484297660112,41.38565003273885,41.347683160608014,41.3630153660276,41.52264669464409,41.36591825478387,41.32251943363042,41.32641069230078,41.33089017638451,41.32184345213426,41.326902796761374,41.32132863303916,41.319387894434314,41.31644781851886,41.313180412066245,53.24943802404678,58.12458640380196,52.6874355326447,53.07424839664313,53.949446456569206,50.16376348837844,50.800164259785625,50.08316785191178,52.26445105664729,49.75909877523267,49.42782466088411,49.564982897396696,49.35806715609851,49.43768830501073,49.39984937437044,49.350448923271514,49.36035655752178,49.349356825134535,49.34277046234905,49.329343097694334,49.301168656833326,49.24826440516027,49.104671772149274,49.169415065250675,49.40719384966124,49.130848953712054,49.09556297426394,49.17654399777576,49.08410272922153,49.05525260739671,49.0322158362503,49.045184170404376,49.01173964368276,48.99417773947808,48.97345595206239,49.050434853433565,48.94079830563665,48.91314318967685,48.86440352708014,48.75385678657915,48.46746906261986,48.35620547390424,47.15452112180564,48.46780567286891,47.6264518224433,46.97968515671474,47.74152843903689,46.81246508573932,46.50667392993523,45.95744205347081,44.986804769943085,45.4896487676218,46.32154851249683,44.99670132342033,44.58736382757242,43.9855939632518,46.570082384273405,45.082233521226286,44.29378913785038,43.94381480320539],"feasible_probability":0.30764008935134574,"one_hot_probability":1.0,"sampled_feasible_fraction":0.310546875,"counts":{"0100101":91,"0100110":3,"0101001":73,"0101010":2,"0110001":11,"0110010":6,"1000101":59,"1000110":64,"1001001":27,"1001010":17,"1010001":92,"1010010":67},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10525796400906984}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.30764008935134574,"total_shots":512,"runtime_seconds":0.1054541390039958},"direct_metrics":{"exact_objective":32,"optimal_count":2,"combinations":24,"optimal_probability":0.20227549780433338,"feasible_probability":0.20227549780433338,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.08333333333333333,"shots_for_95_percent":14,"hit_curve":[{"shots":8,"quantum":0.8360077013756769,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9731065259919108,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9992767410557762,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999994768964996,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999997263,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":32},{"shots":16,"best_objective":null},{"shots":32,"best_objective":32},{"shots":64,"best_objective":32},{"shots":128,"best_objective":32},{"shots":512,"best_objective":32}]},"component_metrics":[{"exact_objective":28,"optimal_count":2,"combinations":12,"optimal_probability":0.30764008935134574,"feasible_probability":0.30764008935134574,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9471974002513386,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9972118854597827,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999922264173107,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999999395714,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":28},{"shots":16,"best_objective":28},{"shots":32,"best_objective":28},{"shots":64,"best_objective":28},{"shots":128,"best_objective":28},{"shots":512,"best_objective":28}]}],"reduced_single_joint_draw_p_opt":0.30764008935134574,"diagnostic_seconds":0.004371257993625477}
+{"instance":"n4-s2-r2.json","seed":6,"direct":{"status":"feasible","best":{"feasible":true,"objective":32,"raw_cost":32,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r1","start":5,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r0","start":7,"end":9,"reserved_end":9,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r1","start":12,"end":15,"reserved_end":15,"changed":true}],"bits":[1,0,0,1,0,0,0,1,0,1],"qubo_energy":32},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.2771159882372882,1.2040626756544084],"expected_energy":59.789402769265905,"initial_expected_energy":71.08431695128496,"history":[71.08431695128496,70.04056602973375,60.115247955203486,70.3701528112961,63.38477624126886,61.02172287121168,60.307270150984294,60.28220712766827,59.82481827992825,59.990695741971365,59.81874019320793,59.82170330679929,59.818875563074826,59.824682506588566,59.81666195963393,59.81938663532564,59.817353811999936,59.81662234406211,59.816296956153785,59.81571297039196,59.81561916825683,59.81428808691581,59.813860782319594,59.81330741045025,59.81272334567798,59.81808829996632,59.81170437117029,59.81155864373366,59.810784322176055,59.809856229663815,59.80849821018265,59.80792246641326,59.807332705059515,59.80911280678194,59.81227783047973,59.80809586104766,59.80556840227841,59.80515077832682,59.80468115808479,59.80498977891031,59.80447459536556,59.80464916497097,59.80442097900555,59.8043387366088,59.80433445511883,59.804219021041966,59.80400472629424,59.8036172277384,59.80281927232461,59.80129234482335,59.8031311257441,59.805823884670716,59.801021388528596,59.80351200618754,59.80084417135957,59.800650224565004,59.80043448140174,59.8008917975842,59.80015870559626,59.80000615229146,76.40737410103664,75.97025941789661,69.03258329430211,60.347805679240594,62.55639015770314,60.46126756494078,62.63528668694736,69.28975658124992,62.633008438681685,60.38922461042176,63.12948550345237,59.871506964039725,59.830027148308844,59.85412806087128,60.1726283146058,59.79243921928773,59.86780250016409,59.791005192120274,59.79797872747998,59.79303405024534,59.790261523324645,59.791746018668775,59.790737952462194,59.79043295699703,59.79018776037498,59.79006723894429,59.78998182215329,59.790037426009576,59.78996844194041,59.78998135057396,59.789955612941725,59.78999809902682,59.78993909229614,59.789925963951546,59.78990091861429,59.78988503540434,59.78983114992083,59.78987632114248,59.78981699252643,59.78986340984265,59.789803123848586,59.78979100559698,59.7897723726207,59.789741810523125,59.78969149402481,59.78960905442443,59.789453033053036,59.78953843746109,59.79099062168699,59.78941948098743,59.78982596772749,59.78943383123829,59.789464259074705,59.78943739482611,59.789417831998094,59.78943578089974,59.78941740179147,59.78941114029698,59.78940684191798,59.789402769265905],"feasible_probability":0.1761668772052385,"one_hot_probability":1.0,"sampled_feasible_fraction":0.16796875,"counts":{"0100010011":58,"0100010101":7,"0100011001":11,"0100100011":25,"0100100101":22,"0100101001":4,"0101000011":30,"0101000101":29,"0101001001":27,"0110000011":46,"0110000101":20,"0110001001":21,"1000010011":4,"1000010101":8,"1000011001":4,"1000100011":4,"1000100101":3,"1000101001":24,"1001000011":8,"1001000101":10,"1001001001":52,"1010000011":9,"1010000101":62,"1010001001":24},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13147807501081843},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":4,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[2,3,4,6,7,8,9]],"components":[{"qubits":7,"penalty":29,"objective_bound":28,"offset":87,"linear":[-19,-19,-29,-23,-21,-29,-19],"quadratic":[[0,1,58],[0,2,29],[0,3,29],[1,2,29],[1,3,29],[1,5,29],[2,3,58],[2,4,58],[3,4,58],[4,5,29],[5,6,58]],"domains":[[0,1],[2,3,4],[5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":4,"cost":10},{"index":1,"task":"t1","resource":"r1","start":5,"cost":10},{"index":2,"task":"t2","resource":"r2","start":3,"cost":0},{"index":3,"task":"t2","resource":"r0","start":4,"cost":6},{"index":4,"task":"t2","resource":"r0","start":7,"cost":8},{"index":5,"task":"t3","resource":"r0","start":6,"cost":0},{"index":6,"task":"t3","resource":"r1","start":12,"cost":10}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":3,"reasons":["resource","precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["group"]},{"i":4,"j":5,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":32,"raw_cost":32,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r1","start":5,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r0","start":7,"end":9,"reserved_end":9,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r1","start":12,"end":15,"reserved_end":15,"changed":true}],"bits":[1,0,0,1,0,0,0,1,0,1],"qubo_energy":32},"components":[{"status":"feasible","best":{"feasible":true,"objective":28,"raw_cost":28,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":7,"reserved_end":7,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r0","start":7,"end":9,"reserved_end":9,"changed":true},{"variable":6,"task":"t3","group":"g1","resource":"r1","start":12,"end":15,"reserved_end":15,"changed":true}],"bits":[0,1,0,0,1,0,1],"qubo_energy":28},"seed":3153149895,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.032738608263838,1.2544061743181185],"expected_energy":43.5426345546971,"initial_expected_energy":50.5055727478296,"history":[50.5055727478296,51.441521179246536,52.52433509044204,55.39352885399873,52.69012066149279,53.974746443700134,50.35523987749262,49.766203292083574,49.80861654215648,49.75511028381765,49.80944645173232,49.75016252385535,49.73572266480456,49.72819465947051,49.72446970964505,49.724893794622076,49.7234742764058,49.722935249837406,49.72470303451677,49.7223006069795,49.721222229751874,49.71976194960909,49.71840051093535,49.71802593474102,49.71397626479937,49.713305764319095,49.7093706362363,49.70795882447099,49.70028116380462,49.72276640753447,49.705798574092185,49.70250888598103,49.70131330852637,49.69922567268594,49.700544224168524,49.698848496457316,49.69815944596069,49.69738858287769,49.69586713371321,49.69302273708335,49.69111031313116,49.68451949718455,49.69277181565144,49.68220603411767,49.68798713796923,49.68043182379467,49.67889812305666,49.67770377878513,49.6735747084191,49.67406540001134,49.67346110309585,49.67712619506291,49.67335188277969,49.671906383052104,49.66984910165462,49.66642684793621,49.66596505575403,49.661532307478055,49.659047399574305,49.65027649590176,57.50834166024918,55.789009947462816,50.376148159325666,49.799278610100046,51.506353548096286,56.53734945432181,50.64422973005759,50.02053028678133,49.56833309310932,49.04710902309448,50.119567896147245,49.18104828927089,48.96378735541529,48.91513332140184,49.397731462391945,48.628660665567374,48.44928207527369,48.204649303597634,47.673328087050905,46.573531266460854,45.06375947171005,47.212016322990124,50.32724048645407,44.40857751816439,44.67830503378396,44.66361634660481,44.373929540491815,44.499952063984914,44.32207596112966,44.27345047792183,44.18200601772966,44.02451092908388,44.398768964159984,44.02556336323331,43.985368382704635,43.969117465561894,44.0944144747965,43.93858235028172,43.88206699613876,43.83900416444125,43.83158796541061,43.801270808925906,43.774789278945,43.74653836030194,43.688228777746644,43.6706015339527,43.620170981393,43.60855920636516,43.567764266781424,43.57497635686909,43.56387492118421,43.59329802150508,43.56143976380727,43.55476318547405,43.549803219575836,43.55173223553574,43.547366450439654,43.54526785829921,43.5426345546971,43.54848380687942],"feasible_probability":0.274644795486356,"one_hot_probability":1.0,"sampled_feasible_fraction":0.294921875,"counts":{"0100101":73,"0100110":10,"0101001":16,"0101010":4,"0110001":56,"1000101":64,"1000110":47,"1001001":57,"1001010":34,"1010001":103,"1010010":48},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10679890699975658}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.274644795486356,"total_shots":512,"runtime_seconds":0.10697828800766729},"direct_metrics":{"exact_objective":32,"optimal_count":2,"combinations":24,"optimal_probability":0.1761668772052385,"feasible_probability":0.1761668772052385,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.08333333333333333,"shots_for_95_percent":16,"hit_curve":[{"shots":8,"quantum":0.7878153353310788,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9549776680793375,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9979729896284257,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999958912289535,"uniform":0.9961846700381721},{"shots":128,"quantum":0.999999999983118,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.457167719820518e-16,"independent_samples":[{"shots":8,"best_objective":32},{"shots":16,"best_objective":32},{"shots":32,"best_objective":32},{"shots":64,"best_objective":32},{"shots":128,"best_objective":32},{"shots":512,"best_objective":32}]},"component_metrics":[{"exact_objective":28,"optimal_count":2,"combinations":12,"optimal_probability":0.274644795486356,"feasible_probability":0.274644795486356,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":10,"hit_curve":[{"shots":8,"quantum":0.9233687601762548,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9941276530830756,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999655155416873,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999988108221,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":28},{"shots":16,"best_objective":28},{"shots":32,"best_objective":28},{"shots":64,"best_objective":28},{"shots":128,"best_objective":28},{"shots":512,"best_objective":28}]}],"reduced_single_joint_draw_p_opt":0.274644795486356,"diagnostic_seconds":0.004080034006619826}
+{"instance":"n4-s2-r2.json","seed":7,"direct":{"status":"feasible","best":{"feasible":true,"objective":32,"raw_cost":32,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r1","start":5,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r0","start":7,"end":9,"reserved_end":9,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r1","start":12,"end":15,"reserved_end":15,"changed":true}],"bits":[1,0,0,1,0,0,0,1,0,1],"qubo_energy":32},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.2058165091525366,2.081679496974164],"expected_energy":53.06107396851027,"initial_expected_energy":75.93074073754235,"history":[75.93074073754235,74.9919319860604,69.84784311420023,59.880138233940336,55.75472453659619,76.6013580153449,59.813568558629356,62.31056668942908,55.77634418561456,57.63857470780557,55.90772435387207,56.16316465787945,55.75848838860604,55.79983047456163,55.688884919258086,55.65726599457621,56.04145955802757,55.533179113611496,55.4381242277296,55.29848216701642,54.96237451308804,54.37395252573428,56.41991465020924,57.10918476529258,54.70583796889395,54.32499649366466,54.600340659625914,54.251948773723896,54.205926721275425,54.29737690743491,54.175884930872954,54.147760186793064,54.093616444101144,53.98815682626924,53.818266512330965,53.903998339232224,54.30092531702611,53.77322367278555,53.689004630200074,53.54959424824044,54.0703465245989,53.62589894288806,53.656901029483606,53.5934854759826,53.52967471908606,53.49373471631799,53.44939018439938,53.412857411332055,53.37655254454555,53.304766239315356,53.243035741023,53.256875119992934,53.360203046163306,53.29522574630698,53.17453437053499,53.17992184742613,53.15596845375032,53.13936166901698,53.10904270508833,53.06107396851027,68.73386683903175,73.73608432996811,76.97362683382264,67.05569461597851,70.70343254060325,62.11339117792936,64.66829274082153,62.21462230517089,63.051868014218144,61.12994636073314,61.746212599758024,61.04983103590569,61.30935133366394,60.880796913127924,60.98576351036798,60.78300842812601,60.783183428064675,60.72949132664839,60.67941447034497,60.594612226121974,60.57411543277827,61.189368473425276,60.46138473437181,60.28165721769751,60.08117899897455,59.83356869583907,59.35398806600885,59.06151227917206,59.04236647550108,57.822668041410665,55.507432670957954,57.017308907651746,63.02177416934062,55.14720097613282,57.2140893060688,55.59455793958598,55.15083037109679,55.09238686766595,55.05287178530038,55.095061265853694,54.95600390130164,54.892725736471846,54.812892151504165,54.6600600255904,54.380843304813524,54.82320772051119,55.08955733557244,54.30042963094501,54.40563184686992,54.2628282451307,54.35443449949608,54.24538664816099,54.212889546584734,54.15914337654043,54.05969214271156,54.09912806583169,54.044216584305005,54.153656527943625,54.03808321817958,53.997308727011955],"feasible_probability":0.24222045913969775,"one_hot_probability":1.0,"sampled_feasible_fraction":0.275390625,"counts":{"0100010011":11,"0100010101":43,"0100011001":15,"0100100011":2,"0100100101":5,"0100101001":4,"0101000011":39,"0101000101":38,"0101001001":12,"0110000011":14,"0110000101":19,"1000010011":71,"1000010101":9,"1000011001":6,"1000100011":11,"1000100101":7,"1000101001":7,"1001000011":15,"1001000101":38,"1001001001":5,"1010000101":2,"1010001001":139},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13382410298800096},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":4,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[2,3,4,6,7,8,9]],"components":[{"qubits":7,"penalty":29,"objective_bound":28,"offset":87,"linear":[-19,-19,-29,-23,-21,-29,-19],"quadratic":[[0,1,58],[0,2,29],[0,3,29],[1,2,29],[1,3,29],[1,5,29],[2,3,58],[2,4,58],[3,4,58],[4,5,29],[5,6,58]],"domains":[[0,1],[2,3,4],[5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":4,"cost":10},{"index":1,"task":"t1","resource":"r1","start":5,"cost":10},{"index":2,"task":"t2","resource":"r2","start":3,"cost":0},{"index":3,"task":"t2","resource":"r0","start":4,"cost":6},{"index":4,"task":"t2","resource":"r0","start":7,"cost":8},{"index":5,"task":"t3","resource":"r0","start":6,"cost":0},{"index":6,"task":"t3","resource":"r1","start":12,"cost":10}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":3,"reasons":["resource","precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["group"]},{"i":4,"j":5,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":32,"raw_cost":32,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r1","start":5,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r0","start":7,"end":9,"reserved_end":9,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r1","start":12,"end":15,"reserved_end":15,"changed":true}],"bits":[1,0,0,1,0,0,0,1,0,1],"qubo_energy":32},"components":[{"status":"feasible","best":{"feasible":true,"objective":28,"raw_cost":28,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":7,"reserved_end":7,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r0","start":7,"end":9,"reserved_end":9,"changed":true},{"variable":6,"task":"t3","group":"g1","resource":"r1","start":12,"end":15,"reserved_end":15,"changed":true}],"bits":[0,1,0,0,1,0,1],"qubo_energy":28},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9440201971926437,1.2534774761524219],"expected_energy":43.5005978369466,"initial_expected_energy":45.77387486703946,"history":[45.77387486703946,47.60669667599567,61.05447084257464,49.71058844371146,53.929614762689496,44.57665829977714,45.17606655943729,44.68321227365342,44.67832100196412,44.44896406526068,44.42721529266733,44.93782855598559,44.14683237991056,44.10887554463757,43.91064430857508,43.788323342375996,43.68542325117384,43.65664303986124,45.1813916997051,43.50570052169526,43.7572294627478,43.50195501069568,43.683690679502064,43.564072315333775,43.508525009992375,43.50619356980362,43.50182742203587,43.50188160886261,43.502102884616704,43.5018791806472,43.501920020895895,43.501669322068174,43.5014656734187,43.50145514284089,43.5015295561402,43.501387033081194,43.50125986661536,43.50104837630097,43.501139602596524,43.50106866788215,43.50102320467308,43.50104025965523,43.50106921038186,43.50095681383793,43.50093051326818,43.50110085840686,43.500878052822614,43.500833043033936,43.50075858466463,43.50072654909002,43.500661637581835,43.50094608189502,43.50078695669404,43.500689646353244,43.50061152937674,43.500609132598356,43.5005978369466,43.5005994665971,43.50061618947558,43.50059806513924,45.41394637831603,47.40281629447541,61.161749266328954,49.952893144735775,53.19940423336453,44.51485505994955,45.16769320123851,44.629705191137106,44.55454583007254,44.398794219249744,44.59829228619742,44.5099368889709,44.3861018483972,44.33378246260444,44.2571615967144,44.47403110361235,44.17915590535408,44.092400608831625,43.94060778451974,44.268999833756695,43.98043187814966,43.91684305471095,43.93587074106122,43.90000776430866,43.86575319331303,43.81434392699039,43.88909621925899,43.78469940793355,43.756456636284675,43.72957731568181,43.67312481225857,43.64814383049779,43.605162859016666,43.5906987514874,43.558813989896436,43.57220044413894,43.583864423883234,43.559535047780585,43.55255746875697,43.54782179304512,43.53840499233314,43.523993361551,43.529856410606214,43.55786384614227,43.52159071853026,43.517937884956226,43.51173045998718,43.50414243862258,43.534492791405555,43.50436897397716,43.502541814079024,43.503613368578016,43.507177998269626,43.501737661300425,43.505123357534714,43.501069027633086,43.502616659992086,43.50098894266599,43.50090435728523,43.500909749186114],"feasible_probability":0.2821558918500628,"one_hot_probability":0.9999999999999997,"sampled_feasible_fraction":0.283203125,"counts":{"0100101":73,"0100110":14,"0101001":20,"0101010":11,"0110001":54,"0110010":4,"1000101":63,"1000110":50,"1001001":44,"1001010":34,"1010001":95,"1010010":50},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10141767599270679}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.2821558918500628,"total_shots":512,"runtime_seconds":0.10159121699689422},"direct_metrics":{"exact_objective":32,"optimal_count":2,"combinations":24,"optimal_probability":0.24222045913969775,"feasible_probability":0.24222045913969775,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.08333333333333333,"shots_for_95_percent":11,"hit_curve":[{"shots":8,"quantum":0.8912715979613208,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9881781345901154,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9998602434982305,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999804681202,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999999997,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.5265566588595902e-16,"independent_samples":[{"shots":8,"best_objective":32},{"shots":16,"best_objective":32},{"shots":32,"best_objective":32},{"shots":64,"best_objective":32},{"shots":128,"best_objective":32},{"shots":512,"best_objective":32}]},"component_metrics":[{"exact_objective":28,"optimal_count":2,"combinations":12,"optimal_probability":0.2821558918500628,"feasible_probability":0.2821558918500628,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":10,"hit_curve":[{"shots":8,"quantum":0.9294915575034094,"uniform":0.7674319606386222},{"shots":16,"quantum":0.995028559536705,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999752847797199,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999993891578,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.942890293094024e-16,"independent_samples":[{"shots":8,"best_objective":28},{"shots":16,"best_objective":28},{"shots":32,"best_objective":28},{"shots":64,"best_objective":28},{"shots":128,"best_objective":28},{"shots":512,"best_objective":28}]}],"reduced_single_joint_draw_p_opt":0.2821558918500628,"diagnostic_seconds":0.004129072010982782}
+{"instance":"n4-s2-r2.json","seed":8,"direct":{"status":"feasible","best":{"feasible":true,"objective":32,"raw_cost":32,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r1","start":5,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r0","start":7,"end":9,"reserved_end":9,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r1","start":12,"end":15,"reserved_end":15,"changed":true}],"bits":[1,0,0,1,0,0,0,1,0,1],"qubo_energy":32},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.0829604553644465,2.0871141564047475],"expected_energy":53.47156215615303,"initial_expected_energy":64.77039159686632,"history":[64.77039159686632,64.13678781808025,67.44741316160543,76.19077356241897,60.739354883229865,67.35853439990899,60.61076263286937,61.01138667553306,60.94839834802674,60.338455871843045,60.606430097034874,60.33544648913602,60.38563985463699,60.3375391242121,60.322515837344135,60.31507822205583,60.318035637126265,60.3099223942933,60.30553170786091,60.29555150232619,60.277528954967394,60.27686497367433,60.23480023287519,60.356021660550155,60.27482085569071,60.2305538950728,60.242548208389955,60.22847911053513,60.223698397073235,60.214599976518215,60.198070209783516,60.18297687836711,60.18293315150299,60.13618050554179,60.16277951492682,60.195025843244764,60.14188928612666,60.13547070799041,60.13154167257302,60.12781606534804,60.12087191122929,60.110683454240515,60.28434077368758,60.11308287899125,60.114772293285505,60.11645729855979,60.102984799540906,60.100978875984566,60.10575901399271,60.09756938713224,60.0955729207042,60.102878492216036,60.09160259672943,60.08980740655558,60.08574637632991,60.08297463979619,60.07910723715199,60.07293655277691,60.05912018757424,60.03952114139697,62.69156939288276,60.857486476738835,72.82241776746719,67.72021937813761,62.95408164914354,62.907238694961876,61.03265874010843,60.61172752961037,60.46680045492944,60.87338688606803,60.32168250563741,60.19671460256545,59.945136234013376,59.577096013808976,60.52178177252006,61.264149827093355,59.245051840262846,59.14266483570677,58.74788723475193,58.52376477829738,57.68117155476632,60.419166285657326,58.50928405557808,57.54802985727622,58.129098022895036,57.3874541376706,57.257087125592825,57.63226655627151,57.11472719263082,56.9577591971853,56.766654607658964,57.3571541521255,56.528018941333954,56.40628572706281,56.22462065547012,55.86434579147139,55.18504625435527,54.54862647968414,58.54965464181681,58.9928481373181,54.48043978679943,53.861211282262836,54.55449116018703,53.764286135136835,53.87096815308069,53.75458579691225,53.727491360229166,53.705076079640754,53.71873209872071,53.68541481004411,53.67255028853074,53.68135488890134,53.64812693162523,53.63287879949715,53.64765013464961,53.61068101865865,53.5941552464769,53.55156137162386,53.47156215615303,53.49811771048546],"feasible_probability":0.23129011750440764,"one_hot_probability":0.9999999999999997,"sampled_feasible_fraction":0.232421875,"counts":{"0100010011":13,"0100010101":46,"0100011001":14,"0100100011":2,"0100100101":6,"0100101001":7,"0101000011":31,"0101000101":37,"0101001001":7,"0110000011":30,"0110000101":25,"0110001001":1,"1000010011":75,"1000010101":9,"1000011001":1,"1000100011":5,"1000100101":6,"1000101001":17,"1001000011":15,"1001000101":41,"1001001001":3,"1010000011":2,"1010000101":2,"1010001001":117},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1393405859998893},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":4,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[2,3,4,6,7,8,9]],"components":[{"qubits":7,"penalty":29,"objective_bound":28,"offset":87,"linear":[-19,-19,-29,-23,-21,-29,-19],"quadratic":[[0,1,58],[0,2,29],[0,3,29],[1,2,29],[1,3,29],[1,5,29],[2,3,58],[2,4,58],[3,4,58],[4,5,29],[5,6,58]],"domains":[[0,1],[2,3,4],[5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":4,"cost":10},{"index":1,"task":"t1","resource":"r1","start":5,"cost":10},{"index":2,"task":"t2","resource":"r2","start":3,"cost":0},{"index":3,"task":"t2","resource":"r0","start":4,"cost":6},{"index":4,"task":"t2","resource":"r0","start":7,"cost":8},{"index":5,"task":"t3","resource":"r0","start":6,"cost":0},{"index":6,"task":"t3","resource":"r1","start":12,"cost":10}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":3,"reasons":["resource","precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["group"]},{"i":4,"j":5,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":32,"raw_cost":32,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r1","start":5,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r0","start":7,"end":9,"reserved_end":9,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r1","start":12,"end":15,"reserved_end":15,"changed":true}],"bits":[1,0,0,1,0,0,0,1,0,1],"qubo_energy":32},"components":[{"status":"feasible","best":{"feasible":true,"objective":28,"raw_cost":28,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":7,"reserved_end":7,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r0","start":7,"end":9,"reserved_end":9,"changed":true},{"variable":6,"task":"t3","group":"g1","resource":"r1","start":12,"end":15,"reserved_end":15,"changed":true}],"bits":[0,1,0,0,1,0,1],"qubo_energy":28},"seed":3257320810,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.949591885408794,1.2541717943286441],"expected_energy":43.50059279532992,"initial_expected_energy":61.0042174835403,"history":[61.0042174835403,61.33267838681958,52.30582526245533,44.42474948436092,51.22832678859147,46.69123916391722,50.876599306511146,45.346656023226714,45.89055252326415,44.736442132771316,43.824560225313896,43.751674288320785,43.818653186279946,43.90901221282256,43.63358196650191,43.621246690779905,43.670660133111795,43.61139545123105,43.60013017085127,43.61085873155939,43.59472088503356,43.5852422237153,43.572591420827166,43.56082164272379,43.55249278998696,43.53194137338709,43.53992224479097,43.52894194412161,43.54657563696528,43.524311914765924,43.52057769869994,43.51487660108077,43.535833064300235,43.51593763178222,43.51428388021702,43.51908958433967,43.51070092432575,43.509779088396485,43.50733057615837,43.505633132165585,43.504210899696055,43.502899107248915,43.50146491348064,43.50401801820106,43.5048237469447,43.501108668458585,43.50111157677676,43.501198291579215,43.50105201269284,43.50140225502488,43.50100859650708,43.500942043269944,43.50087306766261,43.50078986295063,43.50067583845586,43.50071340858355,43.500675286884146,43.500718769089886,43.50064067448401,43.50059279532992,48.55171148434148,49.3074919170419,58.602062348660596,48.199170575509314,50.69219840102516,49.39847455735382,48.10169547500652,49.511897891950085,47.69508111352387,46.67952619024021,44.92651825581703,44.84648070881226,44.79401200077065,45.43578760096854,44.13447171800832,43.869346074997125,43.82213874842661,44.17963739138922,43.73503570201784,43.68837414384933,43.64167762155798,43.59567370792022,43.59032180807412,43.53826237286443,43.512463081253856,43.51856421882559,43.60124884321786,43.50437622078752,43.514592534284034,43.505184867481795,43.50371265079302,43.50235252715666,43.50391157129695,43.503393513433025,43.502608502763664,43.50249908700498,43.502224325548966,43.50247136240342,43.502177662239944,43.502090441284764,43.50200070994981,43.50186060093293,43.50160125994405,43.501306638252686,43.50089023782503,43.50589045265861,43.50178613038639,43.50106262829948,43.50089487220537,43.50094279401142,43.50084084451121,43.500804134486884,43.500734070520295,43.50066227879623,43.50067399240686,43.500745370647095,43.500690774239025,43.50062952157306,43.50064808876496,43.50060966984057],"feasible_probability":0.2813417684590736,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.248046875,"counts":{"0100101":75,"0100110":13,"0101001":14,"0101010":7,"0110001":54,"0110010":2,"1000101":84,"1000110":43,"1001001":55,"1001010":38,"1010001":85,"1010010":42},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1059379229991464}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.2813417684590736,"total_shots":512,"runtime_seconds":0.10617840199847706},"direct_metrics":{"exact_objective":32,"optimal_count":2,"combinations":24,"optimal_probability":0.23129011750440764,"feasible_probability":0.23129011750440764,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.08333333333333333,"shots_for_95_percent":12,"hit_curve":[{"shots":8,"quantum":0.8780730486200647,"uniform":0.5014697532613109},{"shots":16,"quantum":0.985133818527195,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9997789966484176,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999999511575186,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999999977,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":32},{"shots":16,"best_objective":32},{"shots":32,"best_objective":32},{"shots":64,"best_objective":32},{"shots":128,"best_objective":32},{"shots":512,"best_objective":32}]},"component_metrics":[{"exact_objective":28,"optimal_count":2,"combinations":12,"optimal_probability":0.2813417684590736,"feasible_probability":0.2813417684590736,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":10,"hit_curve":[{"shots":8,"quantum":0.9288492905298764,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9949375765418981,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999743718687308,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999993431989,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.8041124150158794e-16,"independent_samples":[{"shots":8,"best_objective":28},{"shots":16,"best_objective":28},{"shots":32,"best_objective":28},{"shots":64,"best_objective":28},{"shots":128,"best_objective":28},{"shots":512,"best_objective":28}]}],"reduced_single_joint_draw_p_opt":0.2813417684590736,"diagnostic_seconds":0.004407289001392201}
+{"instance":"n4-s2-r2.json","seed":9,"direct":{"status":"feasible","best":{"feasible":true,"objective":32,"raw_cost":32,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r1","start":5,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r0","start":7,"end":9,"reserved_end":9,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r1","start":12,"end":15,"reserved_end":15,"changed":true}],"bits":[1,0,0,1,0,0,0,1,0,1],"qubo_energy":32},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.731548207208116,1.1548118466242092],"expected_energy":59.967942937728765,"initial_expected_energy":66.1543504521425,"history":[66.1543504521425,66.17192655915994,64.93792914816387,70.71928247041592,68.58427246294256,65.82663497925697,63.354883694372695,63.77770930875599,63.24811572864878,63.32449805126477,63.30082465391004,63.2872403701459,63.25902752907862,63.242641049649976,63.23386499396376,63.22812024379176,63.23758132093702,63.224793721018195,63.22473351875524,63.2189022056138,63.21151350184339,63.203547289347554,63.19181087415292,63.2429984691299,63.18395140895444,63.1775833656515,63.16972401353893,63.21634953940115,63.15227887988938,63.14531193467805,63.137117105220696,63.13029993100457,63.173796527403894,63.11585275775181,63.109088345664304,63.10005480979932,63.08234006853965,63.05140644484048,63.44733139690451,63.0585782932896,63.04683732187433,63.06608328601696,63.02741841567095,63.01702532077549,63.00565908764084,62.99718091266435,62.984140496628015,62.962325800953764,62.90801720272577,62.80608222551193,62.48980505014853,64.19135404803914,64.54189828940085,62.53626176625906,62.45465003693023,62.469154370556616,62.41725403382298,62.357283018230696,62.260362624121086,62.51985758232333,68.55204874213032,68.7392159213309,62.071791330698545,65.28947125049089,60.80059329111468,62.491881950559055,61.38560027851081,61.01840709540551,60.21537355916951,60.166721469740125,60.25477970439407,60.29578869666321,60.22579140989106,60.198215285454225,60.12393359466604,60.11316969491541,60.10306274926459,60.09821227292069,60.087948676695035,60.10354829661371,60.09492082658359,60.089390432434755,60.09034836751752,60.08584639223008,60.08997231019029,60.0838624344608,60.08202659556537,60.078569386848066,60.07278985018118,60.07051899542081,60.0523416902574,60.14039785107704,60.075467938717935,60.04995840213967,60.07044008980414,60.04582727035556,60.04467717536424,60.05138675281303,60.04247465316503,60.04065644642631,60.03750508657674,60.03081302936246,60.0177150950021,59.99665381994134,60.26584248403868,60.21943039778755,60.010335535104275,60.014187686632205,59.999672454345735,59.99245213274898,59.990295969346775,59.99559146802463,59.98867186096895,59.987187705607916,59.98414379394397,59.97814895110416,59.967942937728765,59.97269903216616,60.01749565490489,59.96820114123119],"feasible_probability":0.18712664004661458,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.228515625,"counts":{"0100010011":41,"0100010101":7,"0100011001":9,"0100100011":12,"0100100101":4,"0100101001":3,"0101000011":35,"0101000101":26,"0101001001":43,"0110000011":33,"0110000101":24,"0110001001":11,"1000010011":7,"1000010101":19,"1000011001":24,"1000100101":6,"1000101001":22,"1001000011":7,"1001000101":11,"1001001001":46,"1010000011":5,"1010000101":52,"1010001001":65},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13589258199499454},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0],"fixed_cost":4,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["group"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[2,3,4,6,7,8,9]],"components":[{"qubits":7,"penalty":29,"objective_bound":28,"offset":87,"linear":[-19,-19,-29,-23,-21,-29,-19],"quadratic":[[0,1,58],[0,2,29],[0,3,29],[1,2,29],[1,3,29],[1,5,29],[2,3,58],[2,4,58],[3,4,58],[4,5,29],[5,6,58]],"domains":[[0,1],[2,3,4],[5,6]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":4,"cost":10},{"index":1,"task":"t1","resource":"r1","start":5,"cost":10},{"index":2,"task":"t2","resource":"r2","start":3,"cost":0},{"index":3,"task":"t2","resource":"r0","start":4,"cost":6},{"index":4,"task":"t2","resource":"r0","start":7,"cost":8},{"index":5,"task":"t3","resource":"r0","start":6,"cost":0},{"index":6,"task":"t3","resource":"r1","start":12,"cost":10}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":0,"j":3,"reasons":["resource","precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["group"]},{"i":4,"j":5,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":32,"raw_cost":32,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":1,"end":2,"reserved_end":2,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r1","start":5,"end":7,"reserved_end":7,"changed":true},{"variable":7,"task":"t2","group":"g0","resource":"r0","start":7,"end":9,"reserved_end":9,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r1","start":12,"end":15,"reserved_end":15,"changed":true}],"bits":[1,0,0,1,0,0,0,1,0,1],"qubo_energy":32},"components":[{"status":"feasible","best":{"feasible":true,"objective":28,"raw_cost":28,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":5,"end":7,"reserved_end":7,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r0","start":7,"end":9,"reserved_end":9,"changed":true},{"variable":6,"task":"t3","group":"g1","resource":"r1","start":12,"end":15,"reserved_end":15,"changed":true}],"bits":[0,1,0,0,1,0,1],"qubo_energy":28},"seed":747784396,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9477933523486242,1.2539990635050218],"expected_energy":43.50055369492921,"initial_expected_energy":48.7754033372922,"history":[48.7754033372922,50.13091335705407,59.23022289744944,49.92929384221034,53.246556170851996,49.13310997622186,48.55699749273121,48.27683611380486,48.08659838453186,48.26343825328901,47.95441738179364,47.840268483944214,47.76131151790547,47.44662285918253,47.175740885926515,46.64476112520517,46.19632802723113,45.226384036608934,46.57980027084396,46.406630627481604,45.30325748504044,44.916382874658105,44.919425667399494,44.82064410239898,44.738178484801224,44.643723708926544,45.03079891399039,44.55640672638302,44.424022111686895,44.28353288439101,44.093228098609565,43.80233962575934,43.56264047961883,45.79925381406218,44.69589834827009,43.549407308928636,43.54332540506168,43.62910809114897,43.50906038340912,43.50104552053152,43.50543421410511,43.5012015562982,43.505017151586316,43.50112756448755,43.501320097728694,43.50114598874215,43.50114899568179,43.50086624141757,43.500631681431436,43.50055649198016,43.500596936597596,43.50055719635449,43.50055874366057,43.50055732420482,43.50055682780308,43.50055578323325,43.500555567840706,43.500557139061485,43.50055445826091,43.50055369492921,58.47409690910265,54.90955166930412,52.55196275774211,53.85515923594446,55.16568703236423,49.823844697338835,50.64730921776096,49.50175668046883,49.73675339589561,49.32629971184113,49.39351892523952,49.39249740572104,49.35750791733456,49.28002631559485,49.25950175203397,49.2351711578439,49.211314440142516,49.15937812781482,49.061698406266856,48.8108344143317,49.654282878167905,49.699907742900486,48.75311168090839,49.0888153002777,48.74155987963261,48.67753257812353,48.54616510283137,48.25339142550713,48.17526654970929,48.4230902929866,50.1069384982801,48.15356706184898,47.632650102753196,47.578619511758426,47.390395224466324,47.24433354019204,47.4417395458623,47.29150047555936,47.25097289284792,47.27406523884278,47.20384774886122,47.18966522588268,47.23480271879568,47.183963442174836,47.168289961234336,47.13983445581495,47.1378011936622,47.09707843663472,47.03553451251379,46.96019923699931,46.84907243524111,46.84197579741689,46.62174345400276,47.109909011777205,46.78397405023487,46.59906884894606,46.64120173931501,46.58464187725052,46.56021728597928,46.51680134711521],"feasible_probability":0.2815741915361557,"one_hot_probability":1.0,"sampled_feasible_fraction":0.275390625,"counts":{"0100101":67,"0100110":15,"0101001":19,"0101010":13,"0110001":51,"0110010":1,"1000101":69,"1000110":50,"1001001":42,"1001010":44,"1010001":102,"1010010":39},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10796668400871567}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.2815741915361557,"total_shots":512,"runtime_seconds":0.10814138001296669},"direct_metrics":{"exact_objective":32,"optimal_count":2,"combinations":24,"optimal_probability":0.18712664004661458,"feasible_probability":0.18712664004661458,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.08333333333333333,"shots_for_95_percent":15,"hit_curve":[{"shots":8,"quantum":0.8093735648628704,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9636615622269097,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9986795179402113,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999982563271298,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999969597,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":32},{"shots":16,"best_objective":32},{"shots":32,"best_objective":32},{"shots":64,"best_objective":32},{"shots":128,"best_objective":32},{"shots":512,"best_objective":32}]},"component_metrics":[{"exact_objective":28,"optimal_count":2,"combinations":12,"optimal_probability":0.2815741915361557,"feasible_probability":0.2815741915361557,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":10,"hit_curve":[{"shots":8,"quantum":0.9290331705349024,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9949637091156718,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999746357741285,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999993566561,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":28},{"shots":16,"best_objective":28},{"shots":32,"best_objective":28},{"shots":64,"best_objective":28},{"shots":128,"best_objective":28},{"shots":512,"best_objective":28}]}],"reduced_single_joint_draw_p_opt":0.2815741915361557,"diagnostic_seconds":0.004411793008330278}
+{"instance":"n4-s2-r3.json","seed":0,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":22,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["precedence"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":2,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":5,"task":"t2","group":"g0","resource":"r0","start":7,"end":10,"reserved_end":10,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r2","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[1,1,0,0,0,1,0,0,0,1],"qubo_energy":53},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[5.402530366910302,0.2612055415593897],"expected_energy":66.55247559078914,"initial_expected_energy":89.16620142681192,"history":[89.16620142681192,86.6883356198249,83.33072272042435,93.15836055722731,84.20833301972138,85.504715885597,83.09084305467891,82.63474236819104,82.5942920896237,82.91175104346513,82.50123794047373,82.4289993091961,82.3043459661544,82.14478343321716,81.9960231092791,81.84604272404934,82.98052772100125,81.6643201913032,81.86494698732471,81.77390111490767,81.49802403835386,81.45437421124299,81.54381696318006,81.45778436652569,81.41522988333521,81.35516258588846,81.54700732429737,81.29141920107195,81.21981563029243,81.13962416165877,81.51402351559484,81.0060632211887,80.9495524591992,80.85755322529485,80.6652328269268,80.27025199592768,79.65398327938183,81.0915141875737,86.51701037858867,79.64760785648733,79.34914756426753,78.82115380996882,78.13223083827583,78.42274267253372,79.6800661825753,78.25191941611138,78.19997127956064,78.04148361034717,77.9732335162152,78.0512190993715,77.94818215312117,77.88183781703117,77.7632547932749,77.64832077967176,78.14899246136805,78.10305838567267,77.56760568246801,77.59760655990749,77.5745204080795,77.58532610086428,89.36986439566792,87.13492347287608,87.1292090575266,86.11222437312483,85.21328943045543,82.32764676950157,91.8151548024946,107.11359946459405,78.61605938570203,74.11774632141217,86.67448572190172,75.2748652207564,72.66105410645812,76.51810349771313,81.94364058636113,73.85612826163879,71.2440012320256,71.68292265702492,72.223688491421,71.30307338811993,70.70923413460646,70.50753061776038,69.95684382965348,69.73519174817112,69.20646284633398,69.07936505905924,68.25158415940533,70.53412403787473,68.00752671883113,67.90002302190358,69.14750826867741,67.59126766723867,67.5119517854493,67.36290880738996,67.12380803366584,67.88721686957015,67.37181932105094,67.08940937764126,67.40854925815708,67.01370081189098,66.98717556984205,66.93055966704281,66.8836970732017,66.80137940720294,66.66676673820261,66.77847538341828,67.51599570829043,66.65493650434317,66.61147364182511,66.62467911724744,66.59228570539767,66.66445363480803,66.59682958743157,66.58514043758979,66.57958426627137,66.58915758331369,66.57477511008831,66.57095609240986,66.56321978180664,66.55247559078914],"feasible_probability":0.0,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.0,"counts":{"0100010101":8,"0100100011":2,"0100100101":24,"0100101001":5,"0101000101":4,"0110000011":3,"0110000101":26,"0110001001":2,"1000010011":2,"1000010101":34,"1000011001":13,"1000100011":12,"1000100101":206,"1000101001":51,"1001000011":1,"1001000101":12,"1001001001":4,"1010000011":16,"1010000101":80,"1010001001":7},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1384981490118662},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0,2,7],"fixed_cost":25,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":5,"forced_by":2,"reasons":["precedence"]},{"variable":8,"forced_by":7,"reasons":["resource","precedence"]},{"variable":9,"forced_by":7,"reasons":["precedence"]}],"infeasible_task":"t3","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.158999945502728e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":24,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.440892098500626e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.002507450000848621}
+{"instance":"n4-s2-r3.json","seed":1,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":22,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["precedence"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":2,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":5,"task":"t2","group":"g0","resource":"r0","start":7,"end":10,"reserved_end":10,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r2","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[1,1,0,0,0,1,0,0,0,1],"qubo_energy":53},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.157608233325918,0.38061822209747764],"expected_energy":76.77397789933063,"initial_expected_energy":84.6948178337158,"history":[84.6948178337158,84.28370185524713,92.13050765441511,87.50429305426235,85.01868912639759,86.38458102509583,84.19337986518703,83.9854346870549,83.97736314600832,84.04551141323628,83.95291847375042,83.90463433100837,83.7884949840413,84.09060774325113,84.0001695480606,83.93349747137088,83.77785433037596,83.73588898327684,83.63912167594046,83.48469058509852,82.7574595968742,84.78211827225647,85.35647259276452,83.21766290059529,82.79562471807624,82.80924378185755,82.70015739351477,82.71771223505344,82.72923346428352,82.64918776941315,82.57830818590804,82.60365459803386,82.5238689555195,82.48410785455619,82.48448031438085,82.43264513936387,82.38632981560782,82.31821695784438,82.48379220360917,82.20106222977671,82.09610868620018,82.12984640256519,81.9977055901085,81.96760834498158,82.17836733032263,81.88337023357988,81.80759612683448,81.6729971566847,81.41874151000658,80.90044424636417,80.2771215885761,79.81140406947667,79.48154446703442,83.64634772292585,77.24931061043353,78.65868344529787,77.8432423321987,77.66091342584137,76.77397789933063,77.01083413550288,94.81686254340775,92.00157107335824,84.68450198869013,81.88863908929926,86.37048809589243,84.8026429779874,83.53272155954255,81.34878944157703,80.87536656623507,81.26363057835485,80.71685122783457,80.93321949207876,80.57188376936423,80.52810198648929,80.40143894105037,80.53320317531063,80.48243654513627,80.41058551340306,80.4129638458219,80.38850007676137,80.39249311931286,80.39312195403434,80.38068829843473,80.37033481850656,80.37332611668955,80.3627458438979,80.35684909650539,80.35322117587295,80.37513611107204,80.35265602983502,80.34373093816217,80.33066704679564,80.30735605020858,80.29821991074792,80.27890476992502,80.27729887373276,80.26512221107588,80.26217936928157,80.25749840939929,80.25252373499139,80.28579501880952,80.25219546177826,80.25115969836702,80.2499501920523,80.2527371163988,80.24900544728384,80.25063889530846,80.24956727252433,80.24940774282834,80.24893160076996,80.24902199830447,80.24893490293931,80.2489161243437,80.24892416586117,80.24890825245713,80.24890814613744,80.248913925068,80.24890862705483,80.24890509299738,80.248900066456],"feasible_probability":0.0,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.0,"counts":{"0100010011":5,"0100010101":28,"0100011001":13,"0100100011":4,"0100100101":31,"0100101001":1,"0101000011":1,"0110000011":12,"0110000101":34,"0110001001":3,"1000010101":59,"1000011001":16,"1000100011":1,"1000100101":131,"1000101001":19,"1001000011":12,"1001000101":44,"1001001001":11,"1010000011":57,"1010000101":25,"1010001001":5},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13302778599609155},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0,2,7],"fixed_cost":25,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":5,"forced_by":2,"reasons":["precedence"]},{"variable":8,"forced_by":7,"reasons":["resource","precedence"]},{"variable":9,"forced_by":7,"reasons":["precedence"]}],"infeasible_task":"t3","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.108299617655575e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":24,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.00263325400010217}
+{"instance":"n4-s2-r3.json","seed":2,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":22,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["precedence"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":2,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":5,"task":"t2","group":"g0","resource":"r0","start":7,"end":10,"reserved_end":10,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r2","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[1,1,0,0,0,1,0,0,0,1],"qubo_energy":53},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[5.1282875587948755,0.277214816759602],"expected_energy":67.62623913261028,"initial_expected_energy":84.66738389443573,"history":[84.66738389443573,82.03814698326794,86.45477846050804,85.25218316739037,83.93177947259824,83.21139139244897,82.23470377904226,81.98886586172796,81.7231907811366,81.46181191160863,80.92687140570933,79.63440795261127,79.2361559975392,77.32696512312384,84.73388179093467,73.73849833119533,79.30335140062917,73.12386428131137,74.10858990252241,73.21934393079317,72.728637142275,72.82489995973843,72.495435020236,72.4000453687681,72.70206558674997,72.34480602199423,72.20416864123025,71.9540734078652,72.03293459097421,71.76804738635482,71.69274496411512,72.0525238765725,71.6073134865515,71.4517347051902,71.19183872229094,70.75607873068834,69.88717328051754,70.93452722303407,70.45552238905412,70.26635411252725,69.54061839444815,69.21861329275012,70.389154172125,68.97706271112851,68.75434864092445,69.28458893032874,68.45035017972452,68.32083986786347,68.13140414093337,67.80842317200272,68.42893886151722,67.95588010728902,67.85269261315736,67.8683087911575,67.73250236186654,67.72374936652739,67.83511055363185,67.726319941531,67.6860059933841,67.62623913261028,82.13345773552983,80.76235169582941,84.87213098432879,88.59387565055397,82.11205125870714,82.03277216554412,80.8380013934202,80.62210727475863,80.62957772841642,80.67792353594473,80.6312726049621,80.59741302292822,80.5490889955783,80.46228716309886,80.43356639760898,80.38610995328334,80.71396948294425,80.63325886962231,80.31775464779592,80.27563295667629,80.25987953975721,80.31513105675766,80.25293162306721,80.25199780598791,80.25065016357114,80.25018765678647,80.25334280754257,80.24900105404629,80.25071096526219,80.24893899339428,80.24914376189099,80.24894780214363,80.2488984480311,80.24888963230948,80.24887607344475,80.24887258204468,80.24886024847865,80.2488662977519,80.24885878722003,80.24886770375389,80.24885625260949,80.24885420399043,80.24885086811885,80.24885036806378,80.24884556892133,80.2488541771529,80.24884952792235,80.24884512166372,80.24884585235787,80.24884492386781,80.24884573571629,80.24884447737449,80.24884424235788,80.24884389823468,80.24884367270897,80.24884348420818,80.24884329515068,80.24884345525119,80.24884328027294,80.24884306893127],"feasible_probability":0.0,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.0,"counts":{"0100010101":9,"0100100011":1,"0100100101":21,"0100101001":1,"0101000101":1,"0101001001":1,"0110000011":4,"0110000101":28,"0110001001":4,"1000010011":2,"1000010101":41,"1000011001":14,"1000100011":18,"1000100101":237,"1000101001":20,"1001000011":1,"1001000101":5,"1001001001":2,"1010000011":21,"1010000101":79,"1010001001":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.132446161005646},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0,2,7],"fixed_cost":25,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":5,"forced_by":2,"reasons":["precedence"]},{"variable":8,"forced_by":7,"reasons":["resource","precedence"]},{"variable":9,"forced_by":7,"reasons":["precedence"]}],"infeasible_task":"t3","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":3.978799213655293e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":24,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.7755575615628914e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.002421355005935766}
+{"instance":"n4-s2-r3.json","seed":3,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":22,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["precedence"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":2,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":5,"task":"t2","group":"g0","resource":"r0","start":7,"end":10,"reserved_end":10,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r2","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[1,1,0,0,0,1,0,0,0,1],"qubo_energy":53},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4262362951807133,2.9076144916170534],"expected_energy":67.15820974869479,"initial_expected_energy":102.10414304532743,"history":[102.10414304532743,97.08415125792688,84.02365591485072,81.64717089765881,82.76280357635821,79.43148905042389,86.34605204184177,84.87821682755492,81.22061151574853,79.28713195604661,83.54063427663617,79.13268477890453,76.92839864209333,72.69175180146195,72.30074714435887,72.25900642316316,75.78470653664502,70.12262613901899,69.41258576293049,69.37050923447575,70.4940829787781,69.06041727381462,68.92841681916813,68.7917305176156,68.81459049420347,68.71844757102518,68.95369471680436,68.7681859990564,68.65569710501282,68.58559231944338,68.55635825099314,68.3614674845764,68.35730970027262,68.23872600463794,68.12480085341268,68.03393257218954,68.23740073102498,67.95685695856945,67.92412265401398,67.85576425954079,67.75668308112184,67.56685769064028,67.22507024628153,68.61622008143209,70.68144863303567,67.94015525141559,67.1962777179366,67.43010941932398,67.21699465449738,67.1987734787772,67.20293986302816,67.1894635042481,67.19497496430003,67.19615758604098,67.18919177686294,67.18624041697589,67.18115547234258,67.17972713310324,67.16626041483833,67.15820974869479,82.91648662845375,87.69119408462564,85.16342924943012,84.06794526593187,85.8172297512222,82.26725434655845,83.01004541673518,82.10685821672593,81.8594216507349,81.5718279782902,81.11458182906105,82.8341742002476,81.1676211581086,81.05413478858839,81.2530626941359,80.80882310103397,80.7333276111151,80.5665262252221,80.46638529566226,80.39980642362097,80.31717497261417,80.25312775018773,80.56632454433245,80.36806329429272,80.2582557777883,80.44919102066316,80.27062350410301,80.2726575401791,80.25241440168863,80.250078872431,80.25044125163242,80.25035694725895,80.25020613965465,80.25002996586824,80.24995087373222,80.24991062260163,80.25006797261375,80.24987468441905,80.24980953466704,80.24969260687311,80.24953905423249,80.25006300765773,80.24948238580461,80.24937554303715,80.24930885187275,80.24942444190424,80.24926251295818,80.24922026458705,80.24917994083991,80.24909823602312,80.24904782759826,80.24899320655305,80.24895025346876,80.24910940392498,80.24895522808275,80.24894474751703,80.24896564105225,80.24891774165769,80.24891055253681,80.24889177474901],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"0100010011":35,"0100010101":31,"0100011001":6,"0100100011":10,"0100100101":44,"0100101001":9,"0101000101":2,"0110000011":9,"0110000101":90,"0110001001":2,"1000010011":10,"1000010101":5,"1000011001":7,"1000100011":52,"1000100101":108,"1000101001":19,"1001000011":5,"1001001001":5,"1010000011":6,"1010000101":54,"1010001001":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13838033100182656},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0,2,7],"fixed_cost":25,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":5,"forced_by":2,"reasons":["precedence"]},{"variable":8,"forced_by":7,"reasons":["resource","precedence"]},{"variable":9,"forced_by":7,"reasons":["precedence"]}],"infeasible_task":"t3","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.2247993405908346e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":24,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.0029650270007550716}
+{"instance":"n4-s2-r3.json","seed":4,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":22,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["precedence"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":2,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":5,"task":"t2","group":"g0","resource":"r0","start":7,"end":10,"reserved_end":10,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r2","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[1,1,0,0,0,1,0,0,0,1],"qubo_energy":53},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3828886153275362,2.9114192022283163],"expected_energy":67.08661341867024,"initial_expected_energy":84.55921972300607,"history":[84.55921972300607,84.63429228987647,88.63501663482704,90.65513636139889,90.17317124770692,84.54099302847705,83.94007650637451,84.5906921513207,83.9769045193728,83.98187530669946,83.97012762627499,83.95633364077676,83.94804572558878,83.930186227794,83.93470483370474,83.92827005751259,83.92513963137762,83.9220582211756,83.9345105391318,83.9168562952829,83.91217004232848,83.90375561108888,83.88696879491937,83.86558808411542,83.82221440146981,83.8273246405179,83.86092983301212,83.82443362334719,83.80706330019707,83.78223333008889,83.71804313139288,83.56301788341415,83.64898591978667,83.73077396988535,83.61291571713335,83.53977776133722,83.51963992620298,83.58584569053824,83.51081656572231,83.48429538901792,83.43792995126893,83.3620366575777,83.7605835881863,83.26677742261347,83.18172265958945,83.52159862508643,83.08228536323969,82.99588899697382,83.27000007940201,82.85458053267352,82.76685328860786,83.0829548564601,82.66752433681455,82.58712601499357,82.42506524964176,82.2010371242588,81.84216420941266,81.83665592539644,82.49204990632225,81.86100288201973,84.08352081730297,84.37893407197063,82.23042766204439,84.84401580237619,77.79425712298166,77.53123969445008,84.70166359924903,78.16443921342601,74.26186275828493,81.52731241522797,75.47447102383265,74.06806557812438,73.80875356166464,74.63280531079869,73.57662753767175,73.36892883917017,72.95937902140551,72.14589892612769,70.51869832034599,68.1591008040936,84.64032854326597,83.24522444571372,76.61465217064293,68.15113645950025,72.10506090384665,67.60808892446347,68.56642112211921,67.56104896521961,67.49034268081037,67.4203226929784,67.32891525869148,67.24493477628387,67.48854257840398,67.6096517685217,67.18953864642383,67.20688583377309,67.19493636298145,67.18508155032038,67.17232967119142,67.15567880961842,67.13492609763105,67.10555362624746,67.21600494827702,67.27956458643432,67.10986220786641,67.10417045799541,67.1178106992793,67.09574359184612,67.10494380311451,67.09278710837745,67.09539313546288,67.0918924242383,67.09060290213708,67.09123270276085,67.09026258198287,67.08962538248228,67.08851082088901,67.08735938625748,67.09029610886721,67.08661341867024],"feasible_probability":0.0,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.0,"counts":{"0100010011":28,"0100010101":24,"0100011001":2,"0100100011":8,"0100100101":41,"0100101001":10,"0101000101":9,"0110000011":10,"0110000101":98,"1000010011":10,"1000010101":3,"1000011001":4,"1000100011":54,"1000100101":108,"1000101001":22,"1001000011":4,"1001001001":1,"1010000011":6,"1010000101":66,"1010001001":4},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13447013999393675},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0,2,7],"fixed_cost":25,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":5,"forced_by":2,"reasons":["precedence"]},{"variable":8,"forced_by":7,"reasons":["resource","precedence"]},{"variable":9,"forced_by":7,"reasons":["precedence"]}],"infeasible_task":"t3","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.086500848643482e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":24,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.0030572560062864795}
+{"instance":"n4-s2-r3.json","seed":5,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":22,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["precedence"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":2,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":5,"task":"t2","group":"g0","resource":"r0","start":7,"end":10,"reserved_end":10,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r2","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[1,1,0,0,0,1,0,0,0,1],"qubo_energy":53},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.303780746394961,2.9108293800333316],"expected_energy":67.03637097081842,"initial_expected_energy":84.7219433233744,"history":[84.7219433233744,84.86745922296356,67.64003202441762,99.33186836116002,74.37722530049412,69.5310953502424,69.37958202302373,67.81008114316205,67.06423313204942,68.13809171651356,67.05717305532949,67.1458262385677,67.06352649768289,67.04108973162542,67.04145621128214,67.03958928722908,67.03910191970877,67.03919474813705,67.03881934423286,67.0383749061211,67.03798795811853,67.03832404858495,67.03787597956256,67.03777951559906,67.03766396836978,67.03744793428031,67.03717011596825,67.03732616517043,67.03761271793958,67.03718877490014,67.0370400685487,67.037028983732,67.0369262464585,67.03686419174983,67.03678884577096,67.03666240106226,67.03670136265886,67.03694921234543,67.03668515477173,67.03665781962998,67.03672355258342,67.03665425616971,67.03663231867567,67.03661708579733,67.03660340148751,67.03659063293516,67.03656487170655,67.03652957990455,67.03650065999246,67.03646975691083,67.0365389852462,67.03644947558277,67.03644536905735,67.03651374943895,67.03643341713403,67.03641608844535,67.03640452929695,67.03638585905003,67.03637097081842,67.03640865890257,85.55416108811352,89.8999920007353,81.20607612854575,90.37263419208554,81.7338405630136,82.12633374886909,81.14368263446006,81.11635448580178,80.97277961649223,80.51197414123064,79.76319393797543,74.31428568338274,86.21981945835097,81.98452322946387,71.89425524628795,78.64250624047716,73.3107809444961,71.51392199666039,70.97643143702172,70.80286558438937,77.25592661750136,69.61396376977495,69.69968400911331,69.4976484725718,70.08363135170076,69.8127076591617,69.58078295580648,69.32739447010835,69.1211514659387,69.42104573138421,69.01060312529691,68.90233153556014,68.7018643449827,68.33384686219479,67.80351160126246,67.99418749009737,68.94185846902002,67.81397207972269,67.8781125941608,67.69211128715503,67.60248381197084,67.4934217459064,67.33651302261431,69.74920800798442,67.76608065355477,67.67464651213496,67.30636790901886,67.27248444952855,67.26355318310753,67.39455311606793,67.23782125035979,67.22359781017926,67.2136036412297,67.22628546523725,67.20723966331617,67.20109014306115,67.19327295556405,67.18080039894772,67.17110293216656,67.15130550407497],"feasible_probability":0.0,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.0,"counts":{"0100010011":34,"0100010101":28,"0100100011":4,"0100100101":60,"0100101001":16,"0101000101":2,"0110000011":16,"0110000101":102,"0110001001":4,"1000010011":9,"1000010101":8,"1000011001":3,"1000100011":56,"1000100101":89,"1000101001":29,"1001000011":5,"1001001001":3,"1010000011":3,"1010000101":40,"1010001001":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1329846749868011},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0,2,7],"fixed_cost":25,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":5,"forced_by":2,"reasons":["precedence"]},{"variable":8,"forced_by":7,"reasons":["resource","precedence"]},{"variable":9,"forced_by":7,"reasons":["precedence"]}],"infeasible_task":"t3","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.572700709104538e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":24,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.0027367170114303008}
+{"instance":"n4-s2-r3.json","seed":6,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":22,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["precedence"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":2,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":5,"task":"t2","group":"g0","resource":"r0","start":7,"end":10,"reserved_end":10,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r2","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[1,1,0,0,0,1,0,0,0,1],"qubo_energy":53},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[5.138122888678362,0.2601954489579212],"expected_energy":67.62278043958591,"initial_expected_energy":84.02776347678278,"history":[84.02776347678278,83.73064266740768,89.94672958297835,88.99153469513541,86.18891645559336,83.64663183666755,83.46806872100804,84.18409695403635,83.75254253881067,83.6499976156407,83.27018782985036,83.16962422401,83.42718118519814,83.07383336398983,82.99648573666026,82.82434527271477,82.4255207165582,81.73557844736789,78.90661225675788,88.80429020902724,84.9331927364712,77.90543181722991,80.53824426664778,78.22926196046977,77.80255405703329,78.75421516693127,77.8539591560292,77.426981094439,77.02701282593176,77.53532092801042,76.80446795869794,76.63755290599399,76.39280400990644,75.94560488267332,75.0344902957137,73.35171635952271,89.67332128284673,75.22462022265728,75.33755204128965,72.97109188605971,72.7034642707413,72.2478163260638,72.01473963858645,73.12479383825399,71.90694997284835,71.54636983611442,71.29910834885955,71.46380034576237,71.17326424509172,71.05921144568799,70.90184628543197,70.63327096094032,70.23438832468615,69.31710387587229,67.88992765808104,83.10763032946132,74.95234754000342,70.82934606116864,67.77323411364176,67.63628130721186,90.55722222924989,86.690354019335,84.88331060163426,85.66730570742946,87.9990225553638,84.514315834174,83.47973484067879,82.88457028183947,82.4932756442187,84.18912038397329,82.23879731577222,82.18626340199401,81.85841618017663,81.6498796494407,80.88584043874395,81.29117665214024,81.36422528155978,80.76565293959294,81.0277907142775,80.5335577894187,80.63981343160724,80.38491885145712,80.35097504617775,80.58286799675476,80.25232674044534,80.06609748566574,79.72616336047948,79.02764098328467,77.49559448897926,78.04826018380194,80.90982278988626,77.41686609187096,76.81537495102985,75.7042383958198,74.00672054326152,70.07469033478998,73.25520828313185,89.53858749365051,77.38731286529196,69.51636673566978,70.3650456652311,69.68138673934764,69.26652311420008,69.26366353264088,69.40119469324803,69.27646889013567,69.20791123422822,69.11315624897533,69.0815697337543,68.89923209237598,68.72778170758461,68.40655688458406,67.92368341931763,69.8447539644515,69.8325138652366,67.76997925977807,67.78213878517167,67.86235836836175,67.63453178106269,67.62278043958591],"feasible_probability":0.0,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.0,"counts":{"0100010011":2,"0100010101":13,"0100011001":1,"0100100011":2,"0100100101":31,"0100101001":6,"0101000101":4,"0110000011":6,"0110000101":27,"0110001001":4,"1000010011":2,"1000010101":39,"1000011001":10,"1000100011":20,"1000100101":194,"1000101001":35,"1001000011":6,"1001000101":2,"1001001001":4,"1010000011":15,"1010000101":84,"1010001001":5},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13818481299676932},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0,2,7],"fixed_cost":25,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":5,"forced_by":2,"reasons":["precedence"]},{"variable":8,"forced_by":7,"reasons":["resource","precedence"]},{"variable":9,"forced_by":7,"reasons":["precedence"]}],"infeasible_task":"t3","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.618099774233997e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":24,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.2898349882893854e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.0025757029943633825}
+{"instance":"n4-s2-r3.json","seed":7,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":22,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["precedence"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":2,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":5,"task":"t2","group":"g0","resource":"r0","start":7,"end":10,"reserved_end":10,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r2","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[1,1,0,0,0,1,0,0,0,1],"qubo_energy":53},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.400286462518336,2.928492403043714],"expected_energy":67.2305511753591,"initial_expected_energy":93.2218028957492,"history":[93.2218028957492,89.82714236131484,83.96541955443448,88.4417617600934,84.41171300025678,83.67231881576127,84.75350232350407,83.72755526903983,83.79722872119629,83.61056087127068,83.78378009334791,83.54644175843072,83.48732996486297,83.3664737891371,83.1381887244236,84.70945692494976,83.15739379903337,83.33463325123732,82.9704095552505,82.91843264750648,82.65919276530121,82.65492515255383,82.21021940824176,82.01647285924531,81.31285648392554,80.66704872599034,78.76736384102776,82.9122194461246,81.53816638388093,79.52121214009892,78.97958528103777,78.7702718614994,78.61700150275779,78.48894655238536,78.36281355525912,79.15426444605609,78.0354322850983,77.79512799083399,77.45720389472307,76.99822843078324,76.0954499424374,74.20768697318816,76.19144109303238,77.19880202556384,75.53590892840292,73.92463436760909,73.9366661399372,73.71785038885967,73.5308887123963,73.25733587067468,74.20628572431768,72.67868588767526,72.45234913872251,71.87069436682432,71.45439827659845,70.4322770411416,69.20862275992849,71.02599450973015,73.39658377461883,68.53365647509617,74.49128444122886,76.6120302850841,93.48496710558143,83.909800504499,70.38499162704885,95.35424515053637,72.45987586721141,71.85134802863229,70.33625155789183,72.35598558381102,70.36711177281397,69.62245683255752,70.03066515908917,69.49550403286003,69.60133453513001,69.47591973597895,69.43549273906193,69.36287089091945,69.3491847083463,69.25674808107685,69.1755057000118,69.03925048752845,68.7894201681522,69.1860640011512,68.91531368463389,68.86356032573312,68.69323564937606,68.57045441284562,68.34387864219298,68.23179245167101,68.28084950002751,68.81497385666134,68.40695400356171,67.95753483098315,67.94634988232131,67.91776923269454,67.91777159553483,67.93676838601486,67.88764900571583,67.85843372299823,67.90368021107423,67.8332879753193,67.80956394825984,67.76670421484312,67.71271311197609,67.63145779139724,67.62433419956074,67.7517457553088,67.6276479369806,67.58003627229769,67.55004598919326,67.55033954173037,67.52663796437672,67.50700622602885,67.47284660767656,67.40679984132068,67.28088343998606,67.2305511753591,68.04337535500932,68.3126053433642],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"0100010011":35,"0100010101":21,"0100011001":1,"0100100011":7,"0100100101":45,"0100101001":10,"0101000101":5,"0110000011":8,"0110000101":97,"0110001001":5,"1000010011":11,"1000010101":6,"1000011001":4,"1000100011":53,"1000100101":97,"1000101001":27,"1001000011":7,"1001001001":2,"1010000011":6,"1010000101":60,"1010001001":5},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13671281099959742},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0,2,7],"fixed_cost":25,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":5,"forced_by":2,"reasons":["precedence"]},{"variable":8,"forced_by":7,"reasons":["resource","precedence"]},{"variable":9,"forced_by":7,"reasons":["precedence"]}],"infeasible_task":"t3","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.3217994971200824e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":24,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.7755575615628914e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.002520727997762151}
+{"instance":"n4-s2-r3.json","seed":8,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":22,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["precedence"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":2,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":5,"task":"t2","group":"g0","resource":"r0","start":7,"end":10,"reserved_end":10,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r2","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[1,1,0,0,0,1,0,0,0,1],"qubo_energy":53},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3680422216840045,2.908335414569157],"expected_energy":67.06934854640326,"initial_expected_energy":92.89671962932181,"history":[92.89671962932181,91.26887935212994,86.4387838778755,80.78788980133886,74.3145387067758,87.23216988430002,84.38928227482431,76.75611605807607,74.31652882359029,73.14560929217143,71.20533284035216,70.28672222666455,82.08181133176893,95.04099839960148,70.72335422531215,68.1299023751061,73.11395530881069,67.94223426202092,69.46084491347791,67.54128670234071,68.48394698088833,67.68757267852658,67.59336576970023,67.48140285687512,67.45414101594223,67.55205126981447,67.43239644271293,67.41576214259194,67.38371376358099,67.3619252655954,67.30456551211361,67.37015804422707,67.28301146904649,67.33860484673708,67.2679299210487,67.2565727192414,67.24278281898609,67.22365704650325,67.2041810015143,67.18621434619813,67.22631955779637,67.1790510225531,67.16928859920851,67.15015036729008,67.11801020026908,67.20822772652318,67.16789060996639,67.1672078336587,67.11076961542139,67.10415729782984,67.09972492586314,67.11403634359152,67.09542613249084,67.09267280551217,67.08918761321978,67.08265130249552,67.07250729416107,67.10821696102592,67.11549564862172,67.06934854640326,82.47860128711449,80.49045869385736,84.45036992576718,85.5358162433684,82.69038121551503,81.31304929989761,80.53647991726459,80.61375881399812,80.5264822079849,80.54001460163585,80.49691505520707,80.46887454048277,80.42886440169642,80.36311555395955,80.6864073408078,80.55004576537513,80.35637339108071,80.33866003583722,80.30823463633257,80.26846340475817,80.34745353906087,80.29599703063332,80.27429409574599,80.27015732462746,80.26750188688028,80.27137341892448,80.26465776754024,80.26215957688281,80.25850747211943,80.26157647845228,80.26478164014895,80.25697247325994,80.2556787289382,80.25700781942848,80.25479205244666,80.2541223367493,80.25448393911967,80.25377832117911,80.25357835181538,80.25383301826909,80.25350969921091,80.25336339052396,80.25308179119372,80.25255220005039,80.25165347694154,80.25114392443412,80.2497785436836,80.25171646946049,80.24965264038413,80.25008913487268,80.24975587171028,80.24944556643027,80.24938509946435,80.24929490660509,80.24926287901913,80.24916510023841,80.24911156829019,80.24897996215584,80.24903558344808,80.24897160485811],"feasible_probability":0.0,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.0,"counts":{"0100010011":35,"0100010101":25,"0100011001":3,"0100100011":14,"0100100101":42,"0100101001":10,"0101000101":4,"0101001001":1,"0110000011":15,"0110000101":92,"0110001001":3,"1000010011":11,"1000010101":2,"1000011001":7,"1000100011":54,"1000100101":104,"1000101001":22,"1001000011":8,"1001000101":1,"1001001001":1,"1010000011":4,"1010000101":54},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1360892340017017},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0,2,7],"fixed_cost":25,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":5,"forced_by":2,"reasons":["precedence"]},{"variable":8,"forced_by":7,"reasons":["resource","precedence"]},{"variable":9,"forced_by":7,"reasons":["precedence"]}],"infeasible_task":"t3","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.662701394408941e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":24,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.0028594759933184832}
+{"instance":"n4-s2-r3.json","seed":9,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":22,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["precedence"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":2,"end":4,"reserved_end":4,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":4,"end":6,"reserved_end":6,"changed":true},{"variable":5,"task":"t2","group":"g0","resource":"r0","start":7,"end":10,"reserved_end":10,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r2","start":10,"end":12,"reserved_end":13,"changed":true}],"bits":[1,1,0,0,0,1,0,0,0,1],"qubo_energy":53},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.17814219341867,1.9928844408112747],"expected_energy":80.24885981630189,"initial_expected_energy":93.7813185107222,"history":[93.7813185107222,93.0360587394608,82.56341954192214,84.2124558724262,81.24051558205892,82.60111521148467,81.24401074306803,82.04397355490971,81.21006427591767,81.29210462206873,81.25077139892623,81.22143934840426,81.18489713048201,81.1376053545737,81.03727150146261,80.81674485135302,80.6262516955195,81.06931792870736,81.73516119525443,80.57345490739776,80.39289121817511,80.45635674554481,80.4274468225726,80.40138097832865,80.37567138915979,80.37297101973267,80.34775944555207,80.33119893272908,80.31939035392506,80.30689917625244,80.28546467985407,80.3257273976246,80.30877422550043,80.28941595560178,80.28372248297592,80.28266389098118,80.28781503244802,80.27864702526911,80.27520877664178,80.26904184942217,80.26976802422413,80.26978254814604,80.26805324578045,80.26766135240247,80.27303353656848,80.26420681339116,80.26214057427899,80.25988563415774,80.25666969649052,80.25524754066157,80.25183752180489,80.24927516464948,80.26167181436665,80.25848939668374,80.24925805003807,80.24888956308199,80.2490587779192,80.24952659614337,80.24888475599309,80.24885981630189,85.26390365798999,85.12092165903562,84.54582665060198,87.841938377966,86.94700660823591,85.96156830375404,83.03667626029005,84.5723052332198,82.98061872879259,83.16404584763933,83.21448196127061,83.03451599431779,82.98697926964567,82.9757585895943,82.96848274189367,82.96441838606779,83.00422919144597,82.94967227078396,82.93721041033466,82.91709880760241,82.87789789693602,82.85344197355471,82.76587860451787,82.87446574205077,82.73428271465664,82.81303456910359,82.72805722857123,82.70518136021295,82.68787672080751,82.7455898614904,82.6693124530947,82.64783903381705,82.60641383216871,82.54906494995737,82.48432230662029,82.47476217399772,82.8974546827012,82.36983199021807,82.33318560150565,82.29624731597553,82.34499635907179,82.26057313188622,82.2249389745655,82.27538628103903,82.18467970406078,82.1521429197334,82.20227268904031,82.12100046262718,82.09654674070507,82.04590979952589,81.97051914576177,81.99331967305923,82.08267078140847,82.02120226367616,81.92243297793522,81.98371177424416,81.90858732254576,81.88424743811755,81.85475291790138,81.79629397403345],"feasible_probability":0.0,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.0,"counts":{"0100010011":27,"0100010101":53,"0100011001":41,"0100100011":28,"0100101001":14,"0101000011":10,"0101000101":1,"0101001001":13,"0110000011":17,"0110000101":8,"0110001001":22,"1000010011":7,"1000010101":28,"1000100011":32,"1000100101":3,"1000101001":16,"1001000011":3,"1001000101":6,"1001001001":5,"1010000011":101,"1010000101":60,"1010001001":17},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13774188599199988},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[0,2,7],"fixed_cost":25,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":0,"reasons":["group"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":5,"forced_by":2,"reasons":["precedence"]},{"variable":8,"forced_by":7,"reasons":["resource","precedence"]},{"variable":9,"forced_by":7,"reasons":["precedence"]}],"infeasible_task":"t3","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":5.07160002598539e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":24,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.002772685998934321}
+{"instance":"n5-s0-r0.json","seed":0,"direct":{"status":"feasible","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":13,"end":14,"reserved_end":16,"changed":true},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0,1,0,0],"qubo_energy":17},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.8752603808112407,1.165990814467953],"expected_energy":53.03280908021021,"initial_expected_energy":57.45152120600626,"history":[57.45152120600626,59.23585827301716,65.72197213523648,82.7670186757542,53.882036455402165,65.32758056778697,53.58801796701532,53.632769270178855,54.11520775593102,53.05297612468537,53.23939113866703,53.100514294043755,53.07769614574904,53.0346613610557,53.052194354696766,53.03411928356894,53.03975333274857,53.03542228980693,53.0353797722457,53.03375956118394,53.0336563359694,53.03415658278422,53.03353741751954,53.033442267191944,53.033287271686575,53.0331017971562,53.03301452672114,53.03283232061773,53.03309861841745,53.033467965195385,53.03292435608293,53.03282980302103,53.032894058015316,53.03282929407645,53.0328126218848,53.03283051904522,53.032859488657465,53.03281360494407,53.03281290381625,53.03281467426126,53.03281157155616,53.03281197310744,53.03281195407108,53.032811607742644,53.03281138842646,53.03281106826533,53.032811031300575,53.03281050584019,53.032810196661686,53.03280999566819,53.032810301224416,53.03280988213199,53.03280977374291,53.03280966159377,53.03280945819243,53.032809359716374,53.03280921826932,53.03280916567162,53.03280958041614,53.03280908021021,81.50090397676385,83.94317801619832,62.32029996224117,65.20023149101019,65.44432520347038,66.00519385920042,56.8141090636076,59.29241488022811,57.74414805366955,57.57697169574096,55.83996717194915,55.741736199937456,56.08753444748369,55.55220659058354,55.62650947559147,55.33319447449729,55.29979537642505,55.52624177927231,55.307491332456095,55.21470075129193,55.12134039120393,55.34978804647844,55.036976784363446,54.95854201014505,54.80574721306734,54.51085795457031,54.04003224764407,54.215120226874376,55.794728924340234,53.96152521459172,53.82493738130766,53.569127013157974,53.21334646873228,53.86539114272014,53.41436066155883,53.19228188254761,53.3615779929244,53.17266120118597,53.15170226198019,53.14636098689618,53.212693730224146,53.13752879781149,53.12353399803297,53.107540263868515,53.09306044306495,53.10490657291052,53.08800199684541,53.12108923284416,53.07916313889805,53.07198751176207,53.06055870951546,53.07497800623503,53.06346755218743,53.059501184074115,53.07033157511223,53.052966259781435,53.05071239485346,53.04618847265,53.04038016842493,53.03853366423425],"feasible_probability":0.28930332670857944,"one_hot_probability":1.0,"sampled_feasible_fraction":0.248046875,"counts":{"0010100010011":20,"0010100010101":2,"0010100011001":38,"0010100100011":9,"0010100100101":2,"0010100101001":45,"0010101000011":16,"0010101000101":6,"0010101001001":11,"0010110000011":9,"0010110000101":1,"0011000010011":8,"0011000011001":17,"0011000100011":3,"0011000100101":1,"0011000101001":17,"0011001000011":3,"0011001000101":4,"0011001001001":1,"0011010000011":2,"0011010001001":1,"0100100010011":1,"0100100011001":6,"0100100100011":1,"0100100101001":5,"0100101000011":12,"0100101000101":6,"0100101001001":10,"0100110000011":5,"0100110000101":4,"0100110001001":25,"0101000010011":1,"0101000011001":2,"0101000100011":1,"0101000101001":1,"0101001000011":1,"0101001000101":1,"0101001001001":4,"0101010000011":2,"0101010000101":1,"0101010001001":5,"1000100010011":22,"1000100010101":2,"1000100011001":39,"1000100100011":5,"1000100100101":3,"1000100101001":46,"1000101000011":5,"1000101000101":3,"1000101001001":3,"1000110000011":3,"1000110000101":5,"1000110001001":9,"1001000010011":8,"1001000011001":15,"1001000100011":4,"1001000100101":1,"1001000101001":11,"1001001000011":1,"1001001000101":1,"1001001001001":2,"1001010000011":3,"1001010000101":5,"1001010001001":6},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3496533480065409},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[2,5,2],"max_component_qubits":5,"component_to_original":[[1,3],[6,7,10,11,12],[8,9]],"components":[{"qubits":2,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1],"quadratic":[[0,1,14]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":6}],"conflicts":[]},{"qubits":5,"penalty":17,"objective_bound":16,"offset":34,"linear":[-8,-9,-17,-10,-11],"quadratic":[[0,1,34],[1,2,17],[2,3,34],[2,4,34],[3,4,34]],"domains":[[0,1],[2,3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":13,"cost":9},{"index":1,"task":"t2","resource":"r1","start":13,"cost":8},{"index":2,"task":"t4","resource":"r1","start":15,"cost":0},{"index":3,"task":"t4","resource":"r2","start":21,"cost":7},{"index":4,"task":"t4","resource":"r1","start":17,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["resource"]}]},{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":11,"cost":0},{"index":1,"task":"t3","resource":"r0","start":12,"cost":7}],"conflicts":[]}]},"best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":13,"end":14,"reserved_end":16,"changed":true},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0,1,0,0],"qubo_energy":17},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":3757552657,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.8311372203683822,1.1781736836979886],"expected_energy":2.484495402809642e-06,"initial_expected_energy":5.791313957403275,"history":[5.791313957403275,5.180495712873684,2.5553335185435215,1.2946226609667661,2.568202779488599,3.9810059837070133,1.8016621656590879,1.7893913933092986,1.1989574296951329,1.0206122907802546,0.8883967840623996,0.8792671433765618,0.7985421438787412,0.7313668309423456,0.7091002337815728,1.2077236676129302,0.6772001254300954,0.5416446712621625,0.47937453933509094,0.561892541717337,0.44562433232873094,0.422718831525352,0.3877144987201291,0.3319045326195365,0.22566221868490255,0.09018720025536173,0.3911052320699612,0.43380818931969106,0.07192078086018219,0.0641271720575083,0.08532133745485612,0.057618007616534406,0.048688034572111835,0.043988453925505225,0.03891005160771511,0.03392535561997681,0.025214799485753437,0.020800426126473454,0.017878153362830967,0.012949343490791267,0.019635528482792666,0.12288781527456012,0.0002400567171892849,0.008662393422651937,0.0006110138487101028,0.0026721744869692113,0.0005190367052341645,0.0005026713658583547,0.00035524832399257383,0.00021294023581814697,0.00027513713277588746,0.00021071012028693695,0.00019381874770472605,0.00018093180601262563,0.00015420930360860935,0.00010811775351466738,9.199050432888331e-05,0.00011397024612384355,0.0003171302479752293,4.3638353555775996e-05,3.9978572671001222,4.490737443956765,1.290138183609511,3.3294885899065103,1.9979517665137272,1.3486470005329527,1.1095796486666833,1.356359049971795,1.006077917617148,0.9107797980326908,0.7945411404171254,0.616542360631221,0.4557184070752047,0.42325495750842396,0.21494680630452268,0.09177364726610582,0.020089513013092267,0.1722890212624802,0.387701989544732,0.02368548951783389,0.01063915254285088,0.09614056960067376,0.011157087650609602,0.017874252243971968,0.0017799591039283646,0.000414867341908189,0.0017786592692791653,0.0009961006241317014,5.2891747259868586e-05,0.00032232983843692557,0.00047129772896057807,7.999935097942673e-05,7.219746372720529e-05,6.609060592968807e-05,3.416793271843044e-05,2.6172904485825294e-05,2.1556379487935964e-05,2.801588896399276e-05,1.9911923521135203e-05,1.769836330139372e-05,1.4061890129906591e-05,2.5005217433498007e-05,1.420244953691932e-05,1.3596777589976055e-05,1.3370535308398791e-05,1.7841610292071166e-05,1.2395140248694666e-05,1.0885651224640675e-05,9.44570720578447e-06,8.03689883918563e-06,7.871910380564445e-06,5.905736416493453e-06,5.869491310952369e-06,4.909766587901703e-06,3.8701835424393564e-06,3.154538407782341e-06,5.249475745326812e-06,2.685625792139588e-06,2.484495402809642e-06,3.3845530847568432e-06],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.073530194000341},{"status":"feasible","best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":13,"end":14,"reserved_end":16,"changed":true},{"variable":2,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,0,1,0,0],"qubo_energy":9},"seed":673228719,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7403368569250999,1.353585855438536],"expected_energy":13.065424949398174,"initial_expected_energy":13.1002749670681,"history":[13.1002749670681,13.189168802429663,18.107676388920375,16.360934939029107,16.6166598314215,13.718724627733575,13.10831653470726,13.374388527871748,13.137748421831768,13.185421292821925,13.080291909675168,13.079575487472749,13.078059527622946,13.077076674576691,13.077535509620876,13.074944211668774,13.075938335284476,13.075476286083244,13.075010019435451,13.07470010489311,13.074443893518698,13.075408272314831,13.074143457583727,13.073898045824095,13.07344090201343,13.072558864380099,13.07309444907892,13.073010726832024,13.072662544221567,13.072840090388638,13.072554474763246,13.072458561791702,13.072290425981528,13.072186124978883,13.071770228827116,13.071495790620297,13.071143621586128,13.070495418522544,13.069286871437924,13.068839654678827,13.072549677813406,13.07787616286277,13.068894823656773,13.0672725303651,13.06771021796127,13.067495900344923,13.06735385999415,13.067143439068847,13.067053406904257,13.067158861892217,13.066997923816288,13.066942026013177,13.066843964215089,13.066646707849081,13.066231637741813,13.065523891431742,13.066905019558149,13.068593303359291,13.066818179641366,13.065424949398174,16.544901487876157,16.823605397863563,15.468620098554393,15.700447462583822,16.09588559658779,15.877314451622123,15.283941898230523,15.523124942049073,15.345715113359198,15.242943551604453,15.291199262889563,15.260127692305332,15.27203623578141,15.237687498406828,15.24491447730948,15.236273654325615,15.23376424782349,15.23212131666683,15.225230515312235,15.217149433919225,15.204800443041048,15.184632513262725,15.139563386287277,15.099445491953697,15.500114103900039,15.575395310557687,15.094641847811445,15.04285135338641,15.109436385818135,15.033160299997574,15.041169894422369,15.032016964166292,15.029661348003005,15.027374455756387,15.02598246040847,15.01961061071454,15.016430257812853,15.010722969858923,15.00182623172838,14.98102707444643,14.9582545621708,15.039732132231189,15.10159591700781,14.939527854617067,14.948966034175037,14.944964339312987,14.93942952192778,14.936631863638356,14.93179177000516,14.923046950006068,14.905331542089673,14.911285485284324,14.946817584947643,14.91647381407224,14.905193633949368,14.897264274787458,14.88640905764558,14.878583258803417,14.879641002920883,14.894726508095385],"feasible_probability":0.9998177411219134,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"00101":164,"01001":43,"01010":99,"10001":112,"10010":94},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08704438200220466},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":3241444873,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.846544400787826,2.7477901750917746],"expected_energy":0.0035661981836892205,"initial_expected_energy":6.450638022000787,"history":[6.450638022000787,5.6254140272675155,1.7939416272338014,2.7842255033493934,2.6800716994626756,2.1775293929452304,1.211053916993067,1.0610488999544254,0.773482451158698,0.5530919550044879,0.9307091834555872,0.8630020487435742,0.5326164459005635,0.44356995316009873,0.3063372345729929,0.10844544119199487,0.5146880348985888,0.4100887546428615,0.1268643928895809,0.14432646142007619,0.1166197658046252,0.11483372811264189,0.10068053104010434,0.10193222423786041,0.102447675092806,0.09752470468367891,0.09223533142755407,0.08794039046190172,0.11952461745830456,0.0781931560559816,0.0714214663494029,0.06589292972108815,0.0721873251184486,0.061789885728098556,0.06407535617554924,0.058972784186733566,0.05710630539237109,0.05772605149634409,0.054437991335595064,0.05212643376442414,0.049747262305326403,0.04421345580491076,0.040144173153777156,0.031402432856011256,0.01715308180360966,0.09514079840283698,0.05927246404557167,0.024625712975442506,0.015875089795836912,0.018879537107675932,0.014799562517304762,0.013477270340248931,0.011221374326873148,0.015426551290149634,0.010661164337628221,0.009290251336597867,0.006879613354139029,0.0035661981836892205,0.004851635489234994,0.00592805272673347,5.71485520437898,4.46205210757035,2.802113544336354,3.423024009673947,1.9589675132252733,1.254232981370746,0.3264926379623651,3.632293798980422,1.8093420901709771,0.5849963058468979,0.30160756250922693,0.39733037933574294,0.2701992196950047,0.37816497473722976,0.23836886729572787,0.21378684044912954,0.22306031777753701,0.20258012166541037,0.1974301424570287,0.21129475236917505,0.1953076409659623,0.18977973962767794,0.1796449947508427,0.17389337961141846,0.15308188513470555,0.1354358096623377,0.10375312006566581,0.10383478649264147,0.12174895930936047,0.10141483089117156,0.11427082037437505,0.10132723605462104,0.09591981969928046,0.08768952820830272,0.07456894184447611,0.07634542030804618,0.07036292983705156,0.0695931082733938,0.08043729196580801,0.06548062756501981,0.05902780855767656,0.050871151824252975,0.04081767648156308,0.032807064972828356,0.06376056447101795,0.03330735453714949,0.03169174077543036,0.031222831698445405,0.04065179883899952,0.027772807873107326,0.02528200997506656,0.022325339141786943,0.018911073476732886,0.013495036964496672,0.018282790524963816,0.024417642713547794,0.012751808649293792,0.011294661323765446,0.008693035118241252,0.004815728395359275],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07011198399413843}],"circuit_evaluations":360,"status":"feasible","feasible_probability":0.9998177411219134,"total_shots":1536,"runtime_seconds":0.23102341798949055},"direct_metrics":{"exact_objective":17,"optimal_count":1,"combinations":72,"optimal_probability":0.022020562406905572,"feasible_probability":0.28930332670857944,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.2777777777777778,"shots_for_95_percent":135,"hit_curve":[{"shots":8,"quantum":0.16316894353541858,"uniform":0.10585733481633375},{"shots":16,"quantum":0.2997137829363725,"uniform":0.20050889429825008},{"shots":32,"quantum":0.5095992141907141,"uniform":0.3608139719037934},{"shots":64,"quantum":0.7595070692776349,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9421631502725677,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999888102980528,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.249000902703301e-16,"independent_samples":[{"shots":8,"best_objective":17},{"shots":16,"best_objective":23},{"shots":32,"best_objective":22},{"shots":64,"best_objective":17},{"shots":128,"best_objective":22},{"shots":512,"best_objective":17}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999995859174329,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":7.723881687775151e-20,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":9,"optimal_count":1,"combinations":6,"optimal_probability":0.3080519877341773,"feasible_probability":0.9998177411219131,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.8333333333333334,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.947448183951069,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9972383066299593,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999923730497299,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999999418296,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":9},{"shots":16,"best_objective":9},{"shots":32,"best_objective":9},{"shots":64,"best_objective":9},{"shots":128,"best_objective":9},{"shots":512,"best_objective":9}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9994905431166158,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.0842021724855044e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.3078949210346138,"diagnostic_seconds":0.00924620901059825}
+{"instance":"n5-s0-r0.json","seed":1,"direct":{"status":"feasible","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":13,"end":14,"reserved_end":16,"changed":true},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0,1,0,0],"qubo_energy":17},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.8739801229871693,1.1657849600925616],"expected_energy":53.032825536262806,"initial_expected_energy":83.14407524116073,"history":[83.14407524116073,80.80233056160993,55.047260325868876,68.28343193551365,59.16511767103775,57.37935165572473,53.4336252188756,55.66651199784838,53.345812710907815,53.9312727006449,53.37455864388412,53.39831301966735,53.39330132915269,53.278508189736115,53.2455598096801,53.21334724068314,53.200867696114685,53.164714290317235,53.15040915147905,53.09508933999997,53.12336486211131,53.092600913681224,53.106200356757,53.09564678725326,53.08237857952136,53.07930117898852,53.07251666956687,53.066605623867844,53.06433827301601,53.05149167258833,53.05534793407551,53.05052719942959,53.05977734557342,53.0457062839699,53.042788377173906,53.03976370656706,53.035429878192865,53.04420457353337,53.03809724510814,53.03482514669836,53.039717872084765,53.034611915255866,53.03424963569037,53.033625266879795,53.03295058357797,53.03606203194877,53.033668075710864,53.032914237255184,53.0332573677459,53.032898137204185,53.032886264558144,53.03296469225566,53.032867816619095,53.0328563442075,53.03284582602048,53.03283730572697,53.03282599524378,53.03283444479899,53.032845970352255,53.032825536262806,57.71977829375994,56.74637947007218,67.25239140015228,81.98092044113568,56.11554172796373,59.414650514463204,56.82730575318694,54.744651251320064,54.236225637606054,54.32743828942155,54.99185329915741,54.101304262847606,54.16244699782503,54.13448153748943,54.058835169922844,54.06683937503741,54.0463464624105,54.01884372313738,53.96584468635005,53.864627244270345,53.68079485469822,53.474161470743695,53.29807747570462,53.157626075069885,53.832536681683166,53.08019857333064,53.302943227109466,53.123331955976326,53.05936923015544,53.064016922153314,53.09123949021593,53.05928132012853,53.05346304830836,53.05350220934763,53.0555580807625,53.05386766968579,53.0523230462166,53.050241659116935,53.04708650146498,53.04812874345065,53.04844285824192,53.04860773824312,53.046648515513105,53.04565811183312,53.04447689595668,53.04288352145214,53.041355168558056,53.03956128959863,53.03744531789116,53.03667993923282,53.04491249444632,53.03513837319604,53.034998865091,53.03450329053118,53.03385445808099,53.03341864319816,53.03428224238636,53.03340347594738,53.03330223792305,53.03314135151276],"feasible_probability":0.2892820977547891,"one_hot_probability":1.0000000000000004,"sampled_feasible_fraction":0.296875,"counts":{"0010100010011":26,"0010100011001":46,"0010100100011":12,"0010100100101":2,"0010100101001":33,"0010101000011":12,"0010101000101":9,"0010101001001":10,"0010110000011":3,"0010110001001":2,"0011000010011":12,"0011000011001":13,"0011000100011":2,"0011000101001":15,"0011001000011":2,"0011001000101":1,"0011001001001":1,"0011010000011":2,"0011010000101":1,"0011010001001":2,"0100100010011":1,"0100100011001":1,"0100100100011":1,"0100100101001":4,"0100101000011":12,"0100101000101":6,"0100101001001":20,"0100110000011":7,"0100110000101":8,"0100110001001":15,"0101000010101":1,"0101000011001":3,"0101000100011":1,"0101001000011":5,"0101001000101":1,"0101001001001":3,"0101010000011":3,"0101010001001":12,"1000100010011":19,"1000100010101":1,"1000100011001":32,"1000100100011":10,"1000100100101":3,"1000100101001":33,"1000101000011":7,"1000101000101":2,"1000101001001":1,"1000110000011":7,"1000110000101":10,"1000110001001":22,"1001000010011":7,"1001000011001":14,"1001000100011":1,"1001000100101":1,"1001000101001":17,"1001001000011":3,"1001010000011":3,"1001010000101":2,"1001010001001":7},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.31666578000294976},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[2,5,2],"max_component_qubits":5,"component_to_original":[[1,3],[6,7,10,11,12],[8,9]],"components":[{"qubits":2,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1],"quadratic":[[0,1,14]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":6}],"conflicts":[]},{"qubits":5,"penalty":17,"objective_bound":16,"offset":34,"linear":[-8,-9,-17,-10,-11],"quadratic":[[0,1,34],[1,2,17],[2,3,34],[2,4,34],[3,4,34]],"domains":[[0,1],[2,3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":13,"cost":9},{"index":1,"task":"t2","resource":"r1","start":13,"cost":8},{"index":2,"task":"t4","resource":"r1","start":15,"cost":0},{"index":3,"task":"t4","resource":"r2","start":21,"cost":7},{"index":4,"task":"t4","resource":"r1","start":17,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["resource"]}]},{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":11,"cost":0},{"index":1,"task":"t3","resource":"r0","start":12,"cost":7}],"conflicts":[]}]},"best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":13,"end":14,"reserved_end":16,"changed":true},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0,1,0,0],"qubo_energy":17},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":1641411168,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.8353438821949997,1.1781361762151046],"expected_energy":8.359452010783259e-06,"initial_expected_energy":1.6501455235831104,"history":[1.6501455235831104,2.826502941274661,3.1938480797714677,3.625255891229674,1.73566868283248,1.559288302611355,1.818527231170227,1.4713639710090054,1.3330079077129895,1.2955688870800948,1.192883645710646,1.113155617403131,1.1974431950140092,1.0310451087713481,0.939148620840446,0.7875771092712051,1.4568741772336449,0.7273602394967646,0.5600162356635184,0.2805559122665211,0.1325169058338665,2.1154828872056175,1.5991970849925123,0.026448884804978832,0.3177764205842154,0.03861625399398244,0.1135678221802647,0.008739772868001245,0.016114872017351296,0.011166932634992764,0.00928602180657781,0.007789676445677289,0.006896156491926954,0.005850436668558577,0.004433833134277627,0.004035542297734833,0.009428043152806301,0.0029375340148352874,0.0027221798344625155,0.002119542146334064,0.0012675942349340131,0.0011420195795450627,0.0003673641314343437,0.0036090023193747593,0.00018682564259207878,0.00029940140931476424,0.00014966457879482572,0.0012410442006778215,1.4540428993286695e-05,0.00017035370935637685,9.715128330951544e-06,4.7234569717866866e-05,1.0914902750273868e-05,1.0182115375800851e-05,1.1568685628725393e-05,9.059849561012549e-06,9.230102939303582e-06,8.643998708260104e-06,8.359452010783259e-06,8.395506965761367e-06,3.497508147814786,4.2518451687587895,3.3047989974767056,3.0373776882786667,4.380824438107494,2.4761367587136625,2.042166604822297,3.1643419510002344,2.663008021483491,1.7615123167607658,1.4977765716816471,3.0040668699866773,1.106710593214319,0.9990079130330785,0.7345101420100144,0.41571075043590516,0.3185078103927146,0.20603366329200096,0.4126097395106377,0.8816175741094214,0.2533745463687083,0.06523177009639369,0.04331838473820887,0.03458525037487739,0.14433222716174612,0.019009533033863425,0.02791510492524201,0.017599651252224638,0.022542739422424136,0.01712446836578235,0.015822891633495866,0.013816775367015352,0.014295056135507522,0.012802969446215626,0.014093077947041139,0.013539704653718523,0.011672016607878768,0.011565607807601266,0.01028200532069884,0.009226053303239837,0.007362985851308105,0.0041840129596609965,0.019287517110823143,0.01290721246786251,0.004767351113647194,0.004128810163315176,0.006072370336908448,0.0029658149994864825,0.002523430683993876,0.0021001422218845387,0.0026456094082592113,0.0019471428224576326,0.0015067598688722128,0.000786395906873754,0.001126061346506451,0.0021885981801937513,0.0015069052087197683,0.0006855454662667407,0.0005924934946706898,0.0007155059806037857],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07353822399454657},{"status":"feasible","best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":13,"end":14,"reserved_end":16,"changed":true},{"variable":2,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,0,1,0,0],"qubo_energy":9},"seed":1454127163,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.6798263490564118,1.352754208774883],"expected_energy":13.073750595912486,"initial_expected_energy":16.616596191593793,"history":[16.616596191593793,16.899573898659277,13.348085758255728,17.608019210152268,13.335189773672825,14.470368353115713,13.428673195201528,13.159780318797726,13.22328267214848,13.17134214765752,13.17909332467427,13.158395926374176,13.154829573316704,13.152545223892307,13.155199237594038,13.151142316388562,13.14974655499651,13.147015298621197,13.141604204825638,13.13168396985124,13.132043005470582,13.150578919004374,13.129214226721505,13.135393390226614,13.128916068012163,13.126363122103584,13.121917337986469,13.11297631790519,13.097894450399627,13.286856860927701,13.208909539288978,13.114158821844384,13.105104920901933,13.09902723322574,13.097499042943138,13.096593531872433,13.094897810704865,13.09181655827604,13.089567606594361,13.09039252321701,13.096744011009726,13.089471445297779,13.091611523302607,13.089263656286485,13.088343522114654,13.087034221929645,13.08767481264029,13.086121824585069,13.08535624153823,13.083957973287845,13.081673780973464,13.0811712429872,13.076015020083815,13.0921697761918,13.081464564015054,13.07551914930885,13.077263685452959,13.075330366043428,13.074763277753927,13.073750595912486,18.320892208851816,18.420951392361506,14.779679588446662,14.806466982739378,14.819666233297923,14.628823800170828,15.502834004363997,14.618976002311332,14.72308733111494,14.761488637901945,14.639155639255048,14.628450110694992,14.617396562425608,14.619256631275942,14.61591762413557,14.616126390671234,14.615236806549865,14.614982202858979,14.616035999924971,14.614498163697276,14.614049790739912,14.613218087547587,14.611657251787712,14.608401626251695,14.602153695408067,14.589473608300352,14.566038446409046,15.375811911334244,14.947454229017882,14.63589971892726,14.563533387225768,14.594855481816788,14.562439151018667,14.562496516075065,14.564506740132021,14.56177024870706,14.561558193976705,14.560659447070847,14.559609031143669,14.558102727768903,14.555225697902126,14.549747388377186,14.53874968125244,14.523679178569791,14.725241868919802,14.654141263658326,14.521891760385692,14.520334953024587,14.521777427273049,14.523426320498903,14.516171284108065,14.514835762351712,14.516526505934,14.51452592559583,14.514241387572905,14.513530836007636,14.512527276343887,14.51002112108711,14.505806593674524,14.506578084618921],"feasible_probability":0.9992175671858026,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.998046875,"counts":{"00101":163,"00110":1,"01001":47,"01010":103,"10001":112,"10010":86},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08991020800021943},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":2749604155,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.795586155314004,2.748889197334589],"expected_energy":2.0469541552084884e-07,"initial_expected_energy":3.033423849550236,"history":[3.033423849550236,2.3910527555745826,2.1267466010101406,3.883694266290367,2.681318879229424,2.206658467466983,2.3197694522244374,1.7779563150521378,1.2832576070850596,1.4233576119183888,1.541711234817965,1.3646748053173,1.1258790555872373,0.9556869276876592,0.757680613319083,0.5766785844229251,0.42720688091067643,0.4040383122070803,0.16552300769602765,0.10458399085483697,0.16824737990686203,0.6759299685686219,0.014555220766926391,0.015169887708695939,0.033779551344632675,0.025021899140140462,0.03588939841249221,0.019906050851133016,0.007850823238587386,0.01019086556640057,0.0072817411315371575,0.006300511790331347,0.005899325055215246,0.004918045633382748,0.0038315621539133085,0.0025624357915707344,0.0019544843480499945,0.007039649246477334,0.0013302493191751901,0.0015999772352028319,0.0020026565808264557,0.0012977221808401992,0.0014717363060776755,0.001301779344651087,0.0012405892252600871,0.0011526544044546463,0.0011973713266843823,0.00108345233893881,0.0010339149290681463,0.0010736358043739176,0.0009588657120980862,0.0008962255222215866,0.0009518236560175052,0.0008437662122264983,0.0008416884211705941,0.0008907715211673188,0.0007981666079911425,0.0007255970732686089,0.0006253491683646724,0.0005098134179192468,3.2869444817746833,3.24269247566587,0.4856241342375767,6.269122888033707,0.005825180695256284,0.07142399647113012,0.037315489967509656,0.010330067592539212,0.03230530727982817,0.014498720541288378,0.04212327344259116,0.007036639807664223,0.00010964087588524218,0.0029675182656088155,0.00010026593079894938,0.001211485095124249,0.0003761284444572597,0.00048209631682930276,0.0001030408796053369,3.793519718242829e-05,5.914046840817619e-05,3.4576941094568216e-05,5.2501343974756004e-05,2.7102327822033163e-05,2.7342479875514312e-05,3.0503808067773406e-05,2.7593365474875784e-05,2.5625705053778974e-05,2.2784528468152577e-05,1.7604392189687616e-05,3.116154292739244e-05,2.1101759699500174e-05,1.82036336291937e-05,1.562048364747417e-05,1.5036367518360467e-05,1.2329108001374769e-05,1.1385294590376267e-05,9.23819644796804e-06,6.941539894370095e-06,4.645187730109384e-06,3.2487315173315907e-06,1.3481251425990313e-05,1.9794719626988937e-06,3.092572917574376e-06,2.574264430885718e-06,1.8909384831128145e-06,1.6717225235159634e-06,1.48834664559691e-06,1.4537821789455267e-06,1.1040758458042748e-06,1.0058506406989986e-06,6.235897746047635e-07,3.1321976030428777e-07,5.557743171883913e-07,1.2371238586670807e-06,3.875481026542004e-07,2.163793797284168e-07,2.3627006522037662e-07,2.7733129680932177e-07,2.0469541552084884e-07],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.074483306001639}],"circuit_evaluations":360,"status":"feasible","feasible_probability":0.9992175671858026,"total_shots":1536,"runtime_seconds":0.23818866899819113},"direct_metrics":{"exact_objective":17,"optimal_count":1,"combinations":72,"optimal_probability":0.022064828139603764,"feasible_probability":0.2892820977547891,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.2777777777777778,"shots_for_95_percent":135,"hit_curve":[{"shots":8,"quantum":0.16347191164029645,"uniform":0.10585733481633375},{"shots":16,"quantum":0.30022075738526,"uniform":0.20050889429825008},{"shots":32,"quantum":0.5103090116055409,"uniform":0.3608139719037934},{"shots":64,"quantum":0.7602027358852577,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9424972721230845,"uniform":0.8330797244996347},{"shots":512,"quantum":0.99998906663641,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":24},{"shots":16,"best_objective":23},{"shots":32,"best_objective":23},{"shots":64,"best_objective":17},{"shots":128,"best_objective":17},{"shots":512,"best_objective":17}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999986067579982,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":9,"optimal_count":1,"combinations":6,"optimal_probability":0.3073894113410243,"feasible_probability":0.9992175671858026,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.8333333333333334,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9470442632935089,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9971956899498728,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999921358451428,"uniform":0.9970744998381338},{"shots":64,"quantum":0.999999999938155,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":9},{"shots":16,"best_objective":9},{"shots":32,"best_objective":9},{"shots":64,"best_objective":9},{"shots":128,"best_objective":9},{"shots":512,"best_objective":9}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999999707577978,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.7155912360423e-20,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.3073889740844547,"diagnostic_seconds":0.011427164004999213}
+{"instance":"n5-s0-r0.json","seed":2,"direct":{"status":"feasible","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":13,"end":14,"reserved_end":16,"changed":true},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0,1,0,0],"qubo_energy":17},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.7592901561437544,2.010610004654649],"expected_energy":43.95293620075858,"initial_expected_energy":84.83179432601654,"history":[84.83179432601654,85.39352512607343,59.053697278546736,63.882643292593414,61.189550191763246,62.51489455884996,54.088151938896814,57.02068446777704,55.64571896491801,54.717175959532,53.23142326896328,53.07099660517808,53.03437220315492,53.347151977200454,53.122436333777934,53.03633772660879,53.05937462308616,53.03687545306117,53.03773469231602,53.034582291273196,53.0342785627796,53.03448182055004,53.03421332294103,53.034088720765894,53.03387857689238,53.034206013981375,53.03378960528262,53.03357172070285,53.03327762832386,53.03304772574592,53.03291896784483,53.03291410571421,53.032812250657216,53.03317546768954,53.032962200786145,53.0328099331892,53.032846807748435,53.03284636011735,53.032818875863796,53.032810531594464,53.03281063141361,53.03281054169335,53.032809796028104,53.03280957147193,53.032809342025985,53.03280922731444,53.0328089738978,53.03280899059102,53.032809965392815,53.03280900976854,53.03280899893063,53.032808956672156,53.032809020691396,53.03280892057013,53.03280891133012,53.032808901843765,53.032808904702925,49.77820358934921,54.085213503377304,71.594888728147,69.94463834122837,50.99519134018507,53.447987695922265,50.796344567171424,48.05461186839747,47.446944647297656,47.08841187452703,47.81409848045428,46.945187078869715,46.75928941944248,46.42694165128342,46.64717886674639,46.47491646177653,46.39386392330803,46.68649792712887,46.2431659209833,46.13865300938703,46.06121944024059,45.893514833054546,45.60013645397126,45.30381679987185,44.880460864392035,45.46259833813498,46.083156335756414,44.94184506526385,44.627803528644534,44.69453535495129,44.5778387314162,44.57568009194316,44.54367767824629,44.50045648785897,44.46341830731714,44.49937071047606,44.437574032923386,44.4724790118771,44.41606334744079,44.395514983670274,44.35640357173915,44.2877172770599,44.24932634068264,44.09082567911779,44.85725076503322,44.28400768955596,44.22555967947956,44.11602058509246,44.066709865083446,44.04347229276375,44.05927810303146,44.02961982888934,44.029623468159926,44.017325738756355,44.00666266428047,43.99737133469774,44.07008953862565,43.98597418789741,43.969229170090344,43.95293620075858],"feasible_probability":0.6209783837328309,"one_hot_probability":1.0000000000000004,"sampled_feasible_fraction":0.6171875,"counts":{"0010100011001":14,"0010100100011":1,"0010100100101":2,"0010101000011":3,"0010101000101":1,"0010101001001":34,"0010110000011":4,"0010110001001":31,"0011000011001":25,"0011000100011":1,"0011000101001":1,"0011001000011":1,"0011001001001":43,"0011010000011":1,"0011010000101":2,"0011010001001":26,"0100100011001":1,"0100101001001":3,"0100110001001":7,"0101000010011":1,"0101000011001":4,"0101000100101":1,"0101001001001":7,"0101010001001":16,"1000100011001":25,"1000100100011":2,"1000100100101":1,"1000101000011":2,"1000101001001":45,"1000110001001":33,"1001000010011":1,"1001000011001":43,"1001000100011":4,"1001000100101":1,"1001000101001":1,"1001001001001":71,"1001010000101":2,"1001010001001":51},"circuit_evaluations":117,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":57},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.32522207401052583},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[2,5,2],"max_component_qubits":5,"component_to_original":[[1,3],[6,7,10,11,12],[8,9]],"components":[{"qubits":2,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1],"quadratic":[[0,1,14]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":6}],"conflicts":[]},{"qubits":5,"penalty":17,"objective_bound":16,"offset":34,"linear":[-8,-9,-17,-10,-11],"quadratic":[[0,1,34],[1,2,17],[2,3,34],[2,4,34],[3,4,34]],"domains":[[0,1],[2,3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":13,"cost":9},{"index":1,"task":"t2","resource":"r1","start":13,"cost":8},{"index":2,"task":"t4","resource":"r1","start":15,"cost":0},{"index":3,"task":"t4","resource":"r2","start":21,"cost":7},{"index":4,"task":"t4","resource":"r1","start":17,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["resource"]}]},{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":11,"cost":0},{"index":1,"task":"t3","resource":"r0","start":12,"cost":7}],"conflicts":[]}]},"best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":13,"end":14,"reserved_end":16,"changed":true},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0,1,0,0],"qubo_energy":17},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":2001025171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.8107871765912797,2.7458866850881867],"expected_energy":0.0007410812494997204,"initial_expected_energy":2.7298871557151863,"history":[2.7298871557151863,2.2166375125464866,1.8745892143868341,4.0320338516747425,2.342637317936297,1.9975578696440852,2.018935094968875,1.6134747994651368,1.252737398225291,1.209569896523145,1.415765104178376,1.161636201157707,1.087883508789111,1.0383213993340574,1.5103310342140523,1.0116741032255052,0.8592491103355399,0.7677652113175926,0.688083017402507,0.616934716661324,0.5424992169338525,0.428431942940808,0.5707961426826738,0.6614535830988618,0.3765042114715272,0.3352103370170609,0.39628857169311227,0.3030169599911484,0.2791336141839659,0.2523746992787017,0.20426413485725256,0.13956039172190532,0.1678391545479804,0.20081258632744559,0.15811188025575482,0.11890460772915692,0.1363056731730505,0.11474541445735198,0.10808148367592393,0.09978534568135991,0.08445277706147383,0.06859211514305574,0.05398626286640418,0.05293776016834288,0.10775684277051356,0.05327709838176223,0.03601293542280144,0.026241653476384613,0.027233039445262328,0.025661732946950122,0.023340030219583745,0.0217185983976557,0.022533127896949483,0.0209446708355156,0.02021966425442843,0.018917186415725814,0.01787645001791327,0.014608153797013291,0.013549561691924089,0.010828538213564427,4.815022150529127,4.9108026213063605,4.226522803974639,0.2403181021706404,5.93291260825675,1.3314345967997125,1.0051788873645018,0.23088080351531076,0.7471086455053941,0.18745229513190195,0.1572730870847171,0.12831439732453517,0.1527907082201181,0.10687296528001027,0.11800958056048681,0.10339602141952842,0.09618903729772188,0.08858442098360864,0.07623615933333248,0.08697495540409138,0.07071996885714518,0.10134100519086975,0.06829037051249505,0.06093578353574999,0.056519367912042304,0.06442697712641685,0.053919629397652505,0.05146235372377239,0.046824730348184,0.039867700565059574,0.03167043143809409,0.015034767201760781,0.02814916148500972,0.051749099174126456,0.012571508511428416,0.022698725488739163,0.012686401979853948,0.010861358824164884,0.010112549704750767,0.016465937902435158,0.008428432002525445,0.007572131167184258,0.006802027793996283,0.007423701628981344,0.006328701972966995,0.007297839431614924,0.005505620204304239,0.004763601162911494,0.004342379191455373,0.0029336263289517677,0.003932955237038176,0.0027084290728058543,0.0038778055136240628,0.002109726658325834,0.001646796514631431,0.0014483038031865402,0.0010063954068241948,0.0028109390884504034,0.0020061472385161485,0.0007410812494997204],"feasible_probability":0.9999999999999999,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08187534900207538},{"status":"feasible","best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":13,"end":14,"reserved_end":16,"changed":true},{"variable":2,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,0,1,0,0],"qubo_energy":9},"seed":2240297063,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.5988505391251993,1.3570478122024057],"expected_energy":13.097214702259285,"initial_expected_energy":17.780945455491473,"history":[17.780945455491473,17.254864005260234,14.415685409813152,17.294209905447943,14.842277185007102,14.478557027005477,15.165248195346006,14.393585743478006,14.451142618789662,14.426718331894238,14.397498705877686,14.39391695226655,14.395110549945354,14.393377550038188,14.392553211073343,14.394194327264934,14.393252532472296,14.392722514334341,14.392644584156354,14.392468592507903,14.392619572550725,14.39243515294409,14.392369813779549,14.392243199575873,14.39199783832407,14.391581238931884,14.391764963047542,14.392274762561248,14.391415449436217,14.391430157082679,14.391418449514799,14.39128799541264,14.391155549548852,14.391629638000976,14.391006078482315,14.390881218794359,14.390641079823066,14.390168104992174,14.389959043131405,14.389376573009313,14.392539647938609,14.38859643092437,14.388860271192787,14.388727082079857,14.388479118061294,14.388186631437172,14.387986001833639,14.387407021196331,14.3879083636676,14.387766600422452,14.38732153976894,14.387569994485016,14.387272381441061,14.387161030780755,14.387057579322956,14.386801443975823,14.386660193742955,14.386394993933788,14.386133036785528,14.38561925816938,15.353420769478724,14.606045829934708,16.272873079788006,15.963199244452952,16.837155993263742,14.101248330532343,14.45568004773485,14.14623903898362,14.119568673670525,14.068679327112354,14.198744108281208,14.010731225778436,13.968668240815989,13.893331014343449,13.996075572747367,13.888099638823896,13.830499562343691,13.74505436942756,13.647533816759335,13.602240624288997,13.414640106685205,13.64184518373802,14.027954024172232,13.432469142700903,13.421045256412771,13.456389092380341,13.398123711547601,13.389127870393667,13.375252667487253,13.349929185561788,13.304434069837143,13.260328020679266,13.321095099538272,13.538230455150035,13.216004267792279,13.225134693660364,13.21378602865212,13.22898020017752,13.211627530487299,13.207874874284169,13.201617243676319,13.189946923381115,13.237820995764263,13.191764747157373,13.189251351036152,13.206273101538457,13.183072863545231,13.17893755106417,13.176094222606302,13.172923251742837,13.167136853861818,13.155980444421509,13.133938681619817,13.111093368354929,13.325184148495978,13.271167310482394,13.108497517529397,13.097214702259285,13.125813250949546,13.102443381272877],"feasible_probability":0.9974780705771473,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"00101":158,"01001":40,"01010":104,"10001":110,"10010":100},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09844153799349442},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":1311118443,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.8095880006411877,2.748657982050329],"expected_energy":0.0002790793256236112,"initial_expected_energy":2.7239327769881467,"history":[2.7239327769881467,1.3514791519122147,4.34895797378832,4.199115731961032,2.0693575090136758,1.403522509871112,1.4078784382818084,1.281115658362455,1.278136408771922,1.4608243252675017,1.1302094215477563,0.9439907344824013,0.7629332621106772,0.7765945462608824,0.7309717712700563,0.8873973198071161,0.7887057570997564,0.6271598382196875,0.6439863745418806,0.5892983515237613,0.5609814350345036,0.562487185532508,0.5205726646944911,0.4992844221586229,0.5203302205575282,0.4895058818276224,0.4696518681567396,0.4317634051301682,0.36236692459667597,0.3749576263203795,0.35187849670938603,0.40691103514693916,0.34323842879767585,0.32067651169869593,0.3021041807033098,0.3020396682770934,0.2867659922500636,0.2718839142366805,0.24349804097121772,0.19344714850064026,0.17814337766620073,0.12024376397360761,0.4376404944806148,0.06450251289465024,0.08603505549994513,0.07443820140408289,0.07031298483483742,0.05963005964365961,0.0620107583744053,0.05781593822209542,0.05505991302256897,0.05363954218796586,0.060831469611820406,0.050788511204425915,0.04550287466580874,0.036041650165104196,0.023495243889805933,0.027534760891946314,0.03467668872136362,0.026821143750215454,3.728306183818642,5.167738551667105,3.438305460254815,4.266487971431929,2.9836262795166277,1.4151922174759328,0.3659371581289684,6.71046775959199,6.1913079465383,0.3010641243878256,0.6063144136639722,0.7391891590903162,0.031941364710052406,0.6089405342024732,0.032008796370324374,0.013115171626561417,0.05270941875691703,0.031121122937908044,0.01144895098556501,0.014840037101084735,0.011575506168591465,0.010375095510256557,0.009250336300525214,0.015352294677405728,0.007807589141416343,0.0070594774730930905,0.00609438947844292,0.004448964149575375,0.006491949177071366,0.0055804830390971845,0.0046666580119345364,0.0054694654504863684,0.0041630044114696054,0.004196879808784862,0.004256725576909243,0.004000292622286867,0.0037632689508519425,0.003953940021581756,0.003469179100127535,0.003170340723523833,0.0029376700105395353,0.002253571007269881,0.0022363172124902596,0.0017844403096743395,0.001487218628659844,0.0011036455197613764,0.0007406632099848933,0.005399794355407228,0.0004056574072785163,0.0010299533091344241,0.0004840768964924873,0.00048654196846715944,0.00033543542504580826,0.00036372832908696553,0.0003249878874634688,0.0003116938475893517,0.0003193392790771452,0.0002909415910070114,0.0002790793256236112,0.00029633120077091795],"feasible_probability":0.9999999999999999,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07376087000011466}],"circuit_evaluations":360,"status":"feasible","feasible_probability":0.9974780705771471,"total_shots":1536,"runtime_seconds":0.25435527799709234},"direct_metrics":{"exact_objective":17,"optimal_count":1,"combinations":72,"optimal_probability":0.0026433848959277746,"feasible_probability":0.6209783837328307,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.2777777777777778,"shots_for_95_percent":1132,"hit_curve":[{"shots":8,"quantum":0.02095246056716873,"uniform":0.10585733481633375},{"shots":16,"quantum":0.041465915530518704,"uniform":0.20050889429825008},{"shots":32,"quantum":0.08121240891025329,"uniform":0.3608139719037934},{"shots":64,"quantum":0.1558293624595004,"uniform":0.5914412214865954},{"shots":128,"quantum":0.28737593471446643,"uniform":0.8330797244996347},{"shots":512,"quantum":0.7421055847716446,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":29},{"shots":16,"best_objective":23},{"shots":32,"best_objective":28},{"shots":64,"best_objective":17},{"shots":128,"best_objective":22},{"shots":512,"best_objective":17}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9998764864584166,"feasible_probability":0.9999999999999999,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.63207727782644e-18,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":9,"optimal_count":1,"combinations":6,"optimal_probability":0.306157137203467,"feasible_probability":0.9974780705771474,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.8333333333333334,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9462858135561587,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9971147861746763,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999916755411822,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999999307034,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":9},{"shots":16,"best_objective":9},{"shots":32,"best_objective":9},{"shots":64,"best_objective":9},{"shots":128,"best_objective":9},{"shots":512,"best_objective":9}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999601315249108,"feasible_probability":0.9999999999999999,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.2061749168901237e-18,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.30610711814058056,"diagnostic_seconds":0.008925849993829615}
+{"instance":"n5-s0-r0.json","seed":3,"direct":{"status":"feasible","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":13,"end":14,"reserved_end":16,"changed":true},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0,1,0,0],"qubo_energy":17},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.8582899432958957,1.1668133078181337],"expected_energy":53.036271469018835,"initial_expected_energy":61.16162245189889,"history":[61.16162245189889,57.46853189471298,66.57626106643511,72.68992448555682,66.3883869097401,56.073877192527505,58.65670816495579,56.34311775459675,56.03816452006969,55.77927957312532,55.56409271145353,55.707054530819235,55.26983689677002,55.333695575197524,55.497324091233594,55.207661865716986,55.192931245423836,55.289715965920635,55.18554487309103,55.15032939725887,55.086341724150586,54.96414808152903,54.82295932768942,54.57179094826457,54.442518951912575,54.19257249966655,54.178046854052496,53.75786331545052,54.00036966675286,53.964277212109494,53.82397850189817,53.71094544307458,53.83656818039237,53.68655662842389,53.64466998240361,53.58723879673581,53.701567687504586,53.53838199526112,53.50026248951227,53.42527300361956,53.34585915154676,53.25666174533795,53.25226020065513,53.47555310454125,53.256222174987684,53.181247051257195,53.13908418697544,53.143960182038775,53.12559432398539,53.115252250424874,53.099620736326635,53.072297250207804,53.04791061403995,53.12320662394707,53.15660039170443,53.045815342149425,53.036271469018835,53.0525513169533,53.038958274434705,53.039697409431724,58.8846395831678,57.48173821466996,73.70639538982729,64.09197326337636,59.33229932560877,62.618961339398425,57.89486626049999,56.23299257285255,55.782141429408185,56.02285576848267,55.75638816395434,55.68780243916781,55.616554864700824,55.535061857863106,55.40221906776167,56.957192254366205,55.42187077962645,55.38525310914218,55.45235292861115,55.29556871964467,55.250648495697256,55.20654120576522,55.18578055938157,55.13403681682496,55.07165649149482,54.97532869418793,54.87492352702445,54.75601573022861,54.75561476004118,55.141925643870124,54.76248783754468,54.64107319208121,54.58194805132706,54.600353410605,54.57501913368523,54.56261783215578,54.541084444753736,54.50023330886828,54.44622027578091,54.4822305796519,54.54721263721625,54.44784867119325,54.4389333005069,54.4288530608061,54.42363524252285,54.41714478312032,54.40636181213647,54.446494882424304,54.40897674089515,54.40483845828342,54.40784863523056,54.409624504846946,54.40023154734156,54.405544361888296,54.39765600582408,54.3954547241895,54.393002555410376,54.388548689790476,54.38311894654156,54.37722071770738],"feasible_probability":0.2884948041299123,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.3125,"counts":{"0010100010011":15,"0010100011001":31,"0010100100011":5,"0010100100101":4,"0010100101001":38,"0010101000011":7,"0010101000101":6,"0010101001001":5,"0010110000011":9,"0010110001001":3,"0011000010011":3,"0011000011001":19,"0011000100011":3,"0011000100101":2,"0011000101001":11,"0011001000011":7,"0011001000101":1,"0011001001001":4,"0011010000011":1,"0011010001001":1,"0100100011001":8,"0100100100011":1,"0100100101001":7,"0100101000011":9,"0100101000101":7,"0100101001001":15,"0100110000011":4,"0100110000101":7,"0100110001001":25,"0101000011001":1,"0101000100011":1,"0101000101001":3,"0101001000011":9,"0101001000101":4,"0101001001001":6,"0101010000011":2,"0101010000101":3,"0101010001001":7,"1000100010011":19,"1000100010101":3,"1000100011001":33,"1000100100011":6,"1000100100101":3,"1000100101001":44,"1000101000011":8,"1000101001001":1,"1000110000011":15,"1000110000101":13,"1000110001001":23,"1001000010011":5,"1001000011001":13,"1001000100011":2,"1001000101001":16,"1001001000011":3,"1001001001001":1,"1001010000011":4,"1001010000101":1,"1001010001001":5},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3201922990119783},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[2,5,2],"max_component_qubits":5,"component_to_original":[[1,3],[6,7,10,11,12],[8,9]],"components":[{"qubits":2,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1],"quadratic":[[0,1,14]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":6}],"conflicts":[]},{"qubits":5,"penalty":17,"objective_bound":16,"offset":34,"linear":[-8,-9,-17,-10,-11],"quadratic":[[0,1,34],[1,2,17],[2,3,34],[2,4,34],[3,4,34]],"domains":[[0,1],[2,3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":13,"cost":9},{"index":1,"task":"t2","resource":"r1","start":13,"cost":8},{"index":2,"task":"t4","resource":"r1","start":15,"cost":0},{"index":3,"task":"t4","resource":"r2","start":21,"cost":7},{"index":4,"task":"t4","resource":"r1","start":17,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["resource"]}]},{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":11,"cost":0},{"index":1,"task":"t3","resource":"r0","start":12,"cost":7}],"conflicts":[]}]},"best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":13,"end":14,"reserved_end":16,"changed":true},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0,1,0,0],"qubo_energy":17},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":819382448,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.8327217095229225,1.1781033529965124],"expected_energy":1.838994639997509e-08,"initial_expected_energy":1.2068124292314681,"history":[1.2068124292314681,1.060765627875906,5.885990927678294,1.726245391793006,3.807980588583931,0.20249246202532645,0.028945503341877694,0.3104828789125022,0.06755999090552572,0.006659953864037544,0.04898270370157353,0.00760833002535627,0.012031031556708816,0.0014967323699810976,0.0038508454781931408,0.0016914289119964354,0.0023933452615896595,0.0013785133041446255,0.0010109377460140226,0.0004647050801251805,0.002506211135082001,0.0018745693753284163,0.0013348478290043796,0.0003632144376735678,0.0003460595945758569,0.0007038728534232021,0.00026269555669336634,0.00023277539530265477,0.00019876889513440057,0.0001881091033856307,0.0001169952117269478,0.00026805317571138325,9.606799825803788e-05,7.809151533492742e-05,0.00010701007886780914,6.639187787859489e-05,6.104314425059298e-05,5.2573332244964044e-05,3.851915375537542e-05,3.323020862466051e-05,3.071997945174424e-05,2.1561005604227293e-05,7.71287121060767e-08,8.78659634163936e-05,9.889031295584728e-05,1.9598827377658506e-05,3.440663883220306e-07,5.863627139053519e-06,1.0935206545605337e-06,5.12940337163596e-07,9.227883026629858e-08,6.255670037945151e-08,2.3027915404318616e-07,2.4752575630226907e-08,4.185003331970169e-08,2.279852389612152e-08,3.533056314858274e-08,2.0139263909525937e-08,1.838994639997509e-08,2.3010371168103374e-08,3.0755430594675293,3.4692140778956615,2.7667606243423086,3.179155136513629,2.2704048699696378,2.132180430940123,4.769816255701594,1.3946163220390604,0.9664558580712456,1.3777650484620758,1.1324013097795629,0.8563494509209557,1.4874761239725076,0.7919302635440275,0.6472439991364981,0.5624225764890415,0.6249758074542713,0.5254018242974045,0.49640569252813466,0.42709408599371457,0.31500425305168406,0.12689993586383735,2.231746814537405,0.8417947112262512,0.3934269600045256,0.13348740422027083,0.13329040337965659,0.1255558507612114,0.17532126253431918,0.10935245199666163,0.09830015052535362,0.09080267578311964,0.08312160594834592,0.07109278118776606,0.051244904631589414,0.02784425980048304,0.004603762920980131,0.18239760471491945,0.07884173772901595,0.0031423852785500443,0.010707811804004368,0.005871591747238552,0.0028707562947657052,0.0023401840281857076,0.0015074729195123093,0.0015255171403291833,0.006480544809474173,0.001583953299291204,0.0007742094829080398,0.001120168293793872,0.0006960066649196654,0.0008218561810906638,0.0006826979483166162,0.0006438576981598451,0.0006114795221713494,0.0006058104940910324,0.0005813401719093315,0.0005582613229266609,0.0005160722406630746,0.00045858554627494115],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07471814000746235},{"status":"feasible","best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":13,"end":14,"reserved_end":16,"changed":true},{"variable":2,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,0,1,0,0],"qubo_energy":9},"seed":1645421708,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.6584436656733694,0.6085944843867258],"expected_energy":14.359201098281762,"initial_expected_energy":14.78660250062215,"history":[14.78660250062215,14.658618452621084,16.666090748980412,17.029638804416862,16.093773149485706,16.149617265044366,14.645990878842925,14.479490355901596,14.596586551498538,14.479400467301563,14.502483543573598,14.479639372363597,14.474985263641633,14.473423338700204,14.474547758029733,14.473179966599865,14.471873667264305,14.473034876233093,14.472498180473869,14.471810753947357,14.472256858344707,14.471812256060728,14.47166298420259,14.471421292312234,14.47133975416637,14.470916748851234,14.470514661222847,14.469737552943325,14.468385903001048,14.470625853642161,14.472839745905844,14.46789205144557,14.46816254876553,14.468018196496919,14.467532044187088,14.467569079627939,14.467367049058854,14.467245662357525,14.467257600514767,14.467062676284236,14.466878871869667,14.466622176740756,14.46623229628549,14.465900045715369,14.46513521926967,14.463794581153499,14.465619105321881,14.468016700932221,14.46333546450347,14.463763797204287,14.46342831203629,14.46300895188884,14.463007652566164,14.46274068780959,14.46251400478158,14.462157809841964,14.461494434057526,14.4619955159087,14.461423013444545,14.460899119612133,17.846137868631022,17.04116268259207,15.242364327844712,17.235368709039783,15.863626871836177,16.442409742337112,15.057388330591039,14.619977587942639,14.386430178074121,14.5154490079359,14.506185211227198,14.361761780066288,14.439076548704222,14.366699608748085,14.363051641016003,14.362796747084655,14.363087318721696,14.360592950844747,14.36125301366083,14.360762351926342,14.360662635712856,14.360579541873417,14.360568362186513,14.360538469460302,14.360486911201372,14.360387394509312,14.360355394379258,14.360231832399368,14.36107899381677,14.360055367044328,14.360122591304691,14.360036193541543,14.360088962431728,14.36001366195617,14.359988430669386,14.359940046830687,14.359881228198187,14.359800270744973,14.35981402591732,14.359912016600058,14.359803603413228,14.359767564463628,14.359746900656816,14.359721973792919,14.359697150974954,14.359647056535284,14.359547572365699,14.359385985968055,14.360084487667205,14.360400713539931,14.359331012741016,14.359366695393586,14.359320769205361,14.359459673987011,14.35927260063065,14.359241968749664,14.359221047043553,14.35923900912156,14.359209362707793,14.359201098281762],"feasible_probability":0.9194958762747939,"one_hot_probability":1.0,"sampled_feasible_fraction":0.92578125,"counts":{"00101":123,"00110":38,"01001":50,"01010":111,"10001":132,"10010":58},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08968137099873275},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":3451799802,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7909852543105649,2.749446974434362],"expected_energy":3.2328738270499895e-05,"initial_expected_energy":1.0514230515731842,"history":[1.0514230515731842,2.340191649491919,4.436479265525245,4.424156826657552,1.9131766710523557,1.1949874454843286,1.106580814306618,1.0138765773549816,1.152689755968366,0.8993881139247517,0.7982597986853527,0.6142292513394355,0.5536511935366126,0.3609457045726698,1.2638632974943496,0.1904309986430108,0.35744603241877276,0.2768535157701388,0.1771117456082238,0.15510762788096222,0.14325841987000637,0.11942104036792948,0.10868806933353495,0.08897891582520959,0.07654313556016097,0.06163349508860229,0.051117115976067926,0.07608847185170839,0.045064211707235007,0.04086394835332304,0.04769921722225015,0.03836625900572046,0.03613634380468299,0.031895520113156745,0.026908659680221735,0.02048702890099803,0.01805394079419136,0.042785931605062916,0.01321357923498466,0.012381543153677853,0.009445397616403912,0.006062332872867896,0.003701682024184706,0.0010534252394752309,0.00038707084471195944,0.05085821310850875,0.00868685795790105,0.000627085166000187,0.004482062405617841,0.00035083724713347926,0.0002946377134685964,0.000860899283444121,6.237313672262505e-05,0.0001667906741221727,5.552322068338893e-05,0.00013509349000191397,4.916135458354631e-05,4.2888405076300194e-05,3.5968505357164446e-05,3.2328738270499895e-05,4.665130993726638,4.024973148789534,4.133878583974288,3.4274285379566427,5.028463618837294,3.030390665319191,3.575923504080862,2.119954057617028,2.9696768475951245,2.9686996809708663,2.927906770851854,2.448116652227269,1.6784014357846613,1.7941381843214264,1.6061026978757058,1.4804529723406545,1.261926159448374,1.0607050407646776,2.2877590056370583,0.8789762615956719,0.7171530385393567,0.6319345358729545,1.101708711923471,0.5157320552353687,0.4617143784540141,0.38497766238348125,0.25625842145123223,0.3396363444901285,0.41310206987085024,0.2894605907774674,0.24118879270448967,0.2737506241663389,0.23372573653223394,0.21958748212275106,0.19349199520757923,0.15131014646808083,0.16491604505352297,0.20155144014292803,0.13755980399998832,0.11937387146110068,0.10158780382567878,0.24436675340734146,0.07526455490659971,0.07210433158140009,0.053583652412866736,0.04309671536705462,0.025959141937289824,0.04844000949530917,0.05927672346034456,0.02806391797709194,0.01815733837096429,0.019262245272093182,0.01684179109364913,0.01621371204818496,0.018145938720760164,0.014313031918234503,0.013179842343316853,0.011878368178065042,0.009760476325699315,0.007699632542866194],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.0720358990074601}],"circuit_evaluations":360,"status":"feasible","feasible_probability":0.9194958762747939,"total_shots":1536,"runtime_seconds":0.23670550200040452},"direct_metrics":{"exact_objective":17,"optimal_count":1,"combinations":72,"optimal_probability":0.022176445837819966,"feasible_probability":0.28849480412991235,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.2777777777777778,"shots_for_95_percent":134,"hit_curve":[{"shots":8,"quantum":0.16423543095139695,"uniform":0.10585733481633375},{"shots":16,"quantum":0.3014975851230028,"uniform":0.20050889429825008},{"shots":32,"quantum":0.5120943764110033,"uniform":0.3608139719037934},{"shots":64,"quantum":0.7619481024702323,"uniform":0.5914412214865954},{"shots":128,"quantum":0.943331294082477,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999896872810795,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":6.938893903907228e-17,"independent_samples":[{"shots":8,"best_objective":17},{"shots":16,"best_objective":24},{"shots":32,"best_objective":17},{"shots":64,"best_objective":17},{"shots":128,"best_objective":17},{"shots":512,"best_objective":17}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.999999996935009,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":9,"optimal_count":1,"combinations":6,"optimal_probability":0.23527162263640858,"feasible_probability":0.9194958762747939,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.8333333333333334,"shots_for_95_percent":12,"hit_curve":[{"shots":8,"quantum":0.8830345355969359,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9863190801369756,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9998128324317015,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999649683013,"uniform":0.9999914414488029},{"shots":128,"quantum":0.9999999999999988,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":9},{"shots":16,"best_objective":9},{"shots":32,"best_objective":9},{"shots":64,"best_objective":9},{"shots":128,"best_objective":9},{"shots":512,"best_objective":9}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999953816088185,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.65121312490596e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.23527053533891926,"diagnostic_seconds":0.010601857997244224}
+{"instance":"n5-s0-r0.json","seed":4,"direct":{"status":"feasible","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":13,"end":14,"reserved_end":16,"changed":true},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0,1,0,0],"qubo_energy":17},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.8918266305218547,1.167371919604939],"expected_energy":53.03579648577238,"initial_expected_energy":70.70149995544804,"history":[70.70149995544804,70.58529894565834,56.32907590651178,66.13585332758569,57.5641104138963,55.20331581856068,55.091112056150834,54.41915041440103,53.66150473099417,53.41833298832303,55.8350350301019,53.22201973898051,53.41110089313099,53.57077170885246,53.19982584423097,53.254427924095616,53.204667429565774,53.181369877730546,53.16167906240567,53.18894090002486,53.150108906269764,53.141185344554266,53.120588514523746,53.08863131980923,53.3045242459075,53.10660626674433,53.095958953639716,53.09786110238811,53.08235813085991,53.084355679813015,53.075914969423664,53.072433107092024,53.08199901862742,53.06565824300713,53.06104213457017,53.05578841267237,53.047161190910046,53.07459005845653,53.054162341411995,53.04876673624747,53.04944032347237,53.04716784415857,53.04613985555228,53.044324085480014,53.0411099254181,53.04310608095844,53.04206116994599,53.04059718809654,53.040986920712065,53.03994120181886,53.03963750188133,53.04029322362349,53.039496138203994,53.03921775633415,53.03868978693539,53.0377199177445,53.036210000368854,53.03680087610235,53.0381063564668,53.03579648577238,79.04294915218891,77.47679094647978,64.58437300026303,84.26310512739083,65.61232123269876,63.36220016826752,65.71645265384488,63.622385323175294,63.44169779022136,63.77401818300697,63.69180186274805,63.327981484684486,63.404973255850386,63.321372823569135,63.309011156598984,63.29690103600031,63.29742439666201,63.28838887312442,63.290852230673686,63.29603359200404,63.279560456935656,63.281734926494664,63.28677280766504,63.27982189441195,63.27636382133786,63.27057462835795,63.26015649222349,63.260134943158654,63.2438799915737,63.24143369063758,63.23104675711184,63.22609585956319,63.22258516781157,63.22375082472982,63.23705277566856,63.222826248307484,63.22133218587068,63.22389617278182,63.22142529387621,63.221552122408404,63.22131383820954,63.22126155538922,63.22134914449433,63.22126830293871,63.22126605947858,63.221259374296906,63.22126082721057,63.22126185666025,63.221258882948504,63.22125931357422,63.22125880513799,63.221258701767326,63.22125854854718,63.22125832344138,63.221258302866374,63.22125803625924,63.22125940015789,63.221258334376216,63.22125802870339,63.22125818727736],"feasible_probability":0.2897676446691145,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.298828125,"counts":{"0010100010011":25,"0010100010101":3,"0010100011001":43,"0010100100011":7,"0010100100101":8,"0010100101001":48,"0010101000011":13,"0010101000101":5,"0010101001001":11,"0010110000011":7,"0010110001001":4,"0011000010011":9,"0011000010101":1,"0011000011001":13,"0011000100011":4,"0011000101001":13,"0011001000011":9,"0011001000101":2,"0011001001001":3,"0011010000011":1,"0011010001001":3,"0100100010011":1,"0100100011001":6,"0100100101001":3,"0100101000011":17,"0100101000101":6,"0100101001001":13,"0100110000011":3,"0100110000101":3,"0100110001001":15,"0101000011001":4,"0101000100011":1,"0101000101001":3,"0101001000011":4,"0101001000101":1,"0101001001001":6,"0101010000101":2,"0101010001001":5,"1000100010011":18,"1000100010101":1,"1000100011001":17,"1000100100011":8,"1000100100101":1,"1000100101001":29,"1000101000011":9,"1000101000101":3,"1000110000011":11,"1000110000101":7,"1000110001001":20,"1001000010011":6,"1001000011001":17,"1001000100011":3,"1001000100101":1,"1001000101001":19,"1001001000011":2,"1001010000011":5,"1001010000101":3,"1001010001001":7},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.30730285700701643},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[2,5,2],"max_component_qubits":5,"component_to_original":[[1,3],[6,7,10,11,12],[8,9]],"components":[{"qubits":2,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1],"quadratic":[[0,1,14]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":6}],"conflicts":[]},{"qubits":5,"penalty":17,"objective_bound":16,"offset":34,"linear":[-8,-9,-17,-10,-11],"quadratic":[[0,1,34],[1,2,17],[2,3,34],[2,4,34],[3,4,34]],"domains":[[0,1],[2,3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":13,"cost":9},{"index":1,"task":"t2","resource":"r1","start":13,"cost":8},{"index":2,"task":"t4","resource":"r1","start":15,"cost":0},{"index":3,"task":"t4","resource":"r2","start":21,"cost":7},{"index":4,"task":"t4","resource":"r1","start":17,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["resource"]}]},{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":11,"cost":0},{"index":1,"task":"t3","resource":"r0","start":12,"cost":7}],"conflicts":[]}]},"best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":13,"end":14,"reserved_end":16,"changed":true},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0,1,0,0],"qubo_energy":17},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":367776961,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.8083166262211705,2.7489414115603],"expected_energy":0.0006496560244178296,"initial_expected_energy":4.293204648151745,"history":[4.293204648151745,4.76581270052563,3.8740556181551704,2.06043888677487,4.219466292990722,2.3316007732070783,2.4281625280959087,2.2962248893968327,1.6667840114529426,1.4131896808748434,0.8011918473834128,0.551114757623802,2.072284035411058,2.840225247764499,0.5690640126924124,0.15557473427947507,0.4542457572200777,0.2011115997159414,0.17606675729518473,0.14847449949109376,0.1425106947539334,0.30428776466343366,0.08469722918476043,0.12554073693805867,0.0793490771354101,0.09341198289684477,0.07897370739962666,0.07460998610904283,0.06812684142167034,0.05746236738716569,0.0558271013349654,0.04375322556337034,0.040365582425742064,0.023238945054454445,0.045280399841690244,0.021558308727928615,0.026994592667575847,0.02234956089724381,0.01924864174834541,0.017964404097607578,0.02277521629976226,0.016481714238340307,0.01567370895907859,0.014426568036953552,0.01235319840819982,0.015517508080276618,0.011532575342091468,0.00926509098588819,0.005442106182842325,0.002206269231187618,0.023300455395574796,0.01855797586737273,0.0018837148684227537,0.000873022000287527,0.0034744568951199086,0.0013373713028771936,0.0010558092354190842,0.0007887440244217209,0.0006670562566654623,0.0006496560244178296,3.2605601077903854,3.4930368026811522,3.927347397684722,2.2349590400122326,3.1305219616026574,3.2360071309849934,2.597956227328925,2.0805480360527326,1.8812897106384265,2.09805581993092,1.8189515056097554,1.7127285174751168,1.6802417040806032,1.5642181844749472,1.4524848287294079,1.2411804971218041,0.9360495120228018,1.5492680130818162,1.8430627062132845,0.8423231446483683,0.7301778078193772,1.0607997221897798,0.6385023003587115,0.5642727498734943,0.4272760400218452,0.23053734258921685,0.2570480026473926,0.4745144516043924,0.27424989117041837,0.20724024513611056,0.17272593095694233,0.1909539224299181,0.14972887236366905,0.1565158135047401,0.15456444924322174,0.14296333363289881,0.1406976734549253,0.15637516719463238,0.13804641787468114,0.13313793468951773,0.12468667229658664,0.11160041294275111,0.0856244124283097,0.04834925651629138,0.06263559625158253,0.09120285926776989,0.05146353012250188,0.052515962656985535,0.042039748162818295,0.03530569472784338,0.028211686245886047,0.0223501993328188,0.020801885697614098,0.014173214878654543,0.002738374765890041,0.004312043471037475,0.04839898727010798,0.004266023741214039,0.007781141546840169,0.004375432098812209],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07300725099048577},{"status":"feasible","best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":13,"end":14,"reserved_end":16,"changed":true},{"variable":2,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,0,1,0,0],"qubo_energy":9},"seed":3166742020,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.916624360098938,2.9353577716676895],"expected_energy":13.13952713463502,"initial_expected_energy":14.466249418202288,"history":[14.466249418202288,15.289570650063288,18.30112133106255,15.512585566496627,14.074995457189145,15.817862034823044,14.561459672728358,13.559027333733857,13.344895822468652,14.159312454261604,13.294315818788906,13.381259420508234,13.332756488602204,13.345787605334905,13.292792423427844,13.288022570434503,13.279723687266344,13.267673886726948,13.244928291794817,13.201766821718643,13.199331051406153,13.3197183180162,13.212154542171959,13.391921218004205,13.15170366943206,13.158126589211923,13.15528638338249,13.154643308053698,13.14802440702815,13.147389246763149,13.146268007381245,13.145547240286394,13.144982946842626,13.144318844516198,13.144177676756922,13.15705468696035,13.142231985819969,13.143307825833588,13.141980555254047,13.1443694000381,13.141789021521532,13.141532788156804,13.141375600569024,13.145144125231896,13.140686639229479,13.140711703801745,13.140643149457219,13.140626778700854,13.14100778914309,13.140599461090718,13.140491042286587,13.140406036131115,13.140282596665687,13.14017288591818,13.140069634978062,13.140053380946668,13.139855787587896,13.13969834509403,13.13952713463502,13.139536172163378,16.242370852299945,16.29118978479074,13.261954828153701,18.68362972973575,14.646255700330276,13.67638231193408,13.762108534140848,13.270555046886248,13.209075799119645,13.498705324299952,13.19833034205255,13.208371575406952,13.198256544757895,13.196415294704563,13.19563132781892,13.20063278398344,13.192941854168867,13.19177744384237,13.189350684277638,13.186008899908822,13.181635031875395,13.177718063584951,13.176285650308374,13.16530063070417,13.169728436423949,13.198624784646428,13.166959870125865,13.166856268886052,13.163127975111939,13.161389308499578,13.158797338612121,13.18018878408445,13.161088031434453,13.160374790170655,13.159618523256764,13.158624775725539,13.158197646836317,13.15785602127467,13.15715077131904,13.15648412108301,13.155331599867157,13.153228414192018,13.148464986824383,13.143394860724513,13.210318735698012,13.184562485823957,13.142951338642334,13.142266306314308,13.14389578702936,13.143078166334229,13.141114448857046,13.140886896948786,13.141203690675447,13.14095004580379,13.14075601284186,13.14080197836157,13.140698446796527,13.140665761888101,13.140697257563417,13.140602533780939],"feasible_probability":0.9986093923810888,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"00101":141,"01001":101,"01010":113,"10001":59,"10010":98},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08478004499920644},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":1587198119,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7927600414357172,1.1780373169037186],"expected_energy":8.049754513314929e-06,"initial_expected_energy":3.4728678976559273,"history":[3.4728678976559273,2.927880706972604,2.429094477030546,4.864990248606144,3.0053799410407414,2.48878470150299,2.3106645925802782,2.1023727588061707,1.8373763343862182,1.925418663680972,1.7683304943444522,1.6452517217167808,1.440269392636868,1.4918144899692705,1.2811633989003564,1.4511262571045187,1.3467390558420362,1.2011072318582912,1.2607954456127137,1.0906195547157949,1.0208901169995428,1.141411329999392,0.913795735380496,0.81932952708478,0.8488140098154735,0.7646868918821715,0.802607776340784,0.8236615124549054,0.6944626314797151,0.7271053664945213,0.6518466307010576,0.6296620407030307,0.6683260994761178,0.6193254788264477,0.5971689465998335,0.5553939103542187,0.518596146076345,0.4322739591765302,0.37415581735735676,0.30591660763699047,0.2027487413360015,0.04571950449471631,0.6225806000482751,0.3347152389530551,0.03394978154871695,0.09575025952510391,0.039140611671137,0.034158089529675875,0.03903449237391495,0.03196847023751515,0.029969368418857792,0.026147364549321747,0.01944207973955364,0.013993122655833582,0.01257451763866984,0.004015423229352449,0.006568432506669111,0.02151558921793796,0.005537052929833391,0.0021580389632490696,1.7619291724549138,1.7920287869289164,1.5199528517092813,6.838066433937461,0.3140594398330057,0.6560365017970702,0.5748665401391426,0.10383846120059778,0.0329351138558569,0.4819377685812068,0.07792196210093982,0.02624812915131765,0.12552712259700127,0.023858094191437,0.02018758283219531,0.013689196698050856,0.010383774172494305,0.12906487278512097,0.002671430186168453,0.02715712554553223,0.0015581039492189562,0.0024625599925451967,0.0023351563312684867,0.0007773457612802152,0.000840427062106495,0.0009677081225091828,0.0007746415779012148,0.0008240183694476965,0.0007774895800049677,0.0007326738265971028,0.0006745497953059987,0.0007045604875697895,0.0006457142817394871,0.0006222116511938751,0.0006098142361855083,0.0005410206054746211,0.0004931517808552394,0.00044433548157898087,0.0003754075893997067,0.0003061184340943527,0.0002561462945788448,0.0004086746852303005,0.0002107763596794662,0.0001953827996308681,0.00016011300941555712,0.00011881798450471152,8.090521015647879e-05,4.930044884427211e-05,0.00025087267249574883,8.529923195773827e-05,4.575988772750628e-05,0.00010864514813064184,3.158357987481894e-05,2.9198158990392416e-05,2.236047072670912e-05,1.7110221979094554e-05,1.657816550162647e-05,8.049754513314929e-06,2.3922064715052452e-05,1.4818547167793443e-05],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07451265800045803}],"circuit_evaluations":360,"status":"feasible","feasible_probability":0.9986093923810888,"total_shots":1536,"runtime_seconds":0.23258122200786602},"direct_metrics":{"exact_objective":17,"optimal_count":1,"combinations":72,"optimal_probability":0.02158546471468778,"feasible_probability":0.28976764466911453,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.2777777777777778,"shots_for_95_percent":138,"hit_curve":[{"shots":8,"quantum":0.16018588922087473,"uniform":0.10585733481633375},{"shots":16,"quantum":0.2947122593362671,"uniform":0.20050889429825008},{"shots":32,"quantum":0.5025692028694471,"uniform":0.3608139719037934},{"shots":64,"quantum":0.7525626020660627,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9387747341036824,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999859484989679,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":6.938893903907228e-17,"independent_samples":[{"shots":8,"best_objective":22},{"shots":16,"best_objective":23},{"shots":32,"best_objective":17},{"shots":64,"best_objective":17},{"shots":128,"best_objective":17},{"shots":512,"best_objective":17}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9998917239959304,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":6.098637220230962e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":9,"optimal_count":1,"combinations":6,"optimal_probability":0.3082521574717486,"feasible_probability":0.9986093923810888,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.8333333333333334,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9475696802308667,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9972510615689064,"uniform":0.9459121070676046},{"shots":32,"quantum":0.999992443337502,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999999428969,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":9},{"shots":16,"best_objective":9},{"shots":32,"best_objective":9},{"shots":64,"best_objective":9},{"shots":128,"best_objective":9},{"shots":512,"best_objective":9}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999988500350696,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.8295911660692887e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.30821842671910255,"diagnostic_seconds":0.009622187004424632}
+{"instance":"n5-s0-r0.json","seed":5,"direct":{"status":"feasible","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":13,"end":14,"reserved_end":16,"changed":true},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0,1,0,0],"qubo_energy":17},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.8825786581138989,2.9258434372478743],"expected_energy":43.15974588023296,"initial_expected_energy":69.98982714915586,"history":[69.98982714915586,69.93023835683746,68.91356357024259,83.06103482475856,80.32917644865122,69.36640302779735,63.89716068440846,71.77456956469814,67.33749014018707,62.576110209174516,60.970003153286896,57.61382918683444,50.530385792830685,47.7840649458904,81.98423534186185,69.70051041475163,48.92825607582232,43.21576300538897,49.08334319034957,43.20862933106321,45.07005229476889,44.125769078240495,43.777935605990564,43.225223787296684,43.18604473012389,43.19841138398663,43.201617945502974,43.172187431367234,43.188332495863996,43.16856424349068,43.170352178409374,43.16780856711217,43.167687404146584,43.16859345584385,43.167786834126815,43.16690346187852,43.16585425066354,43.16663511811043,43.16531506650439,43.16491994041776,43.16508544238517,43.16441756855363,43.16403236825238,43.164191573807585,43.16362693855409,43.16337343434205,43.163506460077194,43.162934989028585,43.16264880999243,43.16286078734518,43.162268046891555,43.1620286903016,43.16237436260552,43.16167454908363,43.16135405051132,43.16113130795996,43.160491483721856,43.160250648580416,43.15985311558887,43.15974588023296,72.64694338905473,82.67244933349045,93.66841597701038,98.56259954099407,87.97150190892492,68.38129079283713,74.95580513563192,67.82223756429426,67.6005175554286,65.63747162391982,62.8408554192163,54.43117669462653,60.55034052670553,75.55144560335805,52.65103449210198,50.31197581617064,52.868155868363026,47.987332801793066,47.11631598466105,45.72485005355002,44.73224187297978,44.68045930138885,43.71744222214515,46.00250290731416,44.66094720698858,43.94387136061969,43.79470699643668,43.687762024784135,43.88741745493746,43.6574845362316,43.60407726487167,43.509837167221434,43.36252118610509,43.58430694007657,43.455790165634525,43.37263680453995,43.3815015111681,43.33931836684953,43.337985670743755,43.38340475671991,43.30358498001767,43.26119629592667,43.22083649209064,43.20666761989729,43.22475956517174,43.336758901805936,43.174978771068936,43.16758572304326,43.16591630745701,43.19445783461884,43.161502261519544,43.16290954884104,43.161289025420075,43.16286603678856,43.16111109768258,43.16082626723254,43.16037960570594,43.16197825576647,43.160358410058414,43.16005905426317],"feasible_probability":0.5567867033852014,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.564453125,"counts":{"0010100010011":22,"0010100010101":2,"0010100011001":11,"0010100100011":5,"0010100100101":1,"0010100101001":9,"0010101000011":26,"0010101000101":1,"0010101001001":23,"0010110000011":4,"0010110001001":1,"0011000010011":4,"0011000011001":9,"0011000100011":10,"0011000100101":1,"0011000101001":5,"0011001000011":15,"0011001000101":1,"0011001001001":16,"0011010000011":1,"0011010001001":1,"0100100010011":17,"0100100011001":12,"0100100100011":11,"0100100101001":6,"0100101000011":26,"0100101000101":2,"0100101001001":28,"0100110000011":11,"0100110000101":2,"0100110001001":8,"0101000010011":14,"0101000011001":11,"0101000100011":3,"0101000100101":1,"0101000101001":4,"0101001000011":30,"0101001000101":3,"0101001001001":20,"0101010000011":9,"0101010000101":1,"0101010001001":6,"1000100010011":10,"1000100011001":8,"1000100100011":3,"1000100101001":3,"1000101000011":10,"1000101000101":1,"1000101001001":13,"1000110000011":9,"1000110001001":8,"1001000010011":12,"1001000010101":1,"1001000011001":4,"1001000100011":1,"1001000101001":5,"1001001000011":11,"1001001001001":5,"1001010000011":11,"1001010001001":4},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.32695414499903563},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[2,5,2],"max_component_qubits":5,"component_to_original":[[1,3],[6,7,10,11,12],[8,9]],"components":[{"qubits":2,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1],"quadratic":[[0,1,14]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":6}],"conflicts":[]},{"qubits":5,"penalty":17,"objective_bound":16,"offset":34,"linear":[-8,-9,-17,-10,-11],"quadratic":[[0,1,34],[1,2,17],[2,3,34],[2,4,34],[3,4,34]],"domains":[[0,1],[2,3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":13,"cost":9},{"index":1,"task":"t2","resource":"r1","start":13,"cost":8},{"index":2,"task":"t4","resource":"r1","start":15,"cost":0},{"index":3,"task":"t4","resource":"r2","start":21,"cost":7},{"index":4,"task":"t4","resource":"r1","start":17,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["resource"]}]},{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":11,"cost":0},{"index":1,"task":"t3","resource":"r0","start":12,"cost":7}],"conflicts":[]}]},"best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":13,"end":14,"reserved_end":16,"changed":true},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0,1,0,0],"qubo_energy":17},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":803261128,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.838916697552081,2.7489397445525565],"expected_energy":4.408290606137648e-05,"initial_expected_energy":2.300112938247006,"history":[2.300112938247006,2.1121439637036796,0.8783626868158623,5.671454193595532,0.04000782092308347,0.028371641913599723,0.2377217425263709,0.04241565144151303,0.11793239631958188,0.026393340619016298,0.01960615794160061,0.03561802084106064,0.05610205516931489,0.01591790854084833,0.006109796347291002,0.003946418234058086,0.0030346646703431476,0.0047249398733492645,0.002683007425647296,0.0020642962070117465,0.0019772729619592913,0.0033198730156395184,0.0016187473554034524,0.00142120900594205,0.0012590131603577364,0.0016018300311355076,0.0011650986970800433,0.0009945242504930205,0.0006932743653772599,0.0005081525970009671,0.0010497620614544302,0.0018830762754757132,0.00045189539516849575,0.00021125473416399283,0.00023472139015158423,0.00023721158729987288,0.00022321602979298962,0.00019185377562900446,0.00016843210105119306,0.00014235769342363228,0.00010487553618283388,0.00021835743069875032,0.00012451763286725726,0.00011861835912406131,0.00011467147148282931,9.285423562763706e-05,9.42749579891382e-05,8.37241601255323e-05,7.654885997499628e-05,8.075259266125352e-05,6.925057527594221e-05,6.301680884266163e-05,6.74471377475235e-05,5.875368504359417e-05,5.74771801621228e-05,6.22991696900638e-05,5.722077302452104e-05,5.5035416489284e-05,5.121682567442939e-05,4.408290606137648e-05,4.155004696699418,5.189891489154739,2.6558089939247105,2.568372657220514,2.995799843001335,3.1253161566416896,2.669863658474602,2.256221415041053,1.6574215373288892,1.7666647087114338,1.9463221327245253,1.6136509783430748,2.088880772296888,1.609560581604724,1.4507166645311946,1.2431695215485652,1.0440934744017305,0.951376959291895,0.7443896439174025,0.6878418161874468,0.4021949870890156,1.0877935249244461,0.3157409499864713,0.29960628098218767,0.8107170286573913,0.18920285432264555,0.17356238678292907,0.12862674390349996,0.06290315095136866,0.23978809202582577,0.23495959657662524,0.12583916329721695,0.060440467421731564,0.05316624161001181,0.04052500380951239,0.021722218517221413,0.0892254755122175,0.06848345863873818,0.03530823625047527,0.01971755420164716,0.02224939768456724,0.01967813171434184,0.018120997774314196,0.01558769901252667,0.010741771176962227,0.006075491619616919,0.017449569052835536,0.024237916974764608,0.0035075598277893275,0.0042095982210698935,0.004227711179231588,0.0034977720220882324,0.0037072198814652327,0.003508168899622727,0.0034188236373461998,0.003279304118325654,0.0031380198511047064,0.002905593968689905,0.002688818370417396,0.0022872043243678513],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07552364798903},{"status":"feasible","best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":13,"end":14,"reserved_end":16,"changed":true},{"variable":2,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,0,1,0,0],"qubo_energy":9},"seed":3767054407,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.8969046361284632,1.3576455168036425],"expected_energy":13.074359065384462,"initial_expected_energy":13.317985105491168,"history":[13.317985105491168,13.936184945667765,18.499147092466956,16.142019745674165,15.662038655277648,14.663119394872712,13.282655604818821,13.216636758452317,13.35994347250697,13.246017408749546,13.231807176050983,13.212049780569016,13.204605368186094,13.201993835008718,13.198403448766303,13.197316875539553,13.19362043446722,13.190316176462176,13.183946897078112,13.171594521645353,13.170625973042718,13.14602607206346,13.227513308551949,13.166158073567573,13.143738997829207,13.152155732754466,13.142096816642507,13.139667852575503,13.135036880586366,13.128655387945127,13.152757888397055,13.123809926423721,13.124868965735796,13.127227314655606,13.12293552141892,13.122879450369346,13.123590976553032,13.122897377357273,13.122609493892472,13.122106168898178,13.121332512370156,13.11974939827724,13.11796242941287,13.114708237026987,13.109141183046045,13.098256127993977,13.07862468181363,13.22861082075329,13.346146505797808,13.075193631129656,13.144911411791838,13.07842904321274,13.088962560374503,13.077037547852921,13.075839546793972,13.074981844349807,13.075013013047982,13.074953539422182,13.074739768515723,13.074359065384462,15.4337496714234,14.41235087390264,16.561425900565713,16.028193167582323,16.112407781663805,14.242509928864612,14.473114779372606,14.279892051457129,14.16602985119373,14.262938726502354,14.12071747760426,14.07796890234595,13.99292772302978,13.82947176785613,13.756518007638062,14.08371562462148,14.762026587855342,13.743023410823636,13.529742472798343,13.544670578213873,13.512952805948771,13.521915202728707,13.50658977495144,13.495300709580357,13.47992731114206,13.479504040310667,13.473946844934838,13.468636871919623,13.458839613501368,13.444969134628238,13.551447974430602,13.42389269663962,13.41458630070681,13.466774339529874,13.399642908731925,13.389264206671145,13.379528661535204,13.374054682348238,13.348297542335544,13.341406511399594,13.317419106428313,13.308953775051252,13.268467600853338,13.471348459849798,13.299053473717315,13.292389836965489,13.275366388201178,13.261215316661314,13.269925267227173,13.257124042881467,13.25457018716591,13.250152257982412,13.242295613661245,13.226956969647908,13.209686892727625,13.207493375086523,13.180626294595893,13.155574341378868,13.133662644933551,13.222203867436653],"feasible_probability":0.999258354858468,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.998046875,"counts":{"00101":126,"00110":1,"01001":47,"01010":125,"10001":115,"10010":98},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08997957399697043},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":3210010690,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7941052002016562,2.7488382313271424],"expected_energy":1.6793787870116725e-06,"initial_expected_energy":5.77080999679471,"history":[5.77080999679471,4.5413562100424825,2.7337404213316314,3.3273939665924805,1.8829704497192858,1.1837939802866515,0.29587840983948677,4.409691798800949,1.452920629680091,0.7375124558563206,0.33699827141969757,0.2941416504548239,0.2339701218038461,0.18089831193176792,0.11141447144945744,0.4406747878371723,0.08270678303153403,0.10553763794225396,0.06763391058903206,0.17958389202361946,0.0433045250686438,0.04635361979724009,0.04162106593124765,0.04481481555352691,0.040368489720505274,0.03796484921958542,0.033833662504687854,0.026513589611536405,0.05210505678238211,0.028147663266511542,0.026003998077936415,0.03462641116475385,0.02307658422282402,0.021004083016194726,0.01845364187987133,0.015311868693455195,0.010127940986872773,0.0037051970578488675,0.027969018450222847,0.020157678332339238,0.003178947322832524,0.0026376316818172156,0.002408787498015507,0.0043147418155166095,0.0014622861018783791,0.0017003871599096392,0.0013789387365149186,0.001550330369678411,0.001355889350814061,0.0012937807589827033,0.001193041807788737,0.0012427852043788363,0.001115272632423665,0.0010488183703490639,0.0009607259499481229,0.0011794460646764808,0.0009139703962581548,0.0008406364616838383,0.0007773989938159106,0.0007699005961582231,1.1244734123494307,1.674133992530327,6.6102147021489515,2.320446026800159,3.914701750184229,0.2886880873674032,0.21922497091358548,0.18670019078577355,0.2719918784541001,0.0961264669983201,0.12305047634212911,0.09054595184350754,0.10894044251619155,0.08925844810951918,0.08353469330401653,0.07496871981041049,0.0625420268501726,0.05826646709857937,0.04589737058583097,0.02941592326368691,0.017423688902755405,0.00848839768765551,0.002244129495498939,0.004751579243231923,0.01791504025960172,0.0031098498427032284,0.0021884485439224656,0.0018600703818092653,0.0016890089492459304,0.0026327528012543688,0.0007223064517786295,0.0010501882086629342,0.0006857181825284896,0.0008802216645518885,0.0006796748753166833,0.0006215259809041851,0.0005390995808778464,0.0004285851335452504,0.00046651829984319196,0.000405858147441008,0.00045355752811499823,0.00037842510473670677,0.0003553694337274999,0.00031426955280305913,0.00024234383953998466,0.00013714900455661356,9.054671680298361e-05,4.5368022191179744e-05,4.475038809717992e-05,0.00029497321456566024,4.747044123973308e-05,3.4572723927594177e-06,1.762908985414256e-05,3.877289015353106e-06,1.680356189549235e-05,1.7580568290988184e-06,3.567804098490548e-06,1.9578935709261544e-06,1.961934251279934e-06,1.6793787870116725e-06],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07071398399421014}],"circuit_evaluations":360,"status":"feasible","feasible_probability":0.999258354858468,"total_shots":1536,"runtime_seconds":0.23647750201052986},"direct_metrics":{"exact_objective":17,"optimal_count":1,"combinations":72,"optimal_probability":0.051186866117308515,"feasible_probability":0.5567867033852014,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.2777777777777778,"shots_for_95_percent":58,"hit_curve":[{"shots":8,"quantum":0.34318131037921507,"uniform":0.10585733481633375},{"shots":16,"quantum":0.5685892089648349,"uniform":0.20050889429825008},{"shots":32,"quantum":0.8138847293784132,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9653611060414535,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9988001470253286,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999999999979274,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":6.938893903907228e-17,"independent_samples":[{"shots":8,"best_objective":17},{"shots":16,"best_objective":17},{"shots":32,"best_objective":17},{"shots":64,"best_objective":17},{"shots":128,"best_objective":17},{"shots":512,"best_objective":17}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999926528489897,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.0825081065909958e-18,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":9,"optimal_count":1,"combinations":6,"optimal_probability":0.3082161379618695,"feasible_probability":0.9992583548584681,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.8333333333333334,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9475478357550062,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9972487704660162,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999924307360514,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999999427063,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.942890293094024e-16,"independent_samples":[{"shots":8,"best_objective":9},{"shots":16,"best_objective":9},{"shots":32,"best_objective":9},{"shots":64,"best_objective":9},{"shots":128,"best_objective":9},{"shots":512,"best_objective":9}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999997600887447,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.225134493374965e-20,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.3082137995073828,"diagnostic_seconds":0.009515839992673136}
+{"instance":"n5-s0-r0.json","seed":6,"direct":{"status":"feasible","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":13,"end":14,"reserved_end":16,"changed":true},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0,1,0,0],"qubo_energy":17},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.8146634246568616,2.0022818789698844],"expected_energy":44.10757521286687,"initial_expected_energy":77.64486233154717,"history":[77.64486233154717,77.08720082301438,53.613954480037805,70.13079812843819,57.055307460661766,54.71490367090044,54.07177624189662,53.731080798293824,53.28773341511472,53.54428434059987,53.24993120662455,53.32555461149073,53.2471001584455,53.225220139475084,53.195362771325165,53.169834143890256,53.152089266946405,53.12931681493863,53.09242424567999,53.138777386803184,53.1314332238203,53.085731030222014,53.10193390787662,53.083817091831776,53.076884000649414,53.065753865808276,53.107089723356964,53.06423511276786,53.05708795678526,53.04646561972423,53.036124270349745,53.070619504875054,53.05651235380522,53.035944362553835,53.033937286912106,53.033162102151486,53.04106428215128,53.03903824125127,53.03292183851702,53.033201750350614,53.03297611235538,53.03283524652247,53.0328256669854,53.032835107816496,53.03283559759488,53.03282283821183,53.03282043512492,53.03282195709839,53.032819133163215,53.032819492123515,53.03281788814161,53.03281729228603,53.032819462572164,53.03281584847167,53.03281491648154,53.0328138124395,53.032811994035185,53.032809764193125,53.03281640503264,53.032813906860326,79.75134138757754,90.06811693785401,69.03008244069476,54.90275854884554,52.463315599742614,61.282847365515735,66.0335458525403,53.224945664696214,50.83838798242029,49.50099404561473,48.720534497896466,53.31827452605969,48.18965180848306,48.26049579272079,48.76878442691615,48.095645211326996,48.249259876970804,48.162213401239725,47.99487995592784,47.97287348176441,48.08910193142308,47.95081296604058,47.908253489501725,47.824123555573856,47.65810122980973,47.33461318436383,46.74331192038913,47.67851686093956,48.13781840037453,46.753063512765316,46.66631585089274,46.63370067452725,46.874693208584375,46.5046962653959,46.4064000225527,46.276442957852424,46.13722702045226,45.92539203368486,45.66620184271732,45.02862504571722,46.14099618324476,46.54970234038356,45.20294858793282,45.07413214799779,45.10600127584323,44.98731376998546,44.936681371217254,44.842158457429655,44.759777140287696,44.60387660096194,44.800603177019,44.79868188672824,44.61925664879711,44.541201670896264,44.52334273620591,44.47828990511802,44.436534281686725,44.371649799500375,44.28967027079209,44.10757521286687],"feasible_probability":0.6211981508060016,"one_hot_probability":1.0,"sampled_feasible_fraction":0.646484375,"counts":{"0010100010101":1,"0010100011001":11,"0010100100011":1,"0010101000011":1,"0010101000101":1,"0010101001001":39,"0010110000011":1,"0010110000101":1,"0010110001001":19,"0011000011001":7,"0011000100011":1,"0011000101001":1,"0011001000011":1,"0011001000101":1,"0011001001001":51,"0011010000011":1,"0011010000101":1,"0011010001001":31,"0100100011001":5,"0100101001001":4,"0100110001001":10,"0101000010011":2,"0101000011001":5,"0101000100011":1,"0101001001001":3,"0101010001001":16,"1000100010011":1,"1000100010101":1,"1000100011001":21,"1000100100011":4,"1000100101001":1,"1000101000011":1,"1000101000101":3,"1000101001001":52,"1000110000101":2,"1000110001001":43,"1001000010011":1,"1001000011001":44,"1001000100011":2,"1001000100101":1,"1001000101001":4,"1001001000101":1,"1001001001001":61,"1001010000011":1,"1001010000101":4,"1001010001001":48},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.32982020601048134},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[2,5,2],"max_component_qubits":5,"component_to_original":[[1,3],[6,7,10,11,12],[8,9]],"components":[{"qubits":2,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1],"quadratic":[[0,1,14]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":6}],"conflicts":[]},{"qubits":5,"penalty":17,"objective_bound":16,"offset":34,"linear":[-8,-9,-17,-10,-11],"quadratic":[[0,1,34],[1,2,17],[2,3,34],[2,4,34],[3,4,34]],"domains":[[0,1],[2,3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":13,"cost":9},{"index":1,"task":"t2","resource":"r1","start":13,"cost":8},{"index":2,"task":"t4","resource":"r1","start":15,"cost":0},{"index":3,"task":"t4","resource":"r2","start":21,"cost":7},{"index":4,"task":"t4","resource":"r1","start":17,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["resource"]}]},{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":11,"cost":0},{"index":1,"task":"t3","resource":"r0","start":12,"cost":7}],"conflicts":[]}]},"best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":13,"end":14,"reserved_end":16,"changed":true},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0,1,0,0],"qubo_energy":17},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":3153149895,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.8333630922805408,2.7489128848046533],"expected_energy":6.579088393883808e-07,"initial_expected_energy":4.407305624651048,"history":[4.407305624651048,4.872744914505921,0.9883870167732787,3.214924801065412,1.7515265016410866,1.1416465353482614,0.8148380131582624,1.2456113636343196,0.7209758765351004,0.6584416712125203,0.5715116152843426,0.48484050488376473,0.36518514675043123,0.3159702793527168,0.7706826861040291,0.22862731845550888,0.2199969264926387,0.16158260302977545,0.12557191049536787,0.07771391921997796,0.12262492197791827,0.1969095485561918,0.0527517184397896,0.059775958557789825,0.049642643273556275,0.04676929906484443,0.056141256194359876,0.045435977416711015,0.042593518026492035,0.04021044711357798,0.039903559057570454,0.03764139353757642,0.03549450732632625,0.03147986619573418,0.024394336296602027,0.018514241887788364,0.017915395658968845,0.008417420852071787,0.0034870942309970184,0.0016769914764404356,0.009549356976361707,0.018440864972226256,2.1371931959535934e-05,0.001621712612921132,0.0002585930202306882,0.00010350715029961501,2.4038308857240167e-05,8.29211549019332e-05,1.7492870264485314e-05,1.6010110077008168e-05,1.1171943814799103e-05,6.22197616884749e-06,5.9700546254927045e-06,1.2827256402731915e-06,1.4739286727113946e-05,7.4388022889474695e-06,7.56582212199411e-07,6.715135856500186e-06,2.019004148318326e-06,6.579088393883808e-07,5.922557182354371,5.662037614029561,1.3313333924734168,1.733436901199426,1.7978591732353388,1.909321183473013,0.4916014210783093,0.66841388136464,0.5568970943093298,0.6158425868084896,0.31573776564176187,0.28483705470901266,0.3654410757029799,0.24545133363995067,0.24053297522176303,0.4388140235570051,0.14445778892212863,0.1503582135799657,0.13582407655567677,0.14529877251396744,0.1447301371217722,0.12227589000007395,0.1154098957881316,0.14241876434384676,0.10632727048924027,0.09849820350083863,0.08724604487549899,0.15050498471765256,0.07562764489158497,0.06947568503874822,0.1036112468587929,0.0599749940023558,0.054542811665966334,0.04894799082058445,0.04345041000015651,0.033205927761115646,0.034314294039096166,0.041023204790993174,0.03159873615317361,0.031019821392450242,0.03257512204034654,0.02910484928019197,0.027315234384122644,0.023952858319071405,0.019325673674149016,0.014730921836512444,0.011434903802277567,0.02316957325671337,0.00887890948505108,0.008894167946281683,0.009981154397635195,0.008567892512503861,0.008420058876707489,0.008639930584544183,0.008274836516067712,0.008016661912519372,0.007683417726516701,0.00794703345882145,0.007586290733295958,0.007361316527192729],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07634477800456807},{"status":"feasible","best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":13,"end":14,"reserved_end":16,"changed":true},{"variable":2,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,0,1,0,0],"qubo_energy":9},"seed":4186225163,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.1401359539950056,1.354741342523612],"expected_energy":13.177490301923537,"initial_expected_energy":16.810371685014495,"history":[16.810371685014495,16.821419811192445,15.17644792083666,16.18109802480047,16.237229662584927,15.78190116846843,14.938067969590879,15.214067167583647,14.952186739530553,15.207530162367128,14.846715179399652,14.986687235094017,14.860611079136834,14.857412899994081,14.845142648932672,14.843563096472042,14.841568512830406,14.84072727036488,14.838028327859242,14.835148205008013,14.830077072842617,14.823476203848948,14.813912967148822,14.817926130365949,14.823993798492605,14.812448476446974,14.820816906561092,14.81035654226508,14.808765806680983,14.81049748405108,14.807654862521924,14.80658503991311,14.804434857946216,14.800470951141314,14.796941344818938,14.786036208364,14.808571644660514,14.798668662009185,14.789700616294198,14.787297227427777,14.785274898954363,14.788377492400084,14.784108779403544,14.78300537239955,14.780855410702724,14.77664874841135,14.768793099077254,14.764908286028225,14.771271017667177,14.813348106887368,14.761214579996228,14.751097612431545,14.749061666811388,14.756740749378102,14.74660161238486,14.744449445491274,14.740701180715341,14.7421702011389,14.739983298166484,14.744581479562543,14.090211196299485,15.0026240949637,17.757886051228436,16.77888988225425,16.149311359590975,15.15741460150658,14.035579316363258,14.045387074253833,13.976348056862594,13.939243658648355,14.129507334239516,13.848641663274783,13.977780939798127,13.90083244327124,13.840420714547543,13.815882600131085,13.799595366087155,13.759301633129116,13.705496304552593,13.639175797065871,13.61814462509135,13.666797691935663,13.99694219434364,13.599678032547947,13.514933265444068,13.499707082829914,13.545641603937769,13.484899077808286,13.473940505088994,13.487508373418123,13.459654534672733,13.452659339623425,13.477552461078675,13.446011238582058,13.440278793994285,13.429948115866686,13.409268850118554,13.37467003952693,13.479891604515402,13.513470953729113,13.368429094765714,13.358615319562265,13.338505040646925,13.299982463922781,13.235502083150944,14.07581152946868,13.591728002421343,13.360050926984584,13.242734093099529,13.23287704599337,13.238442139081616,13.228353843267294,13.225292712145615,13.221722270845202,13.218135999648187,13.211079284767141,13.197700672917367,13.177490301923537,13.212748522967086,13.316808871729888],"feasible_probability":0.9926397176237325,"one_hot_probability":1.0,"sampled_feasible_fraction":0.9921875,"counts":{"00101":137,"00110":4,"01001":47,"01010":149,"10001":104,"10010":71},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09317416000703815},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":103425314,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7677717153923063,2.747292174988531],"expected_energy":0.0010794063444542008,"initial_expected_energy":0.26530878582171,"history":[0.26530878582171,0.31171645751322785,5.909120394129132,3.782667302772804,2.7361372735962237,0.29966721920949363,0.09548323060992703,0.6606553866589924,0.14174126975567014,0.1617512153749244,0.054138810934750356,0.08308335099875039,0.07953483368534349,0.05357197220934528,0.047737730847762026,0.046645192270286844,0.058831539266543546,0.0448168202077789,0.04165719852881856,0.03686756442628106,0.030041105818154987,0.02292345592109722,0.027525937001642135,0.023396949574502716,0.021874661192805216,0.023405803836250898,0.02368705144761132,0.01911947351437447,0.017526731296466546,0.022411779963770275,0.016006325414918816,0.014876886588844163,0.01577276128154497,0.013573616020835334,0.013599601739674227,0.014215409397982208,0.012503372993257322,0.011205103302922948,0.014894510453236223,0.009620456895122198,0.00875757638906112,0.007700220368183081,0.005945038301023714,0.012223670716938218,0.006463096550494312,0.005692830885143388,0.006251350650421558,0.006401898955680318,0.00502762195366642,0.006024073959278576,0.004614460820392221,0.004270495515333611,0.0035610035713318305,0.002352802407185696,0.00747508694871514,0.003952384335371621,0.0029428525013906076,0.002201140506472297,0.002194379806182679,0.002037485443619198,4.761200319509125,4.873359418247677,0.288307534941498,4.903288621652222,0.8805944320536991,0.31602191184399786,0.36108669475772615,0.3154916986530626,0.30016954623697273,0.32196093006571214,0.289622741801727,0.27294455038931265,0.24391262556158208,0.19087433354397637,0.2258912801037151,0.21759994768771765,0.18426414212499465,0.23043575255055715,0.16883022614535792,0.1559893187143091,0.13474382838478455,0.09579596404071947,0.07483152953664834,0.09783990581341152,0.22175651277209493,0.06243593423270595,0.036306587671464476,0.035119633797008686,0.04655596411539429,0.036280360314086074,0.031220104087989448,0.027271325312574753,0.029852859472783592,0.025431467025414045,0.024388434727747696,0.022447450648134998,0.019308310294635072,0.01336889818242333,0.008444821567035101,0.018683282970750524,0.031231748727085784,0.007281372096099963,0.004160642455702368,0.005142146531105663,0.004942894918368263,0.004186620234885061,0.00407342563688853,0.003923221031704373,0.003722966315980106,0.003904845215562486,0.0036267602773231824,0.003440095753847108,0.0031128833464938123,0.0025030693730650816,0.00207189613722861,0.0015075734875942075,0.0023548514331414513,0.002953560772720228,0.0016479496035442355,0.0010794063444542008],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07600606000050902}],"circuit_evaluations":360,"status":"feasible","feasible_probability":0.9926397176237325,"total_shots":1536,"runtime_seconds":0.24580401799175888},"direct_metrics":{"exact_objective":17,"optimal_count":1,"combinations":72,"optimal_probability":0.002008119769225996,"feasible_probability":0.6211981508060016,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.2777777777777778,"shots_for_95_percent":1491,"hit_curve":[{"shots":8,"quantum":0.015952499235791482,"uniform":0.10585733481633375},{"shots":16,"quantum":0.031650516239715036,"uniform":0.20050889429825008},{"shots":32,"quantum":0.06229927730118961,"uniform":0.3608139719037934},{"shots":64,"quantum":0.1207173546501287,"uniform":0.5914412214865954},{"shots":128,"quantum":0.22686202958653243,"uniform":0.8330797244996347},{"shots":512,"quantum":0.6427041173327982,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":17},{"shots":16,"best_objective":23},{"shots":32,"best_objective":23},{"shots":64,"best_objective":23},{"shots":128,"best_objective":17},{"shots":512,"best_objective":17}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999998903485268,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.066335071254359e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":9,"optimal_count":1,"combinations":6,"optimal_probability":0.30312611060378425,"feasible_probability":0.9926397176237325,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.8333333333333334,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.94437967262168,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9969063791823285,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999904295102364,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999999084057,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":9},{"shots":16,"best_objective":9},{"shots":32,"best_objective":9},{"shots":64,"best_objective":9},{"shots":128,"best_objective":9},{"shots":512,"best_objective":9}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9998457990936493,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.673617379884035e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.30307933504969137,"diagnostic_seconds":0.009713546998682432}
+{"instance":"n5-s0-r0.json","seed":7,"direct":{"status":"feasible","best":{"feasible":true,"objective":22,"raw_cost":22,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false},{"variable":7,"task":"t2","group":"g0","resource":"r1","start":13,"end":14,"reserved_end":16,"changed":true},{"variable":12,"task":"t4","group":"g0","resource":"r1","start":17,"end":18,"reserved_end":20,"changed":true}],"bits":[1,1,0,0,0,0,0,1,1,0,0,0,1],"qubo_energy":22},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.3603237592837734,0.10792663313943372],"expected_energy":65.87640617950208,"initial_expected_energy":67.82786887449609,"history":[67.82786887449609,77.97431505984989,75.76679287260798,74.8008237919976,68.23006684314586,75.54084700242427,67.99009139908617,66.41324539743107,66.54469949837402,66.56774066889889,66.50582076114658,66.2794322625893,66.21530057255707,66.14984499972272,66.1044896254115,66.04791999229884,65.98068041696092,65.91199532630837,66.13715433360154,66.03340168419311,65.96488836391165,65.90384028584188,65.91489801768593,65.89676896773211,65.89975827861753,65.8941950417901,65.89608395195044,65.89333993768093,65.89217060608125,65.89256497361801,65.89191383848292,65.8912863610226,65.89008317580955,65.887930744425,65.88691663488672,65.88216954973007,65.88293718433908,65.88534509346627,65.88148878712663,65.88258535972784,65.88133313518563,65.88063646894089,65.87940863480625,65.87834881660348,65.87801056129815,65.87710889027642,65.87645627771202,65.87756490700329,65.87808587468263,65.87649704642043,65.87656611626957,65.87656659879613,65.87642362591767,65.87642262158121,65.87641452685483,65.87640933545148,65.87640617950208,65.8764077770148,65.8764064048602,65.87640691071256,77.49591054091415,84.5693326639616,71.6334285287992,107.81247637670151,67.74508153027463,73.41369155719732,67.25728252548046,70.35038105654863,66.93204558814445,66.49031459332916,66.73085009612421,66.6487272370644,66.7010144518645,66.53817458816283,66.39072992560351,66.3792480819572,66.28193531231756,66.20132622856258,66.07061533431997,66.30457806911214,66.20180760206301,66.066641345623,66.03665894106283,65.99112120964467,65.94609915400918,65.91264723081744,65.88240169624774,65.90790956012027,65.89387611654656,65.8917862420956,65.88614162345418,65.8793933356548,65.88064367819265,65.87911431836173,65.87867423186671,65.87821679779307,65.87859454001257,65.87791071696923,65.87754844094438,65.87781525005224,65.8773311967878,65.87709811733657,65.87739076218524,65.87690921806822,65.87682077435744,65.87672102163944,65.87665272477103,65.87658411888438,65.87653317712511,65.876612331551,65.87650701511967,65.87648915411728,65.8765188525299,65.87647707354657,65.87646698666492,65.87647230511463,65.87646044650748,65.87646254022383,65.87646363887673,65.87645543296154],"feasible_probability":0.15001708167517788,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.123046875,"counts":{"0010100010011":6,"0010100010101":1,"0010100011001":4,"0010100100011":10,"0010100100101":2,"0010100101001":6,"0010101000101":3,"0010101001001":1,"0010110000011":11,"0010110000101":17,"0010110001001":4,"0011000010011":7,"0011000010101":4,"0011000011001":4,"0011000100011":10,"0011000100101":1,"0011000101001":5,"0011001000011":1,"0011001000101":11,"0011001001001":2,"0011010000011":11,"0011010000101":27,"0011010001001":16,"0100100010011":9,"0100100010101":6,"0100100011001":9,"0100100100011":25,"0100100101001":12,"0100101000011":5,"0100101000101":13,"0100101001001":4,"0100110000011":2,"0100110000101":6,"0100110001001":2,"0101000010011":14,"0101000010101":2,"0101000011001":10,"0101000100011":18,"0101000100101":1,"0101000101001":18,"0101001000011":8,"0101001000101":18,"0101001001001":3,"0101010000011":4,"0101010000101":4,"0101010001001":2,"1000100010011":4,"1000100010101":1,"1000100011001":5,"1000100100011":9,"1000100100101":2,"1000100101001":13,"1000101000011":4,"1000101000101":7,"1000101001001":2,"1000110000011":4,"1000110000101":14,"1000110001001":2,"1001000010011":7,"1001000011001":8,"1001000100011":12,"1001000101001":14,"1001001000011":3,"1001001000101":13,"1001001001001":4,"1001010000011":5,"1001010000101":15,"1001010001001":5},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3275697290082462},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[2,5,2],"max_component_qubits":5,"component_to_original":[[1,3],[6,7,10,11,12],[8,9]],"components":[{"qubits":2,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1],"quadratic":[[0,1,14]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":6}],"conflicts":[]},{"qubits":5,"penalty":17,"objective_bound":16,"offset":34,"linear":[-8,-9,-17,-10,-11],"quadratic":[[0,1,34],[1,2,17],[2,3,34],[2,4,34],[3,4,34]],"domains":[[0,1],[2,3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":13,"cost":9},{"index":1,"task":"t2","resource":"r1","start":13,"cost":8},{"index":2,"task":"t4","resource":"r1","start":15,"cost":0},{"index":3,"task":"t4","resource":"r2","start":21,"cost":7},{"index":4,"task":"t4","resource":"r1","start":17,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["resource"]}]},{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":11,"cost":0},{"index":1,"task":"t3","resource":"r0","start":12,"cost":7}],"conflicts":[]}]},"best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":13,"end":14,"reserved_end":16,"changed":true},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0,1,0,0],"qubo_energy":17},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.8334572602094554,1.1781354151989838],"expected_energy":8.529686654207798e-07,"initial_expected_energy":1.2622290605145206,"history":[1.2622290605145206,1.1545864251403293,5.908395170241368,1.627263452172275,3.9092494518116103,1.0381163333587897,0.20480395981796737,0.05759811795550454,0.11773194860530206,0.05268468490210794,0.19953210102764057,0.0189218694202066,0.09249989891851229,0.029187005472328408,0.023955893837972232,0.017610149247064277,0.015690020460356578,0.01421073310624461,0.014046537944865888,0.01274828623302817,0.011548979622840657,0.009390970967727652,0.007183411648156185,0.00600083374010674,0.0031196066849016077,4.234603108481042e-05,0.013986190938479887,0.010787118748863022,6.630004278498043e-05,0.0018404542179662503,0.0009349641156787749,4.359117857134975e-05,5.53464048035654e-05,5.854378445538795e-05,1.8554427172373933e-05,6.29733396485294e-06,9.514110636223499e-06,1.7140166037930196e-05,4.565053819360894e-06,6.110493281974114e-06,4.023056584409802e-06,4.008181351201428e-06,3.6023617916189177e-06,3.0490023372047493e-06,2.660613532939713e-06,3.4353749304732996e-06,2.430498223822462e-06,2.234137099926156e-06,2.4251129368458676e-06,2.0887083588115372e-06,2.2215060503948583e-06,1.8915674892560036e-06,1.8815071567703502e-06,1.6326300280769222e-06,1.4612780802736096e-06,1.294124893587104e-06,1.119846501432609e-06,8.529686654207798e-07,8.870062197037122e-07,1.1214053791316521e-06,1.1176162626009032,0.9884264335443614,5.8535979787405505,1.819607052229322,3.7432236512277184,0.17206897687269462,0.04812620192110301,0.28552879929975195,0.10027451757389791,0.006715137519053423,0.007737722933801235,0.0823656384270821,0.011790711806298277,0.014926503632804875,0.006840599447064855,0.005309826182523895,0.0048602618352512755,0.004125075015094914,0.003494076230654234,0.0027557521290800875,0.0017485297174613104,0.002189852773090185,0.005004777598692797,0.001395253506036083,0.0010047398707301648,0.0005683472871305586,0.0012319836146359837,0.0015641000256031718,0.0004146842396007519,0.00041667926309400577,0.00047824576160493913,0.00040167769854419457,0.000396152373265575,0.0004070913362807552,0.0003728058446476715,0.00035251950499328534,0.0003151714931483884,0.0003055266017525286,0.0002159105614913767,0.00022689199869243602,0.00020823091797632755,0.00026118692971562876,0.0001887959387205438,0.00017316840075329472,0.00014746091962730738,0.00010171277328248071,6.735657823473403e-05,0.0001320908624030074,0.00026760507300091084,5.873084372017018e-05,3.0163292109454195e-05,4.03063176020247e-05,3.585243504257415e-05,3.120685255234609e-05,2.9425510778126518e-05,2.8331242094029824e-05,2.8022217985877277e-05,2.9764831677473832e-05,2.71491788081886e-05,2.5526489869376098e-05],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07641513900307473},{"status":"feasible","best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":13,"end":14,"reserved_end":16,"changed":true},{"variable":2,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,0,1,0,0],"qubo_energy":9},"seed":3618983171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.103444625701183,1.3552212243568842],"expected_energy":13.154854213973188,"initial_expected_energy":13.89961549248422,"history":[13.89961549248422,14.636527418105413,17.429844495600012,17.13723807033357,17.0183511204313,14.40172413312212,13.87734340360252,14.189241876327603,13.83463802294392,13.878578939550952,13.913031450957192,13.842953428660824,13.806665267274077,13.796885890456767,13.779504236632036,13.763662906275204,13.729804314611169,13.667931321965462,13.542567040768743,13.43149904723375,14.691818820352593,14.443423137762712,13.420510960693344,13.309541259358845,13.504400850437358,13.28632962012754,13.30362416404021,13.284550562887844,13.280867627342705,13.277114872844795,13.273194532807024,13.264143165496904,13.25939674159326,13.250551709216666,13.240636985118723,13.224748569028264,13.228898198429555,13.233636215460319,13.222558554720942,13.232252788894982,13.218691920486425,13.215784765806704,13.22368231191535,13.212865561041923,13.20938653894653,13.202614678653541,13.190754063229797,13.214114385499933,13.221619151499112,13.186815488890481,13.18851798600366,13.184505585900347,13.183528550774776,13.189370620334618,13.179071159022282,13.176570876053878,13.173526544926089,13.168327645791804,13.164440456415246,13.154854213973188,15.1445691434133,15.126323086652176,15.0448214331232,17.749100244671606,17.407026433652455,15.616840998734025,13.93170724554706,14.45524378630719,13.840983386186961,13.91322748055607,13.915969297308429,13.879823552255395,13.839764640621503,13.824661147465338,13.802721988444873,13.964869047966882,13.782925068263165,13.763618968384955,13.789039841412649,13.74125873584731,13.730202249154894,13.71431697041588,13.684190706548655,13.638701455576957,13.826185504095857,13.88253666838186,13.618380640615037,13.611028262588167,13.713057169565399,13.585209624245046,13.573836769346714,13.562447726103173,13.566708087228848,13.5538518352349,13.564101845586608,13.556999770222834,13.549454559414997,13.549895059868199,13.54424551623704,13.539340779210068,13.530974456845868,13.53915615364717,13.522788517576222,13.514076417418021,13.50962873882192,13.482853590490834,13.488305859670028,13.478284132877477,13.488943464514847,13.47532025358496,13.471001390077468,13.466173300258866,13.459591758641709,13.44955739475583,13.441412521062778,13.423130078297081,13.391823185012669,13.69357948704046,13.4369947894525,13.428404064280151],"feasible_probability":0.9941121962810647,"one_hot_probability":1.0,"sampled_feasible_fraction":0.99609375,"counts":{"00101":153,"00110":2,"01001":43,"01010":128,"10001":100,"10010":86},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09327672900690231},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":3831650445,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7974015001236798,1.178115436522641],"expected_energy":6.527743112643988e-06,"initial_expected_energy":3.790597435139503,"history":[3.790597435139503,4.2989188217693055,4.041151965184577,3.780400067028339,3.469016887543301,3.8884253563360125,4.436735884680116,3.295566736037727,4.059324667141251,3.1116569631124094,2.697462613816309,1.9817639258171758,2.9024760111388916,2.7648350710638936,1.8950909772638616,1.5537121975891788,1.0748050172627592,0.8825019716905121,0.2914303584917447,1.3976240762813206,1.772614418832326,0.5326944361562691,0.26989562189771754,0.3746999594736635,0.23743138468895958,0.18683003926882674,0.099144884609621,0.12476163115647815,0.2589667126214647,0.1756402795758149,0.08774671258054978,0.11350051600005001,0.08811596829290294,0.07976287732706325,0.07565774664582829,0.08730828331250912,0.074478535794306,0.07093673394988108,0.06781819719235199,0.06677591890432967,0.06043596952939334,0.05467564789211143,0.04433441407659111,0.03331483581105621,0.02563187877008474,0.015044830254722655,0.014127699443913854,0.10836982088328549,0.015178681143578641,0.00017887817509549438,0.008533823222787786,0.000671793677168289,0.0006874672891381906,0.00018741295273487643,0.00022252960597671446,0.0002759395369958368,4.931144692390781e-05,6.527743112643988e-06,1.2289052557529335e-05,8.130628207617902e-06,0.6950567304241059,0.1960202131207348,5.835970555091557,3.8888062197125888,2.5717711226713886,0.08718143065812077,0.17986761553474728,0.1548811798933231,0.025273239881592136,0.08005844012252954,0.021658376606815594,0.015534387904258939,0.015042580247121557,0.012933954274740348,0.01015890055317249,0.008469090160221321,0.006714578800551576,0.005402488527874415,0.0085504698875182,0.004508810557056554,0.004190347435137096,0.0058709966146571575,0.003711724552851579,0.0033650782231644492,0.0027656127367971716,0.0036877148391008105,0.0027619468790050596,0.002328643430048096,0.001760766201956264,0.0013985752239549425,0.0011490413008034936,0.000792897475848058,0.00032368607257209217,0.0028108672834281875,0.000461822821891729,0.00030284024233379937,0.0006891638197688969,0.00023912317623799143,0.0001706217643283183,0.00014936961414375056,0.0002339617114613715,0.00013199700221023787,0.00011848461433895777,9.457754963262437e-05,8.830195223313865e-05,5.2168728205215474e-05,0.00015231286505827145,3.8829069563134384e-05,4.059016081064806e-05,5.507872640918956e-05,3.496349870063223e-05,3.431596280173546e-05,3.918322748270935e-05,3.247413095111011e-05,3.074426367400903e-05,2.750511725055831e-05,2.1737836139612492e-05,1.804603437246504e-05,1.3600551258955024e-05,2.2861378489215894e-05],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07425956698716618}],"circuit_evaluations":360,"status":"feasible","feasible_probability":0.9941121962810647,"total_shots":1536,"runtime_seconds":0.24424300299142487},"direct_metrics":{"exact_objective":17,"optimal_count":1,"combinations":72,"optimal_probability":0.003625637195592835,"feasible_probability":0.15001708167517785,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.2777777777777778,"shots_for_95_percent":825,"hit_curve":[{"shots":8,"quantum":0.02863968759567778,"uniform":0.10585733481633375},{"shots":16,"quantum":0.05645914348577753,"uniform":0.20050889429825008},{"shots":32,"quantum":0.10973065208840746,"uniform":0.3608139719037934},{"shots":64,"quantum":0.20742048816906777,"uniform":0.5914412214865954},{"shots":128,"quantum":0.3718177174258412,"uniform":0.8330797244996347},{"shots":512,"quantum":0.8442805959049646,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.469446951953614e-17,"independent_samples":[{"shots":8,"best_objective":28},{"shots":16,"best_objective":22},{"shots":32,"best_objective":24},{"shots":64,"best_objective":17},{"shots":128,"best_objective":22},{"shots":512,"best_objective":17}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999998578385558,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.903177153362006e-20,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":9,"optimal_count":1,"combinations":6,"optimal_probability":0.30427470055366646,"feasible_probability":0.9941121962810648,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.8333333333333334,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9451088447541205,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9969869610757728,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9999909215964411,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999999175826,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.8041124150158794e-16,"independent_samples":[{"shots":8,"best_objective":9},{"shots":16,"best_objective":9},{"shots":32,"best_objective":9},{"shots":64,"best_objective":9},{"shots":128,"best_objective":9},{"shots":512,"best_objective":9}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999990674652697,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.8386757111901907e-20,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.30427437355085013,"diagnostic_seconds":0.009756701008882374}
+{"instance":"n5-s0-r0.json","seed":8,"direct":{"status":"feasible","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":13,"end":14,"reserved_end":16,"changed":true},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0,1,0,0],"qubo_energy":17},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.752270601827162,2.0066025619561643],"expected_energy":43.93133687361072,"initial_expected_energy":59.079717093225995,"history":[59.079717093225995,59.291255713442865,70.5307416630699,98.3126519251929,61.828592316289466,65.60647617741442,59.00765731708729,57.978034040975686,57.8468941664192,57.82346377479151,58.52097106640113,57.77309304261385,57.93223570383813,57.76445047493167,57.76872982698201,57.76951562315496,57.75782083891009,57.75496172748282,57.76466886202884,57.75196795016681,57.749352820634385,57.744072789021956,57.733028724570644,57.73247620385044,57.702026864589776,57.7216728791965,57.7133277306249,57.707096411332365,57.6974505194038,57.70614208425752,57.6957310453819,57.691932285643055,57.688017049034805,57.68104384682933,57.678109645955274,57.65405606038544,57.64800970794329,57.623166448708474,57.59700518886339,57.5395099623797,57.51582262122137,57.372676988129164,58.0439510311355,57.47718321993189,57.437001677429166,57.39643223799684,57.34712045721796,57.37586907144442,57.33927999885762,57.32340999053639,57.28858860700562,57.216472245126766,57.08848382063714,56.71914886107605,57.36635936065416,57.410597268391996,57.03043751010499,56.66119791913168,56.65093721826142,56.589197418809704,48.27051777404719,52.82669127915173,75.17862997734814,71.0281024358248,55.64902689551323,52.91332372750007,47.952011324239514,47.62270370341069,47.490563998528486,48.79426918651664,47.172800026254436,47.02645354904291,46.85227092517982,46.616986894004214,47.65910909719692,46.39277433498539,46.30621421211507,46.106401383435724,45.84166744902474,45.49668465038492,45.22790881042198,45.37597554272385,46.2045359649141,45.19187654634539,45.29896776928969,45.17166348673058,45.121567430052984,45.05497858151622,45.050725496452586,45.02398875759108,44.998177972839734,44.948140823531126,44.85546901471625,44.765200917792455,44.616303441519875,44.801215453101065,44.81538426586586,44.632927893595124,44.5516546647375,44.53295877842242,44.487957548835276,44.44634820145543,44.389040684763806,44.31230116160152,44.2753883448492,44.504075070877796,44.224703429545485,44.20215617150127,44.16622600878064,44.099992119103995,43.990147741035464,44.56660964364111,44.474009546589855,44.022736605214305,43.98173367082824,44.017424354435526,43.966039479170234,43.95610839014751,43.94360437237962,43.93133687361072],"feasible_probability":0.6226955200653512,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.65625,"counts":{"0010100011001":9,"0010100100011":2,"0010100100101":1,"0010101000011":1,"0010101000101":1,"0010101001001":39,"0010110000011":1,"0010110000101":1,"0010110001001":18,"0011000011001":21,"0011000100011":1,"0011000101001":1,"0011001000011":2,"0011001000101":2,"0011001001001":42,"0011010000101":1,"0011010001001":26,"0100100011001":6,"0100101001001":2,"0100110001001":13,"0101000011001":7,"0101001001001":2,"0101010001001":15,"1000100010011":1,"1000100011001":22,"1000100100011":1,"1000101000011":2,"1000101001001":53,"1000110000011":1,"1000110000101":1,"1000110001001":41,"1001000011001":46,"1001000100011":5,"1001000100101":1,"1001001000011":2,"1001001001001":69,"1001010000011":3,"1001010000101":1,"1001010001001":49},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3111709719960345},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[2,5,2],"max_component_qubits":5,"component_to_original":[[1,3],[6,7,10,11,12],[8,9]],"components":[{"qubits":2,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1],"quadratic":[[0,1,14]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":6}],"conflicts":[]},{"qubits":5,"penalty":17,"objective_bound":16,"offset":34,"linear":[-8,-9,-17,-10,-11],"quadratic":[[0,1,34],[1,2,17],[2,3,34],[2,4,34],[3,4,34]],"domains":[[0,1],[2,3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":13,"cost":9},{"index":1,"task":"t2","resource":"r1","start":13,"cost":8},{"index":2,"task":"t4","resource":"r1","start":15,"cost":0},{"index":3,"task":"t4","resource":"r2","start":21,"cost":7},{"index":4,"task":"t4","resource":"r1","start":17,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["resource"]}]},{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":11,"cost":0},{"index":1,"task":"t3","resource":"r0","start":12,"cost":7}],"conflicts":[]}]},"best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":13,"end":14,"reserved_end":16,"changed":true},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0,1,0,0],"qubo_energy":17},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":3257320810,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.8429855894017784,1.1779249988626128],"expected_energy":0.00011967598931235946,"initial_expected_energy":4.417486403490223,"history":[4.417486403490223,4.719097632781961,4.1975197401398585,1.9680763760294355,3.6483215082865508,2.026499280060745,2.1416931367540344,2.135129535236625,2.1056190488422186,1.7154104020430592,1.3611560591139795,1.5270586770546362,1.144919053871088,0.9867865522329929,0.8480107523797213,0.970254065725552,0.7587993195943922,0.7749534475536723,0.6833563114829735,0.6301879573831778,0.6769697487293489,0.5551954350104765,0.5782748044127103,0.5229266650553851,0.5053241584412719,0.5363499393042659,0.4850944340921217,0.46642593707007074,0.4321183572272048,0.3685073999432057,0.34111947108121293,0.21772437618778118,0.3350625851204547,0.20106933398508758,0.24224495063443796,0.20285246505243856,0.18575719418658962,0.1698682221899825,0.19757573667365555,0.15902842700386519,0.14945718556879395,0.14081294694428537,0.11851243446596177,0.1060907354311561,0.07045742952585465,0.0795555754874456,0.0674938389436453,0.08082302965599222,0.0671288904511672,0.06309252242176687,0.057294011986651044,0.04759150180488666,0.04533681153157868,0.0347366975291267,0.03432452146314237,0.020228905071789545,0.030748707856855878,0.030006582203698444,0.022263945876691307,0.019278883803427925,2.2466534503080684,2.223601254915007,5.928341737965704,0.7186742903650191,5.671742065892648,0.1595059676951622,0.4334486092713302,0.19170534696447206,0.18265274011579566,0.25595925127385855,0.12786468790148092,0.16527844747399656,0.10636572076288238,0.09891634642964145,0.13230307912859712,0.08889665576057312,0.08097697335623136,0.06711494100208082,0.04274120553756625,0.12286737909122629,0.0881034843347224,0.05258317299123681,0.041077878657908,0.050529256486013155,0.04081569653227809,0.038100804913744034,0.034499870084301526,0.030723097922469765,0.02743773708120622,0.02116267536618873,0.010670915665686426,0.04096683592202442,0.04839522898174155,0.016834504353759102,0.011918820848977874,0.011246808436625327,0.01030724857491154,0.011917524923938326,0.00915947941676806,0.008180734125496645,0.006399881488796758,0.004996958671905211,0.003938779780682309,0.0029885591368698835,0.01083398091939218,0.0006484995654436256,0.00282545590141181,0.0005310069098349677,0.001259134145478733,0.0007433893461426763,0.0006642548107886885,0.000493442927661371,0.00043663438032709136,0.0003364953157581311,0.0002945987694771135,0.0002507332080610866,0.00034329560551838074,0.00032789194816268034,0.0001460240581890879,0.00011967598931235946],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07583067999803461},{"status":"feasible","best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":13,"end":14,"reserved_end":16,"changed":true},{"variable":2,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,0,1,0,0],"qubo_energy":9},"seed":631391383,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.1075198498015384,1.334570608911605],"expected_energy":13.479703440199447,"initial_expected_energy":17.094542140200534,"history":[17.094542140200534,16.71419104003685,17.01733955562654,16.746291682963125,18.36553538486014,15.278044181346944,14.69781868068769,17.430190059067876,14.753100502441853,14.565720286034592,14.883367559794145,14.646886301429292,14.419950932887506,14.51342424873365,14.416650658107468,14.417971247560558,14.416696358715143,14.420074111363249,14.415417053304312,14.416681493508355,14.41582880567432,14.41541308644836,14.415214798090936,14.414823710427964,14.41408163084236,14.414521732318143,14.414324053340126,14.413974241924986,14.414303418701412,14.413735605838369,14.413564979218153,14.413365264179674,14.4129810265314,14.412289120252955,14.41232468935209,14.413184845147216,14.412048890923252,14.4117263612447,14.411379825303156,14.414327572273795,14.410753649735117,14.410583737524806,14.410148589325809,14.409373451260489,14.407864452141084,14.406779516728747,14.412231944497645,14.418319569438884,14.406531143352748,14.404546540117082,14.40494462692559,14.404356797932774,14.404597851186704,14.404302546274884,14.404190737248086,14.404005966364,14.404041024733312,14.40387193305542,14.403749407135475,14.403541366199573,15.80765887218961,16.21873849052666,15.819617737999609,15.660927286696975,15.650395747157674,15.820143609563132,15.313817113627195,16.064291391435273,15.422124769225679,16.416729068480763,15.376419041628694,14.681409350493755,15.11551097659106,14.95675959998498,14.626593009578169,14.52231206087955,14.544351702657025,14.477347209674138,14.442513187732994,14.436557620327527,14.530284820110584,14.439716758706833,14.396309133964241,14.333844615492318,14.347308147522593,14.286537717446922,14.242979882718267,14.165523157268488,14.105432535226193,14.758623554352592,14.031046233420392,13.927983636066685,13.897989829167848,14.098750546779574,13.84171447212347,13.80390849302605,13.768732268242358,13.760608881105572,13.662330179344114,13.69714344821092,13.65146986025647,13.721010722531785,13.64601637444223,13.624670091578185,13.609798246180208,13.62253828152166,13.603115430530961,13.597471425439648,13.59438105981791,13.579160077588707,13.553963610744972,13.507331036184503,13.554592057093494,13.521500379448288,13.507022998822201,13.533285641733595,13.507866777225704,13.49609837502922,13.479703440199447,13.486682907542662],"feasible_probability":0.9716152443979884,"one_hot_probability":1.0,"sampled_feasible_fraction":0.98828125,"counts":{"00101":162,"00110":6,"01001":40,"01010":83,"10001":117,"10010":104},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08563991500705015},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":1558974550,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.803452838306442,2.7475563057223678],"expected_energy":0.00014141877399638102,"initial_expected_energy":0.20875555717225824,"history":[0.20875555717225824,0.7079054302680909,3.87506865285231,5.83193826955486,0.7867159845788128,1.0291889363740376,0.16083246300854004,0.03708520211450875,0.03725023874174909,0.03813462430453898,0.040216966181386954,0.04024178688290902,0.031656375628986,0.024815928442608347,0.0246216540312243,0.02306401681831464,0.021702356782518844,0.019798379531169016,0.022669663287975015,0.01752680641742644,0.01607555908463059,0.014706948256229143,0.01386578612997728,0.010729063054105833,0.00994722649468004,0.007317773958007383,0.008368767415470088,0.008383121515109367,0.007128638900791713,0.009125548233169923,0.005966719408893216,0.005282334988857848,0.00443507602571167,0.0030157451000199175,0.004382297353082603,0.0049950641794184805,0.003242775185617829,0.0027865961409861066,0.003235218079124253,0.003136679265186255,0.002774896771787901,0.0026263196017077715,0.0023790497005249625,0.0025666578662590454,0.002210759075402567,0.0024351759373345576,0.00213685910212812,0.0020384371909250346,0.002116416092825024,0.0020168498369253106,0.001965572259234614,0.0018643220752310446,0.0016706305165854834,0.0014893158382137254,0.0010997857163263375,0.0010829072317493963,0.0005267849155542483,0.0014683776277115567,0.0009833919292647239,0.0004709297691260344,2.699974536438963,2.6397831893742216,6.937548788049053,0.7789786738254637,6.619178575771285,0.10502402886512727,0.38154861498368015,0.15658170309653913,0.23601141175516235,0.17343159580208792,0.09905282208996131,0.261150327276643,0.06456395821044854,0.05854720079907501,0.0444325646574949,0.023797778733019474,0.11163771597789061,0.06609550497688377,0.045139153124566615,0.020919238660274054,0.01788927774987042,0.019682722039814138,0.016112790243122333,0.015784625153802828,0.01759435844307434,0.01431058113609213,0.011638937360126177,0.007450504038307173,0.010479305554023884,0.013100608133641507,0.006862912103295584,0.012066608024735671,0.006259290671503116,0.005561944176151053,0.004720877378346973,0.0035209380808919814,0.003910744519880238,0.003067028312647146,0.004139506097884776,0.002428648356680285,0.0019438252674482109,0.0015249232581907898,0.0010946684889921055,0.0006310825706593991,0.0015131166727878904,0.001901435848030714,0.0004185599008512807,0.0004354954749703251,0.0004432231625868668,0.0004132689418750501,0.0005418080971645979,0.00040649465210564355,0.00037298128455438893,0.0003481552171313387,0.00030776403456850895,0.0002726383703002052,0.00023697528913978942,0.00019496117074545616,0.00015245019957476656,0.00014141877399638102],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.06988058199931402}],"circuit_evaluations":360,"status":"feasible","feasible_probability":0.9716152443979884,"total_shots":1536,"runtime_seconds":0.2316161100025056},"direct_metrics":{"exact_objective":17,"optimal_count":1,"combinations":72,"optimal_probability":0.0027559152232341975,"feasible_probability":0.6226955200653513,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.2777777777777778,"shots_for_95_percent":1086,"hit_curve":[{"shots":8,"quantum":0.02183582798918283,"uniform":0.10585733481633375},{"shots":16,"quantum":0.04319485259439248,"uniform":0.20050889429825008},{"shots":32,"quantum":0.08452390989813366,"uniform":0.3608139719037934},{"shots":64,"quantum":0.1619035284517995,"uniform":0.5914412214865954},{"shots":128,"quantum":0.29759430437845635,"uniform":0.8330797244996347},{"shots":512,"quantum":0.7565823317183319,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":9.71445146547012e-17,"independent_samples":[{"shots":8,"best_objective":29},{"shots":16,"best_objective":23},{"shots":32,"best_objective":23},{"shots":64,"best_objective":23},{"shots":128,"best_objective":22},{"shots":512,"best_objective":17}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999800540017812,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.2536087619363645e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":9,"optimal_count":1,"combinations":6,"optimal_probability":0.28253023297450247,"feasible_probability":0.9716152443979884,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.8333333333333334,"shots_for_95_percent":10,"hit_curve":[{"shots":8,"quantum":0.9297851709540557,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9950698777820488,"uniform":0.9459121070676046},{"shots":32,"quantum":0.999975693894916,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999994092132,"uniform":0.9999914414488029},{"shots":128,"quantum":1.0,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.498001805406602e-16,"independent_samples":[{"shots":8,"best_objective":9},{"shots":16,"best_objective":9},{"shots":32,"best_objective":9},{"shots":64,"best_objective":9},{"shots":128,"best_objective":9},{"shots":512,"best_objective":9}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999797973180005,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.541098841762901e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.2825188898723759,"diagnostic_seconds":0.008367745991563424}
+{"instance":"n5-s0-r0.json","seed":9,"direct":{"status":"feasible","best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":13,"end":14,"reserved_end":16,"changed":true},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0,1,0,0],"qubo_energy":17},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.6305695973631572,2.0080561067349847],"expected_energy":43.72623478865336,"initial_expected_energy":68.21012279327701,"history":[68.21012279327701,70.37292538259759,46.33152408769541,73.50875618801334,54.96002712776607,49.35943724349022,44.464237904357454,46.12861289791593,44.949812092776526,44.249932191728064,44.13628819654937,45.07134363482676,44.00931275311368,44.13616176023036,44.03217794082687,44.02459445461209,43.99981793184859,44.00141665759449,43.98541148054511,43.97975112705907,43.99783275184839,43.96562814912474,43.9528434783515,43.92816921538437,43.891513556901,43.92838109919754,44.01873864600758,43.877647664350846,43.86387812991081,43.87934605450582,43.85051555667986,43.84416893383786,43.83397658874169,43.815571579547665,43.78626243452427,43.859121632523454,43.917802783064516,43.78719586031357,43.7842668748044,43.78846281964503,43.793456540844474,43.773912771289865,43.7768962462046,43.77749006465717,43.77434070635559,43.772104156678985,43.768975148500225,43.76994036320237,43.7665690486154,43.766439844860486,43.76921487293321,43.76649934989688,43.76544374828271,43.76369013190468,43.76177552453794,43.759138881244894,43.7567311231233,43.75163136203367,43.74210432359627,43.72623478865336,67.58436393704281,67.69559040118742,56.62533060017025,64.45323644924457,55.22473958939047,58.60830926979291,59.25016444235131,54.31467426766916,54.180610670129504,54.55042851946075,54.05797505333253,54.66185598354117,53.8538901484241,53.78686823985238,53.66330906304698,53.4532276342514,53.35536614883233,53.5474263808306,54.22743600930556,53.166745510906914,53.13674469648598,53.09515209458047,53.09632850725377,53.07684543814226,53.10294550975888,53.08058834329165,53.074647033334216,53.068223543768134,53.05727128807925,53.04813563393043,53.05713814144725,53.075810566320236,53.05194032898072,53.0416912863813,53.04005968893561,53.046538805000054,53.038437311711974,53.03723203090087,53.035826841248294,53.03488198653322,53.03370972469995,53.03409070127934,53.03503592344218,53.03489698998558,53.033477118718245,53.033295448161844,53.03320632473066,53.03366520367717,53.03312067546061,53.03307419116726,53.033024291993556,53.03296203155328,53.032924851853636,53.03286907805028,53.032846638735904,53.03374272679027,53.03284542156456,53.03285101543729,53.03286215090973,53.0328449207703],"feasible_probability":0.6244401149116122,"one_hot_probability":1.0,"sampled_feasible_fraction":0.630859375,"counts":{"0010100011001":20,"0010100100011":1,"0010101000011":5,"0010101000101":1,"0010101001001":48,"0010110000011":1,"0010110001001":27,"0011000010101":1,"0011000011001":17,"0011000100011":2,"0011000100101":1,"0011001000101":4,"0011001001001":28,"0011010000011":3,"0011010000101":2,"0011010001001":26,"0100100010101":1,"0100100011001":4,"0100101001001":5,"0100110001001":6,"0101000011001":3,"0101001001001":5,"0101010000011":1,"0101010001001":14,"1000100010101":1,"1000100011001":33,"1000100100011":2,"1000100100101":1,"1000101000011":1,"1000101000101":4,"1000101001001":44,"1000110000011":6,"1000110000101":2,"1000110001001":35,"1001000010101":1,"1001000011001":27,"1001000100011":1,"1001001000011":6,"1001001000101":2,"1001001001001":60,"1001010000011":4,"1001010000101":1,"1001010001001":55},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3046059409971349},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":2,"forced_by":0,"reasons":["resource"]},{"variable":4,"forced_by":0,"reasons":["resource","group"]},{"variable":5,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[2,5,2],"max_component_qubits":5,"component_to_original":[[1,3],[6,7,10,11,12],[8,9]],"components":[{"qubits":2,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1],"quadratic":[[0,1,14]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":6}],"conflicts":[]},{"qubits":5,"penalty":17,"objective_bound":16,"offset":34,"linear":[-8,-9,-17,-10,-11],"quadratic":[[0,1,34],[1,2,17],[2,3,34],[2,4,34],[3,4,34]],"domains":[[0,1],[2,3,4]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":13,"cost":9},{"index":1,"task":"t2","resource":"r1","start":13,"cost":8},{"index":2,"task":"t4","resource":"r1","start":15,"cost":0},{"index":3,"task":"t4","resource":"r2","start":21,"cost":7},{"index":4,"task":"t4","resource":"r1","start":17,"cost":6}],"conflicts":[{"i":1,"j":2,"reasons":["resource"]}]},{"qubits":2,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1],"quadratic":[[0,1,16]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":11,"cost":0},{"index":1,"task":"t3","resource":"r0","start":12,"cost":7}],"conflicts":[]}]},"best":{"feasible":true,"objective":17,"raw_cost":17,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":13,"end":14,"reserved_end":16,"changed":true},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,0,0,1,0,1,0,1,0,0],"qubo_energy":17},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":747784396,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.8395054450475872,1.177523269063078],"expected_energy":6.052271766099173e-05,"initial_expected_energy":1.6775330718226158,"history":[1.6775330718226158,1.9321819885754952,5.9107684772541065,1.170791302188181,5.6764649393711055,1.5209501477305936,1.7893372182297436,0.2948719298590463,0.5649381798180384,0.4338928428705936,0.419587432536957,0.12201638500911635,0.06621137338087482,0.10552751847485614,0.06977963118426765,0.06873821355961271,0.0692313062798479,0.06364045499239031,0.06829280930125489,0.06201748878127403,0.05905091634097686,0.053858924622549265,0.04496217417779984,0.033090321434139605,0.01971850285951744,0.01468381148219447,0.24836926856676786,0.008843897043905855,0.027859423270976374,0.011718150381760082,0.0031920249394365033,0.0017271227673134409,0.00390314101045072,0.0013638231539203796,0.002185116641476685,0.0012425525800335128,0.0009049825799740019,0.00042484530858667073,0.003806658577126771,0.0016973342760984028,0.001395223338811986,0.00044296461413235056,0.0004748587180448833,0.00043938702930235857,0.0004541587704422496,0.0003743076970122815,0.0003068154761087684,0.0002932811477429114,0.00033164015744658096,0.00027867525966122463,0.00026849354721504337,0.00027427200721132506,0.00024955471413449734,0.00023902542591437248,0.00025266617974224596,0.00022298212104350165,0.00020765506182707496,0.00018017898617166014,0.00013094230749277912,6.052271766099173e-05,5.660333310036771,4.901416236213334,2.565222566285887,1.6229672979605616,2.634381155229719,4.210050816861651,2.071447526917173,2.0120122767722695,1.5388967161991083,1.3863158337609156,1.2578535321443807,1.2472153431967776,1.1377012261461958,1.0334154398595885,0.8397064792133364,0.5209383401556487,1.3370559009012586,0.954836246833152,0.707748227004574,0.47742707553992403,0.4737785667317832,0.40070475028085484,0.33503702825724757,0.22639696736218795,0.39404893015912723,0.352408236434038,0.2524439314388734,0.2032776613118852,0.3177242930022112,0.17447418735082293,0.15304018123529323,0.11514634426659609,0.1097306990547345,0.04898903779201867,0.19533401925859945,0.10331377460975577,0.04347311911313009,0.05782722620648073,0.04128569422845465,0.03534110327768589,0.027330349179067057,0.018862875727313815,0.00720798979729955,0.05385114058342402,0.02076631258626449,0.009634460455472983,0.0076439970118611505,0.0074397522346112115,0.006601872096449052,0.006673537833480197,0.007182467976375478,0.006627743167876753,0.006358696399243654,0.005942071689231514,0.005170034540080618,0.004703404594304923,0.0032513272863713893,0.004051378885659025,0.0030100442980209095,0.004246406137834313],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07077091600513086},{"status":"feasible","best":{"feasible":true,"objective":9,"raw_cost":9,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":13,"end":14,"reserved_end":16,"changed":true},{"variable":2,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,0,1,0,0],"qubo_energy":9},"seed":4053640108,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.4219661517708397,2.1834194688397486],"expected_energy":14.39664346189215,"initial_expected_energy":15.121841641213912,"history":[15.121841641213912,14.901210979705526,17.36115700520655,16.32552151597102,15.667586558115621,16.516844310667633,14.859068693111219,14.537364588910656,14.485356045029953,14.470461143076468,14.6552492790755,14.467978442546052,14.47100159973915,14.471556837525192,14.462770764245166,14.46074006854607,14.465083051954936,14.460371443986936,14.464296934955446,14.458725578817283,14.459199257320778,14.458463141672949,14.459104654394539,14.45830400423839,14.458014736573897,14.45751193874541,14.456489352792003,14.454726999311795,14.461991711092114,14.462426370801339,14.454310448968863,14.453866362731873,14.453034090305104,14.45191498411942,14.46068740737688,14.450771008285944,14.450161004514612,14.449347856682017,14.449341349153057,14.454043844573985,14.448971431145338,14.447537051028185,14.446691653315415,14.44696988035965,14.446404278137729,14.446150709090936,14.445666432035168,14.444675992604216,14.442714887049256,14.439402889284603,14.465325745288768,14.467740709541522,14.440835122466003,14.441026894608218,14.439873872853099,14.438819301974737,14.439184346369368,14.438703420709814,14.438471652534929,14.438002904211798,14.592187573991003,14.53372806080365,17.760380432250628,16.24085298526747,15.966642861283326,15.64573005218299,14.529486953457464,14.400848950999347,14.506673698625399,14.405509525735251,14.404092625650687,14.40485992443617,14.401182798787246,14.400732138499343,14.40056079927971,14.401515784206234,14.400107066993446,14.400188010394395,14.400078069088629,14.400149093841037,14.40005759758073,14.40001936087673,14.39995562035336,14.400096368584318,14.399914943998851,14.399839765191082,14.399695822108727,14.399433616348855,14.399207671211375,14.39915232200907,14.39845658628829,14.398443069338004,14.397743673903072,14.399092938598532,14.398584077935096,14.397677149819156,14.397807415230375,14.397693287737429,14.397628073999734,14.397634404358968,14.397598874720309,14.397584865603033,14.397611789299273,14.397550840765335,14.397519195654503,14.397455939927804,14.397341056235929,14.397302828391052,14.397001257363902,14.3988412579972,14.397311430543866,14.396964121170008,14.397349769599211,14.396911610697238,14.396854067644963,14.39679945102761,14.396793532276437,14.396743652576411,14.39668337832438,14.39664346189215],"feasible_probability":0.9148013386657035,"one_hot_probability":1.0,"sampled_feasible_fraction":0.876953125,"counts":{"00101":112,"00110":63,"01001":160,"01010":25,"10001":12,"10010":140},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08689135199529119},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t3","group":"g1","resource":"r0","start":11,"end":13,"reserved_end":14,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":1988026542,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7939950909043116,2.7487932932046917],"expected_energy":2.2132249411796138e-06,"initial_expected_energy":4.284098998893226,"history":[4.284098998893226,4.329940417201161,0.26570050525391065,5.403985218213503,0.627803295166614,0.17795193014556335,0.12077663287059215,0.7861965564295199,0.07072554028452026,0.11026013890148313,0.12839305764999842,0.0707591263661144,0.07356580793115135,0.06601095609316165,0.06040306792380779,0.0744357753240099,0.04866332533780323,0.04329810019744184,0.03813288173973979,0.03740377153872532,0.030095878707865464,0.027582046411168158,0.022383837053959514,0.01521363107135969,0.01015476531755163,0.004770956002747268,0.0005445753582063355,0.07928651432120906,0.01232357611491946,0.007544410552762427,0.00041904573676038214,0.00010992915308128461,0.0008889890692668446,0.00018731319718829606,0.0002132348694360798,9.672678463612923e-05,6.870582221873102e-05,5.193531405156542e-05,5.445746326851091e-05,4.6841371018558894e-05,4.2548377826964756e-05,3.518650076062117e-05,2.373133265475037e-05,3.7880225161086576e-05,5.4024227550082065e-05,2.2932949312855647e-05,1.948220329473684e-05,1.3918340628925255e-05,7.0102489953523185e-06,1.3201685661396925e-05,1.527381375464158e-05,8.047234490081645e-06,6.967453952270896e-06,6.162191718423365e-06,4.714806674581982e-06,2.5148335917598974e-06,8.13358006307037e-06,6.836257054393323e-06,2.2132249411796138e-06,5.2783104021869836e-06,3.6517743500067326,3.655722300775808,0.3782409630676877,5.946076028417773,0.4008590218355101,0.15688571521991468,0.1622785642113835,0.17967057983788612,0.14914970229058105,0.18494471641493088,0.1931323562989863,0.1264124799735457,0.08874237277891868,0.032775524559532594,0.3863244691463707,0.22727193927602807,0.12558364016375842,0.020161793661273696,0.07390629761388122,0.0317663602271062,0.019033000733863995,0.02552879469588357,0.019553566121016098,0.01716461833448982,0.016428088777793542,0.014961899720530296,0.013580056881207489,0.01148769708006194,0.008270221949438657,0.004001550451892825,0.0018989979932289309,0.02512063566004006,0.021328925412448442,0.0020440507588107173,0.0004273158786874471,0.004582045002730658,0.0005104702667207426,0.00036739257788968063,0.0005239331506780143,0.0006675578933915397,0.0004345787098962907,0.00023745265012573954,0.00020690444280037698,0.00017445882745366342,0.00021083911268657743,0.00016030485362944198,0.00014756755583681893,0.0001513122022393598,0.00013837795851676218,0.0001395090952183779,0.0001462099299735244,0.0001275418457946573,0.00012364951169898584,0.0001460512203032268,0.00010875705943097411,9.864324033936187e-05,8.735342842844427e-05,6.778604946454106e-05,4.909919685879455e-05,5.855193274927627e-05],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07440928900905419}],"circuit_evaluations":360,"status":"feasible","feasible_probability":0.9148013386657035,"total_shots":1536,"runtime_seconds":0.23233217900269665},"direct_metrics":{"exact_objective":17,"optimal_count":1,"combinations":72,"optimal_probability":0.004814781177378306,"feasible_probability":0.6244401149116122,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.2777777777777778,"shots_for_95_percent":621,"hit_curve":[{"shots":8,"quantum":0.03787536318899354,"uniform":0.10585733481633375},{"shots":16,"quantum":0.0743161832412889,"uniform":0.20050889429825008},{"shots":32,"quantum":0.14310947139102498,"uniform":0.3608139719037934},{"shots":64,"quantum":0.26573862198023135,"uniform":0.5914412214865954},{"shots":128,"quantum":0.4608602287485104,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9155099669204245,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":9.71445146547012e-17,"independent_samples":[{"shots":8,"best_objective":28},{"shots":16,"best_objective":28},{"shots":32,"best_objective":23},{"shots":64,"best_objective":17},{"shots":128,"best_objective":17},{"shots":512,"best_objective":17}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999899128803899,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":9,"optimal_count":1,"combinations":6,"optimal_probability":0.239306652061522,"feasible_probability":0.9148013386657035,"uniform_optimal_probability":0.16666666666666666,"uniform_feasible_probability":0.8333333333333334,"shots_for_95_percent":11,"hit_curve":[{"shots":8,"quantum":0.8878815854460127,"uniform":0.7674319606386222},{"shots":16,"quantum":0.9874294611179002,"uniform":0.9459121070676046},{"shots":32,"quantum":0.9998419815522136,"uniform":0.9970744998381338},{"shots":64,"quantum":0.9999999750301701,"uniform":0.9999914414488029},{"shots":128,"quantum":0.9999999999999993,"uniform":0.9999999999267511},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":9},{"shots":16,"best_objective":9},{"shots":32,"best_objective":9},{"shots":64,"best_objective":9},{"shots":128,"best_objective":9},{"shots":512,"best_objective":9}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999996838250084,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.2509617839761948e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.23930416248468367,"diagnostic_seconds":0.009570456997607835}
+{"instance":"n5-s0-r1.json","seed":0,"direct":{"status":"feasible","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":15,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":11},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.9337265228236828,1.1323832784478418],"expected_energy":34.13905825526556,"initial_expected_energy":38.043886834280315,"history":[38.043886834280315,38.33564891064243,50.64253144340853,64.7989378705106,42.04685087377102,44.4372903121903,37.9882648213709,36.68264159544118,36.47132024002274,36.379815655070665,37.144553298298675,36.3303278670341,36.43459698034598,36.34487117642888,36.34971983345517,36.313754266377515,36.30480484643154,36.31461182915534,36.300017857388625,36.295855761110346,36.286082827828295,36.267223865900476,36.227698882304146,36.156847294219624,36.08197049594642,36.12221592401501,36.67242453232836,36.14112910791171,35.98894383189549,36.00143983697612,36.01269634541849,35.993727781120626,35.977998840909336,35.958473628291365,35.9138208854165,35.841341164398415,36.11597463575731,36.316085449410195,35.83203068914426,35.80606627510647,35.750136074112575,35.649736714023135,35.46051150252899,35.07111964854009,34.31608962717329,48.1232918017169,47.49993335953918,37.423236621076015,34.22720302122811,35.085013171822624,34.30492981073526,34.33061655341396,34.264777762074885,34.21361888755851,34.19449302819123,34.16007186547176,34.16741384458836,34.150950795183846,34.1912207419495,34.14560127421416,72.60199053651769,69.78371508454352,42.86405586938088,48.192042531030786,46.40875640716744,46.52505696630206,37.01013859435581,42.02662148601355,38.707434747885685,37.763939333214836,36.13886104350527,36.358720057814125,35.98875828959433,36.10832065018313,36.101606526828725,36.02169534607543,35.987215809386925,35.975706824534335,35.95492529009468,35.91036318537,35.822975574101974,35.63672554623309,35.871243233042506,36.949676874136046,35.880749157869445,35.61566938192886,35.727742336242656,35.60322968329144,35.58262608466397,35.547724758045874,35.63753794880341,35.529350652373836,35.51153536737432,35.48147485666593,35.52745037441102,35.43072784087812,35.467209209254236,35.467148250516274,35.43081180589405,35.416698761170366,35.396742176350095,35.34646992788823,35.25133436171008,35.077966689407205,34.81890361940938,34.785051100899786,34.27854418820132,36.41547062494733,34.94671152691507,34.24195748702661,34.57733991210715,34.208552267095534,34.20625437374123,34.26807065269259,34.20759350164195,34.18416256006822,34.15875809435805,34.174893843090146,34.14857253343789,34.13905825526556],"feasible_probability":0.9429377216067303,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.93359375,"counts":{"0010100010011":26,"0010100010101":4,"0010100011001":34,"0010100100011":4,"0010100101001":11,"0010101000011":32,"0010101000101":4,"0010101001001":39,"0010110000011":42,"0010110000101":6,"0010110001001":29,"0011000010011":14,"0011000010101":1,"0011000011001":8,"0011000101001":2,"0011001000011":1,"0011001001001":2,"0011010000011":1,"0011010001001":5,"0100100010011":11,"0100100011001":7,"0100100101001":1,"0100101000011":5,"0100101000101":1,"0100101001001":3,"0100110000011":4,"0100110000101":1,"0100110001001":6,"0101000010011":5,"0101000011001":2,"0101001000011":3,"0101001001001":1,"0101010000011":1,"0101010001001":2,"1000100010011":7,"1000100010101":1,"1000100011001":6,"1000100100011":1,"1000100100101":1,"1000100101001":2,"1000101000011":10,"1000101001001":7,"1000110000011":12,"1000110000101":3,"1000110001001":12,"1001000010011":33,"1001000010101":3,"1001000011001":34,"1001000100011":6,"1001000101001":12,"1001001000011":9,"1001001000101":1,"1001001001001":12,"1001010000011":10,"1001010000101":2,"1001010001001":10},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.31283508001070004},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":11,"removals":[],"infeasible_task":null,"component_qubits":[3,9],"max_component_qubits":9,"component_to_original":[[1,2,3],[4,5,6,7,8,9,10,11,12]],"components":[{"qubits":3,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-4,-1],"quadratic":[[0,1,24],[0,2,24],[1,2,24]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":6,"cost":8},{"index":2,"task":"t1","resource":"r0","start":9,"cost":11}],"conflicts":[]},{"qubits":9,"penalty":33,"objective_bound":32,"offset":99,"linear":[-33,-28,-24,-27,-33,-21,-33,-29,-22],"quadratic":[[0,1,66],[0,2,66],[0,3,66],[1,2,66],[1,3,66],[1,4,33],[2,3,66],[4,5,66],[5,7,33],[6,7,66],[6,8,66],[7,8,66]],"domains":[[0,1,2,3],[4,5],[6,7,8]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":7,"cost":0},{"index":1,"task":"t2","resource":"r0","start":11,"cost":5},{"index":2,"task":"t2","resource":"r2","start":13,"cost":9},{"index":3,"task":"t2","resource":"r1","start":10,"cost":6},{"index":4,"task":"t3","resource":"r0","start":11,"cost":0},{"index":5,"task":"t3","resource":"r0","start":16,"cost":12},{"index":6,"task":"t4","resource":"r1","start":15,"cost":0},{"index":7,"task":"t4","resource":"r0","start":16,"cost":4},{"index":8,"task":"t4","resource":"r2","start":21,"cost":11}],"conflicts":[{"i":1,"j":4,"reasons":["resource"]},{"i":5,"j":7,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":15,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":11},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":3757552657,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.549600526893617,1.1100367760837815],"expected_energy":2.9947054456288917,"initial_expected_energy":9.93438902070336,"history":[9.93438902070336,10.180131585627677,5.540014080072675,4.250814476366894,5.629720566126187,6.824005698306113,4.882098041053405,4.768887596954549,3.4033317122104707,3.9104588412485617,3.584244409225482,3.530262404190856,3.2226929489797502,3.1757067673395936,3.229277867539917,3.182423803991149,3.2080803383935588,3.169524859664877,3.172613943227943,3.171554264892409,3.1660654936136767,3.1612707202874475,3.1629531726139417,3.157357872122449,3.1542383848083553,3.151733719105749,3.161843725731483,3.1475195851825593,3.139809421096469,3.126143791795452,3.0999620278136373,3.0671765250607534,3.0974021125346813,3.1481854782088448,3.0762551924689303,3.056601369598415,3.0533229887965403,3.0813832711570677,3.046440743098027,3.0428427308932955,3.038914592779781,3.0341386604455534,3.0473037889132706,3.0293788927748584,3.032823964268407,3.0275368968417515,3.026360013757532,3.024432764791932,3.021316937865361,3.0149673592966355,3.0052094462750967,3.1165156612241494,3.063890914782961,3.010839166145059,3.0045438013257253,3.01056761384233,3.0031658897926246,3.0026694448199738,3.0015659241084833,3.000685416092793,6.881506544134437,7.638899949977434,5.561233651340209,6.320672560984722,5.099444122014966,4.569539815629817,3.79905286775981,8.03795092045939,8.941632887450297,4.238923244649666,3.7852392335590697,4.693602866107774,3.6923354893218523,3.590881779018416,3.562067116396209,3.6875173154361853,3.520989275255645,3.48673525113855,3.426379910931384,3.3240394452385593,3.264787845515224,3.3762691017542457,3.9577208171126252,3.2434656097965715,3.1338334853116177,3.1600366671545324,3.1483476802318453,3.1397052423543745,3.12458185508915,3.1172979770857596,3.101372202975061,3.072672370029923,3.1512957505592207,3.1243424920698737,3.088693266202498,3.0703280176081496,3.0813694344871285,3.0686992962874093,3.065786325122459,3.060428719533162,3.0507152308247143,3.036483497395932,3.079176174472346,3.101784189266943,3.033831246112758,3.030015006986519,3.0227033498947184,3.01108448892964,3.069357583979063,3.0372749949984508,3.0197066290658148,3.0106847186354306,3.006946969284747,3.001150493874264,2.994875558186344,3.023557767882168,3.010068052384561,2.9962666327264587,2.9947054456288917,2.9962434116183663],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":341,"010":135,"100":36},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09229740199225489},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":10,"changed":false},{"variable":4,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":15,"changed":false},{"variable":6,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,0,0,0,1,0,1,0,0],"qubo_energy":0},"seed":673228719,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.231563488233396,-0.18682124473132192],"expected_energy":14.330774775854355,"initial_expected_energy":18.318640223534636,"history":[18.318640223534636,21.556486950436458,30.67379139248174,21.12538705005255,25.162764363012677,19.760597559588213,15.67368566716143,14.748594985220997,15.685933725339451,14.698775279281286,15.107615904231654,14.696759715578853,14.593731768642423,14.540375022195644,14.745573411865529,14.898437893595204,14.538619747649534,14.556540186727961,14.669585791016804,14.52089668659523,14.503099734862612,14.50629310894286,14.503283735231221,14.50743399748728,14.501915158249371,14.503001093162396,14.502765798860594,14.50171778307086,14.501923068359664,14.501669528654295,14.501566482706513,14.501359117731926,14.500973564870852,14.500592963639257,14.499883360586352,14.500304192487949,14.500428439040547,14.499792143222107,14.500251642274474,14.499726036177492,14.499611040671033,14.499474506724898,14.500082448361193,14.499334979270703,14.499255878685661,14.49915335417619,14.498979656756966,14.499028083753256,14.49914474838581,14.49898694642187,14.49899796526664,14.498956836989905,14.498954083305996,14.499026182797447,14.498904402173764,14.49887233915566,14.498841375623458,14.498818057408965,14.498752053212655,14.498750634463935,31.743712231638188,32.75397114516153,32.48622653092575,20.1385568495988,35.31435788940449,27.06278093552004,22.71624310176974,19.03889293315898,19.15734415588496,19.77970395553784,18.421256826518697,18.982321962706315,18.706668867213953,18.499161270062178,18.668316640397954,18.357550320424902,18.358243320313036,18.388891588587924,18.298725050660902,18.196757237753964,18.07162372098318,18.268234130706333,17.9615982116679,17.857088545643382,17.654984574286466,17.27198044746514,16.745423284157685,16.19681491567638,15.867661504441326,19.248750921238923,15.444218911668628,15.79713219801389,15.524735111152683,15.476739150676242,15.399145274152842,15.385286589790208,15.512230388353972,15.336591389919771,15.297253098825912,15.239425113305208,15.12824690676769,15.10174725773525,14.881132817625973,15.370877321454428,14.802894047398262,14.76586050175834,15.080429346104534,14.692017540883644,14.664976102730298,14.62218094466637,14.545496639357417,14.50859644465488,14.478216136928653,14.517502905788769,14.555105301837767,14.37529474441584,14.343069941988526,14.384003045813714,14.330774775854355,14.338452440557372],"feasible_probability":0.9655589905793175,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.96484375,"counts":{"001010001":40,"001010010":5,"001010100":51,"001011000":30,"001100001":29,"001100010":46,"001100100":22,"001101000":17,"010010001":46,"010010010":2,"010010100":29,"010011000":37,"010100010":6,"010101000":2,"100010001":22,"100010010":3,"100010100":21,"100011000":19,"100100001":29,"100100010":24,"100100100":14,"100101000":18},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12617491399578284}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9655589905793175,"total_shots":1024,"runtime_seconds":0.21871130300860386},"direct_metrics":{"exact_objective":11,"optimal_count":1,"combinations":72,"optimal_probability":0.053230777174876454,"feasible_probability":0.9429377216067303,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.7083333333333334,"shots_for_95_percent":55,"hit_curve":[{"shots":8,"quantum":0.35441556207375136,"uniform":0.10585733481633375},{"shots":16,"quantum":0.5832207335074496,"uniform":0.20050889429825008},{"shots":32,"quantum":0.8262950430219317,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9698265879212474,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9990895652035258,"uniform":0.8330797244996347},{"shots":512,"quantum":0.999999999999313,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.551115123125783e-17,"independent_samples":[{"shots":8,"best_objective":20},{"shots":16,"best_objective":17},{"shots":32,"best_objective":11},{"shots":64,"best_objective":11},{"shots":128,"best_objective":11},{"shots":512,"best_objective":11}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6517251010325571,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9997835401270134,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999531451234,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999978,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":24,"optimal_probability":0.09950522546218687,"feasible_probability":0.9655589905793175,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.7083333333333334,"shots_for_95_percent":29,"hit_curve":[{"shots":8,"quantum":0.5676359502343629,"uniform":0.2885690504976606},{"shots":16,"quantum":0.8130613284702577,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9650539330866951,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9987787724072908,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999985086031669,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":7.632783294297951e-17,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":6},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.06485005311761112,"diagnostic_seconds":0.011324965991661884}
+{"instance":"n5-s0-r1.json","seed":1,"direct":{"status":"feasible","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":15,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":11},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.5516273131387923,1.1646512588896165],"expected_energy":33.64162039519011,"initial_expected_energy":61.34149306670203,"history":[61.34149306670203,61.947520195899315,35.51872977352629,48.56174393398311,38.52720532334081,37.55415739397688,35.24998836426476,35.603157951330644,35.727870003592926,34.717830340423966,34.876580623673775,34.76136723449274,34.77488412084073,34.71112392922183,34.69694033602381,34.68520300428146,34.691397187725855,34.675414248469856,34.66947910730114,34.676670760614925,34.6562221789078,34.64498216596112,34.621769063860484,34.581697890753546,34.571350865264264,34.480264295758694,34.478864072156796,34.384760263560764,34.3750755675709,34.28983096626362,34.272290750837364,34.15506803119684,34.3905950184859,34.30587573597498,34.196420861886445,34.167333089763645,34.14932916481524,34.17901154430952,34.13833414754888,34.1279564229633,34.10797745306405,34.069914889815564,34.01049019001262,34.21394064446281,34.31782761138712,33.99432346050335,33.98179489460372,33.973104960077734,34.10379589868542,33.953128257261625,33.92794893990467,33.91845645930382,33.90119994479616,33.870324509563844,33.8209663564502,33.881622792789244,34.058113728955526,33.80407511539015,33.8295449727745,33.801171842481324,36.71723943678934,37.15145592753488,46.36086260743741,63.821650192062975,36.292358115383074,39.64660506811815,36.75094073847471,35.103120162860776,34.27985929405904,34.979997932249624,34.39577870785364,34.21445605521679,34.61302146663869,34.264836847313845,34.20538040908721,34.1808429622409,34.1474454019381,34.17455809057486,34.12194901673828,34.144006188076844,34.11704341822898,34.111407625603505,34.101309531605374,34.08191088088614,34.0449200307051,33.9832119138563,33.933031912078256,33.90253325407029,33.73897780450077,34.14460612949922,34.90732575206312,33.721856569331564,33.724514028391766,33.776345302579436,33.67892339570068,33.710923781004475,33.6756567436639,33.684472915799006,33.67062850789241,33.66784344344755,33.6645184376554,33.658541251470865,33.66137829152696,33.661497375043815,33.65768628567821,33.66121465636341,33.6552667652563,33.65788556197322,33.65406418679539,33.65459542114746,33.65383015712992,33.653148096932036,33.65181946119588,33.64949361251334,33.64705438098864,33.64162039519011,33.6474457134462,33.64830463700843,33.643211735438975,33.64218836093791],"feasible_probability":0.9486026997100395,"one_hot_probability":1.0000000000000004,"sampled_feasible_fraction":0.95703125,"counts":{"0010100010011":32,"0010100010101":1,"0010100011001":43,"0010100100011":6,"0010101000011":42,"0010101000101":5,"0010101001001":36,"0010110000011":21,"0010110000101":5,"0010110001001":34,"0011000010011":13,"0011000011001":18,"0011000100011":4,"0011000100101":1,"0011000101001":5,"0011001000011":3,"0011001001001":7,"0011010000011":1,"0011010000101":1,"0011010001001":1,"0100100010011":2,"0100100010101":1,"0100100011001":8,"0100101000011":11,"0100101000101":3,"0100101001001":6,"0100110000011":1,"0100110000101":1,"0100110001001":9,"0101000010011":3,"0101000011001":1,"0101001000011":1,"0101001001001":2,"0101010000011":2,"0101010001001":1,"1000100010011":6,"1000100010101":2,"1000100011001":13,"1000100101001":6,"1000101000011":10,"1000101000101":5,"1000101001001":11,"1000110000011":10,"1000110001001":14,"1001000010011":23,"1001000010101":2,"1001000011001":23,"1001000100011":7,"1001000100101":2,"1001000101001":4,"1001001000011":13,"1001001001001":16,"1001010000011":8,"1001010001001":6},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.29824577800172847},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":11,"removals":[],"infeasible_task":null,"component_qubits":[3,9],"max_component_qubits":9,"component_to_original":[[1,2,3],[4,5,6,7,8,9,10,11,12]],"components":[{"qubits":3,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-4,-1],"quadratic":[[0,1,24],[0,2,24],[1,2,24]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":6,"cost":8},{"index":2,"task":"t1","resource":"r0","start":9,"cost":11}],"conflicts":[]},{"qubits":9,"penalty":33,"objective_bound":32,"offset":99,"linear":[-33,-28,-24,-27,-33,-21,-33,-29,-22],"quadratic":[[0,1,66],[0,2,66],[0,3,66],[1,2,66],[1,3,66],[1,4,33],[2,3,66],[4,5,66],[5,7,33],[6,7,66],[6,8,66],[7,8,66]],"domains":[[0,1,2,3],[4,5],[6,7,8]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":7,"cost":0},{"index":1,"task":"t2","resource":"r0","start":11,"cost":5},{"index":2,"task":"t2","resource":"r2","start":13,"cost":9},{"index":3,"task":"t2","resource":"r1","start":10,"cost":6},{"index":4,"task":"t3","resource":"r0","start":11,"cost":0},{"index":5,"task":"t3","resource":"r0","start":16,"cost":12},{"index":6,"task":"t4","resource":"r1","start":15,"cost":0},{"index":7,"task":"t4","resource":"r0","start":16,"cost":4},{"index":8,"task":"t4","resource":"r2","start":21,"cost":11}],"conflicts":[{"i":1,"j":4,"reasons":["resource"]},{"i":5,"j":7,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":15,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":11},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":1641411168,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.67848557696057,1.1104176851745722],"expected_energy":2.9948597920560767,"initial_expected_energy":3.2056852935906566,"history":[3.2056852935906566,3.871417903373083,6.552226840786607,9.064609983549023,4.580169065387286,3.6724703568109587,3.1856178797523453,3.278296057679751,3.2030573835610734,3.2045737707573263,3.1872847792585732,3.183393063668259,3.1796208278030713,3.1747759298613265,3.1786000844889837,3.1705226804293822,3.167269618594493,3.1667803506718135,3.1621083836753523,3.1576965688591416,3.1495375878365466,3.1349532716141133,3.1073688441833758,3.069719567012471,3.087837620522455,3.1402239024658245,3.0703048117917033,3.0758679768378245,3.0605208555808923,3.053835367037772,3.046040070169642,3.0425472903372173,3.132879274216707,3.0256189132388984,3.029768250150917,3.0245889195214817,3.029375434508492,3.0227373261473716,3.0213261698498313,3.0181469575679483,3.012162083487922,3.0098941371236045,3.014827186402171,3.0405152087353913,3.0085596350338704,3.0023162542988433,3.001709060615947,3.0033297830494226,3.0005317186645994,2.998568764473963,2.9959194555376625,3.0092500886303446,2.9960955156613718,2.9957604855474953,2.9961060022601544,2.9967407309443095,2.9948605721328088,2.9956184683282734,2.9951692781262,2.9948597920560767,6.514728650711284,7.215835797071196,6.244646129022877,6.744273753610732,6.344074888585721,6.283282143711685,6.213249135944117,6.153692683981575,6.051630646548173,6.113610287591917,5.858335357681998,5.648086442088453,5.218168250971783,4.413879747851061,3.601726696308527,8.489008315965279,7.899413951640077,3.523720372780313,3.5415977778555288,3.562092081604825,3.6003081342701964,3.6637518856997557,3.331720998027924,3.2685498762511194,3.236679752505377,3.282358910870373,3.2389124608757407,3.232951031214241,3.234219245157127,3.235090273154579,3.2293470824976866,3.2248864830808284,3.226557306944561,3.222114795772811,3.2199370025789573,3.2188359790641505,3.2281619401067045,3.215171540361495,3.209127078174014,3.200320265222264,3.1814720268004715,3.148691871924167,3.372288344602995,3.2767367604662834,3.2038904079553734,3.147377875657022,3.1431523089743734,3.1353383895939104,3.122574258393258,3.1270790251206284,3.1531660359235962,3.1324804170621228,3.1211166941766653,3.1229172428684677,3.1202394327985012,3.1210341331805886,3.1189712060880437,3.1188982748340077,3.1173740499255507,3.1161289240222443],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":325,"010":147,"100":40},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08108154000365175},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":10,"changed":false},{"variable":4,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":15,"changed":false},{"variable":6,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,0,0,0,1,0,1,0,0],"qubo_energy":0},"seed":1454127163,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3320211043661656,1.1681951289808366],"expected_energy":14.49858648212091,"initial_expected_energy":19.816335011276294,"history":[19.816335011276294,20.28241656960055,19.886255813120005,23.08463566828152,20.20969983132919,20.246664078746992,20.883808036415694,17.886476782065728,15.397593062195444,15.036140958591387,15.235788502394946,15.383458627905465,14.947120147241785,14.930104882162798,14.865073834619462,14.796922519790273,14.705146498604858,14.713605016052941,14.798742492712941,14.693242808277855,14.790148654445446,14.67266179572562,14.662375275029266,14.692604815577104,14.653997535742203,14.646592695128437,14.633040778312264,14.607895407144557,14.581321735189288,14.562386463407664,14.534876533653772,14.519819624425745,15.126375029849598,14.53651980360997,14.522042941396315,14.58109510847368,14.502600960024065,14.499331693557913,14.499627096164502,14.503030374700453,14.498800693043332,14.49917484785177,14.498839643159043,14.49889874979715,14.498798046269116,14.498771179399922,14.498728766360992,14.498887754518915,14.498722246146077,14.498692323243317,14.498644882368946,14.498594636506777,14.498726201529841,14.49869092527372,14.49858931572058,14.498594401358417,14.498592042803427,14.4985984143725,14.498586751070953,14.49858648212091,30.821974211536737,27.755007099747026,25.370747339436598,27.629814770207517,25.701750935198188,26.088165971680326,25.38115369323789,25.372425502925335,25.366160384091472,25.390423838161404,25.418935174297843,25.360111965305855,25.347865343793558,25.348149173122184,25.347192690947548,25.346937304974208,25.347919423939096,25.346877311994373,25.347300664962475,25.346900134714403,25.347128405255894,25.346847008862333,25.34676083891063,25.346654806576687,25.346631050328615,25.346628306955182,25.346629884949525,25.346640270905848,25.34662676341292,25.346631168370457,25.346625813458353,25.3466253599429,25.34662431591273,25.34662392810734,25.34662170457493,25.346624129224722,25.346622850746826,25.34662171827108,25.346621960144347,25.346621335913262,25.346621171821063,25.346623679220592,25.346620404460502,25.346619846430652,25.346619048619214,25.346617958416164,25.346615993464326,25.346611698798448,25.34660491398173,25.346627588465537,25.34668184280766,25.34660614672216,25.34660468453739,25.34661309377249,25.34660318477784,25.34660132016827,25.346600482426606,25.346602231668065,25.346599853269694,25.346599255592597],"feasible_probability":0.9471793946926973,"one_hot_probability":1.0,"sampled_feasible_fraction":0.94140625,"counts":{"001010001":70,"001010010":7,"001010100":83,"001011000":47,"001100001":35,"001100010":6,"001100100":17,"001101000":4,"010010001":10,"010010010":1,"010010100":20,"010011000":6,"010100001":4,"010100100":6,"010101000":5,"100010001":33,"100010010":7,"100010100":21,"100011000":33,"100100001":52,"100100010":13,"100100100":19,"100101000":13},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12731907500710804}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9471793946926973,"total_shots":1024,"runtime_seconds":0.20863469901087228},"direct_metrics":{"exact_objective":11,"optimal_count":1,"combinations":72,"optimal_probability":0.050825979128622994,"feasible_probability":0.9486026997100393,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.7083333333333334,"shots_for_95_percent":58,"hit_curve":[{"shots":8,"quantum":0.34118004706723126,"uniform":0.10585733481633375},{"shots":16,"quantum":0.5659562696176643,"uniform":0.20050889429825008},{"shots":32,"quantum":0.8116060401157863,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9645077158791453,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9987402977678845,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999999999974819,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":17},{"shots":16,"best_objective":11},{"shots":32,"best_objective":11},{"shots":64,"best_objective":11},{"shots":128,"best_objective":11},{"shots":512,"best_objective":11}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.647140876246054,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9997596684372154,"uniform":0.9609815576893767},{"shots":16,"quantum":0.99999994224074,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999967,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":24,"optimal_probability":0.1440342353290351,"feasible_probability":0.9471793946926973,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.7083333333333334,"shots_for_95_percent":20,"hit_curve":[{"shots":8,"quantum":0.7118284122520899,"uniform":0.2885690504976606},{"shots":16,"quantum":0.9169571360148486,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9931038827411437,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9999524435667521,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999999977383857,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":4},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.09321044126026211,"diagnostic_seconds":0.01052479600184597}
+{"instance":"n5-s0-r1.json","seed":2,"direct":{"status":"feasible","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":15,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":11},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.3889422116347117,1.068936945230603],"expected_energy":36.956753211513615,"initial_expected_energy":66.30417155781855,"history":[66.30417155781855,64.19124332802328,39.629053563771485,53.28159146328149,44.46185521239057,42.55671491510735,37.045741970439366,40.62154943077903,37.058096201027226,38.10862115035022,37.26210632439586,37.41151808368477,36.981764713396444,36.997486970984944,36.98121584099862,36.99728247212903,36.977404373339624,36.984846460663725,36.97867551718683,36.97775914368443,36.977249469988436,36.97702517296646,36.97697942969593,36.97679410945916,36.97662175922885,36.97634839237425,36.97765089080461,36.97603773044261,36.975744748973966,36.97602702230941,36.97545798336456,36.975138471715134,36.974872702981116,36.976944980195924,36.974235382894236,36.97390626261847,36.97356100796219,36.97328418898641,36.972307932915385,36.97240419653472,36.97208535216657,36.972254970948825,36.9722140105515,36.971890093247396,36.97180293674637,36.972489751923845,36.97154593865511,36.97130948067942,36.9708761668509,36.970058263401185,36.96827712781554,36.965801113070164,36.96512316225713,36.95857331470996,36.98158993209732,36.97204038754164,36.95760971804788,36.96265576078639,36.95734877005373,36.956753211513615,52.3257095754616,51.27438428329768,50.722923175436925,58.190040504973936,51.509875961864815,52.46577102650696,51.773305306144195,48.76502748654015,46.126832780413366,45.25103766018688,45.49159963699716,45.33990404721591,45.32740333211711,45.253112799224795,45.25715681664295,45.25451322839352,45.24960949618882,45.25097991266334,45.25031420360017,45.249556258337684,45.249399548555076,45.24952130710217,45.24932898373447,45.249311569509736,45.2492294031037,45.24915162605211,45.249001383480916,45.248696531957016,45.24805398010393,45.24768200863544,45.24718450860878,45.24931761531161,45.25029361130004,45.247657565209266,45.24607363378365,45.24583746037354,45.24548588756086,45.245506001361015,45.24532423162648,45.24529936604797,45.24563568277189,45.24517143752212,45.24495336446495,45.24461524587916,45.24375076112682,45.24249587014487,45.2440016871992,45.25117094295833,45.241843072143766,45.242217185965345,45.242169139627656,45.24138447578239,45.2414116813053,45.24163542550204,45.241415160557345,45.241265496647145,45.241028216688484,45.240552057368006,45.23961557141475,45.23751358731022],"feasible_probability":0.950157438531773,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.943359375,"counts":{"0010100010011":6,"0010100010101":1,"0010100011001":10,"0010100100011":6,"0010100100101":2,"0010100101001":3,"0010101000011":11,"0010101000101":1,"0010101001001":4,"0010110000011":9,"0010110000101":4,"0010110001001":10,"0011000010011":4,"0011000010101":1,"0011000011001":1,"0011000100011":2,"0011000101001":1,"0011001000011":9,"0011001001001":4,"0011010000011":21,"0011010000101":4,"0011010001001":33,"0100100010011":3,"0100100010101":1,"0100100011001":5,"0100100101001":2,"0100101000011":11,"0100101000101":1,"0100101001001":7,"0100110000011":8,"0100110001001":10,"0101000010011":5,"0101000010101":1,"0101000011001":5,"0101000101001":1,"0101001001001":2,"1000100010011":7,"1000100010101":2,"1000100011001":7,"1000100100011":1,"1000100101001":1,"1000101000011":28,"1000101000101":6,"1000101001001":32,"1000110000011":35,"1000110000101":6,"1000110001001":38,"1001000010011":28,"1001000010101":3,"1001000011001":30,"1001000100011":7,"1001000100101":1,"1001000101001":8,"1001001000011":8,"1001001000101":5,"1001001001001":6,"1001010000011":24,"1001010000101":3,"1001010001001":17},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.2990210110001499},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":11,"removals":[],"infeasible_task":null,"component_qubits":[3,9],"max_component_qubits":9,"component_to_original":[[1,2,3],[4,5,6,7,8,9,10,11,12]],"components":[{"qubits":3,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-4,-1],"quadratic":[[0,1,24],[0,2,24],[1,2,24]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":6,"cost":8},{"index":2,"task":"t1","resource":"r0","start":9,"cost":11}],"conflicts":[]},{"qubits":9,"penalty":33,"objective_bound":32,"offset":99,"linear":[-33,-28,-24,-27,-33,-21,-33,-29,-22],"quadratic":[[0,1,66],[0,2,66],[0,3,66],[1,2,66],[1,3,66],[1,4,33],[2,3,66],[4,5,66],[5,7,33],[6,7,66],[6,8,66],[7,8,66]],"domains":[[0,1,2,3],[4,5],[6,7,8]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":7,"cost":0},{"index":1,"task":"t2","resource":"r0","start":11,"cost":5},{"index":2,"task":"t2","resource":"r2","start":13,"cost":9},{"index":3,"task":"t2","resource":"r1","start":10,"cost":6},{"index":4,"task":"t3","resource":"r0","start":11,"cost":0},{"index":5,"task":"t3","resource":"r0","start":16,"cost":12},{"index":6,"task":"t4","resource":"r1","start":15,"cost":0},{"index":7,"task":"t4","resource":"r0","start":16,"cost":4},{"index":8,"task":"t4","resource":"r2","start":21,"cost":11}],"conflicts":[{"i":1,"j":4,"reasons":["resource"]},{"i":5,"j":7,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":15,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":11},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":2001025171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.5464330523637146,1.111227205692909],"expected_energy":2.9949287300043705,"initial_expected_energy":6.504216171175368,"history":[6.504216171175368,5.931334437404192,5.7753173696949816,6.077017893515034,6.152855978759316,5.720353513557173,5.970068400634973,5.643876740561261,5.495191645132637,5.312227310813212,5.449472668855089,5.200230443362017,4.986729779156661,4.651112328725344,4.318144530884959,3.623584873768394,9.291438556599918,5.247007050973334,5.336515932413311,3.5141813780974838,3.4637836943115965,3.443188507010098,3.5820386891930998,3.348855512376172,3.358589373836512,3.3368090641216526,3.35260055834697,3.3199578295916634,3.306457877961045,3.2833501335457758,3.241332274187529,3.40522304869707,3.248763712295964,3.2379788050978164,3.2888393972764174,3.2187186460258,3.205602801089584,3.196069852774678,3.1857202943949554,3.166890436824378,3.1336513785526594,3.0733723138035356,3.04999413446807,3.6002195918121025,3.6327556946223614,3.001010828098374,3.0909362523377517,2.9972305677028532,3.0096803916334554,3.0005315038553424,2.9963332813054073,2.9972863521385547,2.995695652362008,2.9962281174482355,2.995493741135052,2.99588716377467,2.995419702963443,2.995271894692772,2.9951230675866953,2.9949287300043705,7.635879312066047,7.720358443848896,7.686776528185556,5.888543502728323,6.414253890476145,5.125620219500013,8.338159539112846,4.428708879424214,6.375059833276135,5.036934054450091,4.401788064207719,4.517633803511158,4.447240844912416,4.288242250276573,4.205668462231252,4.572698264076878,4.09484644902305,4.003040894424583,3.839227885947611,3.6547206247437503,3.580264001409368,3.2179916884298456,4.154339598606327,4.3024476603683715,3.175763440408672,3.3459544215582833,3.2661799954153135,3.1581693896775613,3.1491650928158204,3.1924796243085014,3.1371815637003486,3.129363094634604,3.1212058988135114,3.1095572212490876,3.1034034559009966,3.0614935400152623,3.1257079741201577,3.1295735178793582,3.0558698909901203,3.078538868131073,3.0550686991630265,3.049378336987421,3.0389639958865677,3.031742103892687,3.0374997129294923,3.0684758727397714,3.03774745130022,3.0216204025303073,3.018196646989569,3.025866236272455,3.016483307221707,3.0150810794650686,3.012609133113375,3.0074196732185015,3.0018689276581547,3.021434950446687,3.0266940968692397,2.9985431990924973,2.9999556286138227,2.9989702961284785],"feasible_probability":0.9999999999999999,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":1.0,"counts":{"001":336,"010":137,"100":39},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08599421700637322},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":10,"changed":false},{"variable":4,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":15,"changed":false},{"variable":6,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,0,0,0,1,0,1,0,0],"qubo_energy":0},"seed":2240297063,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.326390616037402,1.1686093823797807],"expected_energy":14.498800617837126,"initial_expected_energy":31.886382781153916,"history":[31.886382781153916,26.73717583497335,28.926590871847612,27.463534105195883,25.3530005420798,27.51140906259819,30.35296961682156,25.55557059437463,26.347758706290904,25.37975893705957,25.239307013146455,25.235717290511666,25.825791962287695,24.76982155328033,24.47801341353403,23.421726257012583,23.019893586122212,20.656111349494985,35.99275058270474,23.720067483932638,23.18282811853298,21.046194004051166,20.415809420081118,20.039300007069237,20.062811452298412,19.78794634394028,19.72101564718973,20.09154240870767,19.58244160835307,19.4536980029814,19.211303829599583,18.754325840573806,17.878975911085853,16.556521746067077,30.693969527861142,24.89447596205434,17.35266831283348,17.642005492288646,16.729649934436186,16.289385975593817,16.184914491404175,16.571665671819037,16.08251346076179,15.99874437733877,15.833103727671178,15.566683434145794,16.039546693341503,16.467809535787794,15.504048285978506,15.366683621308729,15.113799904318896,14.934641186483018,19.693525624444504,14.689821297805182,14.989612111179328,14.759865662378987,14.584534140508978,14.540512574455594,14.623851472916227,14.521868903773237,23.960616095327893,21.315338108729577,26.762401341964022,17.40605568044633,30.881456152684795,21.838438767344286,18.974520079199078,15.417152731688304,15.146085410212734,16.465045299867214,14.919854952400213,14.781042229623313,14.768807921643122,14.642494967393137,14.76491706118069,14.632571659642759,14.666552594540883,14.63385802598711,14.621902843826462,14.60770396066874,14.615883095944184,14.601082262281476,14.595434788439,14.590688245634833,14.576578608798123,14.567347466425023,14.556943672430858,14.539511377140398,14.52606387266431,14.545474206305094,14.58600463653011,14.521276189015985,14.511823946354797,14.51177352031089,14.516733291854987,14.508221281612652,14.505282447274155,14.502658306228131,14.510620591074723,14.504851105715058,14.504430986688035,14.504236970783452,14.50188952313216,14.501514544025948,14.502405069278506,14.501233851548442,14.500985086511974,14.500543654914235,14.49992615895056,14.499356198933192,14.498923262983112,14.499988927024049,14.498967274833973,14.49893544235983,14.49896677795474,14.498860337013184,14.498832701537802,14.498958894072377,14.49883333063687,14.498800617837126],"feasible_probability":0.9473791937006844,"one_hot_probability":1.0,"sampled_feasible_fraction":0.943359375,"counts":{"001010001":77,"001010010":8,"001010100":82,"001011000":44,"001100001":23,"001100010":13,"001100100":16,"001101000":2,"010010001":12,"010010010":1,"010010100":18,"010011000":6,"010100001":4,"010100010":1,"010100100":5,"010101000":2,"100010001":35,"100010010":8,"100010100":31,"100011000":31,"100100001":48,"100100010":11,"100100100":24,"100101000":10},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12962808800511993}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9473791937006842,"total_shots":1024,"runtime_seconds":0.21586745099921245},"direct_metrics":{"exact_objective":11,"optimal_count":1,"combinations":72,"optimal_probability":0.022047847981371084,"feasible_probability":0.950157438531773,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.7083333333333334,"shots_for_95_percent":135,"hit_curve":[{"shots":8,"quantum":0.1633557056342862,"uniform":0.10585733481633375},{"shots":16,"quantum":0.30002632470529683,"uniform":0.20050889429825008},{"shots":32,"quantum":0.5100368538944254,"uniform":0.3608139719037934},{"shots":64,"quantum":0.7599361154583274,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9423693313387624,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999889690063626,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":7.632783294297951e-17,"independent_samples":[{"shots":8,"best_objective":17},{"shots":16,"best_objective":11},{"shots":32,"best_objective":15},{"shots":64,"best_objective":11},{"shots":128,"best_objective":11},{"shots":512,"best_objective":11}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6522313184624423,"feasible_probability":0.9999999999999999,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9997860443543187,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999542229817,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999979,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":24,"optimal_probability":0.14374153445236276,"feasible_probability":0.9473791937006845,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.7083333333333334,"shots_for_95_percent":20,"hit_curve":[{"shots":8,"quantum":0.7110391367929481,"uniform":0.2885690504976606},{"shots":16,"quantum":0.9165016195346355,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9930280204596612,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9999513915012891,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999999976372138,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":9.71445146547012e-17,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.09375273053367914,"diagnostic_seconds":0.011412116989959031}
+{"instance":"n5-s0-r1.json","seed":3,"direct":{"status":"feasible","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":15,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":11},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.5037501320375495,1.1685302122743968],"expected_energy":33.62922229307694,"initial_expected_energy":33.90014402976479,"history":[33.90014402976479,35.585947188922276,54.68895254048589,53.90762691113239,41.381064273432614,33.766270537449216,34.90909064626116,33.953624826016664,33.75449108590779,33.715104927743255,33.74496045125116,33.900090154725625,33.70595809557123,33.665349736451596,33.65897471138662,33.6528287101196,33.656170439692644,33.65057040145288,33.64950704783912,33.65455426151467,33.64686255642787,33.64562720584768,33.64309810952368,33.644220659027596,33.64349512681227,33.64290924490299,33.649427124823795,33.641202678828826,33.640188651919985,33.63944437780936,33.64030496760299,33.63900482557433,33.63857421782257,33.6380537227802,33.63715918584445,33.63652963197136,33.635724471620975,33.634543128171934,33.63491884745173,33.636806413268005,33.6341090403271,33.63430807840511,33.63412603125784,33.6337893607774,33.63354701332378,33.63507389764575,33.633120264969335,33.63281751815969,33.632295477592955,33.63335929790692,33.63222436901097,33.63185139111455,33.631280712624395,33.63058020525999,33.63031095062212,33.62927644222162,33.63129334038248,33.63168791498789,33.62965654647442,33.62922229307694,44.3384572524128,42.39516358514601,51.41024114507635,53.16068104688475,46.02082058390445,41.12415042117897,43.00507341954449,41.0174872033224,41.39390915172703,40.92721378559011,41.58900523459104,40.79097667255005,40.73978059671104,40.63028571449821,40.513920981755774,40.38934587946428,40.332244795866174,40.970024641094355,40.24083051683487,40.32156362022618,40.23081397423414,40.26171086678352,40.22880723390524,40.2204471775743,40.204884281173804,40.1845407373404,40.18272795798846,40.160672457542475,40.149285669262305,40.13251621412617,40.149029482111374,40.19223111496699,40.152565331220316,40.131129752564995,40.13422824902912,40.13204265636743,40.13296145566761,40.13120198636176,40.13058408800258,40.13018612970188,40.129344017486986,40.12852404473266,40.12768109612,40.12792846999393,40.12887642394841,40.1281015912791,40.12715114208309,40.12732217616174,40.12709915469918,40.126989173198965,40.126889092616096,40.12689931024039,40.12680807965878,40.126772984865504,40.1268924340556,40.126648977401686,40.126553835789736,40.12636351013383,40.126135506896425,40.125988435358735],"feasible_probability":0.9492723356796384,"one_hot_probability":0.9999999999999996,"sampled_feasible_fraction":0.939453125,"counts":{"0010100010011":20,"0010100011001":27,"0010100100011":1,"0010100100101":1,"0010100101001":9,"0010101000011":37,"0010101000101":3,"0010101001001":47,"0010110000011":21,"0010110001001":32,"0011000010011":8,"0011000010101":1,"0011000011001":23,"0011000100011":4,"0011000100101":1,"0011000101001":3,"0011001000011":9,"0011001001001":10,"0011010001001":1,"0100100010011":1,"0100100011001":12,"0100100100011":1,"0100100101001":2,"0100101000011":5,"0100101000101":1,"0100101001001":10,"0100110000011":3,"0100110000101":1,"0100110001001":6,"0101000011001":1,"0101000100011":2,"0101000101001":1,"0101001000011":5,"0101001001001":3,"0101010000011":1,"0101010001001":1,"1000100010011":9,"1000100010101":3,"1000100011001":12,"1000100100011":2,"1000100101001":1,"1000101000011":9,"1000101000101":2,"1000101001001":7,"1000110000011":11,"1000110000101":1,"1000110001001":20,"1001000010011":23,"1001000010101":3,"1001000011001":37,"1001000100011":6,"1001000101001":9,"1001001000011":18,"1001001000101":2,"1001001001001":16,"1001010000011":5,"1001010001001":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3297839700098848},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":11,"removals":[],"infeasible_task":null,"component_qubits":[3,9],"max_component_qubits":9,"component_to_original":[[1,2,3],[4,5,6,7,8,9,10,11,12]],"components":[{"qubits":3,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-4,-1],"quadratic":[[0,1,24],[0,2,24],[1,2,24]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":6,"cost":8},{"index":2,"task":"t1","resource":"r0","start":9,"cost":11}],"conflicts":[]},{"qubits":9,"penalty":33,"objective_bound":32,"offset":99,"linear":[-33,-28,-24,-27,-33,-21,-33,-29,-22],"quadratic":[[0,1,66],[0,2,66],[0,3,66],[1,2,66],[1,3,66],[1,4,33],[2,3,66],[4,5,66],[5,7,33],[6,7,66],[6,8,66],[7,8,66]],"domains":[[0,1,2,3],[4,5],[6,7,8]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":7,"cost":0},{"index":1,"task":"t2","resource":"r0","start":11,"cost":5},{"index":2,"task":"t2","resource":"r2","start":13,"cost":9},{"index":3,"task":"t2","resource":"r1","start":10,"cost":6},{"index":4,"task":"t3","resource":"r0","start":11,"cost":0},{"index":5,"task":"t3","resource":"r0","start":16,"cost":12},{"index":6,"task":"t4","resource":"r1","start":15,"cost":0},{"index":7,"task":"t4","resource":"r0","start":16,"cost":4},{"index":8,"task":"t4","resource":"r2","start":21,"cost":11}],"conflicts":[{"i":1,"j":4,"reasons":["resource"]},{"i":5,"j":7,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":15,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":11},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":819382448,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.512300929211532,1.116061173529185],"expected_energy":3.000313733138232,"initial_expected_energy":5.176238798847306,"history":[5.176238798847306,4.865032818540165,8.670118593203517,4.8095418265782,5.295439363878349,5.53103646023974,4.665296682071957,4.621863643267845,5.774757202170605,4.375059249929176,3.8422350822545708,3.219036137071239,3.2082317810694843,3.2453570743364124,3.2712202418895964,3.216600285566834,3.213833782392442,3.2017780248482364,3.205238750700044,3.1997176917599504,3.1953996511340774,3.1870520207144377,3.171127516820003,3.1474522368218683,3.15063265251755,3.1848794476879565,3.140301690583683,3.1298148808032975,3.1465145144304607,3.1229169736514555,3.1163612314962217,3.109235138194027,3.0955855112522084,3.0883071272800793,3.0760362742222074,3.06891531515074,3.0519558699692304,3.0790746642881706,3.0438823208787764,3.062993472057126,3.0414141125135794,3.0381934486835815,3.0338207717560026,3.029561067023728,3.0232398258601574,3.0224204716838194,3.0523252822564206,3.0158426446012983,3.014319142828284,3.011532067890954,3.0070947078575436,3.023636071572893,3.0104993647220555,3.006524297675932,3.012887452917809,3.0046581486801625,3.003927099105195,3.0028173329384473,3.001834136567052,3.000313733138232,6.720245978946571,7.048385453491813,5.463272356699672,6.197533240281755,5.863569204807007,5.320364116725632,5.074157244345568,4.609485063528246,5.27405320298908,5.004398612296654,4.826226721292983,4.71546089744108,4.587089760285684,4.50015626753786,4.447430986077805,4.7283580225271,4.321707518809678,4.296875843051519,4.213757046759509,4.142722645217539,4.10850162895318,3.911376924327903,3.999909847275941,3.881151886937595,4.013664718497096,3.8042717629739657,3.7444778912083243,3.626592181170295,3.4141600617368035,3.9819940808178753,4.203558785068364,3.656482428003998,3.3920581401123044,3.4564395601317695,3.392164111885787,3.414143380169362,3.3870334149537933,3.3860298577030274,3.402254675775552,3.3838956233176765,3.3778633011253025,3.3676801608808375,3.353623075065567,3.3731465233520197,3.3455068274324824,3.337490598194631,3.322277504543345,3.2927143563196477,3.240666731244116,3.285354440529419,3.4004722133588556,3.2279837276711083,3.269186875969175,3.229050139004242,3.2194286425391283,3.217511736345905,3.249235699994169,3.2173811893161686,3.207103815517687,3.201128242193125],"feasible_probability":0.9999999999999999,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":1.0,"counts":{"001":347,"010":126,"100":39},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09628862899262458},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":10,"changed":false},{"variable":4,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":15,"changed":false},{"variable":6,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,0,0,0,1,0,1,0,0],"qubo_energy":0},"seed":1645421708,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.6513491013462365,2.973306615404015],"expected_energy":14.450029423325903,"initial_expected_energy":26.13855604081863,"history":[26.13855604081863,25.96446318700803,27.525692904070368,26.37570675691172,25.761782878105834,23.50888193399212,30.057417986545737,27.54941819196817,20.774359069631267,29.05419013845205,21.50321305577748,21.91919206552584,20.96855376230173,20.410009017642704,21.043971572680967,20.15701287057792,19.92503045432495,19.475796858695624,18.560376921540616,17.136706832031003,40.19824168759838,25.11302742795847,17.826618083780584,17.092349197615704,18.63425031518992,16.853805708709242,16.57991968311508,16.48527091922446,16.87534542151313,16.372809224513603,16.281192841679854,16.108601003300326,15.776407589543862,15.827638602979992,16.25201478071701,15.891875728720171,15.738321528025555,15.742313814644309,15.732756724782107,15.700672351174354,15.637803337657402,15.516058580144268,15.33385031749202,15.27280345938976,14.996039789809778,16.716434962552256,14.700394323634828,15.258920072517148,14.7563599718312,14.776433956165237,14.659082415333264,14.701463643895877,14.638984450764786,14.62549333244576,14.604694237472735,14.567069483671364,14.495084692988847,14.450029423325903,14.459328996113557,14.592681481239344,31.25994486751233,25.479999639661912,26.373693171938346,21.305263037434923,26.117905647485294,30.310508844778077,22.110271492146488,21.821292833085487,22.780279219704212,21.253697340659706,21.759471725210727,21.242483654958438,21.200439347893045,21.138552227847715,21.07560086241954,21.188574865038913,21.24376883774937,21.051027028024944,21.053387448964333,21.054558383450747,21.04753391865478,21.040088345103506,21.03129917723237,21.019162022876216,21.005444401591426,21.008986704395873,21.023178909348562,21.009958686395446,21.000870651305675,21.00553513485751,20.997823315834424,21.0030279625922,20.996083036017772,20.994499414177376,20.994897140202653,20.993403732011,20.99384008805134,20.99389422513195,20.992647864254444,20.992091536682494,20.994851578262256,20.991572716918476,20.990649350806933,20.989053581361187,20.98621567941572,20.98116572296153,20.999437416294132,20.995161501498988,20.984114025923677,20.98066360102151,20.981565178479997,20.980288229293304,20.979761361447306,20.97876755143401,20.977073672692494,20.982658267278662,20.981192514318344,20.97665497037559,20.977360034328086,20.97650422522545],"feasible_probability":0.9728997160155738,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.966796875,"counts":{"001010001":59,"001010010":1,"001010100":40,"001011000":44,"001100001":30,"001100010":46,"001100100":12,"001101000":16,"010010001":45,"010010010":5,"010010100":32,"010011000":22,"010100001":2,"010100100":3,"010101000":6,"100010001":23,"100010100":14,"100011000":29,"100100001":18,"100100010":38,"100100100":14,"100101000":13},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13431654100713786}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9728997160155737,"total_shots":1024,"runtime_seconds":0.23087103400030173},"direct_metrics":{"exact_objective":11,"optimal_count":1,"combinations":72,"optimal_probability":0.05012870667738606,"feasible_probability":0.9492723356796385,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.7083333333333334,"shots_for_95_percent":59,"hit_curve":[{"shots":8,"quantum":0.3372982732291735,"uniform":0.10585733481633375},{"shots":16,"quantum":0.5608264213349649,"uniform":0.20050889429825008},{"shots":32,"quantum":0.8071265678025461,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9627998391523742,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9986161480329108,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999999999963326,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.551115123125783e-17,"independent_samples":[{"shots":8,"best_objective":20},{"shots":16,"best_objective":17},{"shots":32,"best_objective":11},{"shots":64,"best_objective":11},{"shots":128,"best_objective":11},{"shots":512,"best_objective":11}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6547083639916101,"feasible_probability":0.9999999999999999,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9997979362220892,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999591702297,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999983,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.551115123125783e-17,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":24,"optimal_probability":0.10118031174119774,"feasible_probability":0.9728997160155737,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.7083333333333334,"shots_for_95_percent":29,"hit_curve":[{"shots":8,"quantum":0.5740284295140683,"uniform":0.2885690504976606},{"shots":16,"quantum":0.8185482211377489,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9670752519477247,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9989159609656942,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999988248593721,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.06624359636824068,"diagnostic_seconds":0.012214592992677353}
+{"instance":"n5-s0-r1.json","seed":4,"direct":{"status":"feasible","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":15,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":11},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[7.212152370796718,2.8517482981524767],"expected_energy":29.844935947878692,"initial_expected_energy":51.034812256974945,"history":[51.034812256974945,51.086071651024454,41.952419574383924,45.859033403525274,37.322268485858785,35.2880151584741,46.647656965160195,35.242348231838285,34.880842115676074,34.967095291495625,34.91755861792393,34.910350968671466,35.24325311243292,34.923126592143504,34.934637890318776,34.81059096147611,34.78666383778831,34.758095749071856,34.74454646121761,34.70759000601116,34.7034958776984,34.64925031186766,34.62280232471078,34.55012237655004,34.46610702498835,34.33595944624913,34.46114099586977,34.60283243586706,34.41705718789803,34.351874002033,34.336667846807494,34.32754523340935,34.320036890704884,34.309105730885,34.33895022760829,34.28321037939266,34.27156185240248,34.24869394134174,34.22891504328061,34.187472408898216,34.10842234631451,33.9636240946606,35.208344215792714,34.72279174139841,33.92944089161681,34.11846198209895,33.96317072431566,33.92749047807251,33.94072694704885,33.916784533718726,33.899428865705005,33.873830317674035,33.82779582756866,33.769404499029164,33.72707212563505,33.92540084157966,34.04268019338332,33.72341831402049,33.6789309321138,33.71424775351847,55.506117593554514,53.88941262825382,54.35837547565727,50.23092120352886,49.91267213726965,52.65295543137408,54.630439217892395,55.30627781650081,50.077787062540864,48.7990367828281,48.29329730963073,48.758810955549926,48.20838586755454,48.35035183869616,48.16659089288161,48.3860012050028,48.04926213776263,47.95206499966437,47.77495346847702,47.36547340215986,46.83113494177984,45.7725163330297,47.703639654494864,46.60772863636932,46.80934114514133,46.04368154950434,45.539359672750756,45.886654942225796,45.462587230248346,45.34417597998675,45.38034909433464,45.30189291529296,45.22632118920704,45.11341044450733,45.254651606356084,44.96686747135104,44.799330252787286,44.45252932380937,43.65148809504778,42.073135316890614,40.651727151210515,59.25559059101419,35.873834196718526,39.2925825391118,35.2163764564594,37.028971398763694,34.87179657695559,34.1800204104026,33.396783293102175,32.259903226818196,32.049521603522074,30.469988311969907,33.68181256443731,30.264583467947272,30.783807625237817,30.244986920731563,30.113776249291725,30.014246054001983,29.899137525703097,29.844935947878692],"feasible_probability":0.8650429640643026,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.859375,"counts":{"0010100010011":76,"0010100010101":34,"0010100011001":13,"0010100100011":26,"0010100100101":7,"0010100101001":5,"0010101000011":25,"0010101000101":12,"0010101001001":3,"0010110000011":48,"0010110000101":15,"0010110001001":9,"0011000010011":1,"0011000010101":1,"0011000011001":3,"0011000100011":7,"0011000100101":7,"0011000101001":1,"0011010000011":5,"0011010000101":2,"0011010001001":1,"0100100010011":35,"0100100010101":16,"0100100011001":6,"0100100100011":13,"0100100100101":4,"0100100101001":2,"0100101000011":16,"0100101000101":9,"0100101001001":1,"0100110000011":25,"0100110000101":4,"0100110001001":3,"0101000010011":1,"0101000010101":1,"0101000100101":2,"0101000101001":1,"0101010000011":2,"0101010000101":1,"0101010001001":1,"1000100010011":12,"1000100010101":3,"1000100011001":5,"1000100100011":3,"1000100101001":3,"1000101000011":6,"1000101000101":1,"1000110000011":7,"1000110000101":4,"1001000010011":3,"1001000010101":2,"1001000011001":4,"1001000100011":6,"1001000100101":3,"1001000101001":1,"1001010000011":1,"1001010000101":4},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.6573131639888743},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":11,"removals":[],"infeasible_task":null,"component_qubits":[3,9],"max_component_qubits":9,"component_to_original":[[1,2,3],[4,5,6,7,8,9,10,11,12]],"components":[{"qubits":3,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-4,-1],"quadratic":[[0,1,24],[0,2,24],[1,2,24]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":6,"cost":8},{"index":2,"task":"t1","resource":"r0","start":9,"cost":11}],"conflicts":[]},{"qubits":9,"penalty":33,"objective_bound":32,"offset":99,"linear":[-33,-28,-24,-27,-33,-21,-33,-29,-22],"quadratic":[[0,1,66],[0,2,66],[0,3,66],[1,2,66],[1,3,66],[1,4,33],[2,3,66],[4,5,66],[5,7,33],[6,7,66],[6,8,66],[7,8,66]],"domains":[[0,1,2,3],[4,5],[6,7,8]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":7,"cost":0},{"index":1,"task":"t2","resource":"r0","start":11,"cost":5},{"index":2,"task":"t2","resource":"r2","start":13,"cost":9},{"index":3,"task":"t2","resource":"r1","start":10,"cost":6},{"index":4,"task":"t3","resource":"r0","start":11,"cost":0},{"index":5,"task":"t3","resource":"r0","start":16,"cost":12},{"index":6,"task":"t4","resource":"r1","start":15,"cost":0},{"index":7,"task":"t4","resource":"r0","start":16,"cost":4},{"index":8,"task":"t4","resource":"r2","start":21,"cost":11}],"conflicts":[{"i":1,"j":4,"reasons":["resource"]},{"i":5,"j":7,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":15,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":11},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":367776961,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.3840322963006773,1.098332236725602],"expected_energy":3.046620406615258,"initial_expected_energy":7.325889068244027,"history":[7.325889068244027,7.6049556549288635,7.46020066996654,6.239982960073659,7.03828811214774,5.822470873681741,6.134421010520679,6.253978290796557,5.807641567609124,5.996399606354785,5.8273128689229265,5.719421659138919,5.526600204133076,5.106655474768305,4.329823550923792,6.96441694067301,5.728585562941802,5.120562362958479,4.231468622636677,4.326685679659639,4.1744710239441565,4.220706337074315,4.089151432833609,4.092057834227573,4.0524667493341715,4.022262204758176,3.9965925876839625,4.167673157654334,3.93707144018901,3.891225210080454,3.8219364611484425,3.6706522106394157,3.413870536742631,4.997950399306767,4.322176205314599,3.355229426038398,3.5876862037748145,3.3916317605670967,3.3442470619183595,3.387519146150989,3.336307864532277,3.3219351216005624,3.2954891877237973,3.2469472498209484,3.2314064344990183,3.1788810553812006,3.4392597083269303,3.1205874360194663,3.163349964193648,3.131975524015872,3.1271534282513724,3.114586431643394,3.1150469644635446,3.1128239224643623,3.1091555571305163,3.1029855945574067,3.090857987558239,3.075169758629541,3.063900202947933,3.046620406615258,6.513223802572249,6.655063977040271,7.783380440565107,6.2346321622918355,6.131853186942772,6.980967589513963,6.315728144476175,6.16136298593143,6.079760299518093,5.969878540075829,5.73099820335749,5.357979967737233,5.024393154252812,6.618326699962012,4.385969256063256,5.982675061638649,4.882555420056555,4.478718988444266,4.493767361154576,4.337475239334585,4.420891945557109,4.248599699429927,4.175957708861252,4.019577761445392,3.745599479179194,5.022555867290493,4.399630438082169,3.990487730344664,3.7210117312760174,3.6548162887024285,3.5356698712113745,3.362744584200926,5.382400855871585,4.641928170987141,3.3196287784613423,3.45280398202964,3.3934022635009193,3.3012680730477117,3.2916270068559257,3.3273677782955087,3.280709776267772,3.2726162397385674,3.256694572733818,3.2430783968187793,3.2203270462274465,3.2443905127312394,3.254598426709619,3.2108382087459932,3.204503740411818,3.205773292130145,3.202685953598298,3.1989652198021465,3.193433573754943,3.183625375259349,3.176525660621038,3.166677853804821,3.153401317675718,3.144073608592747,3.1277527092831026,3.1193471058278694],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":324,"010":154,"100":34},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.20337799699336756},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":10,"changed":false},{"variable":4,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":15,"changed":false},{"variable":6,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,0,0,0,1,0,1,0,0],"qubo_energy":0},"seed":3166742020,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.6251892100736276,2.9616265566130724],"expected_energy":14.300874637317312,"initial_expected_energy":24.46655858614248,"history":[24.46655858614248,27.807257338435058,35.02949356102504,25.623862309910514,19.999711397796396,29.74950165218774,23.243621365920387,20.46061379166056,21.00307198791024,20.492741941750758,19.955505592877774,20.997276943953533,19.58919285751651,19.317731828762977,18.97447395696988,18.465787292856863,17.858048382386244,17.184885042461133,17.003482843277656,23.01166854203523,16.150014350896846,16.62359824261572,16.077265163214065,16.308175080258632,16.053802040639518,15.974883251128581,15.849858161561775,16.54203719294398,15.773854918254195,15.635437621626679,15.3791316787924,15.286178943679145,15.774436216937843,17.472371326921618,15.241617216600197,14.791380171500109,14.75067510909815,14.684752117874126,14.641620143549847,14.66281371737638,14.624060784169728,14.60037675131889,14.596206327871139,14.61710160418542,14.577718711319614,14.542940712476117,14.488154800365262,15.085861543376335,14.492657037250268,14.483291579951626,14.532950980678905,14.447835628998511,14.42623590112574,14.412646080277433,14.427641814403174,14.40482042341874,14.397024321559543,14.381651781808195,14.351669338055608,14.300874637317312,26.079675151042174,26.042342488817965,22.357580948502058,37.53784081351476,26.935486325454434,23.152428670266627,21.517131514010835,24.63677171762333,21.032713660742182,21.05245176525883,20.524473266833954,20.780870931007282,20.77068100701623,20.52681062663563,20.40257583948666,20.159910147318314,19.67979092862563,18.75054677607337,18.828074734005465,20.269094371034075,18.82837837073361,18.44811761681136,18.54670078368771,18.21228544890265,18.25005919504934,18.263592280550657,18.133724369953548,18.06252085759904,18.416662815636727,17.91030004720693,17.792184916634856,17.609173680681042,17.19004412662796,16.428626785284813,15.17279067827749,27.757247798750868,28.235060681414495,17.395514219743294,16.175289944674237,15.098554304404587,15.206172155272357,15.086057091630796,15.24759125379495,15.082168091547551,15.038833316352003,15.007510390180364,14.954950477630359,14.930922301262557,14.87841064845352,14.79252912601488,14.624600046884085,14.371446744730715,17.709295641939534,17.117639933232873,14.650192935352447,14.590625276178182,14.394038428439138,14.348819100468717,14.33422950056963,14.398337917842994],"feasible_probability":0.9708462888282384,"one_hot_probability":1.0,"sampled_feasible_fraction":0.984375,"counts":{"001010001":49,"001010010":1,"001010100":43,"001011000":49,"001100001":24,"001100010":32,"001100100":25,"001101000":13,"010010001":39,"010010010":1,"010010100":31,"010011000":33,"010100001":1,"010100100":3,"010101000":1,"100010001":39,"100010010":1,"100010100":25,"100011000":29,"100100001":19,"100100010":19,"100100100":20,"100101000":15},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12931062099232804}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9708462888282384,"total_shots":1024,"runtime_seconds":0.33318933100963477},"direct_metrics":{"exact_objective":11,"optimal_count":1,"combinations":72,"optimal_probability":0.13697130871966168,"feasible_probability":0.8650429640643026,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.7083333333333334,"shots_for_95_percent":21,"hit_curve":[{"shots":8,"quantum":0.6922472997456163,"uniform":0.10585733481633375},{"shots":16,"quantum":0.9052882754861354,"uniform":0.20050889429825008},{"shots":32,"quantum":0.9910296892396099,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9999195335248621,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9999999935251463,"uniform":0.8330797244996347},{"shots":512,"quantum":1.0,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.3592239273284576e-16,"independent_samples":[{"shots":8,"best_objective":11},{"shots":16,"best_objective":11},{"shots":32,"best_objective":11},{"shots":64,"best_objective":11},{"shots":128,"best_objective":11},{"shots":512,"best_objective":11}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6497890556910387,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9997737244071428,"uniform":0.9609815576893767},{"shots":16,"quantum":0.999999948799356,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999973,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":24,"optimal_probability":0.10541175583466285,"feasible_probability":0.9708462888282385,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.7083333333333334,"shots_for_95_percent":27,"hit_curve":[{"shots":8,"quantum":0.589809597864028,"uniform":0.2885690504976606},{"shots":16,"quantum":0.8317438339955296,"uniform":0.49386600409019976},{"shots":32,"quantum":0.971689862601476,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9991985361204767,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999993576556498,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.06849540528253992,"diagnostic_seconds":0.009682695002993569}
+{"instance":"n5-s0-r1.json","seed":5,"direct":{"status":"feasible","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":15,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":11},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.5430222287667323,2.971388088366627],"expected_energy":31.81271834820839,"initial_expected_energy":49.860916576197425,"history":[49.860916576197425,49.82187587206165,38.779459330778465,80.2704135961115,55.131136752456165,43.879047044216854,32.93175809534743,39.684669624440666,33.089209449334376,35.62686960048873,33.289403129044686,33.54470283739444,32.731861656908876,32.700579894719425,32.61105189806206,32.53604839077806,32.46105159434236,32.399149207967696,32.360538861622715,33.07054541408202,32.20546833541201,32.23290526682203,32.1983709025652,32.21695094900614,32.17726560460077,32.18304746532264,32.16868086908856,32.16527434306174,32.17975458191968,32.158826537043005,32.15297131158461,32.142467851502886,32.12316710196318,32.131236100056284,32.11634000740875,32.147235629877656,32.10397174625332,32.093513244984884,32.07457866551677,32.03801434751754,31.982298552696477,32.21202359637348,32.323594126651784,31.9804983881945,31.9572556096122,31.920252233891908,31.874552064320724,31.910243149923865,31.95722649708445,31.88361235496108,31.871506309876505,31.866375481110992,31.862741590119683,31.86892402700439,31.85522234087283,31.852396870250146,31.846576338000794,31.8415197230769,31.831607753853906,31.81271834820839,50.942994829515825,56.33947125717344,58.172879001696714,60.228212806135716,56.383565625382516,49.144815473934074,51.926143407481185,48.917013221035205,49.01245040162566,48.59452950914803,48.78955702113756,48.95340521416779,48.58458369973242,48.413974715212404,48.091986302177894,47.71730004608617,46.851228743476426,46.02808458323246,44.162894578594695,43.3614445860763,40.283291490569056,52.09590479759785,38.82634862451735,41.42804021971729,39.782596303934874,38.2693996245682,39.55674460792285,38.35311998878997,37.91884994330493,38.0106499114937,37.753491815240835,37.68287293220781,37.916556747301016,37.64905780636529,37.56193615530669,37.40639907604421,37.38953600160704,37.20648560543686,37.03764219181489,36.736874451593046,36.2057638422787,35.36940252710063,34.837865086843074,36.46994739202316,42.47474768498266,34.79749987961842,33.459880774505756,33.940909224690536,33.37187217712042,33.58513056780764,33.3488645824784,33.27463940009171,33.22101583438835,33.259483443179896,33.17740728344697,33.13767408575636,33.06576041206884,33.000116066715854,32.85269105208255,32.93861407642649],"feasible_probability":0.9811114247162191,"one_hot_probability":1.0,"sampled_feasible_fraction":0.98828125,"counts":{"0010100010011":23,"0010100010101":25,"0010100011001":10,"0010100101001":1,"0010101000011":12,"0010101000101":12,"0010101001001":12,"0010110000011":22,"0010110000101":9,"0010110001001":9,"0011000010011":3,"0011000010101":11,"0011000011001":7,"0011000100011":21,"0011000100101":14,"0011000101001":10,"0011001000011":5,"0011001000101":10,"0011001001001":7,"0011010000011":6,"0011010000101":2,"0011010001001":6,"0100100010011":16,"0100100010101":16,"0100100011001":10,"0100100100011":1,"0100101000011":10,"0100101000101":13,"0100101001001":12,"0100110000011":9,"0100110000101":10,"0100110001001":6,"0101000100101":1,"0101001000011":1,"0101001000101":1,"0101001001001":1,"1000100010011":11,"1000100010101":11,"1000100011001":9,"1000101000011":5,"1000101000101":11,"1000101001001":8,"1000110000011":8,"1000110000101":5,"1000110001001":7,"1001000010011":15,"1001000010101":14,"1001000011001":5,"1001000100011":7,"1001000100101":11,"1001000101001":12,"1001001000011":7,"1001001000101":5,"1001001001001":3,"1001010000011":2,"1001010000101":8,"1001010001001":4},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3250314460019581},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":11,"removals":[],"infeasible_task":null,"component_qubits":[3,9],"max_component_qubits":9,"component_to_original":[[1,2,3],[4,5,6,7,8,9,10,11,12]],"components":[{"qubits":3,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-4,-1],"quadratic":[[0,1,24],[0,2,24],[1,2,24]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":6,"cost":8},{"index":2,"task":"t1","resource":"r0","start":9,"cost":11}],"conflicts":[]},{"qubits":9,"penalty":33,"objective_bound":32,"offset":99,"linear":[-33,-28,-24,-27,-33,-21,-33,-29,-22],"quadratic":[[0,1,66],[0,2,66],[0,3,66],[1,2,66],[1,3,66],[1,4,33],[2,3,66],[4,5,66],[5,7,33],[6,7,66],[6,8,66],[7,8,66]],"domains":[[0,1,2,3],[4,5],[6,7,8]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":7,"cost":0},{"index":1,"task":"t2","resource":"r0","start":11,"cost":5},{"index":2,"task":"t2","resource":"r2","start":13,"cost":9},{"index":3,"task":"t2","resource":"r1","start":10,"cost":6},{"index":4,"task":"t3","resource":"r0","start":11,"cost":0},{"index":5,"task":"t3","resource":"r0","start":16,"cost":12},{"index":6,"task":"t4","resource":"r1","start":15,"cost":0},{"index":7,"task":"t4","resource":"r0","start":16,"cost":4},{"index":8,"task":"t4","resource":"r2","start":21,"cost":11}],"conflicts":[{"i":1,"j":4,"reasons":["resource"]},{"i":5,"j":7,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":15,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":11},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":803261128,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.9305672825113636,2.729777431346469],"expected_energy":3.0956663838711638,"initial_expected_energy":5.4412599210271795,"history":[5.4412599210271795,5.311381913092509,4.274295137111034,8.900685779192326,3.21818337973294,3.171008421846986,3.182625009090832,3.2053961714823087,3.130912629508521,3.116896812844509,3.1558233163333678,3.1406412191659734,3.14230010260208,3.110668620963723,3.113547061522564,3.1102002957991304,3.109526941625088,3.1086603248218783,3.107710032771341,3.1137897498885136,3.1063050506830505,3.1057130925046588,3.104786993151018,3.103085656273096,3.100788062202956,3.1022642116990813,3.1044182972292127,3.1014879062807963,3.1000110108385455,3.099536852807012,3.100636038231233,3.0991944528036637,3.098910764696403,3.099248936980123,3.098700539499072,3.098387598434881,3.0977828211661578,3.096694318956403,3.1005105244539415,3.0985843027413447,3.0971851584070826,3.09656722770939,3.0966084845466604,3.0964665654932757,3.0963982200311047,3.0964213760482338,3.096368168392547,3.096314336296097,3.096231481332647,3.096223589276539,3.096372087816235,3.096218428049644,3.096152777040039,3.096041823521023,3.0958512897264248,3.0959093359828556,3.0957593591404975,3.0958396328122877,3.0958195355173803,3.0956663838711638,7.781576585728197,8.415609559546619,5.733523250454595,5.44840243313852,6.095876887230219,6.76952712517174,5.770154623558195,5.6801991028735,5.3413993137708236,5.128470728776373,4.824444948918171,5.17677095091722,4.61404679078036,4.527185375705833,4.331052138280114,3.9918055960050305,3.621026478733202,5.015237915012259,5.255367806235991,3.5590267433610348,3.458751437735695,3.5783723815828563,3.547073830778122,3.4520680522379155,3.4095309941590775,3.3978532825469334,3.3430426742788093,3.3053307338171143,3.271543338524587,3.214128125257482,3.2250171864818884,3.482858860348633,3.211234496566179,3.185768944582482,3.1468312486597783,3.640340949198867,3.3183865664471703,3.250804621048454,3.1410287431873254,3.1401149450627672,3.156732632868096,3.1399245926590704,3.135274474620867,3.131822925465767,3.1273703849347387,3.1278787847652616,3.1260942676934285,3.1250818986832942,3.1245577982561428,3.1330311387875502,3.121998611068413,3.12040422687381,3.1193087749756345,3.1203678243594677,3.118684343201992,3.11833786746336,3.117680615198907,3.116433035295992,3.114049799007775,3.112311590936665],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":322,"010":130,"100":60},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10012122499756515},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":10,"changed":false},{"variable":4,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":15,"changed":false},{"variable":6,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,0,0,0,1,0,1,0,0],"qubo_energy":0},"seed":3767054407,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3350142533895164,1.1680542075257199],"expected_energy":14.498570679417162,"initial_expected_energy":20.792316986276216,"history":[20.792316986276216,24.71651909084913,27.717273741652402,21.180195556896845,22.89394838201123,20.245111559615502,19.845790692106007,19.961800990298116,17.25013471102727,22.624885548172458,18.061432070483633,17.232676224440002,17.05848709835487,16.90120775171696,16.720025048647276,18.90269711960392,16.431794359736866,16.633151909377347,16.3606106704346,16.744808687108033,16.313719174757257,16.224432028407218,16.051056685861074,15.754904685121788,15.929548748014442,16.927236280784918,15.803129662007438,15.732599865331277,15.793680299751486,15.68250976828976,15.650349804542541,15.612157051161514,15.54020831921462,15.397574640390268,15.128124068077536,15.266849751788051,15.752134036085682,15.342906719778787,15.097469954562335,15.145949036071034,15.076884910849998,15.044632225168016,14.987147466162781,14.878446784343106,14.821908644669339,14.85484401491723,15.133226177209833,14.884929239737513,14.7167921153281,14.679005160635118,14.757343123779592,14.65944352578322,14.64375914241883,14.627159992159083,14.599128758165918,14.711068337355073,14.611085972573562,14.601908158097018,14.606430244146889,14.598936763352448,23.639817743680563,19.751319594072378,27.462407777613883,19.601106315058768,14.561788011347984,25.678578528898576,30.244826477194618,17.19747864418983,14.69901849791166,15.650104151208726,14.563085985681976,14.574643987141418,14.582681641569124,14.584643551428801,14.531861565114763,14.524802159502254,14.53515109801983,14.523223290615622,14.522746847402615,14.518817240269847,14.51580443518391,14.51018512871742,14.505108630384811,14.508506306179058,14.516051614110891,14.505014894258332,14.508304663120558,14.504214963699091,14.506396962138757,14.50489102848354,14.504042907854949,14.503652141601963,14.503346490727235,14.502645290409934,14.50205864916099,14.501120180844007,14.499984649432296,14.499463232216135,14.498813699670944,14.499759511694272,14.501630236421434,14.498957903534633,14.498604160989238,14.499021185891912,14.498639056036637,14.498630774791831,14.498576053689746,14.498580644435886,14.498580270820295,14.498583591557189,14.498575063731245,14.49857400996684,14.49857330185239,14.498575201746476,14.498572629698046,14.498572175110613,14.498571621531408,14.498570679417162,14.498570927794804,14.498571540773737],"feasible_probability":0.9470689713967702,"one_hot_probability":0.9999999999999997,"sampled_feasible_fraction":0.943359375,"counts":{"001010001":86,"001010010":10,"001010100":69,"001011000":48,"001100001":18,"001100010":5,"001100100":17,"001101000":3,"010010001":9,"010010010":1,"010010100":17,"010011000":11,"010100001":3,"010100100":6,"010101000":3,"100010001":39,"100010010":6,"100010100":40,"100011000":29,"100100001":59,"100100010":13,"100100100":17,"100101000":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.16453542200906668}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9470689713967702,"total_shots":1024,"runtime_seconds":0.264904994997778},"direct_metrics":{"exact_objective":11,"optimal_count":1,"combinations":72,"optimal_probability":0.03332842778749934,"feasible_probability":0.9811114247162189,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.7083333333333334,"shots_for_95_percent":89,"hit_curve":[{"shots":8,"quantum":0.23751452196944778,"uniform":0.10585733481633375},{"shots":16,"quantum":0.41861589579252023,"uniform":0.20050889429825008},{"shots":32,"quantum":0.6619925233748662,"uniform":0.3608139719037934},{"shots":64,"quantum":0.8857509457455097,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9869471536019545,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999999709717463,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.163336342344337e-17,"independent_samples":[{"shots":8,"best_objective":11},{"shots":16,"best_objective":15},{"shots":32,"best_objective":17},{"shots":64,"best_objective":15},{"shots":128,"best_objective":11},{"shots":512,"best_objective":11}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6524022639415117,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9997868842663655,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999545816841,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999979,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":24,"optimal_probability":0.14418961483048914,"feasible_probability":0.94706897139677,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.7083333333333334,"shots_for_95_percent":20,"hit_curve":[{"shots":8,"quantum":0.712246630100581,"uniform":0.2885690504976606},{"shots":16,"quantum":0.9171979981115281,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9931438284832615,"uniform":0.7438283781843783},{"shots":64,"quantum":0.999952992912133,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999999977903337,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.249000902703301e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":6},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.09406963115226569,"diagnostic_seconds":0.012921485002152622}
+{"instance":"n5-s0-r1.json","seed":6,"direct":{"status":"feasible","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":15,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":11},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.960334399827354,1.1303233814651374],"expected_energy":34.19263197474749,"initial_expected_energy":57.44158100918696,"history":[57.44158100918696,57.97295648194911,35.78424157504844,49.63837009307831,35.99254758028821,35.74395321422886,36.505793687907556,35.81309938982405,35.78277372933946,36.01776738946748,35.701241826874224,35.627023450282536,35.59679498005521,35.64411906492333,35.584472686352875,35.57463040871848,35.5619330367836,35.53961690839023,35.49107128173501,35.394073639791536,35.204113476817845,35.118898406652036,36.29662513916149,37.42754123007605,35.13881495829942,34.802725992962806,35.03027915813108,34.85218882040244,34.80924524570893,34.78347208576248,34.78241083380928,34.76356086024112,34.7488446793069,34.72827981569032,34.70488365221018,34.66097811122275,34.6476668721208,34.55739914447956,34.80884270395683,34.508512518752696,34.49991858569834,34.656933951608465,34.46015681549947,34.44066764752423,34.42254469304389,34.435622675390775,34.40721048867524,34.38776230449026,34.35811289900284,34.62554143653563,34.33278012891923,34.31413144404015,34.40958278525882,34.27857911473013,34.2625750554499,34.243135491735586,34.21741648517572,34.24850221975164,34.19263197474749,34.20038025320669,70.90019962203029,61.78536296549913,49.3203888346448,40.71606157949815,43.678323211561086,40.50080733495642,36.868430787346504,47.633343864391485,38.941687723509965,36.96287105989805,37.24030542618253,37.31347878174721,36.947157773877166,36.8632868037636,36.87490168875308,36.87062140208951,36.853477964463494,36.85042110133893,36.863176424434336,36.847177323900496,36.84465167659006,36.839255758340514,36.82835887158487,36.804560518054075,36.875571658720304,36.90358681457186,36.798671502454425,36.82831102943097,36.79825690627229,36.79369065011932,36.7870154761985,36.77850090757789,36.76538686252791,36.77919138578416,36.77217125512154,36.768594684525866,36.767766584913865,36.76253832519279,36.763257648096385,36.7617275509961,36.760345979133966,36.75846425525892,36.760711665174796,36.757512240908326,36.755645394975474,36.75232599082106,36.74576642867042,36.73728085820379,36.72686822623582,36.72570180476197,36.75315474497462,36.725828791186174,36.71634155363341,36.709921553435734,36.70922058622172,36.70744791223882,36.7060090391179,36.70476642404998,36.71051064314179,36.703595919998634],"feasible_probability":0.9426031693358903,"one_hot_probability":1.0,"sampled_feasible_fraction":0.931640625,"counts":{"0010100010011":27,"0010100010101":5,"0010100011001":35,"0010100100011":3,"0010100100101":1,"0010100101001":10,"0010101000011":37,"0010101000101":2,"0010101001001":41,"0010110000011":24,"0010110000101":2,"0010110001001":36,"0011000010011":12,"0011000011001":11,"0011000100011":3,"0011000101001":4,"0011001000011":3,"0011001001001":3,"0011010000011":3,"0011010001001":1,"0100100010011":5,"0100100011001":4,"0100100100011":1,"0100100100101":1,"0100100101001":1,"0100101000011":11,"0100101000101":1,"0100101001001":8,"0100110000011":4,"0100110001001":7,"0101000010011":1,"0101000011001":3,"0101000100011":1,"0101000101001":1,"0101001000011":2,"0101010000011":1,"0101010001001":3,"1000100010011":3,"1000100010101":1,"1000100011001":4,"1000100100011":3,"1000100101001":3,"1000101000011":9,"1000101000101":2,"1000101001001":11,"1000110000011":8,"1000110000101":1,"1000110001001":13,"1001000010011":37,"1001000010101":1,"1001000011001":43,"1001000100011":7,"1001000101001":9,"1001001000011":11,"1001001000101":3,"1001001001001":9,"1001010000011":6,"1001010001001":10},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.2844286149920663},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":11,"removals":[],"infeasible_task":null,"component_qubits":[3,9],"max_component_qubits":9,"component_to_original":[[1,2,3],[4,5,6,7,8,9,10,11,12]],"components":[{"qubits":3,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-4,-1],"quadratic":[[0,1,24],[0,2,24],[1,2,24]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":6,"cost":8},{"index":2,"task":"t1","resource":"r0","start":9,"cost":11}],"conflicts":[]},{"qubits":9,"penalty":33,"objective_bound":32,"offset":99,"linear":[-33,-28,-24,-27,-33,-21,-33,-29,-22],"quadratic":[[0,1,66],[0,2,66],[0,3,66],[1,2,66],[1,3,66],[1,4,33],[2,3,66],[4,5,66],[5,7,33],[6,7,66],[6,8,66],[7,8,66]],"domains":[[0,1,2,3],[4,5],[6,7,8]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":7,"cost":0},{"index":1,"task":"t2","resource":"r0","start":11,"cost":5},{"index":2,"task":"t2","resource":"r2","start":13,"cost":9},{"index":3,"task":"t2","resource":"r1","start":10,"cost":6},{"index":4,"task":"t3","resource":"r0","start":11,"cost":0},{"index":5,"task":"t3","resource":"r0","start":16,"cost":12},{"index":6,"task":"t4","resource":"r1","start":15,"cost":0},{"index":7,"task":"t4","resource":"r0","start":16,"cost":4},{"index":8,"task":"t4","resource":"r2","start":21,"cost":11}],"conflicts":[{"i":1,"j":4,"reasons":["resource"]},{"i":5,"j":7,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":15,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":11},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":3153149895,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.4820934579996825,1.108747635115737],"expected_energy":3.0070937440834116,"initial_expected_energy":8.04478898437832,"history":[8.04478898437832,8.33043400178568,3.88655332355578,6.533895838512661,4.533230635594055,4.027758425836116,3.9104571444273404,3.9351659663769,3.840788031893557,3.928364741022967,3.772796040850441,3.7153890828868446,3.65147221279828,3.542968631620469,3.6587242211497157,3.7890512716837965,3.540414277078458,3.4725024223016936,3.403028798889405,3.309933297352876,3.3220981636969364,3.4896168367415963,3.369537741802811,3.334267603236262,3.3390515212289182,3.328356149190994,3.314005605106495,3.3007337196347857,3.3002038258229494,3.2869247705601565,3.276485654384811,3.261548058817423,3.2296393928030507,3.179755729884356,3.8728350033116747,3.4817579398759175,3.167957578731019,3.2069393945744418,3.185313521607163,3.1636565274012707,3.1599135061164665,3.163438239453815,3.1576359745609888,3.15686933683714,3.1590455708865086,3.154848290657411,3.1510066030500035,3.1442819682613603,3.1725318116996597,3.1453435820961246,3.1432993170474672,3.143966749409723,3.141145417994492,3.1395604448169503,3.136172811057376,3.130726163922157,3.1263496505483843,3.1146899232743017,3.1912899014645957,3.1351883814318535,9.680968880596334,10.268747692534667,4.316760729158817,5.322229435271162,5.114435572099211,4.9504615578657045,3.5679976202382617,3.589489510381904,3.5586520453369768,3.6465548555495992,3.643393153524453,3.464402082862097,3.522450853280076,3.433779617465208,3.4188103435068844,3.3852002228050972,3.343758376564425,3.2866661003048323,3.2123801645956327,3.1889753950816813,3.0880358289981764,3.5837821473278306,3.295878950887845,3.1785904396078357,3.0788105471360656,3.0875485675287084,3.080911294860406,3.072957034674641,3.075821754675254,3.070472737380949,3.0692514951476038,3.0716833430495853,3.0665022519425547,3.063915075184301,3.05892277680666,3.049449425051078,3.0491684175908835,3.031463472626891,3.050406108204788,3.04407748290799,3.033909258007929,3.030657020544866,3.026723365262095,3.023145558089597,3.017232655189634,3.044162157172372,3.0206651190457094,3.0189087207983527,3.018462464628037,3.0157458163562865,3.016010034084299,3.0143942651903806,3.013383039762123,3.0150834978970913,3.012135630286614,3.0110593475146166,3.012770587841004,3.010077898748331,3.008893851692541,3.0070937440834116],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":333,"010":140,"100":39},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07730966599774547},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":10,"changed":false},{"variable":4,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":15,"changed":false},{"variable":6,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,0,0,0,1,0,1,0,0],"qubo_energy":0},"seed":4186225163,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.1201480546376197,-2.0721225297061463],"expected_energy":19.203073649432984,"initial_expected_energy":32.03968185370394,"history":[32.03968185370394,30.577235075473368,32.78528654465754,24.83938146620263,23.39439792478251,23.183249388739984,29.541822095449987,25.84198118120765,21.912695648902613,21.28656131343964,24.37759910769699,20.062410873514704,20.016594842077833,22.8586697772841,20.11940378429887,19.597087965337405,19.93648640520064,19.563413451795373,19.597521920114808,19.55944040715503,19.555667193670768,19.549180526886342,19.53864494695582,19.57195987309962,19.530294014270055,19.520122616012223,19.5221282134176,19.508338248432363,19.503062612425026,19.54448767022119,19.491445585372457,19.484184801791972,19.47746786864776,19.47765469324793,19.471853954236565,19.470420259205014,19.484164195270004,19.46045193896211,19.453094747673788,19.437938628973697,19.41769712181053,19.3943114355854,19.390888562575974,19.55386072388335,19.351711648523313,19.33804676901298,19.32430299537706,19.343719460746588,19.311025901872394,19.29771564425113,19.316401141456893,19.282819863275588,19.27072250994135,19.289568505024373,19.259146266475252,19.250119590794025,19.23133286023573,19.203073649432984,19.2208906799327,19.26100753545761,27.063973978212495,29.097831869307395,22.80114972738891,25.395832830228464,23.21774600132497,22.11194851355724,27.497658412145977,22.917888257341815,22.369316258524268,21.74996900578993,21.516725979983143,21.235178601731466,21.12758264757014,21.79813067259653,20.941582436790927,20.840851444068537,20.733670774266365,20.628723605690162,20.458915442079977,20.567370037191196,20.649869050870414,20.45838773328823,20.408283002115716,20.384301375570477,20.446414238918535,20.374680820913667,20.355975870487896,20.32075200564348,20.255242431409133,20.167095153454053,20.10314200233367,20.011528438255326,19.88589721429408,20.522775283456053,20.03510861306998,19.880093720160787,20.012001369522974,19.86166197937324,19.873357699846444,19.860132885554627,19.870014087966844,19.856297796357172,19.85545986562836,19.851552028955485,19.85231266657449,19.851022595758977,19.853240759355437,19.850633273048015,19.849968525137736,19.849346717078568,19.849286182487184,19.848310542682352,19.847559120782655,19.846525925907137,19.845362377206932,19.843358283817555,19.8501774666615,19.846002176901592,19.84412258050836,19.84311727203027],"feasible_probability":0.90603100403618,"one_hot_probability":1.0,"sampled_feasible_fraction":0.88671875,"counts":{"001010001":27,"001010010":18,"001010100":12,"001011000":13,"001100001":2,"001100010":12,"001100100":26,"001101000":53,"010010001":19,"010010010":9,"010010100":35,"010011000":34,"010100001":18,"010100100":2,"010101000":1,"100010001":7,"100010010":10,"100010100":52,"100011000":65,"100100001":45,"100100010":17,"100100100":7,"100101000":28},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1123465009877691}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.90603100403618,"total_shots":1024,"runtime_seconds":0.18987635699159},"direct_metrics":{"exact_objective":11,"optimal_count":1,"combinations":72,"optimal_probability":0.05318016505557316,"feasible_probability":0.9426031693358907,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.7083333333333334,"shots_for_95_percent":55,"hit_curve":[{"shots":8,"quantum":0.35413941865967746,"uniform":0.10585733481633375},{"shots":16,"quantum":0.5828641094707406,"uniform":0.20050889429825008},{"shots":32,"quantum":0.8259976488323617,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9697231817881339,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9990833142789656,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999999999992939,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":11},{"shots":16,"best_objective":17},{"shots":32,"best_objective":11},{"shots":64,"best_objective":11},{"shots":128,"best_objective":11},{"shots":512,"best_objective":11}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6527951467009456,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9997888037037924,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999553961245,"uniform":0.9984775611596526},{"shots":32,"quantum":0.999999999999998,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.249000902703301e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":24,"optimal_probability":0.06830850529397273,"feasible_probability":0.9060310040361802,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.7083333333333334,"shots_for_95_percent":43,"hit_curve":[{"shots":8,"quantum":0.43222397877725194,"uniform":0.2885690504976606},{"shots":16,"quantum":0.6776303897244655,"uniform":0.49386600409019976},{"shots":32,"quantum":0.8960778343708,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9892001834909371,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9998833639633705,"uniform":0.9956935037719361},{"shots":512,"quantum":0.9999999999999998,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.249000902703301e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.044591460734301244,"diagnostic_seconds":0.009523674001684412}
+{"instance":"n5-s0-r1.json","seed":7,"direct":{"status":"feasible","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":15,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":11},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.939053876351677,1.1332110520370247],"expected_energy":33.32460287446598,"initial_expected_energy":68.65937500103635,"history":[68.65937500103635,59.245693515036976,55.85719915470163,46.38596851996154,38.53645053354906,49.280305005895514,44.653680098635554,52.03365532068824,39.077234811438885,35.57360847207538,39.42054454317128,35.821805896341516,35.91783348864173,35.7375912020519,35.69288560327172,35.643836739861364,35.55637510671217,35.52073349264937,35.49007254750782,35.455312741022595,35.43939486125307,35.397404111056886,35.34956127793286,35.26446512745291,35.19878859489743,35.04016317570585,35.648399443811286,35.16457741803394,35.02001260597089,35.218001833687154,34.98758443474633,34.94599750003739,34.91250942132248,34.928670098712615,34.893712705184306,34.88502940195329,34.90586636708038,34.86341402802314,34.84261461051227,34.80147420212161,34.71845704760193,34.55296204093418,34.214694945983254,34.58540857235673,35.131847387054705,34.7555954041113,34.1576242023636,34.1602411834048,34.11884514039346,34.081938794270606,34.016495621707804,33.985224275817245,34.96965669681248,33.763239931589915,33.70859337551361,33.616879436182465,33.475991094643,34.50922388068621,33.417828775383846,33.32460287446598,53.565863341502876,55.50513905832894,64.92336539584741,46.03285307018422,55.59004341971527,50.56375053066491,47.140574416927734,45.34934416556473,46.06175306783609,45.541039682139484,45.55531499369637,45.27684569396659,45.37051546309547,45.33815842565065,45.29886090035772,45.24700524550083,45.24428266554607,45.248974839511035,45.24617342670923,45.24190923629067,45.24345414598089,45.2425700404939,45.241956163012105,45.24161571189559,45.241024786440285,45.239804471517004,45.23784577817035,45.23873047387913,45.249963896832014,45.23738173272646,45.23683382182578,45.23566216314198,45.23279548738597,45.22608028789415,45.25298235607872,45.25487833298946,45.24062945048691,45.22498003916017,45.22526362955702,45.225569179062916,45.22407763706641,45.223937633840784,45.22559457697128,45.223612838247156,45.223048663942535,45.22215983892788,45.220567401265015,45.21709584826367,45.20922601816451,45.231229464807065,45.2620851540422,45.21145925695301,45.210686933591816,45.21038030743093,45.207724711515525,45.20761541226465,45.20824842792567,45.20766663802169,45.20735783931734,45.20689771217859],"feasible_probability":0.9784866601582198,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.984375,"counts":{"0010100010011":4,"0010100011001":3,"0010101000011":21,"0010101001001":13,"0010110000011":21,"0010110000101":1,"0010110001001":14,"0011000011001":1,"0011000100011":1,"0011001000011":7,"0011001001001":12,"0011010000011":14,"0011010000101":3,"0011010001001":16,"0100100010011":3,"0100100011001":3,"0100100100011":1,"0100101000011":5,"0100101001001":3,"0100110000011":2,"0100110001001":7,"0101000010011":1,"0101000011001":2,"0101001000011":1,"0101001001001":3,"1000100010011":36,"1000100010101":6,"1000100011001":37,"1000101000011":68,"1000101000101":6,"1000101001001":57,"1000110000011":51,"1000110000101":7,"1000110001001":48,"1001000010011":12,"1001000010101":2,"1001000011001":4,"1001000100011":1,"1001000100101":1,"1001000101001":2,"1001001000011":1,"1001001001001":1,"1001010000011":4,"1001010001001":6},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.29358447800041176},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":11,"removals":[],"infeasible_task":null,"component_qubits":[3,9],"max_component_qubits":9,"component_to_original":[[1,2,3],[4,5,6,7,8,9,10,11,12]],"components":[{"qubits":3,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-4,-1],"quadratic":[[0,1,24],[0,2,24],[1,2,24]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":6,"cost":8},{"index":2,"task":"t1","resource":"r0","start":9,"cost":11}],"conflicts":[]},{"qubits":9,"penalty":33,"objective_bound":32,"offset":99,"linear":[-33,-28,-24,-27,-33,-21,-33,-29,-22],"quadratic":[[0,1,66],[0,2,66],[0,3,66],[1,2,66],[1,3,66],[1,4,33],[2,3,66],[4,5,66],[5,7,33],[6,7,66],[6,8,66],[7,8,66]],"domains":[[0,1,2,3],[4,5],[6,7,8]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":7,"cost":0},{"index":1,"task":"t2","resource":"r0","start":11,"cost":5},{"index":2,"task":"t2","resource":"r2","start":13,"cost":9},{"index":3,"task":"t2","resource":"r1","start":10,"cost":6},{"index":4,"task":"t3","resource":"r0","start":11,"cost":0},{"index":5,"task":"t3","resource":"r0","start":16,"cost":12},{"index":6,"task":"t4","resource":"r1","start":15,"cost":0},{"index":7,"task":"t4","resource":"r0","start":16,"cost":4},{"index":8,"task":"t4","resource":"r2","start":21,"cost":11}],"conflicts":[{"i":1,"j":4,"reasons":["resource"]},{"i":5,"j":7,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":15,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":11},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.533558184404808,1.1136278164690512],"expected_energy":2.9965848679642217,"initial_expected_energy":5.199368108747337,"history":[5.199368108747337,4.924665519148622,8.708207733213438,4.670290109136704,9.418091169032198,5.159594870882458,5.476872431873657,3.5850299127949183,3.376371055842668,3.318220755156876,3.525886330956938,3.2905573251272973,3.196102081335971,3.2147174830305274,3.213999181619902,3.1976873847933796,3.193833663339723,3.1899258282801095,3.1846150145397294,3.1866337802663782,3.180579936418292,3.177214051959967,3.1735208352175572,3.1827910607756458,3.171391258124079,3.167186903303437,3.1592930841034192,3.144594293262119,3.1183082322655613,3.079073651391873,3.0530369439579093,3.0130087014277334,3.120275198503612,3.173018359734393,3.0709130049095674,3.009749444987044,3.0194703846877657,3.0108547566181927,3.0088269623663693,3.0154149423186403,3.007127300063196,3.0058420863218736,3.00363275451437,3.0016668454086295,2.9991632285769496,3.001340500475934,3.0061239660364185,2.998959709436271,2.997642739258925,2.9978438349931587,2.9980003052007524,2.9977199258424605,2.997439902260176,2.997150418605116,2.9973921331722204,2.99687256741238,2.9969795855920633,2.9966977976228617,2.9965848679642217,2.996632479800124,5.102150056517866,4.783582811066957,8.627177343777038,4.8912204360108245,5.572301178092701,5.269372798480655,3.8789035321974623,3.7660918742288825,3.922811233780619,3.935999310427684,3.5246450065210326,3.416735654895138,3.3752361145446015,3.4919013563926806,3.3455198769934436,3.3202315892828387,3.3346562568869036,3.308872978121622,3.33804469518474,3.3012437901188147,3.2874775628486703,3.2626807568753815,3.2169582642197696,3.227976234759411,3.249721777569854,3.217455436760108,3.2220388918146927,3.2095374973164574,3.2055349165962457,3.254559382065189,3.1895235832422957,3.1781441175429803,3.162835101586351,3.1430415980654507,3.111496251635274,3.1274743150177233,3.1805771494677106,3.1080052522909885,3.0982736762863703,3.0811594380323166,3.05637916920507,3.072304351894072,3.132573809505864,3.0588415205901947,3.0548986068302586,3.0585097791902003,3.0533474081154424,3.0506683369520182,3.046693159977359,3.040094457443712,3.056088448317796,3.0363038524071233,3.033767073268589,3.039316159185261,3.0315850468389103,3.0298130442626445,3.026220550062623,3.0209396730755467,3.0296490603940764,3.037636400482108],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":333,"010":148,"100":31},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08353448699926957},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":10,"changed":false},{"variable":4,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":15,"changed":false},{"variable":6,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,0,0,0,1,0,1,0,0],"qubo_energy":0},"seed":3618983171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.5057677934891776,1.765358480022232],"expected_energy":19.840956065075005,"initial_expected_energy":27.063504055880955,"history":[27.063504055880955,29.475724100789407,24.148534377951194,25.348001936159527,25.070510704113268,23.243176513853566,25.526831857950043,22.779396672860805,22.092433157580324,21.315139241763873,20.861216521835985,21.424413037335526,24.923114442972807,21.101215304686765,20.253094301405742,20.32339845885416,20.30139402738366,20.29882457779656,20.241632456077564,20.222130603897504,20.204858299410418,20.193044092064234,20.16280636458701,20.135215771979187,20.088171721043445,20.066064921370742,19.974385118310334,20.4906758400985,20.087039652634477,19.966448116496537,20.108108696765477,19.948807359792262,19.933441119069546,19.92237066810584,19.942300992917627,19.91518957007357,19.91017090808879,19.91681074021255,19.90683038091692,19.90365238829099,19.899865862382534,19.89342618038556,19.888498836425065,19.878651440652725,19.861007732995787,19.909472010809687,19.9134812835858,19.880005984057416,19.860914456870873,19.858451353944393,19.85445665068574,19.849167876053038,19.847477033540688,19.84300734241505,19.871872797780046,19.85097216095911,19.842634534471898,19.85216121382794,19.84158651974402,19.840956065075005,25.396121284012665,25.39191819156421,26.240914638025078,22.554484134291783,24.81701992809636,23.524884011136745,25.838774611950257,23.013221565388275,23.651779225208248,22.222889097946055,22.009684267907833,22.52794009519306,21.833613200382217,21.68776590611364,21.392980615492586,20.954753759581152,22.884021381602913,22.456824487768262,20.834108735582696,20.65179981161484,20.60493822041269,23.54434076738417,20.177701247950186,20.47016110586302,20.14739196809289,20.27721230398668,20.129461709593265,20.09691927907862,20.036696943701013,19.951752150089355,20.11160341905777,19.974188936768936,19.957618431317137,19.989298311752673,19.94509323674267,19.93552427812208,19.92888882237379,19.934515103005296,19.925415153381017,19.923833954495365,19.92000555963127,19.91305804340452,19.90015921348467,19.90048100391036,19.904792052547073,19.90204421537066,19.895050511645206,19.894372838081942,19.88671258368139,19.883268197532495,19.87769836092638,19.868321827687666,19.85680340190917,19.866052380811016,19.88396995701631,19.85977009545538,19.853651840741332,19.85272174753275,19.862903470703085,19.85036188308199],"feasible_probability":0.8951061967549252,"one_hot_probability":1.0,"sampled_feasible_fraction":0.88671875,"counts":{"001010001":9,"001010010":12,"001010100":24,"001011000":12,"001100001":31,"001100010":49,"001100100":22,"001101000":33,"010010001":52,"010010010":5,"010010100":29,"010011000":51,"010100001":4,"010100010":13,"100010001":14,"100010010":24,"100010100":2,"100011000":6,"100100001":19,"100100010":21,"100100100":42,"100101000":38},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11870458599878475}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.8951061967549252,"total_shots":1024,"runtime_seconds":0.20247257300070487},"direct_metrics":{"exact_objective":11,"optimal_count":1,"combinations":72,"optimal_probability":0.011923185360977761,"feasible_probability":0.9784866601582196,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.7083333333333334,"shots_for_95_percent":250,"hit_curve":[{"shots":8,"quantum":0.09149845738656953,"uniform":0.10585733481633375},{"shots":16,"quantum":0.17462494706901718,"uniform":0.20050889429825008},{"shots":32,"quantum":0.3187560219991773,"uniform":0.3608139719037934},{"shots":64,"quantum":0.5359066424376147,"uniform":0.5914412214865954},{"shots":128,"quantum":0.7846173554664719,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9978479972586226,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":25},{"shots":16,"best_objective":11},{"shots":32,"best_objective":20},{"shots":64,"best_objective":17},{"shots":128,"best_objective":11},{"shots":512,"best_objective":11}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6533939294126083,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9997916999766102,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999566111003,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999981,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":24,"optimal_probability":0.016477207142726834,"feasible_probability":0.8951061967549251,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.7083333333333334,"shots_for_95_percent":181,"hit_curve":[{"shots":8,"quantum":0.12446112879776672,"uniform":0.2885690504976606},{"shots":16,"quantum":0.23343168501391914,"uniform":0.49386600409019976},{"shots":32,"quantum":0.4123730184594008,"uniform":0.7438283781843783},{"shots":64,"quantum":0.6546945305654842,"uniform":0.9343761001763541},{"shots":128,"quantum":0.8807641327786087,"uniform":0.9956935037719361},{"shots":512,"quantum":0.9997978714507242,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":4},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.010766107120731783,"diagnostic_seconds":0.010041795001598075}
+{"instance":"n5-s0-r1.json","seed":8,"direct":{"status":"feasible","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":15,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":11},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4977389968020436,1.170013937288653],"expected_energy":33.6287194312781,"initial_expected_energy":39.18663664524105,"history":[39.18663664524105,39.22955297188491,42.212998274955524,67.3423006128639,33.980836734565585,42.20798591031693,33.8669278666808,34.47480365465065,34.13664974364174,33.67891644950626,33.97497607696222,33.70862517856066,33.69098600775429,33.67376458041025,33.665419742520925,33.663252643715,33.70167737258048,33.66266972318892,33.65533660641574,33.65261938153743,33.65000055019243,33.648661722076426,33.64585764981426,33.6440617926953,33.640121431258166,33.64397550126239,33.63904671373788,33.643334920181985,33.63709286313481,33.635783015785904,33.634887351404565,33.63359272810695,33.63157349357507,33.64922246530533,33.6364836557224,33.63576197374504,33.630915596020834,33.63097499625522,33.63117384114854,33.63086489207421,33.63085813547265,33.630985361950835,33.630751997670664,33.63058007940934,33.63029312186566,33.631499684979715,33.63025829259336,33.63004353253518,33.6297163103913,33.629326103025655,33.629318942479586,33.6288517250662,33.62910806869634,33.629342851059405,33.62891415146839,33.628835049512766,33.62879509792867,33.628761112112855,33.6287194312781,33.62889709998018,49.57774454647125,48.74261024631099,53.54114646858612,44.08993255005964,66.39469984414374,49.86196336982378,35.048753068502016,49.796504938896774,34.75528424333465,36.780039985448944,34.79793313830244,35.319032520877236,34.903210772212375,34.92008197815397,34.72358738740226,34.711294010600845,34.77835008743249,34.69493855840495,34.681829419979664,34.66002287550981,34.61285413649231,34.52025657790632,34.382638035376075,36.32270004161967,35.56060447999649,34.38657892439885,34.37594639206946,34.390906239170775,34.40885582556543,34.328440919259016,34.313986999668984,34.39498440258974,34.289921591782466,34.26942855260048,34.24003500616741,34.45618505496611,34.210299516176875,34.20594032735073,34.347079244265224,34.167131747988506,34.147672729694534,34.13379509627203,34.155668161540135,34.123500868967895,34.114182369120954,34.095094267242594,34.06030858374139,34.059138597895064,33.982710033998494,34.01316893735981,34.02658077655706,33.99482410588648,33.97631380926617,33.99997679402697,33.96755058097286,33.95958859047135,33.94591692411908,33.946598195523556,33.93294592569711,33.939419744716524],"feasible_probability":0.9492980273883692,"one_hot_probability":0.9999999999999997,"sampled_feasible_fraction":0.943359375,"counts":{"0010100010011":21,"0010100010101":1,"0010100011001":29,"0010100100011":7,"0010100100101":1,"0010100101001":5,"0010101000011":38,"0010101000101":4,"0010101001001":37,"0010110000011":26,"0010110000101":2,"0010110001001":37,"0011000010011":15,"0011000010101":2,"0011000011001":20,"0011000100011":3,"0011000100101":1,"0011000101001":6,"0011001000011":3,"0011001000101":1,"0011001001001":6,"0100100010011":7,"0100100010101":1,"0100100011001":2,"0100100100011":1,"0100100101001":3,"0100101000011":7,"0100101000101":2,"0100101001001":9,"0100110000011":5,"0100110001001":2,"0101000010011":2,"0101000011001":2,"0101000101001":1,"0101001000011":1,"0101010000011":1,"0101010001001":1,"1000100010011":12,"1000100010101":1,"1000100011001":12,"1000100100011":2,"1000100101001":2,"1000101000011":8,"1000101000101":1,"1000101001001":13,"1000110000011":12,"1000110001001":15,"1001000010011":28,"1001000010101":3,"1001000011001":42,"1001000100011":6,"1001000101001":11,"1001001000011":10,"1001001001001":13,"1001010000011":5,"1001010000101":1,"1001010001001":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3022378340101568},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":11,"removals":[],"infeasible_task":null,"component_qubits":[3,9],"max_component_qubits":9,"component_to_original":[[1,2,3],[4,5,6,7,8,9,10,11,12]],"components":[{"qubits":3,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-4,-1],"quadratic":[[0,1,24],[0,2,24],[1,2,24]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":6,"cost":8},{"index":2,"task":"t1","resource":"r0","start":9,"cost":11}],"conflicts":[]},{"qubits":9,"penalty":33,"objective_bound":32,"offset":99,"linear":[-33,-28,-24,-27,-33,-21,-33,-29,-22],"quadratic":[[0,1,66],[0,2,66],[0,3,66],[1,2,66],[1,3,66],[1,4,33],[2,3,66],[4,5,66],[5,7,33],[6,7,66],[6,8,66],[7,8,66]],"domains":[[0,1,2,3],[4,5],[6,7,8]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":7,"cost":0},{"index":1,"task":"t2","resource":"r0","start":11,"cost":5},{"index":2,"task":"t2","resource":"r2","start":13,"cost":9},{"index":3,"task":"t2","resource":"r1","start":10,"cost":6},{"index":4,"task":"t3","resource":"r0","start":11,"cost":0},{"index":5,"task":"t3","resource":"r0","start":16,"cost":12},{"index":6,"task":"t4","resource":"r1","start":15,"cost":0},{"index":7,"task":"t4","resource":"r0","start":16,"cost":4},{"index":8,"task":"t4","resource":"r2","start":21,"cost":11}],"conflicts":[{"i":1,"j":4,"reasons":["resource"]},{"i":5,"j":7,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":15,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":11},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":3257320810,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.612033684453684,1.1119629654251257],"expected_energy":2.990858923428994,"initial_expected_energy":7.466585660847272,"history":[7.466585660847272,7.9431768950740045,7.300410211272228,6.243994357462196,7.49801435256767,5.314596698936825,7.421954759658059,4.3899355949634025,3.7977541392711376,3.8650350056652,5.300510034958446,3.643853250023704,4.00170286742804,3.676317118385924,3.594682536558895,3.5210307614801866,3.4224067430390344,3.314956656259713,3.2024830379608,4.4700951388450125,3.1915704670819287,3.1549432559681936,3.0833271836622425,3.0093095025856647,4.151794611852923,3.167025677130932,3.0078723170588444,3.167967446483067,3.014023707947828,3.058770024424012,2.9943249179605824,2.9910149443652347,2.992972726549505,2.991046026981811,2.9924898102637183,2.9911268419537906,2.9914549947661326,2.9908924589533186,2.9908694139476135,2.9908741429129226,2.990876932611771,2.9908661364861047,2.990878955108916,2.9908636548905605,2.99087028373102,2.9908632250463785,2.9908628807994506,2.9908629907948736,2.990862382445113,2.990862177269147,2.990862449573905,2.990861915979846,2.9908617363778705,2.9908614690744346,2.9908610917487004,2.9908604745933505,2.990859621617525,2.9908595575838084,2.990858923428994,2.9908627439122704,5.843845570696914,5.766194784682319,8.946391162090986,3.6894980587904653,9.763314786373602,3.180455706180214,3.0631442386029537,3.3070353044186613,3.0556802034628383,3.1502217931740035,3.0501354304002612,3.0203515872720503,3.1532038725229867,3.0839947567177592,3.039258780166566,3.018214138928345,3.022288386583701,3.018207337276551,3.0165209607859276,3.013897956624731,3.0083959602092243,2.9997643342819718,3.1444112331934515,3.0493915658029715,3.0108613238921613,3.002346449664257,3.000240407405203,3.0000575257891855,2.9994674922942095,2.9994701437369358,2.999237642522438,2.9990571981419496,2.9989148632491838,2.999543977149049,2.9988567041919016,2.9986055821581377,2.9982135854608902,2.997458320577094,2.9967125070625125,2.9953448120851762,2.996035237900118,2.9974401388236314,2.9958300381268588,2.9951971205951096,2.995251049568969,2.9950701830368156,2.9949887790105874,2.995037497519648,2.994952925074817,2.9948885686256084,2.994791028667647,2.994814299382842,2.994687090642297,2.994602017955872,2.9945236205143457,2.9949357512437302,2.9944762766618354,2.9943257819245614,2.9942060980059355,2.9942846830497603],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":346,"010":143,"100":23},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08773838399793021},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":10,"changed":false},{"variable":4,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":15,"changed":false},{"variable":6,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,0,0,0,1,0,1,0,0],"qubo_energy":0},"seed":631391383,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3425940155574516,1.1665743331839016],"expected_energy":14.498906959035036,"initial_expected_energy":38.416236586288676,"history":[38.416236586288676,34.80005539547052,21.935128828923915,27.861793475505173,25.45867610827658,23.79491365840733,18.809067099080153,23.538861857493767,19.600407435418873,19.18029869738904,18.536946150887022,18.960526949526525,18.43362106368631,19.019652548050633,18.371553786410722,18.372109962411237,18.42815935961097,18.3575951281603,18.34869135762892,18.34685220042087,18.36537379547277,18.330364714815005,18.300602509599237,18.246727390112742,18.142714672987413,18.498131346848808,18.182447538502096,18.19520723957451,18.09140250533384,18.05292094645415,18.139632397515886,18.01500479541839,17.98889201280235,17.958226781904052,17.898738515887903,17.805775854020197,17.932448586084348,18.09491807697519,17.766848760356076,17.72432674973591,17.656003889497384,17.51875989046955,17.263661083462647,16.751405150083663,15.703494523622249,14.584216309025047,31.750568781250422,24.36900121599667,14.608922384573578,15.562391229084318,15.542085364159568,14.50116198007603,14.642209402756198,14.500228604593106,14.515673200430207,14.50524131315603,14.500813856795515,14.502441090353354,14.50039026551099,14.499846538910099,15.105205434993199,15.915698656926207,25.995275015135753,32.42779615708681,16.591299433348457,18.209112886335227,15.01130084041062,14.621837076867443,14.626843934640528,14.629893291322965,14.638417808639787,14.630774902721216,14.606067831741779,14.586923537594124,14.588852426231199,14.58056071523563,14.574862737615579,14.564580200166553,14.546995247163713,14.529331781667349,14.55532046380711,14.5874808694275,14.52444790930809,14.517178843638561,14.516902906175094,14.523370775139039,14.512672374869737,14.510509453133949,14.508975160194932,14.511430282633206,14.50803010646545,14.50723773897804,14.508082469487157,14.506636094279184,14.507109860838726,14.506438920235468,14.506013229011899,14.505217834854419,14.504248476267488,14.502915320662442,14.50241691554369,14.506471584793792,14.501551810396624,14.501258968949088,14.500739690546077,14.499916091304769,14.500053753326313,14.50120439269108,14.500105109039087,14.49985932697718,14.50016172046032,14.49981482474939,14.499735779191468,14.499600279279843,14.499374774301401,14.499183742803513,14.498921462854154,14.49915487097758,14.499501791920071,14.498906959035036],"feasible_probability":0.9468351156964894,"one_hot_probability":1.0,"sampled_feasible_fraction":0.947265625,"counts":{"001010001":82,"001010010":10,"001010100":84,"001011000":53,"001100001":30,"001100010":9,"001100100":7,"001101000":2,"010010001":11,"010010010":1,"010010100":16,"010011000":9,"010100001":2,"010100010":2,"010100100":4,"010101000":2,"100010001":24,"100010010":6,"100010100":30,"100011000":28,"100100001":58,"100100010":12,"100100100":27,"100101000":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12018591599189676}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9468351156964894,"total_shots":1024,"runtime_seconds":0.2081548629939789},"direct_metrics":{"exact_objective":11,"optimal_count":1,"combinations":72,"optimal_probability":0.050040154090440575,"feasible_probability":0.9492980273883694,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.7083333333333334,"shots_for_95_percent":59,"hit_curve":[{"shots":8,"quantum":0.33680386431897413,"uniform":0.10585733481633375},{"shots":16,"quantum":0.5601708856177543,"uniform":0.20050889429825008},{"shots":32,"quantum":0.8065503501417295,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9625772329697125,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9985995365077969,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999999999961533,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.551115123125783e-17,"independent_samples":[{"shots":8,"best_objective":11},{"shots":16,"best_objective":17},{"shots":32,"best_objective":11},{"shots":64,"best_objective":11},{"shots":128,"best_objective":11},{"shots":512,"best_objective":11}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6504027811306051,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9997768773021609,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999502162618,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999976,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":24,"optimal_probability":0.14456157805499217,"feasible_probability":0.9468351156964894,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.7083333333333334,"shots_for_95_percent":20,"hit_curve":[{"shots":8,"quantum":0.7132456457091945,"uniform":0.2885690504976606},{"shots":16,"quantum":0.9177719402952632,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9932385461971942,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9999542827424726,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999999979099323,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":4},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.09402325241159597,"diagnostic_seconds":0.010129539004992694}
+{"instance":"n5-s0-r1.json","seed":9,"direct":{"status":"feasible","best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":15,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":11},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4730852542988029,1.171215272662071],"expected_energy":33.62887257287701,"initial_expected_energy":40.39808783593648,"history":[40.39808783593648,39.16938616684662,51.32341299727596,41.62141798253832,53.24831161111538,37.93394094121553,34.3111238325916,33.772560044238794,34.37787905847,33.93981012021375,34.000369084539514,33.66511873389008,33.86933532682461,33.677506545196046,33.685532584558146,33.645397106354466,33.65622868154587,33.64666292418388,33.64728782420974,33.64436080439806,33.64759088871331,33.6430106417061,33.64313025772013,33.642496447048934,33.64202349000899,33.64121589964208,33.64090705119219,33.64756660222488,33.640454880816364,33.638738092178045,33.63790222102572,33.63891908133369,33.63745889794791,33.63712945713036,33.63667916601071,33.635882073599916,33.63436432739397,33.6324441359437,33.63340564837103,33.635760384778294,33.633008825987645,33.631869531531024,33.63154643309841,33.63267554356395,33.63124660439977,33.631053488209346,33.63080985431533,33.63036904957896,33.62982310656851,33.62977537104153,33.62908922365989,33.62924611836751,33.62980442931095,33.62920335755183,33.629028459069076,33.62893726595722,33.628985422302854,33.62887997663799,33.62887257287701,33.62892939394161,47.86412043085849,47.856397847781324,47.69933882201815,41.678767090799845,55.65344748962672,43.33331469418232,43.776101809066674,44.32680315909073,41.52758747378438,41.5228237872879,41.22158890017337,40.7287340921561,40.19287293337337,46.88476183972108,41.59192883814796,40.56797749739548,40.17282593082931,40.680538538799745,40.20242488908251,40.22232652573875,40.16807522077841,40.15979871330181,40.156279160966754,40.16453804789741,40.153780460350944,40.15156125383133,40.14866686710525,40.14456468878842,40.142301000133955,40.13799556880842,40.14888298817989,40.146184877346776,40.13582700311447,40.1344858537352,40.135021363226436,40.133806389504436,40.132843071760874,40.132513978797576,40.133096825847446,40.13240005005028,40.13220119214937,40.13198554333698,40.13257850312485,40.13190877555241,40.1316579089374,40.13124334121768,40.130673442643385,40.13217925662394,40.13025413118376,40.129905361443654,40.129192425995825,40.12798400514205,40.13030932899037,40.130912472722166,40.1280740841604,40.127896208691624,40.12790017517887,40.127747985508115,40.12765780674553,40.1276788609169],"feasible_probability":0.9496573375404239,"one_hot_probability":0.9999999999999996,"sampled_feasible_fraction":0.923828125,"counts":{"0010100010011":14,"0010100010101":4,"0010100011001":25,"0010100100011":3,"0010100101001":7,"0010101000011":25,"0010101000101":5,"0010101001001":31,"0010110000011":24,"0010110000101":1,"0010110001001":30,"0011000010011":21,"0011000010101":3,"0011000011001":17,"0011000100011":2,"0011000101001":1,"0011001000011":8,"0011001000101":1,"0011001001001":5,"0011010000011":1,"0011010001001":1,"0100100010011":6,"0100100010101":2,"0100100011001":3,"0100100100011":1,"0100101000011":9,"0100101001001":9,"0100110000011":9,"0100110000101":1,"0100110001001":5,"0101000010011":2,"0101000010101":1,"0101000011001":2,"0101000100011":1,"0101000101001":2,"0101001000011":1,"0101001001001":3,"0101010000011":2,"0101010000101":1,"1000100010011":13,"1000100010101":2,"1000100011001":16,"1000100100011":8,"1000100101001":5,"1000101000011":13,"1000101000101":3,"1000101001001":17,"1000110000011":10,"1000110000101":3,"1000110001001":15,"1001000010011":31,"1001000010101":3,"1001000011001":35,"1001000100011":4,"1001000100101":1,"1001000101001":6,"1001001000011":11,"1001001000101":1,"1001001001001":18,"1001010000011":5,"1001010001001":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.297140868002316},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":11,"removals":[],"infeasible_task":null,"component_qubits":[3,9],"max_component_qubits":9,"component_to_original":[[1,2,3],[4,5,6,7,8,9,10,11,12]],"components":[{"qubits":3,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-4,-1],"quadratic":[[0,1,24],[0,2,24],[1,2,24]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":6,"cost":8},{"index":2,"task":"t1","resource":"r0","start":9,"cost":11}],"conflicts":[]},{"qubits":9,"penalty":33,"objective_bound":32,"offset":99,"linear":[-33,-28,-24,-27,-33,-21,-33,-29,-22],"quadratic":[[0,1,66],[0,2,66],[0,3,66],[1,2,66],[1,3,66],[1,4,33],[2,3,66],[4,5,66],[5,7,33],[6,7,66],[6,8,66],[7,8,66]],"domains":[[0,1,2,3],[4,5],[6,7,8]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":7,"cost":0},{"index":1,"task":"t2","resource":"r0","start":11,"cost":5},{"index":2,"task":"t2","resource":"r2","start":13,"cost":9},{"index":3,"task":"t2","resource":"r1","start":10,"cost":6},{"index":4,"task":"t3","resource":"r0","start":11,"cost":0},{"index":5,"task":"t3","resource":"r0","start":16,"cost":12},{"index":6,"task":"t4","resource":"r1","start":15,"cost":0},{"index":7,"task":"t4","resource":"r0","start":16,"cost":4},{"index":8,"task":"t4","resource":"r2","start":21,"cost":11}],"conflicts":[{"i":1,"j":4,"reasons":["resource"]},{"i":5,"j":7,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":11,"raw_cost":11,"violation_count":0,"violations":[],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":10,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":15,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":11},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":4,"reserved_end":6,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":747784396,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.3913209715278465,1.1171256301148516],"expected_energy":3.0354488219604527,"initial_expected_energy":5.298757118661046,"history":[5.298757118661046,5.306756672646767,8.823709702379869,4.0446796673438286,10.053873195400064,3.410491994201733,3.7524437743205685,3.473276662053598,3.5696733982976054,3.4386347507400044,3.430144559833214,3.4452046069911137,3.4123068418950973,3.395450512441591,3.3675383811271162,3.314305526808476,3.2713237499773857,3.229678162526752,3.2577569776374036,3.414287063131555,3.2227517271770645,3.1822527172806994,3.177969677596008,3.2028292323696785,3.1678447248597146,3.1490899888241612,3.1170812215262416,3.144451158365337,3.135067863816266,3.128749516061818,3.1244039222556688,3.108057853179991,3.1098542470761097,3.1065081771706415,3.103865534332228,3.099735315229767,3.1020618157916298,3.093923033729358,3.0891402505135437,3.0982200928835777,3.0847452727106637,3.079292453397399,3.069456943430767,3.070066295564449,3.0673317141465217,3.0750152095603878,3.0691388739872405,3.063781470499518,3.0608925019001565,3.0609522395108235,3.058693849339792,3.056608279997911,3.052897437561765,3.0493801409498165,3.0811076444298826,3.0476468716826752,3.040334212820409,3.0375631793664595,3.043271472565207,3.0354488219604527,8.577894908680953,8.150590330956629,5.732945009590541,4.019815939012341,8.002856911051838,5.4570265230999055,5.275100954463195,3.567887691258912,3.5643388395876827,3.725153202604181,3.6038334191879016,3.4681304441586094,3.49515723740797,3.4467999835214664,3.4391871167394887,3.411877208998215,3.4040453932013506,3.3539662812011146,3.376311816311553,3.3848669868881798,3.3524191780440757,3.3688855107263755,3.3530102670347635,3.346843418355202,3.338152464449286,3.3403413196169476,3.331360624673195,3.325179755062131,3.3145699786399385,3.3116020165546898,3.2742419786669155,3.2946193198208684,3.269610987378994,3.2937479101661937,3.2680178640640207,3.2604663081272642,3.2552776258464386,3.249929954277504,3.244123228658774,3.2329345191281638,3.211729629828489,3.242717244652355,3.2374157635687784,3.2146706778625296,3.2048498980495608,3.211989972063747,3.1998112147965894,3.195589578319426,3.200121813389387,3.1924079861935546,3.195182238645465,3.190048901512624,3.1887078921267573,3.1904954933248764,3.1863805186427165,3.1841031434385445,3.1796685350372735,3.1724776617532022,3.1630159510939038,3.144185750318492],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":337,"010":126,"100":49},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08994393699686043},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":10,"changed":false},{"variable":4,"task":"t3","group":"g1","resource":"r0","start":11,"end":14,"reserved_end":15,"changed":false},{"variable":6,"task":"t4","group":"g0","resource":"r1","start":15,"end":16,"reserved_end":18,"changed":false}],"bits":[1,0,0,0,1,0,1,0,0],"qubo_energy":0},"seed":4053640108,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4195558278417713,1.1611931681813292],"expected_energy":14.525542840633838,"initial_expected_energy":33.376038215749574,"history":[33.376038215749574,32.074736402505096,18.525354719536125,26.432659673506887,20.859317649672704,19.425537767414912,19.56189584782673,18.66405962508935,18.42267669193193,18.528585804015872,18.59731955115671,18.390295229833153,18.40793802239693,18.375661523181645,18.348306740729313,18.309471247018315,18.25328134091655,18.301573712889102,18.231189530026843,18.25095032655353,18.216310300855707,18.207137818223885,18.217475739328982,18.19187162812465,18.176667596329203,18.146211530130305,18.08486268922036,17.96382159855426,17.70464310734863,17.850908609593922,18.440936872183894,17.645500349991508,17.933312486703024,17.63415217921939,17.568263351318635,17.434328665057052,17.160879532425476,16.700032686372243,18.049705655737483,20.54866743038454,16.881361427229734,16.945222325049613,16.77314584680023,16.60932894890489,16.65996533770666,16.573736381288903,16.54118365102579,16.473557339323197,16.34493249246845,16.42488484333265,16.376171177995783,16.335171757557724,16.481900961084918,16.28344229333237,16.24407765444055,16.18862798984463,16.12094053808838,15.988724518945924,15.741450202738516,15.555987133410618,25.513695609460235,25.928770585719917,27.79909381718727,23.932831906286626,19.237565625441714,30.14413042723697,16.577872297025117,29.426243478534758,21.31034186599884,17.959638495602288,16.505453612694776,17.001257033673614,16.483144041468805,16.26069125222392,15.921871796114644,15.311361405827514,16.151727195360717,19.430187794546946,16.029439045925812,15.251284457593165,15.587237985630939,15.295846430032203,15.305596829253565,15.256544579600831,15.259502682060747,15.237131389194893,15.217499460676123,15.216863960535623,15.234250171527894,15.200725807941641,15.171683745557818,15.124425085943077,15.028150135418159,14.886361755703618,15.699701991703993,15.784839977862227,14.858561852357322,14.82450219854035,14.767676934051671,14.781205302062915,14.720120960184076,14.74313667087343,14.798123870686307,14.718718357085496,14.69945139077225,14.691944688447919,14.7131260585839,14.683564427709804,14.675725703258813,14.660885552954078,14.634324574783772,14.608366176183363,14.590124132761316,14.573574060229625,14.694330658431252,14.531082575759648,14.544201677362029,14.528975586728556,14.54187489021596,14.525542840633838],"feasible_probability":0.9438911365092763,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.94140625,"counts":{"001010001":75,"001010010":8,"001010100":100,"001011000":58,"001100001":17,"001100010":9,"001100100":9,"001101000":2,"010010001":14,"010010010":1,"010010100":18,"010011000":15,"010100001":2,"010100010":1,"010100100":4,"010101000":1,"100010001":23,"100010010":13,"100010100":20,"100011000":31,"100100001":46,"100100010":14,"100100100":26,"100101000":5},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13397817198710982}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.9438911365092763,"total_shots":1024,"runtime_seconds":0.22416199299914297},"direct_metrics":{"exact_objective":11,"optimal_count":1,"combinations":72,"optimal_probability":0.04964271296785541,"feasible_probability":0.949657337540424,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.7083333333333334,"shots_for_95_percent":59,"hit_curve":[{"shots":8,"quantum":0.3345808844057818,"uniform":0.10585733481633375},{"shots":16,"quantum":0.5572174006018085,"uniform":0.20050889429825008},{"shots":32,"quantum":0.8039435696701807,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9615618761263287,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9985225106330723,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999999999952346,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":20},{"shots":16,"best_objective":11},{"shots":32,"best_objective":11},{"shots":64,"best_objective":11},{"shots":128,"best_objective":11},{"shots":512,"best_objective":11}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6567135842596493,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.999807135211362,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999628031733,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999987,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.249000902703301e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":24,"optimal_probability":0.148140166941171,"feasible_probability":0.9438911365092763,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.7083333333333334,"shots_for_95_percent":19,"hit_curve":[{"shots":8,"quantum":0.7227030282792586,"uniform":0.2885690504976606},{"shots":16,"quantum":0.9231063894745063,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9940873726603537,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9999650408379425,"uniform":0.9343761001763541},{"shots":128,"quantum":0.999999998777857,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.09728566000475922,"diagnostic_seconds":0.010342063993448392}
+{"instance":"n5-s0-r2.json","seed":0,"direct":{"status":"feasible","best":{"feasible":true,"objective":13,"raw_cost":13,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":12,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":18,"reserved_end":19,"changed":false}],"bits":[1,0,1,0,1,0,0,0,1,0,1,0,0],"qubo_energy":13},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.506984363595273,1.0557075897511445],"expected_energy":45.76149369913344,"initial_expected_energy":46.27788998272994,"history":[46.27788998272994,46.250521187230554,48.334809012231204,55.70651850031309,48.63832592257594,49.29618749906983,46.25245763394612,45.78365144461958,45.97852134905487,45.798776665036556,45.80592941932047,45.77011890104444,45.79372133881597,45.770670372765,45.77609181049746,45.77024479787311,45.77006987980003,45.7710069699797,45.76994150129147,45.769589249891965,45.7690644006246,45.76864987702683,45.76928990513029,45.76846103039768,45.76840544105275,45.76815914738462,45.768045682979036,45.76757031117372,45.76760828315604,45.76776908275681,45.76750105168168,45.76761030843593,45.767419841513664,45.76733134159082,45.76717139760795,45.767374512011415,45.76707211995329,45.76689327255356,45.76652528593585,45.76578851382782,45.76440816365358,45.766014903894,45.77309867809014,45.7658873857938,45.764973361652366,45.764511412437585,45.76437775221707,45.764281648214414,45.76409696579093,45.763744070887284,45.76306732969952,45.762393920650126,45.76423035244466,45.76674444307187,45.76169512258015,45.76183918011972,45.761646943335165,45.76180493551789,45.76156402461925,45.76149369913344,54.38329330344105,54.13473024872233,48.61430877813761,52.87030310030994,51.34748661416256,50.21129553843448,46.09733606652905,52.49532196829687,47.06531904245894,46.28440182508609,46.210774184999806,46.10342314593942,46.33407691970666,46.09543185829341,46.049155696839364,46.05464136125207,46.04776009233353,46.058894574296986,46.041721145591055,46.04287652958172,46.04101430815379,46.04284116011613,46.04002496613597,46.03926186100466,46.03792511321629,46.039811951053096,46.03714785753718,46.0355554513103,46.03246811069825,46.02695419905805,46.02125129795262,46.01903690981529,45.99712586082309,46.085009619386,46.06817032562877,45.994323405245815,46.0087529685171,45.9956495836392,45.99399554581798,45.99334969957995,45.99536304609986,45.99083543030402,45.989935443130385,45.98850061255281,45.98721032557706,45.98701415408033,45.98446230231458,45.983413924611334,45.98012784326376,45.975104789503554,45.96414232083791,45.94553756089847,46.31086761292401,46.23851841095743,45.94089165659793,45.981692596530365,45.96703429204125,45.9385601936668,45.93957380591901,45.94060199956184],"feasible_probability":0.4195570774985728,"one_hot_probability":1.0000000000000004,"sampled_feasible_fraction":0.46875,"counts":{"0010100010011":19,"0010100010101":24,"0010100011001":38,"0010100100011":27,"0010100100101":21,"0010100101001":7,"0010101000011":2,"0010101000101":15,"0010101001001":24,"0010110000011":7,"0010110000101":21,"0010110001001":7,"0011000010011":2,"0011000010101":3,"0011000011001":8,"0011000100011":4,"0011000100101":6,"0011000101001":1,"0011001000011":1,"0011001000101":2,"0011001001001":3,"0011010000011":2,"0011010000101":5,"0100100010011":3,"0100100010101":3,"0100100011001":4,"0100100100011":5,"0100100100101":5,"0100101000101":3,"0100101001001":4,"0100110000011":4,"0100110000101":7,"0100110001001":1,"0101000011001":1,"0101000100101":1,"0101000101001":1,"1000100010011":15,"1000100010101":22,"1000100011001":25,"1000100100011":25,"1000100100101":23,"1000100101001":2,"1000101000011":2,"1000101000101":16,"1000101001001":19,"1000110000011":8,"1000110000101":22,"1000110001001":1,"1001000010011":3,"1001000010101":3,"1001000011001":8,"1001000100011":7,"1001000100101":6,"1001001000011":1,"1001001000101":1,"1001001001001":3,"1001010000011":3,"1001010000101":6},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.33059511600004043},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":5,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[6,2,3],"max_component_qubits":6,"component_to_original":[[2,3,4,5,6,7],[8,9],[10,11,12]],"components":[{"qubits":6,"penalty":20,"objective_bound":19,"offset":40,"linear":[-12,-10,-20,-13,-15,-11],"quadratic":[[0,1,40],[0,4,20],[1,2,20],[1,3,20],[2,3,40],[2,4,40],[2,5,40],[3,4,40],[3,5,40],[4,5,40]],"domains":[[0,1],[2,3,4,5]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":9,"cost":8},{"index":1,"task":"t1","resource":"r2","start":8,"cost":10},{"index":2,"task":"t2","resource":"r2","start":7,"cost":0},{"index":3,"task":"t2","resource":"r2","start":10,"cost":7},{"index":4,"task":"t2","resource":"r0","start":9,"cost":5},{"index":5,"task":"t2","resource":"r1","start":13,"cost":9}],"conflicts":[{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource"]},{"i":1,"j":3,"reasons":["resource"]}]},{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-1],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":12,"cost":0},{"index":1,"task":"t3","resource":"r0","start":17,"cost":11}],"conflicts":[]},{"qubits":3,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1,-1],"quadratic":[[0,1,16],[0,2,16],[1,2,16]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r1","start":16,"cost":0},{"index":1,"task":"t4","resource":"r1","start":19,"cost":7},{"index":2,"task":"t4","resource":"r1","start":20,"cost":7}],"conflicts":[]}]},"best":{"feasible":true,"objective":13,"raw_cost":13,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":12,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":18,"reserved_end":19,"changed":false}],"bits":[1,0,1,0,1,0,0,0,1,0,1,0,0],"qubo_energy":13},"components":[{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false},{"variable":0,"task":"t1","group":"g1","resource":"r0","start":9,"end":10,"reserved_end":11,"changed":true}],"bits":[1,0,1,0,0,0],"qubo_energy":8},"seed":3757552657,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.958864867749673,2.1343994398368555],"expected_energy":18.88723756538499,"initial_expected_energy":26.530610482014595,"history":[26.530610482014595,25.16376593862598,22.952244684527795,21.539351352358565,21.37998375802954,20.07274302418663,23.718920938656495,20.6132061325238,19.384928460253352,21.637184873655,20.452357100818624,19.448759997202814,19.598114406776542,19.461393918245157,19.319193056386375,19.35567322467731,19.360787087467905,19.31155213610718,19.323816590793708,19.30918418817895,19.303809512626103,19.29302799297622,19.274256880266385,19.24865672294974,19.200403008637196,19.15528558305651,19.094936713791476,19.122792980990447,19.220963701914958,19.06770676676267,19.07635063438846,19.07171667948576,19.06438541674817,19.07510645908076,19.05890228197415,19.054306712662953,19.046628929158256,19.030711468984524,19.004471303432855,19.06445912383164,19.10970951617353,18.999337931205297,18.992287270838276,18.978202285624036,18.951709202263956,18.919123880305854,19.133374598706816,18.921289143819173,18.92103950203679,18.92981843504662,18.90480704684635,18.899215733965864,18.894561138011845,18.896196683190166,18.892919290925974,18.893962781058654,18.890682662391313,18.890036755826433,18.89411250285874,18.88723756538499,21.976885550643637,20.703215596100264,19.5864578193991,20.870658320235947,19.544938583164377,20.080688056435847,19.601005745471433,19.55699906697653,19.484686070425568,19.45988469480114,19.710588573474475,19.350445920314733,19.407866929419757,19.335640707071775,19.401777586366556,19.314249152783205,19.296661827079028,19.265470777583687,19.208305284359422,19.123745120040702,19.144152045861546,19.2936929101253,19.144227064955146,19.114972879056417,19.10796999652286,19.111994444555897,19.10445984098633,19.099204634771922,19.096996652574937,19.10729508600651,19.094826709411063,19.09099822739193,19.084075495905527,19.074626753555155,19.115672828926286,19.07029281212791,19.064455376766936,19.060519748867847,19.07021766881155,19.056911963033997,19.0541036065298,19.04830327678053,19.039511707511537,19.062653935332477,19.071550526878937,19.036360338495474,19.03632243342183,19.033581254654273,19.028454431787832,19.019721971562376,19.01287358097371,19.049579929093596,19.058719847222346,19.011791190793375,19.005633868263114,19.00999776820332,19.006878502093677,19.005871634895854,19.00549429246685,19.005305411064473],"feasible_probability":0.8199596142087271,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.794921875,"counts":{"000101":26,"000110":6,"001001":131,"001010":68,"010001":31,"010010":118,"100001":124,"100010":8},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11036568399867974},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t3","group":"g1","resource":"r0","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":673228719,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7133748604600256,1.1781282917747244],"expected_energy":1.5540672829517804e-07,"initial_expected_energy":1.568081118280807,"history":[1.568081118280807,1.8877218933400373,10.624449473617148,3.643357637202526,6.539113872316382,0.21162614824967943,0.14923283286357883,0.19351384716774536,0.29723558107945697,0.010925894504544514,0.0841831824534461,0.016244709137053472,0.016369425809989267,0.009842639520443282,0.012810580302129539,0.010681513731756579,0.007858994886625278,0.008308441897386885,0.007252670521656821,0.0068770220585508525,0.007293948539394541,0.006494605754275798,0.006165375681650965,0.0055901430408178176,0.004563673954660243,0.0029665954486503654,0.0016832503113978173,0.000580762030785657,0.00045532723115572157,0.00018249463604886113,0.0016094588014706507,8.08757125233271e-05,0.0001117281590133793,5.031500337942422e-05,6.82589104187769e-05,3.199780877728424e-05,1.1760477622193654e-05,1.4567896750220011e-05,6.058416430826424e-06,3.82173930079375e-06,5.888776697959156e-06,8.216479310745027e-06,4.57994658252641e-06,2.7492573588284547e-06,2.3557677368170516e-06,3.669932850201327e-06,1.997221674051206e-06,1.7150969322077924e-06,1.2767023659380883e-06,8.249167347237429e-07,2.667814886657324e-07,3.942453937455706e-06,7.018587803704802e-07,2.394834349367736e-07,6.86628060944658e-07,1.9110447406046027e-07,2.558371159772694e-07,3.0191562332431547e-07,1.659144287588524e-07,1.5540672829517804e-07,6.576897798849094,6.853097918617776,8.806899651797771,1.4856507365952196,7.55708129884909,3.7432440840665495,3.8690975622216977,1.281213976071781,1.3266932231645245,1.368032314231271,1.1234796110034462,1.042914562638898,1.2728647656124912,0.8909172661870383,0.7699659143867001,0.5491756834869623,0.19936434819764198,1.5490577119179973,1.9906453414270175,0.13534638823630468,0.4702569053166973,0.24080172373559783,0.12987124817119652,0.11464717724951731,0.08793211634284157,0.04766368360135791,0.13578193774914427,0.1346347315815262,0.0673288266638971,0.043784148219561454,0.04903582388233106,0.04323712323385117,0.04008457534733064,0.034202776896073324,0.02408263411193094,0.0361395990972758,0.038332503203367396,0.02364746942407847,0.020609628656471368,0.016021603652044393,0.010541764501572437,0.009389457922493039,0.0027088755791956605,0.027593616485575366,0.016366797015709613,0.002104911548433429,0.00856243506914323,0.0018973193446972343,0.0014091348552052584,0.001113731193004597,0.009137082690125461,0.00029881475779442406,0.0014841577885880985,0.0001723955623168254,0.0013438521446002831,0.0003009443666985596,0.00023218610347103814,0.00015938102998609574,0.00018265142287858288,0.000140827372007324],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08322588998998981},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t4","group":"g0","resource":"r1","start":16,"end":18,"reserved_end":19,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":3241444873,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.8101816569227192,2.748873564458929],"expected_energy":2.333533935626657,"initial_expected_energy":6.633758681333857,"history":[6.633758681333857,6.083609351511678,3.5292944181558665,4.189483668899595,4.120047799641782,3.7850195952968217,3.1407026113287113,3.040699266636283,2.848988300772466,2.702061303336327,2.9538061223037126,2.9086680324957204,2.6884109639337086,2.629046635440066,2.537558156381992,2.4056302941279966,2.6764586899324847,2.6067258364285886,2.3925289365060376,2.425403860601585,2.4098277009601206,2.4079706343927847,2.3932048553919905,2.3866750877564833,2.376887493473808,2.360588456247075,2.3544596271368787,2.3988265352234133,2.451720425334633,2.3382148349039795,2.341280630305018,2.33832811112446,2.3433669980199006,2.3373395756190254,2.3372932085041964,2.338166268102188,2.336619631294626,2.3356407719108176,2.334184074767348,2.3365588844086282,2.3361370669718546,2.3340454004134257,2.3344485017151357,2.3341851597814314,2.334199732486713,2.3340618225000513,2.3339832867402546,2.3338686713620826,2.333675831656616,2.3349597904832144,2.3341728444627043,2.333631679144181,2.3337154916598575,2.333639350373134,2.33360019859626,2.3335962042421223,2.333682385520301,2.333583473263137,2.3335621486364637,2.333533935626657,6.14323680291932,5.308034738380233,4.201409029557569,4.615349339782632,3.639311675483516,3.1694886542471634,2.55099509197491,4.754862532653609,2.579405779303962,3.3225425589389292,2.6697880027894225,2.575565314132234,2.5602690470494016,2.570517378098412,2.538927632680204,2.613032464584095,2.508976581694519,2.4903478537071635,2.47438585676914,2.488702855390897,2.4646364807110235,2.482308862450381,2.455652757866299,2.447449443449167,2.432535122414343,2.410905829473883,2.3970174881338226,2.37524409359079,2.345961797508881,2.461503258573821,2.365950746475537,2.344596547632415,2.368998393352155,2.3417633108418334,2.3398761963600454,2.338469283529246,2.3413905650799105,2.3377300814429556,2.337368032214875,2.3384201740377297,2.33703316300705,2.3367484432842986,2.3362187025716588,2.3357222645686817,2.335010823478174,2.3352210502476476,2.336042519660164,2.3347872140311807,2.3348019238395534,2.3348287514408703,2.3347135772946617,2.3345902133226226,2.3345171410908545,2.3357121932316303,2.3342319451765556,2.334123951344234,2.334015975089069,2.3340195041403247,2.333959282432009,2.333944283211999],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":334,"010":78,"100":100},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08309680499951355}],"circuit_evaluations":360,"status":"feasible","feasible_probability":0.8199596142087271,"total_shots":1536,"runtime_seconds":0.27699358300014865},"direct_metrics":{"exact_objective":13,"optimal_count":1,"combinations":72,"optimal_probability":0.03975359121940024,"feasible_probability":0.41955707749857285,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.4166666666666667,"shots_for_95_percent":74,"hit_curve":[{"shots":8,"quantum":0.2771277835246535,"uniform":0.10585733481633375},{"shots":16,"quantum":0.4774557586480198,"uniform":0.20050889429825008},{"shots":32,"quantum":0.7269475158298835,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9254423408885283,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9944411554678175,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999999990451435,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.551115123125783e-17,"independent_samples":[{"shots":8,"best_objective":20},{"shots":16,"best_objective":20},{"shots":32,"best_objective":13},{"shots":64,"best_objective":13},{"shots":128,"best_objective":13},{"shots":512,"best_objective":13}]},"component_metrics":[{"exact_objective":8,"optimal_count":1,"combinations":8,"optimal_probability":0.05134764687675752,"feasible_probability":0.8199596142087271,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.625,"shots_for_95_percent":57,"hit_curve":[{"shots":8,"quantum":0.3440711901037571,"uniform":0.6563910841941833},{"shots":16,"quantum":0.5697573963480984,"uniform":0.8819329129787512},{"shots":32,"quantum":0.8148913020028328,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9657347699257935,"uniform":0.9998056809433629},{"shots":128,"quantum":0.9988258940079617,"uniform":0.9999999622401042},{"shots":512,"quantum":0.9999999999980996,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.440892098500626e-16,"independent_samples":[{"shots":8,"best_objective":8},{"shots":16,"best_objective":8},{"shots":32,"best_objective":15},{"shots":64,"best_objective":8},{"shots":128,"best_objective":8},{"shots":512,"best_objective":8}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999999858721156,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3534329182592639e-20,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6666380091961919,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998474793497513,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999767374512,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999994,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.03423029260722907,"diagnostic_seconds":0.012391487005515955}
+{"instance":"n5-s0-r2.json","seed":1,"direct":{"status":"feasible","best":{"feasible":true,"objective":13,"raw_cost":13,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":12,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":18,"reserved_end":19,"changed":false}],"bits":[1,0,1,0,1,0,0,0,1,0,1,0,0],"qubo_energy":13},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.7036612745817883,1.0406091421006893],"expected_energy":46.09770194082476,"initial_expected_energy":52.76031072508748,"history":[52.76031072508748,53.790378264595404,46.5566810904775,52.260830150430266,48.156226507229235,46.71721171691708,48.80878101794032,46.54694700176289,46.948448873971984,46.6397442972051,46.553982209534986,46.57383057113512,46.54667803236775,46.53992391097552,46.538002906795384,46.52496485741414,46.54464960691219,46.53473495495674,46.5264552258935,46.52779031266717,46.52327085230041,46.532549262897916,46.52010889585811,46.51752620085246,46.51283767273004,46.503122535195764,46.48412128156994,46.46486112071355,46.54456187067126,46.60129590844848,46.44481211901237,46.45333895142865,46.443199270108586,46.44966398016634,46.44112574148594,46.43907921232358,46.43738678241856,46.43195363455207,46.43042769296605,46.424806222796995,46.42240940803922,46.41138870627825,46.43967715385185,46.41874946295701,46.40990603625046,46.41668792341545,46.40750984051579,46.40579845119461,46.407727941460735,46.40468299958952,46.403560983435426,46.40152058313929,46.39722622605056,46.38843577324478,46.37151225682008,46.48537415570912,46.421380325987315,46.38009775633972,46.37430229755767,46.37465860790762,46.774256182347514,46.34207892336724,52.12926650933164,53.39701383536661,52.969576000113435,49.073026657946386,46.31839320663322,46.29881968977769,46.4824201764914,46.344514330124724,46.31010458004765,46.32147210147656,46.26019193634864,46.210564025524675,46.19913540588849,46.20630989216996,46.201447329851376,46.19736205804632,46.192972010573044,46.186847537243565,46.17873909447741,46.173624051354125,46.17371275830353,46.18777606584371,46.17117618267574,46.17154536335909,46.1759479534657,46.166161063476366,46.1667034705269,46.165361981776684,46.16643588584487,46.16596229271622,46.164439257758886,46.16417616386397,46.16669374669017,46.16433692649021,46.163152245815,46.161996569091144,46.16444828217578,46.16104630866835,46.16014009957836,46.158369189652475,46.15503954192157,46.149555918687774,46.13623629554272,46.131847776845945,46.22632094124964,46.28453642806906,46.132228219552424,46.10785754632965,46.11816385244077,46.11118420249966,46.108856922652166,46.106324424559816,46.10497077768619,46.10659627402465,46.10387270018762,46.10236305836637,46.09954811047173,46.09770194082476],"feasible_probability":0.46576565870323633,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.4296875,"counts":{"0010100010011":10,"0010100010101":6,"0010100011001":56,"0010100100011":28,"0010100100101":21,"0010101000011":6,"0010101000101":13,"0010101001001":23,"0010110000011":4,"0010110000101":10,"0010110001001":6,"0011000010101":5,"0011000011001":14,"0011000100011":7,"0011000100101":6,"0011001000011":3,"0011001000101":2,"0011001001001":5,"0011010000101":4,"0011010001001":2,"0100100010011":2,"0100100010101":1,"0100100011001":7,"0100100100011":1,"0100100100101":5,"0100101000011":1,"0100101000101":3,"0100101001001":3,"0100110000011":1,"0100110000101":4,"0101000011001":4,"0101000100011":1,"0101000100101":3,"0101001000101":1,"0101001001001":1,"0101010000101":1,"1000100010011":2,"1000100010101":10,"1000100011001":51,"1000100100011":23,"1000100100101":27,"1000101000101":16,"1000101001001":32,"1000110000011":3,"1000110000101":6,"1000110001001":13,"1001000010011":2,"1001000010101":2,"1001000011001":19,"1001000100011":7,"1001000100101":7,"1001000101001":1,"1001001000101":4,"1001001001001":11,"1001010000101":1,"1001010001001":5},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.31907183899602387},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":5,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[6,2,3],"max_component_qubits":6,"component_to_original":[[2,3,4,5,6,7],[8,9],[10,11,12]],"components":[{"qubits":6,"penalty":20,"objective_bound":19,"offset":40,"linear":[-12,-10,-20,-13,-15,-11],"quadratic":[[0,1,40],[0,4,20],[1,2,20],[1,3,20],[2,3,40],[2,4,40],[2,5,40],[3,4,40],[3,5,40],[4,5,40]],"domains":[[0,1],[2,3,4,5]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":9,"cost":8},{"index":1,"task":"t1","resource":"r2","start":8,"cost":10},{"index":2,"task":"t2","resource":"r2","start":7,"cost":0},{"index":3,"task":"t2","resource":"r2","start":10,"cost":7},{"index":4,"task":"t2","resource":"r0","start":9,"cost":5},{"index":5,"task":"t2","resource":"r1","start":13,"cost":9}],"conflicts":[{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource"]},{"i":1,"j":3,"reasons":["resource"]}]},{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-1],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":12,"cost":0},{"index":1,"task":"t3","resource":"r0","start":17,"cost":11}],"conflicts":[]},{"qubits":3,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1,-1],"quadratic":[[0,1,16],[0,2,16],[1,2,16]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r1","start":16,"cost":0},{"index":1,"task":"t4","resource":"r1","start":19,"cost":7},{"index":2,"task":"t4","resource":"r1","start":20,"cost":7}],"conflicts":[]}]},"best":{"feasible":true,"objective":13,"raw_cost":13,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":12,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":18,"reserved_end":19,"changed":false}],"bits":[1,0,1,0,1,0,0,0,1,0,1,0,0],"qubo_energy":13},"components":[{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false},{"variable":0,"task":"t1","group":"g1","resource":"r0","start":9,"end":10,"reserved_end":11,"changed":true}],"bits":[1,0,1,0,0,0],"qubo_energy":8},"seed":1641411168,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.9106470826058293,2.137136001093174],"expected_energy":18.91260508790668,"initial_expected_energy":23.614723257124794,"history":[23.614723257124794,24.513861313880348,21.645577064219694,20.069468950624746,21.5986833568218,20.744436493110477,20.992721985074724,20.418847793780778,20.116258582248555,19.992763965253673,19.951450069329812,20.104660887193887,19.911603605716657,19.88081951538114,19.813775067097076,19.68813204089853,19.90947699214348,19.832258257924035,19.7455173349916,19.669224989053944,19.656629808218796,19.702503581433163,19.63915582405474,19.622638580536567,19.59071390727804,19.53023185251485,19.46959342660699,19.431400336609755,19.369601029315568,19.36079095077342,19.932342170225446,19.362932388587677,19.13231826665421,19.204601603544255,19.16614795321812,19.067112642656227,19.04657991829469,19.030608448500622,19.05983158670489,19.02171969080468,19.015983497493558,19.029925933909404,19.01143309502252,19.007551935112886,19.000465194344784,18.985927233657595,18.958824486494425,18.986552316373057,19.0330127215698,18.967996151132546,18.956192523627713,18.959917482084656,18.953353534933107,18.95041020691467,18.946601753387746,18.94026948272136,18.936224792884314,18.929941095440313,18.922930835089232,18.91260508790668,24.516333307585676,27.89782319336259,22.435025540039646,21.001335056276567,22.10420472206964,21.534342409021328,21.099499630923397,21.001719338116363,21.022405512336142,21.018467720198164,21.00762355510893,21.00212989078176,21.002353254115718,21.00269191457233,20.999219781293696,20.997105426101164,20.993647489203383,20.987437052175082,20.974958326236198,20.947750580323124,20.999919829411578,21.076548339552794,20.953895370024213,20.955660667362118,20.95809779827261,20.945292911190418,20.948474563377633,20.943202330150932,20.94147271819491,20.938025776866382,20.933842364999535,20.9263090791434,20.92322376451493,20.91322880469362,20.91557704151949,20.912611978794494,20.921713047202047,20.91217809921369,20.90855062169919,20.903224579387647,20.893650308946278,20.889282324568136,20.877126571765324,20.859337199648962,20.796514529507203,20.80966492458394,20.817659708053554,20.781400118759212,20.82564869368147,20.758013665403574,20.735289677435954,20.687525787780714,20.591329437764987,20.4779788472351,20.0847865299895,20.82522901147401,20.42037893709473,20.15682299361606,20.12889769935639,20.04436120043455],"feasible_probability":0.8184049736044334,"one_hot_probability":1.0,"sampled_feasible_fraction":0.8203125,"counts":{"000101":29,"000110":6,"001001":142,"001010":52,"010001":34,"010010":119,"100001":123,"100010":7},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10638380399905145},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t3","group":"g1","resource":"r0","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":1454127163,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7176915071315821,1.1784433722487218],"expected_energy":4.403028330689153e-05,"initial_expected_energy":2.7008453759806614,"history":[2.7008453759806614,2.9599592327369364,2.36154267444607,9.86667882845935,2.5445312092523387,4.0308785799565285,2.037354444243847,1.2595075692789175,0.23984614323438347,0.040536633773116705,0.01759054093125489,0.09139415524113711,0.018851626045227464,0.08703446388364283,0.0033720015386498503,0.0029104064146154925,0.003842121306238259,0.004420768305132271,0.0013532988714356916,0.0016082599335014655,0.001578852994079013,0.0014114509493961401,0.001320241729339519,0.001267126119179413,0.001224282360696105,0.0013539925628381474,0.001168815413900605,0.0011163960509880404,0.0010171136024597772,0.0008420993091096773,0.0010415644086967453,0.0008083367349739289,0.0007035199063938414,0.0005311789790876637,0.00030415052820959997,0.0003349168672555231,0.00044804571572606804,0.0003297189662990348,0.00032353159659390227,0.0002725627006127414,0.00022407860057500165,0.00014469395826719337,0.0004863207076157534,0.0002453750937763855,0.0001319628611584769,0.0002023064612183016,0.00011659579170765479,0.00010539628532548225,0.00012167692702609996,9.730168712719578e-05,9.022478440423584e-05,7.636105714660999e-05,5.565504976900842e-05,7.486366440009556e-05,0.00010380292398340633,4.889291079473571e-05,5.227240654913232e-05,4.5083181200805054e-05,4.403028330689153e-05,5.5132308878581085e-05,9.159388144643374,8.846351502146614,7.516704154272113,0.7397345856038013,10.979276603338048,2.8034794297563974,2.103573022853503,1.2921933348905392,0.8078788345893194,0.7593825515223045,0.6562081051029345,0.6395504890489669,0.9561418629764443,0.4755325515086846,0.4485221760947751,0.3336388198109952,0.22757396157211474,0.13532086060283832,0.06307324987765295,0.3626996415912252,0.04210633319463308,0.08291359046642906,0.1279019415875422,0.036148271839654564,0.09851991587573034,0.02519073896900373,0.013002762716817325,0.011855794874481518,0.009496776273213011,0.00773839948229831,0.005170058202689601,0.006710250027139821,0.007431942007024527,0.00561782539351094,0.004555348604165521,0.006614309337942029,0.003972637232374054,0.0035116598590294104,0.0026852422453828243,0.001747720598906565,0.001417468370201667,0.00016601776848735873,0.005240914666085321,0.004249869932683892,0.0011982451340322073,0.00011976289438261969,0.000425827197296596,0.00012990873082884138,0.00011885292281510772,0.0001530279648310308,9.784159653795209e-05,8.644553619200943e-05,7.270341449072845e-05,5.049182594163169e-05,0.00015874435068088415,6.68188506437323e-05,5.7044561190914714e-05,5.7140896438953604e-05,4.9888478359587314e-05,4.702230556182207e-05],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08601187700696755},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t4","group":"g0","resource":"r1","start":16,"end":18,"reserved_end":19,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":2749604155,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7957266648911212,2.748933141091576],"expected_energy":2.3333336142858223,"initial_expected_energy":4.355615899700154,"history":[4.355615899700154,3.927368503716388,3.7511644006734293,4.922462844193569,4.120879252819616,3.80443897831132,3.879846301482959,3.5186375433680928,3.1888384047233727,3.2822384079455875,3.3611408232119735,3.2431165368782,3.0839193703914916,2.970457951791773,2.8384537422127205,2.7177857229486135,2.618137920607113,2.60269220813806,2.4436820051306753,2.403055993903254,2.4454982532713165,2.783953312379186,2.3954516820127583,2.339287737035728,2.373088691423736,2.338885251228093,2.3475449915308344,2.338980666804395,2.3369431751985035,2.335907050567991,2.3361585107393212,2.335444124804182,2.335181962486087,2.3361374917785516,2.334949206402449,2.3348052050530277,2.3346224197868963,2.33430394191989,2.334209822238533,2.3339779334765,2.3356220807211425,2.334697165699083,2.3341399148671007,2.3336881050458125,2.333659957194627,2.33363416975867,2.3336564473594303,2.3336223052220793,2.333604928996826,2.333599488456837,2.333615212526287,2.3335847982926987,2.333558659383753,2.3335344425747504,2.333484813448413,2.3335004816047187,2.333523575403368,2.3334867167213735,2.333472269406247,2.3334624597696108,4.524629654516455,4.495128317110581,2.657082756158384,6.512748592022471,2.337216787130171,2.380949330980754,2.358210326645006,2.340220045061691,2.354870204853217,2.342999147027527,2.3614155156283925,2.333886622407439,2.333726698624158,2.333750311664835,2.3340037811776506,2.333514607126462,2.3336894749202033,2.3335350134217565,2.33352509510814,2.3335305517644653,2.3335069652939984,2.33349359887971,2.3334728672245957,2.333539235513965,2.3334627120879787,2.333439594387313,2.3334049315107417,2.3333615360757527,2.3334354248967673,2.333473918787929,2.333355812836987,2.3333556490441345,2.333351633026382,2.3333481274360035,2.3333438683183876,2.333361976837769,2.3333382914052523,2.333340681510726,2.3333377307538345,2.333345018554063,2.333336962794398,2.3333367446091646,2.3333396860955062,2.333336028615386,2.333335719569474,2.3333354167865172,2.333335568903303,2.333335253000415,2.3333357372569665,2.333335046973198,2.33333487247803,2.333334609182195,2.3333343844098295,2.3333337785718022,2.3333353135891963,2.3333349270311556,2.3333337098870794,2.3333342601342446,2.333333672145163,2.3333336142858223],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":334,"010":86,"100":92},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08337982499506325}],"circuit_evaluations":360,"status":"feasible","feasible_probability":0.8184049736044334,"total_shots":1536,"runtime_seconds":0.2761237389931921},"direct_metrics":{"exact_objective":13,"optimal_count":1,"combinations":72,"optimal_probability":0.01732882179009122,"feasible_probability":0.4657656587032363,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.4166666666666667,"shots_for_95_percent":172,"hit_curve":[{"shots":8,"quantum":0.130507686905155,"uniform":0.10585733481633375},{"shots":16,"quantum":0.24398311746897605,"uniform":0.20050889429825008},{"shots":32,"quantum":0.42843847332807194,"uniform":0.3608139719037934},{"shots":64,"quantum":0.6733174212284548,"uniform":0.5914412214865954},{"shots":128,"quantum":0.8932784927271732,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9998702797427195,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":20},{"shots":16,"best_objective":13},{"shots":32,"best_objective":13},{"shots":64,"best_objective":13},{"shots":128,"best_objective":13},{"shots":512,"best_objective":13}]},"component_metrics":[{"exact_objective":8,"optimal_count":1,"combinations":8,"optimal_probability":0.052688562551138525,"feasible_probability":0.8184049736044333,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.625,"shots_for_95_percent":56,"hit_curve":[{"shots":8,"quantum":0.35145181743910237,"uniform":0.6563910841941833},{"shots":16,"quantum":0.5793852548969567,"uniform":0.8819329129787512},{"shots":32,"quantum":0.8230832362019018,"uniform":0.9860601629623169},{"shots":64,"quantum":0.968700458687208,"uniform":0.9998056809433629},{"shots":128,"quantum":0.9990203387136088,"uniform":0.9999999622401042},{"shots":512,"quantum":0.999999999999079,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":15},{"shots":16,"best_objective":15},{"shots":32,"best_objective":8},{"shots":64,"best_objective":8},{"shots":128,"best_objective":8},{"shots":512,"best_objective":8}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999959972469721,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.692061405548898e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6666666265305969,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998475840629072,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999767693821,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999994,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.440892098500626e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.03512556565318681,"diagnostic_seconds":0.010743029997684062}
+{"instance":"n5-s0-r2.json","seed":2,"direct":{"status":"feasible","best":{"feasible":true,"objective":13,"raw_cost":13,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":12,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":18,"reserved_end":19,"changed":false}],"bits":[1,0,1,0,1,0,0,0,1,0,1,0,0],"qubo_energy":13},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.5715297235199108,2.9399130723935882],"expected_energy":35.29836608137295,"initial_expected_energy":54.1124372107308,"history":[54.1124372107308,55.292833122825044,46.874432626658916,51.43177196699024,49.706814022091386,48.31151531258781,46.30598619398791,47.148121956101406,46.34042671346921,47.32634068915115,45.955076412309936,46.38999339015665,45.943336029331746,45.985215641492246,45.943119600367645,45.93868438131913,45.94137838369899,45.93786006887288,45.93857404040119,45.93773071352372,45.93744833439138,45.93694044556574,45.93680577806049,45.93562480717847,45.93466242838956,45.932803632221024,45.931500213436166,45.928744164002666,45.935412835726794,45.9335615259998,45.9293773578036,45.927042337155285,45.92669933887021,45.92571481966468,45.92486556331916,45.924616139639326,45.92202286468068,45.922713391035906,45.92164533458219,45.92302645290014,45.921074122374456,45.92057483308707,45.9196485591207,45.917784418656964,45.914295213313444,45.92045729721596,45.92546446643621,45.91446534668455,45.913920173320356,45.914082384596796,45.91435320142814,45.9132401073995,45.912656691547284,45.913859454962314,45.912171683485,45.91173240571955,45.91112126259806,45.910110204763185,45.90905860022829,45.9070786675959,52.01838844151611,54.68824086719497,50.960287731943005,48.6626105245848,51.187132714358185,37.212955023981785,52.44849631923779,49.16696351387083,46.20307774185965,55.003488079668585,36.69650639650781,40.62214212628774,36.59319273292722,36.28048017343479,36.031662990215935,37.1646273071999,37.168085396297165,36.587045695082786,36.311893214577324,35.997043274517,36.015796306615435,36.0011398896729,35.973648873278464,35.949194944533446,36.03656570154446,35.921092897603565,35.89782440011412,35.854433633926206,35.77105022155472,35.839920546523686,35.81957009633107,35.78294244677273,35.784174926443,35.75515008560079,35.75625363377973,35.76572871595376,35.73767877107112,35.71779746072312,35.7857575132238,35.69140455131432,35.67327519769857,35.65475203159001,35.62898436324169,35.59289907895958,35.57254760015924,35.66112963517996,35.54957537352878,35.53500311113493,35.51787164624182,35.48626907731612,35.478215885230355,35.407189416575875,35.56122396274856,35.386175640522026,35.3668476008435,35.39536457585687,35.348198162365925,35.33966229231686,35.32484534154744,35.29836608137295],"feasible_probability":0.7644269405236016,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.744140625,"counts":{"0010100010011":1,"0010100010101":30,"0010100011001":3,"0010100100011":10,"0010100100101":28,"0010100101001":1,"0010101000011":12,"0010101000101":4,"0010101001001":12,"0010110000011":6,"0010110000101":8,"0010110001001":20,"0011000010011":3,"0011000010101":15,"0011000011001":3,"0011000100011":2,"0011000100101":15,"0011000101001":1,"0011001000011":4,"0011001001001":6,"0011010000011":2,"0011010000101":6,"0011010001001":5,"0100100010011":5,"0100100010101":35,"0100100011001":1,"0100100100011":2,"0100100100101":27,"0100100101001":1,"0100101000011":12,"0100101000101":6,"0100101001001":11,"0100110000011":1,"0100110000101":9,"0100110001001":7,"0101000010011":2,"0101000010101":14,"0101000011001":2,"0101000100011":3,"0101000100101":18,"0101001000011":5,"0101001000101":7,"0101001001001":11,"0101010000011":4,"0101010000101":9,"0101010001001":6,"1000100010011":6,"1000100010101":12,"1000100011001":2,"1000100100011":4,"1000100100101":10,"1000101000011":3,"1000101001001":7,"1000110000101":9,"1000110001001":10,"1001000010011":2,"1001000010101":18,"1001000011001":3,"1001000100011":2,"1001000100101":7,"1001001000011":6,"1001001001001":7,"1001010000101":3,"1001010001001":6},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3059531149920076},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":5,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[6,2,3],"max_component_qubits":6,"component_to_original":[[2,3,4,5,6,7],[8,9],[10,11,12]],"components":[{"qubits":6,"penalty":20,"objective_bound":19,"offset":40,"linear":[-12,-10,-20,-13,-15,-11],"quadratic":[[0,1,40],[0,4,20],[1,2,20],[1,3,20],[2,3,40],[2,4,40],[2,5,40],[3,4,40],[3,5,40],[4,5,40]],"domains":[[0,1],[2,3,4,5]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":9,"cost":8},{"index":1,"task":"t1","resource":"r2","start":8,"cost":10},{"index":2,"task":"t2","resource":"r2","start":7,"cost":0},{"index":3,"task":"t2","resource":"r2","start":10,"cost":7},{"index":4,"task":"t2","resource":"r0","start":9,"cost":5},{"index":5,"task":"t2","resource":"r1","start":13,"cost":9}],"conflicts":[{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource"]},{"i":1,"j":3,"reasons":["resource"]}]},{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-1],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":12,"cost":0},{"index":1,"task":"t3","resource":"r0","start":17,"cost":11}],"conflicts":[]},{"qubits":3,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1,-1],"quadratic":[[0,1,16],[0,2,16],[1,2,16]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r1","start":16,"cost":0},{"index":1,"task":"t4","resource":"r1","start":19,"cost":7},{"index":2,"task":"t4","resource":"r1","start":20,"cost":7}],"conflicts":[]}]},"best":{"feasible":true,"objective":13,"raw_cost":13,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":12,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":18,"reserved_end":19,"changed":false}],"bits":[1,0,1,0,1,0,0,0,1,0,1,0,0],"qubo_energy":13},"components":[{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false},{"variable":0,"task":"t1","group":"g1","resource":"r0","start":9,"end":10,"reserved_end":11,"changed":true}],"bits":[1,0,1,0,0,0],"qubo_energy":8},"seed":2001025171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.3658421315455125,3.7285369261851105],"expected_energy":18.050046830336637,"initial_expected_energy":21.100977527406204,"history":[21.100977527406204,21.364335190472023,21.56013536672639,23.553879107185786,21.067770091618875,21.386010346436258,21.126219713220337,20.91964541724784,20.804705939878062,21.01879047161902,20.760789691784765,20.73096418367215,20.67158225313206,20.50840093956918,20.148879839699738,19.795448656517586,21.10214577855811,21.664442005894507,19.698424781524356,19.299205838579084,19.67301203065972,19.378477865546287,19.307567779216374,19.291717745037463,19.28188717648544,19.28367373958544,19.27813626081663,19.270603329411507,19.257672512034418,19.234840068481436,19.260794734236256,19.22724078611776,19.200325404627016,19.16239250573041,19.0895033359373,19.05540079812575,19.76849921907669,19.681188080030253,19.013143973845494,19.133681557477004,19.007031347037877,19.013997075179986,19.011863583119606,19.00398847067398,19.00403605216119,19.007136725746683,19.00341575721859,19.003519874569548,19.003528790285017,19.003255019709854,19.003183877420206,19.003516286079744,19.00313380362144,19.003008600588025,19.00279650034559,19.002852476953983,19.00263160157916,19.002488979626527,19.00229919592388,19.00271424656244,22.65491194083219,22.235107539775207,21.289180703195548,20.525117341437937,19.338742747504206,20.964941291741624,20.50869419225016,21.597692365484797,24.074223317238385,21.437801407863464,23.660681552052385,19.185431677248005,18.725328127165046,18.877547492332354,18.772989233776013,18.74535277481531,18.69973424253751,18.677402938011248,18.709873493950376,18.66207630039007,18.637986189187636,18.592851284497236,18.554696695486932,18.545267781901856,18.4837339278876,18.34256954608182,18.292229615808914,18.665238810981762,19.06742640044711,18.299209896077475,18.19189055547134,18.277140435494847,18.207870049907257,18.19274605176433,18.186412515960257,18.179347589565058,18.207010991407532,18.171954080654878,18.1677620933567,18.16172440856214,18.150246641758066,18.128769728304356,18.155638874139143,18.17919627076267,18.124103217913692,18.142296179251307,18.12150241562992,18.116092851813924,18.106110861237838,18.08843180898375,18.055994037654706,18.259697570441297,18.319300418609068,18.101543587626985,18.07273862178819,18.05403544903094,18.055770878128776,18.052487082081463,18.05936367652457,18.050046830336637],"feasible_probability":0.8702535935777914,"one_hot_probability":1.0,"sampled_feasible_fraction":0.87109375,"counts":{"000101":16,"000110":44,"001001":87,"001010":1,"010001":21,"010010":124,"100001":122,"100010":97},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.09933999300119467},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t3","group":"g1","resource":"r0","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":2240297063,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[5.139820572281258,0.3926884413573961],"expected_energy":2.167567526038474e-06,"initial_expected_energy":7.208989367190556,"history":[7.208989367190556,6.02735520664269,6.074672792884776,4.841204680312683,3.9749435683091847,4.787512856350845,0.4604344520344347,9.167660479124589,6.574633194619183,0.232562244428513,1.546806313150242,0.21182165772982195,0.043909325887578454,0.09475404834944681,0.061914305391964616,0.05263709201800221,0.03345995892871148,0.030260838061246756,0.04469246063554229,0.026923379928891773,0.02426486119483722,0.019773969880051354,0.013680593465638512,0.009040173965991851,0.003715970129156632,0.001554374239841254,0.07467442410284607,0.008735200510492614,0.0018303653343904372,0.010826660513897992,5.5594409359462394e-05,0.0007348574807656626,0.00013739963733192074,0.00012057259273192963,2.387340523467221e-05,0.00010042236701304846,2.0401977418051372e-05,3.794872550320764e-05,1.5233919600725734e-05,1.6357387024831196e-05,2.1500786362549516e-05,1.3691572237119131e-05,1.3469927775451303e-05,1.5380038730340538e-05,1.2624367295476897e-05,1.1065400760241658e-05,8.344034222034317e-06,5.020833682097755e-06,6.6430741987245475e-06,9.511032924128358e-06,5.2231048987442275e-06,5.543721137385463e-06,4.223263100172818e-06,3.5332581417314902e-06,2.9687242181920025e-06,3.7249311316760658e-06,2.573219448874301e-06,2.3362599185561915e-06,2.778203423788552e-06,2.167567526038474e-06,5.115923266030589,4.095771781476896,8.682513388838938,3.0834965413204416,7.867915896307202,4.4584143939820065,3.7429373991735395,2.0324882829916873,2.179495979587045,2.326189322066689,1.772797908596562,1.5858360165023613,1.287676984764341,2.3458483728974553,1.2012406161751035,1.0108496680999706,0.7036551888331629,0.35813269329220576,0.7707814187915639,0.9761650672284539,0.27028900325292216,0.24468737616958341,0.48707548317323857,0.18943985023052629,0.16715178684469523,0.13769420881314584,0.09464239517055784,0.48640974022292316,0.12214221936506633,0.11686011077214839,0.10769699881769111,0.09201681628704775,0.08586011877856836,0.07906363778339524,0.07109891757170188,0.06364892852710176,0.04920749929919257,0.029390307970514635,0.036462553270651885,0.04799716710024594,0.03386793369689506,0.02567750892839117,0.021717957801066282,0.023166423997856057,0.019787357388403967,0.01997323274340867,0.020840599595178873,0.018144988585191577,0.016742828814735277,0.02704285270043589,0.013911085103247532,0.012357659818844877,0.010867704516387165,0.010504636188147688,0.006764514261112717,0.008646332614095276,0.006451344443579972,0.009002757961134828,0.005057007246758043,0.0041512265758260995],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07470698999532033},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t4","group":"g0","resource":"r1","start":16,"end":18,"reserved_end":19,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":1311118443,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.8018391524780961,2.7475103139847055],"expected_energy":2.3334084712429677,"initial_expected_energy":4.1492885179920975,"history":[4.1492885179920975,3.234319434608144,5.232638649192214,5.132743821307356,3.7129050060091187,3.2690150065807404,3.2719189588545383,3.1874104389083033,3.185424272514611,3.3072162168450023,3.0868062810318353,2.96266048965493,2.841955508073781,2.8510630308406015,2.8206478475133716,2.9249315465381143,2.8591371713998206,2.7514398921464536,2.762657583027923,2.7261989010158354,2.7073209566896645,2.7083247903550154,2.680381776462988,2.6661896147724122,2.6802201470383684,2.659293053365107,2.647404765391288,2.6369539956176653,2.6693421852071695,2.6233247062574208,2.5981125114582433,2.5526144881515,2.479694369757216,2.5625331436127405,2.6641815840036287,2.46023863789808,2.4890031258810774,2.4630781886294044,2.447061981533875,2.446130402865391,2.460706966829447,2.446625827280635,2.44113512452773,2.433090293696515,2.4312144113712146,2.420110147395028,2.410555790897483,2.4016290428646543,2.451433958516284,2.394158035780057,2.385314988115181,2.3796092586972932,2.3917758986689113,2.375414661524917,2.3718849445719914,2.3739118055405077,2.3695695945506055,2.3706584610883317,2.367775766860398,2.366613381904743,4.818870789212427,5.77849236777807,4.625536973503208,5.177658647621288,4.322417519677751,3.276794811650619,2.5772914387526438,6.8069785063946595,6.460871964358864,2.534042749591883,2.737542942442649,2.82612610606021,2.3546275764733675,2.739293689468315,2.354672530913549,2.342076781084374,2.3684729458379445,2.3540807486252704,2.3409659673237098,2.343226691400723,2.341050337445727,2.3402500636735035,2.3395002242003455,2.3435681964515878,2.3385383927609418,2.338039651648728,2.337396259652293,2.336299309433044,2.3376612994511596,2.337053655359415,2.3364444386746124,2.336635387274044,2.336081477972027,2.336893663737263,2.335787243028123,2.3355459327586687,2.335123916061862,2.33452093282102,2.3346385535490803,2.3348896929199516,2.334582026935462,2.334592995990861,2.3344049318208295,2.334267273630113,2.3341526190885786,2.334416342117552,2.33408306412604,2.333967078514646,2.3337805792032102,2.3343748739772803,2.333871716635082,2.3337588079295153,2.333970050300013,2.3336819959672552,2.3336484067500303,2.3336072609952447,2.3335753456473762,2.3335172822157393,2.3334580655321053,2.3334084712429677],"feasible_probability":0.9999999999999998,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":1.0,"counts":{"001":354,"010":75,"100":83},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08105411900032777}],"circuit_evaluations":360,"status":"feasible","feasible_probability":0.8702535935777912,"total_shots":1536,"runtime_seconds":0.25536839399137534},"direct_metrics":{"exact_objective":13,"optimal_count":1,"combinations":72,"optimal_probability":0.06258813047063379,"feasible_probability":0.7644269405236014,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.4166666666666667,"shots_for_95_percent":47,"hit_curve":[{"shots":8,"quantum":0.40372913944386063,"uniform":0.10585733481633375},{"shots":16,"quantum":0.644461060851641,"uniform":0.20050889429825008},{"shots":32,"quantum":0.8735920627492595,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9840210334000129,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9997446726263965,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999999999999958,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":20},{"shots":16,"best_objective":13},{"shots":32,"best_objective":20},{"shots":64,"best_objective":13},{"shots":128,"best_objective":13},{"shots":512,"best_objective":13}]},"component_metrics":[{"exact_objective":8,"optimal_count":1,"combinations":8,"optimal_probability":0.0376205595172131,"feasible_probability":0.8702535935777914,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.625,"shots_for_95_percent":79,"hit_curve":[{"shots":8,"quantum":0.2641815180482268,"uniform":0.6563910841941833},{"shots":16,"quantum":0.45857116161818806,"uniform":0.8819329129787512},{"shots":32,"quantum":0.7068548129685217,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9140658993202797,"uniform":0.9998056809433629},{"shots":128,"quantum":0.9926153303403676,"uniform":0.9999999622401042},{"shots":512,"quantum":0.9999999970261142,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.498001805406602e-16,"independent_samples":[{"shots":8,"best_objective":8},{"shots":16,"best_objective":8},{"shots":32,"best_objective":8},{"shots":64,"best_objective":8},{"shots":128,"best_objective":8},{"shots":512,"best_objective":8}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999998029484067,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.94511249854112e-20,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6666559326795759,"feasible_probability":0.9999999999999998,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998475449405995,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999767574549,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999994,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.025079964250827303,"diagnostic_seconds":0.009714518004329875}
+{"instance":"n5-s0-r2.json","seed":3,"direct":{"status":"feasible","best":{"feasible":true,"objective":13,"raw_cost":13,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":12,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":18,"reserved_end":19,"changed":false}],"bits":[1,0,1,0,1,0,0,0,1,0,1,0,0],"qubo_energy":13},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.021679931021172,2.9313233582597356],"expected_energy":35.34589183058551,"initial_expected_energy":51.609929746016604,"history":[51.609929746016604,51.01170426814578,51.99073052339397,51.939730021129186,55.33820840032676,46.712863224439545,50.87869715649214,46.67912205783602,50.99516314789423,46.453814014412075,46.67714110919583,46.55361644919496,46.481836617931776,46.430790190353974,46.44839648487633,46.431710521770746,46.42776169651626,46.43205361725265,46.42535570686081,46.42317136761221,46.422075243867596,46.416337565470045,46.415510201315044,46.40707016421506,46.405657455850836,46.398000461698324,46.39101824943861,46.382434754113035,46.364994120237256,46.32928154752617,46.285472421465855,46.90701184176615,46.6917213348715,46.281193124057616,46.26573346592044,46.29740686166034,46.2718347629025,46.25568436093273,46.25170376075704,46.25830290490262,46.24968763660218,46.24796720918843,46.24405027290581,46.23742359499987,46.24675561443905,46.25858287763414,46.235019733326375,46.23654286717243,46.23555079180886,46.23326057369849,46.23316702675902,46.231875108459036,46.23074361332904,46.228852289043644,46.22541021178613,46.230569785522974,46.22495135357095,46.22231763242583,46.218029562816916,46.212201008285575,61.03920484747021,63.52499357296911,49.982990042015324,39.56014038687784,52.55390526278667,48.660366662424416,43.86328736822517,41.835336857809004,39.77749108565922,40.106859149747635,39.612638249279854,39.76503629894607,39.60536663050771,39.44918451010862,39.26284191342156,38.90382675010168,38.476396872058785,37.71076810560783,36.85183166279926,40.05705804454071,43.167508175423464,36.710452198031234,36.38247956905509,36.989627276561926,36.600766145420394,36.44622623030271,36.27677653619543,36.222101952509135,36.31522684996074,36.19660920294109,36.17152220363655,36.124837442880306,36.02870742689743,35.84922387857495,36.33974408715829,36.27130884578329,35.81181288698264,35.99923793832631,35.79472079972333,35.75112588075259,35.668031492531554,35.52695571883356,35.95132072751352,36.18815006156918,35.49186830819971,35.61869483847206,35.50131730682022,35.48405706034024,35.49669548374667,35.46740206176263,35.45244641232501,35.42148774119452,35.36325484502546,35.46652575807273,35.471232067981674,35.38873567657605,35.35657042177604,35.35932522236917,35.3468378414462,35.34589183058551],"feasible_probability":0.7492869679469992,"one_hot_probability":1.0000000000000007,"sampled_feasible_fraction":0.775390625,"counts":{"0010100010011":2,"0010100010101":37,"0010100011001":2,"0010100100011":2,"0010100100101":26,"0010100101001":3,"0010101000011":17,"0010101000101":5,"0010101001001":10,"0010110000011":1,"0010110000101":16,"0010110001001":11,"0011000010011":2,"0011000010101":24,"0011000011001":2,"0011000100011":1,"0011000100101":12,"0011000101001":1,"0011001000011":4,"0011001000101":6,"0011001001001":6,"0011010000101":7,"0011010001001":10,"0100100010011":2,"0100100010101":28,"0100100011001":4,"0100100100011":4,"0100100100101":22,"0100101000011":12,"0100101000101":7,"0100101001001":19,"0100110000011":1,"0100110000101":12,"0100110001001":24,"0101000010011":1,"0101000010101":14,"0101000011001":1,"0101000100011":2,"0101000100101":13,"0101001000011":7,"0101001000101":3,"0101001001001":7,"0101010000101":3,"0101010001001":8,"1000100010011":3,"1000100010101":20,"1000100011001":2,"1000100100011":1,"1000100100101":14,"1000101000011":3,"1000101000101":1,"1000101001001":7,"1000110000011":2,"1000110000101":12,"1000110001001":12,"1001000010011":2,"1001000010101":6,"1001000011001":1,"1001000100011":2,"1001000100101":6,"1001001000011":6,"1001001001001":2,"1001010000101":2,"1001010001001":7},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.31024004401115235},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":5,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[6,2,3],"max_component_qubits":6,"component_to_original":[[2,3,4,5,6,7],[8,9],[10,11,12]],"components":[{"qubits":6,"penalty":20,"objective_bound":19,"offset":40,"linear":[-12,-10,-20,-13,-15,-11],"quadratic":[[0,1,40],[0,4,20],[1,2,20],[1,3,20],[2,3,40],[2,4,40],[2,5,40],[3,4,40],[3,5,40],[4,5,40]],"domains":[[0,1],[2,3,4,5]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":9,"cost":8},{"index":1,"task":"t1","resource":"r2","start":8,"cost":10},{"index":2,"task":"t2","resource":"r2","start":7,"cost":0},{"index":3,"task":"t2","resource":"r2","start":10,"cost":7},{"index":4,"task":"t2","resource":"r0","start":9,"cost":5},{"index":5,"task":"t2","resource":"r1","start":13,"cost":9}],"conflicts":[{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource"]},{"i":1,"j":3,"reasons":["resource"]}]},{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-1],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":12,"cost":0},{"index":1,"task":"t3","resource":"r0","start":17,"cost":11}],"conflicts":[]},{"qubits":3,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1,-1],"quadratic":[[0,1,16],[0,2,16],[1,2,16]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r1","start":16,"cost":0},{"index":1,"task":"t4","resource":"r1","start":19,"cost":7},{"index":2,"task":"t4","resource":"r1","start":20,"cost":7}],"conflicts":[]}]},"best":{"feasible":true,"objective":13,"raw_cost":13,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":12,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":18,"reserved_end":19,"changed":false}],"bits":[1,0,1,0,1,0,0,0,1,0,1,0,0],"qubo_energy":13},"components":[{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false},{"variable":0,"task":"t1","group":"g1","resource":"r0","start":9,"end":10,"reserved_end":11,"changed":true}],"bits":[1,0,1,0,0,0],"qubo_energy":8},"seed":819382448,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.5262496261779586,1.2330438758275843],"expected_energy":19.002448685966392,"initial_expected_energy":20.210775006320027,"history":[20.210775006320027,20.21783456915662,22.808749098934918,22.105234170718777,22.20402698049328,19.164963784481152,20.98502507278507,19.219187126561906,20.194868516790034,19.084566552408006,19.11159155489493,19.095508827320693,19.099229728515656,19.066556704733387,19.06591613194405,19.069702490650435,19.06778187649195,19.06202909897543,19.05898796612457,19.0589412445836,19.066466299742117,19.053293800339482,19.047707736949803,19.044957701359614,19.058416164373888,19.041347595825577,19.039045250834633,19.03660369968076,19.033042173083018,19.03164635977329,19.023479837219593,19.019765704179115,19.01049476984255,19.025795652969578,19.030479229889917,19.014879892499458,19.011304860680855,19.011260190335342,19.010029302734957,19.010364439422126,19.009815284351475,19.009493798455065,19.00939879314928,19.009041874350483,19.00869744362503,19.00803135133623,19.006828026327547,19.00607481122789,19.003565393660672,19.013279994152267,19.00629024438694,19.005328266911967,19.003957915978717,19.003198714602455,19.002789928637316,19.002799071924116,19.0025863927711,19.00249633917321,19.002706449431013,19.002448685966392,21.199539914976107,21.25896145559464,22.88204832185106,22.05342242473512,23.15169724566478,21.022113127274608,21.488801462691637,21.00439692647653,20.985193169914588,21.012713091038254,21.004803440491738,20.986073712017117,20.982886818769458,20.979212194551515,20.975769988388855,20.979188970582697,20.974152633011798,20.972821205221265,20.971139967320546,20.967819578801198,20.96130747471004,20.947418594746694,20.941809500766514,20.928743732733324,20.99066455284747,20.98693291441537,20.938245159461943,20.905430890168304,20.89818822721275,20.88864016276966,20.884573189674953,20.871449643485324,20.85576565301731,20.824101277791765,20.781647704459072,20.688846821010973,20.489803922324015,20.95926893656129,20.532776716197134,20.477322774517642,20.784612057141423,20.447345235088868,20.319697435431863,20.17607647607509,20.01686508538549,19.86026567776298,19.56961215830382,19.32484542286884,20.803919767867853,21.080680686105076,19.136266617826315,19.450093744131372,19.164913410483063,19.19849017254225,19.116830122070713,19.1095729931491,19.158656350125796,19.097983802547542,19.091902810836523,19.084443770978467],"feasible_probability":0.6783848268255913,"one_hot_probability":1.0,"sampled_feasible_fraction":0.67578125,"counts":{"000101":201,"000110":8,"001001":20,"001010":49,"010001":109,"010010":76,"100001":13,"100010":36},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10412399300548714},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t3","group":"g1","resource":"r0","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":1645421708,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[5.130973824445214,0.39308823614432453],"expected_energy":0.00022922892227402684,"initial_expected_energy":9.658506671635172,"history":[9.658506671635172,9.270073859484933,0.9654529428116001,5.493183267571029,2.383994066254262,1.5338951219099524,0.4728209098162307,0.5418904122236339,0.5307026330846125,0.5105365608753356,0.4346531857170193,0.6445070281153946,0.37463090889486406,0.3265777981993325,0.24606249669913546,0.2967717122722214,0.2806412748715595,0.23978797202478094,0.3192504641228301,0.2260906361496834,0.20362081592519052,0.17389050678624496,0.14557195612331855,0.1342057893871213,0.08141687841530995,0.16943422560696658,0.06787043885277975,0.1095276882409423,0.05709547520633948,0.0497424750148481,0.05581673083082253,0.048039601342772326,0.04447519790429017,0.04257597798706654,0.035724737590655885,0.03035874106833904,0.02093985495411298,0.013523003980600454,0.02137121150302179,0.04810151513900318,0.010999201371818871,0.006326832178231959,0.007216626760876436,0.00764130398572929,0.006613857980756184,0.006950268728536769,0.006339965099550612,0.006028485984866771,0.005453738778850225,0.004414807922683629,0.003153243564049908,0.0031587952450612723,0.0035510457342109478,0.0036220986042807784,0.002578739067913123,0.002563784586984085,0.0027886430317502152,0.0025903696275801614,0.0024695440520166928,0.0023179382644429774,6.960566199544471,4.8619489132663,5.39583605807065,4.022664604047019,8.28265725060423,2.180830741214024,2.815212109848491,2.031094619073083,2.6869794741957715,1.9315266017499306,1.7414659582122447,1.4123146249544196,2.0290688821004115,1.3620491257202203,1.1476204630593285,0.8275263720357056,0.5006660841820533,0.7211234552842042,1.1089636553032454,0.5964503863183404,0.3822456119774445,0.3350598231823915,0.5513484584184589,0.2826674508498518,0.24866671009257857,0.2120090262638558,0.15163940858509706,0.23701745944663025,0.2542174509324942,0.1423360490802378,0.11234471648732072,0.06528045260125731,0.02820677963233792,0.22906486549897273,0.22294167558242875,0.010034513950422975,0.030025711053689577,0.01718984902395157,0.009990429419898425,0.007565921309026664,0.007759215515085297,0.007389115561079525,0.00952097548543539,0.005628405646840449,0.005304088623815197,0.004031860590882505,0.00288536629789173,0.0017122164746170012,0.0012373075439679375,0.009022719802330575,0.0004507269791815155,0.0015425100231327682,0.00029760704304926833,0.0015335400798034973,0.0003476828966525372,0.000330694747700783,0.0003227788340221289,0.0002926962454568371,0.00026842568449536716,0.00022922892227402684],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07596773900149856},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t4","group":"g0","resource":"r1","start":16,"end":18,"reserved_end":19,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":3451799802,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.790040871853229,2.7491148681714246],"expected_energy":2.333357983479936,"initial_expected_energy":3.034282034382122,"history":[3.034282034382122,3.8934610996612795,5.29098617701683,5.2827712177717,3.6087844473682367,3.129991630322885,3.0710538762044104,3.009251051569988,3.1017931706455806,2.932925409283167,2.8655065324569016,2.7428195008929577,2.702434129024355,2.5739638030484557,3.1759088649957814,2.4602873324286603,2.5716306882791846,2.5179023438467345,2.4514078304054743,2.4367384185873004,2.4288389465799916,2.412947360245277,2.405792046222349,2.392652610550135,2.3843620903734406,2.374422330059068,2.3674114106507145,2.3840589812345034,2.363376141138155,2.3605759655688816,2.3651328114815087,2.358910839337146,2.3574242292031196,2.354597013408773,2.3512724397868903,2.3469913526006505,2.3453692938629698,2.361857287737168,2.3421423861567154,2.341587695435767,2.339630265077626,2.3373748885816457,2.335801121349326,2.3340356168265295,2.333591380563808,2.3672388087500904,2.3391245719673543,2.336424254786542,2.333652287738647,2.3335638546991,2.333555089533213,2.3345673664728435,2.3333780026440127,2.3334282667092854,2.333373933585244,2.333434816475677,2.3333678232849113,2.3333611926860893,2.333357983479936,2.3333672448012006,5.443420662484426,5.01664876585969,5.089252389316191,4.618285691971094,5.68564241255814,4.353593776879471,4.717282336053892,3.746636038411306,4.313117898397047,4.312466453980656,4.285271180567857,3.9654111014847935,3.452267623856422,3.5294254562143053,3.4040684652504547,3.3203019815604256,3.1746174396322626,3.040470027176772,3.858506003760378,2.9193175077308817,2.8114353590260475,2.7546230239154665,3.067805807950649,2.6771547034902516,2.641142918969208,2.589985108255617,2.504172280967583,2.559757563001664,2.6087347132459895,2.526307060519204,2.494125861802825,2.515833749443833,2.484149962508546,2.4749997570985336,2.45813000575105,2.437884874214385,2.412284032118072,2.405883859186124,2.5089954920171937,2.3842839083882366,2.380034422382562,2.369166497903859,2.3529997185104556,2.360147683539816,2.3922692865084523,2.3595678253765544,2.3516801020955826,2.3549672245385223,2.351268183934703,2.350055132347105,2.3480107067039984,2.353238692066751,2.346954808333679,2.344754413545478,2.340913194705844,2.3366580983237544,2.3511790019300642,2.3489002429336345,2.336060264842052,2.335511173444858],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":355,"010":86,"100":71},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08635244000470266}],"circuit_evaluations":360,"status":"feasible","feasible_probability":0.6783848268255913,"total_shots":1536,"runtime_seconds":0.26672660499752965},"direct_metrics":{"exact_objective":13,"optimal_count":1,"combinations":72,"optimal_probability":0.07236699842261203,"feasible_probability":0.749286967946999,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.4166666666666667,"shots_for_95_percent":40,"hit_curve":[{"shots":8,"quantum":0.451711008799119,"uniform":0.10585733481633375},{"shots":16,"quantum":0.6993791821279203,"uniform":0.20050889429825008},{"shots":32,"quantum":0.9096271238619219,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9918327432585315,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9999332959173189,"uniform":0.8330797244996347},{"shots":512,"quantum":1.0,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":6.938893903907228e-17,"independent_samples":[{"shots":8,"best_objective":13},{"shots":16,"best_objective":13},{"shots":32,"best_objective":13},{"shots":64,"best_objective":13},{"shots":128,"best_objective":13},{"shots":512,"best_objective":13}]},"component_metrics":[{"exact_objective":8,"optimal_count":1,"combinations":8,"optimal_probability":0.36865682222799495,"feasible_probability":0.6783848268255914,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.625,"shots_for_95_percent":7,"hit_curve":[{"shots":8,"quantum":0.9747579899619018,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9993628409292366,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999995940283185,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9999999999998351,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":8},{"shots":16,"best_objective":8},{"shots":32,"best_objective":8},{"shots":64,"best_objective":8},{"shots":128,"best_objective":8},{"shots":512,"best_objective":8}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.999979161007066,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.285485590866834e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.666663145217152,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998475713278596,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999767654999,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999994,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.24576479501471987,"diagnostic_seconds":0.009824495005887002}
+{"instance":"n5-s0-r2.json","seed":4,"direct":{"status":"feasible","best":{"feasible":true,"objective":13,"raw_cost":13,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":12,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":18,"reserved_end":19,"changed":false}],"bits":[1,0,1,0,1,0,0,0,1,0,1,0,0],"qubo_energy":13},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.9818986591332515,2.9368443075438413],"expected_energy":35.235931129981374,"initial_expected_energy":52.13102400596651,"history":[52.13102400596651,52.18629883921483,51.708487525326035,59.114598595158974,46.559948463811935,52.24623945017825,54.079812301100304,46.506740591300684,46.96354359027459,47.04446510404821,46.08102662039521,46.49322254820663,46.09475990347519,46.086153864491635,46.11213236388526,46.07813685009374,46.07538956338607,46.0721681471071,46.06569676358731,46.05349142427204,46.04749103857267,46.143892822706924,46.17771025994215,46.04859463458796,46.02899171911607,46.044192115007434,46.03200855465303,46.03184528450078,46.028727280119284,46.03132189878952,46.02778042727232,46.026187386064066,46.02364371745911,46.01794877742641,46.01001923781888,45.99562922209792,46.1195143013449,46.04625520060067,46.01468004902439,45.99599025670295,45.996122860905224,45.99555692471914,45.99699493760189,45.995502851467876,45.99502376088532,45.99423738337725,45.992992221340536,45.992863515029704,45.99219641426808,45.99098094199475,45.9888753234944,45.98446703498192,45.975788050361665,45.960878931837456,46.22059685687972,46.158793132876156,45.9569940535402,45.979417245076036,45.974247638653694,45.954474639754366,47.699981996871,47.85377027826675,47.95552489747736,55.06151335667974,44.01367599649464,55.646608652220394,46.739127172406306,43.16548291595683,43.69662907433881,43.262515521229695,42.658397136710946,43.37909300145977,43.168031109269066,42.25425485878809,42.646558115333974,41.934900778167275,42.555752820486305,41.66695009522844,41.41839245578608,40.94787521133693,40.13570585304444,38.64324185729187,36.49767729621183,43.3016853571844,55.441221357764334,36.825682344894815,36.59621943369379,37.54573962284929,35.97713202169733,35.92937350421714,35.99607862028519,35.94718119165196,35.894682385853386,35.854846050322095,35.81199569518959,35.77505904625602,35.69699584904957,35.560973278934085,36.73289190666438,35.94097116454242,35.75200670454294,35.54002811261142,35.515398013361704,35.52114473048336,35.495901626440954,35.49233635966505,35.51616518770937,35.47427455385386,35.45769653130688,35.426562853866926,35.37157858833881,35.34467270224158,35.35576587427631,35.60317969780302,35.38832717236264,35.278315457747084,35.26263138474884,35.32173781686827,35.24780844066099,35.235931129981374],"feasible_probability":0.7540549581904706,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.771484375,"counts":{"0010100010011":5,"0010100010101":41,"0010100011001":4,"0010100100011":6,"0010100100101":27,"0010101000011":12,"0010101000101":7,"0010101001001":16,"0010110000011":1,"0010110000101":16,"0010110001001":17,"0011000010011":2,"0011000010101":29,"0011000100101":9,"0011000101001":2,"0011001000011":6,"0011001000101":2,"0011001001001":8,"0011010000101":6,"0011010001001":5,"0100100010011":4,"0100100010101":34,"0100100011001":2,"0100100100011":2,"0100100100101":24,"0100100101001":1,"0100101000011":12,"0100101000101":5,"0100101001001":16,"0100110000101":12,"0100110001001":8,"0101000010011":2,"0101000010101":13,"0101000011001":3,"0101000100101":11,"0101000101001":2,"0101001000011":9,"0101001000101":3,"0101001001001":7,"0101010000101":8,"0101010001001":7,"1000100010011":2,"1000100010101":18,"1000100011001":2,"1000100100011":1,"1000100100101":9,"1000100101001":2,"1000101000011":8,"1000101000101":4,"1000101001001":11,"1000110000101":6,"1000110001001":9,"1001000010101":7,"1001000011001":1,"1001000100101":7,"1001001000011":5,"1001001001001":4,"1001010000101":8,"1001010001001":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.32076539199624676},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":5,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[6,2,3],"max_component_qubits":6,"component_to_original":[[2,3,4,5,6,7],[8,9],[10,11,12]],"components":[{"qubits":6,"penalty":20,"objective_bound":19,"offset":40,"linear":[-12,-10,-20,-13,-15,-11],"quadratic":[[0,1,40],[0,4,20],[1,2,20],[1,3,20],[2,3,40],[2,4,40],[2,5,40],[3,4,40],[3,5,40],[4,5,40]],"domains":[[0,1],[2,3,4,5]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":9,"cost":8},{"index":1,"task":"t1","resource":"r2","start":8,"cost":10},{"index":2,"task":"t2","resource":"r2","start":7,"cost":0},{"index":3,"task":"t2","resource":"r2","start":10,"cost":7},{"index":4,"task":"t2","resource":"r0","start":9,"cost":5},{"index":5,"task":"t2","resource":"r1","start":13,"cost":9}],"conflicts":[{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource"]},{"i":1,"j":3,"reasons":["resource"]}]},{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-1],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":12,"cost":0},{"index":1,"task":"t3","resource":"r0","start":17,"cost":11}],"conflicts":[]},{"qubits":3,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1,-1],"quadratic":[[0,1,16],[0,2,16],[1,2,16]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r1","start":16,"cost":0},{"index":1,"task":"t4","resource":"r1","start":19,"cost":7},{"index":2,"task":"t4","resource":"r1","start":20,"cost":7}],"conflicts":[]}]},"best":{"feasible":true,"objective":13,"raw_cost":13,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":12,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":18,"reserved_end":19,"changed":false}],"bits":[1,0,1,0,1,0,0,0,1,0,1,0,0],"qubo_energy":13},"components":[{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false},{"variable":0,"task":"t1","group":"g1","resource":"r0","start":9,"end":10,"reserved_end":11,"changed":true}],"bits":[1,0,1,0,0,0],"qubo_energy":8},"seed":367776961,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.567938943264955,2.9453154033954583],"expected_energy":14.764330180593962,"initial_expected_energy":22.725259385094397,"history":[22.725259385094397,22.69622759825823,21.371649438944637,19.10539577346291,21.92923260359412,16.2204209599974,24.51704075220767,21.4241581230466,15.39655471030568,18.772660754861306,15.57303101714554,15.144108411622742,15.614947354439611,15.084043956149914,15.189701417811186,15.064911129407523,15.064714530842576,15.053506086514956,15.042551312639711,15.021469222159858,14.982755954232903,14.92818065947925,15.065665491066719,14.904643453589518,14.965322279935123,14.892440530804532,14.883246647507047,14.870832665364635,14.849335990468724,14.901369473509874,14.871231527056915,14.86963749052616,14.844627085852888,14.840929321573356,14.836200890577196,14.835742191466622,14.828325064354821,14.828262423112433,14.819479111581622,14.813384515279635,14.80451928889579,14.788504511424627,14.776257950626691,14.931660021210114,14.897487411224258,14.775301513432456,14.767797929457515,14.791914071928963,14.770206397291254,14.769889260915217,14.767273403319237,14.766417544453637,14.765905589287332,14.766108106088103,14.765759302244216,14.76564361105112,14.765606019995825,14.765216593904398,14.764971792581543,14.764330180593962,21.96397252648279,22.087906412013105,21.34756775582573,23.299174869460344,22.064836679799257,21.670409510231377,21.15222185069552,21.581364391980415,21.20695324444263,21.104758571876136,21.18031165420652,21.097928072716236,21.13618620777074,21.09480293569296,21.089651977538182,21.088675154701306,21.100768755372584,21.085884545507902,21.083897297460844,21.0812020726943,21.077537730649613,21.071015372744217,21.057279716564416,21.031504841802306,21.081779380473733,21.21796508174147,21.06480906595749,21.028964188702357,21.047847087372162,21.026432775190443,21.02482699100336,21.031258525440478,21.022661374378995,21.02118944906566,21.019689483448133,21.017708951323907,21.014423520685995,21.012626973940918,21.0090824036728,21.006622092824465,20.999461224751474,21.013743465420873,21.002479747658924,20.9985012816772,21.00193710675526,20.996701607712367,20.99537427402843,20.992186244878113,20.98574319185397,20.972894814730875,20.94566222613295,20.996243406096692,21.08134836702732,20.975141278714553,20.952234718703533,20.94750817983516,20.945408713045147,20.947991489984418,20.943137726162142,20.939114836063197],"feasible_probability":0.9358909722498845,"one_hot_probability":1.0,"sampled_feasible_fraction":0.927734375,"counts":{"000101":137,"000110":33,"001001":96,"010001":4,"010010":106,"100001":72,"100010":64},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10408646200085059},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t3","group":"g1","resource":"r0","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":3166742020,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.709222597215858,2.748904380914301],"expected_energy":4.420211389167503e-05,"initial_expected_energy":2.131492662247432,"history":[2.131492662247432,4.228101677898176,7.969639114554101,5.400127426012831,4.176316629450651,1.8172604991273758,1.8233967463333576,1.868666956723747,1.6139922115406948,1.548256579492029,2.151925072160132,1.324481427071586,0.9890019886978259,0.5778501663085847,0.801373618074791,1.0781982323064796,0.6156481695039056,0.44756869997847765,0.4307823495893895,0.3131597632966259,0.27577739164963117,0.18982978313450705,0.20013836664527285,0.23827012475928475,0.18881741433468396,0.21856381682924247,0.19031704232846922,0.17855836179861045,0.16279204109910686,0.1680701133878114,0.15069000099374139,0.13999549967772165,0.12267962870732707,0.13660360526121393,0.10722238608209322,0.09507800600519761,0.1174770621215534,0.0842743335654947,0.07684982160855473,0.06863923394795628,0.05470342025234127,0.046453194084106655,0.03405956580573577,0.075711690623113,0.06357859967893523,0.03971000870914464,0.022695839414269788,0.021219408020270863,0.017699180934034636,0.017551622169262957,0.022910705577537646,0.013882130021362949,0.011850115462270638,0.01068295179568328,0.012886360357592636,0.00988331887575734,0.00914076405941633,0.008258502172903201,0.006840383520368843,0.005145299736225666,4.501276853380187,4.77120956335567,1.3258924409987107,10.01633474899052,0.08815656803796477,0.03150935640200319,0.4525904638456713,0.0445272354236751,0.2302840918715767,0.0378715003501339,0.041745371721208464,0.04161311075162931,0.026933801383738642,0.01868395585487269,0.008426926882167233,0.004706486111459031,0.00738689817114167,0.004315560057772155,0.0072545886400424454,0.003180478968822851,0.0033746389783311887,0.002975635346389801,0.00334960186420046,0.002743819562460602,0.0025419038579134147,0.0021715750536880182,0.0016740960541884288,0.0011717604892798814,0.000839747753773445,0.00233604274283152,0.0006081834861153869,0.0006584420007771219,0.0007372015499900301,0.0005830564454478942,0.0005831676766211624,0.0005493230823102005,0.0005191420269418546,0.00047871416606125707,0.0005742075250020922,0.00043977813952781936,0.00040860922517053683,0.00035132625033716214,0.0003377599816008099,0.00020927744455837425,0.0002899627463875078,0.00020005639555184843,0.00023849414408447876,0.00017290894271480527,0.0001503899739687858,0.00011438492777825668,6.639850348398735e-05,7.444716831902744e-05,0.00010902439180282005,7.740446251146812e-05,5.8126723760217196e-05,7.345467215976364e-05,4.91494156778627e-05,5.393917168426149e-05,4.420211389167503e-05,4.508607532881478e-05],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.0827672960003838},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t4","group":"g0","resource":"r1","start":16,"end":18,"reserved_end":19,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":1587198119,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7952938283470496,1.178095734274472],"expected_energy":2.333333341959118,"initial_expected_energy":4.648578598437283,"history":[4.648578598437283,4.2852538046484,3.952729651353698,5.576660165737421,4.336919960693828,3.992523134335327,3.8737763950535182,3.734915172537448,3.5582508895908127,3.616945775787317,3.4684500694842653,3.3885915813129106,3.265401965638179,3.6226207646873236,3.14208384149969,3.042831292612391,3.2002137206499253,2.9616003612000035,2.902518067534559,2.836839761099844,2.7223169831610985,2.622661133357367,2.664954063733436,2.8434090354682207,2.6236851333357203,2.6965076074070433,2.5285169309899977,2.508725055927562,2.4697675130142307,2.4430054612961696,2.4934962997833714,2.4323580887034457,2.405233845970023,2.364065403371502,2.5079488591653214,2.4759361950540377,2.429734972238337,2.3572961360928657,2.3557361505191325,2.3833167633609618,2.3496767929760876,2.3479431259185857,2.3452456514215947,2.341530666197957,2.354134223713976,2.340060121545503,2.339689247088827,2.3469561578051836,2.3382586333048603,2.3375492339702864,2.337148796270893,2.3380961288067206,2.33683907569627,2.336572269516467,2.336056828172621,2.3352988509209256,2.336251797356251,2.3375435468815713,2.335135172646745,2.3348823783769577,3.5079527816366083,3.5280191912859418,3.3466352344728545,6.892044289291643,2.5427062932220035,2.7706910011980455,2.7165776934260952,2.4025589741337314,2.3552900759039055,2.654625179054139,2.3852813080672934,2.350832086100878,2.4170180817313325,2.349238729460958,2.346791721888129,2.3424594644653625,2.3402558494483032,2.4193765818566297,2.335114286790791,2.3514380836970403,2.3343720692994845,2.3349750399950238,2.334890104220853,2.3338515638408537,2.333893618041403,2.3339784720816708,2.333877051374008,2.33380076831958,2.3337523971908984,2.333661314096527,2.333582007385854,2.333555938098485,2.3334629694640645,2.333358226861933,2.333339744786972,2.3339128722150333,2.333401799365876,2.333341041170046,2.3333953593378105,2.333335473590761,2.3333338840259845,2.333335324399813,2.3333380499709726,2.3333335031008327,2.333334445922045,2.333333469465993,2.3333340435616163,2.333333351835938,2.333333412544479,2.3333333532683564,2.3333333566775005,2.3333333499930062,2.333333360734912,2.333333347149109,2.3333333450871656,2.3333333447131874,2.333333341959118,2.3333333439211525,2.333333342334045],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":347,"010":79,"100":86},"circuit_evaluations":119,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":59}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07946218700089958}],"circuit_evaluations":359,"status":"feasible","feasible_probability":0.9358909722498845,"total_shots":1536,"runtime_seconds":0.26660640799673274},"direct_metrics":{"exact_objective":13,"optimal_count":1,"combinations":72,"optimal_probability":0.07025199439872334,"feasible_probability":0.7540549581904705,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.4166666666666667,"shots_for_95_percent":42,"hit_curve":[{"shots":8,"quantum":0.44163004258109356,"uniform":0.10585733481633375},{"shots":16,"quantum":0.6882229906520086,"uniform":0.20050889429825008},{"shots":32,"quantum":0.9027950964420225,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9905512067242843,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9999107203056328,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999999999999999,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.85722573273506e-17,"independent_samples":[{"shots":8,"best_objective":13},{"shots":16,"best_objective":13},{"shots":32,"best_objective":13},{"shots":64,"best_objective":13},{"shots":128,"best_objective":13},{"shots":512,"best_objective":13}]},"component_metrics":[{"exact_objective":8,"optimal_count":1,"combinations":8,"optimal_probability":0.2906106601120726,"feasible_probability":0.9358909722498845,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.625,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9358676337999794,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9958870396055864,"uniform":0.8819329129787512},{"shots":32,"quantum":0.999983083556794,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9999999997138339,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":8},{"shots":16,"best_objective":8},{"shots":32,"best_objective":8},{"shots":64,"best_objective":8},{"shots":128,"best_objective":8},{"shots":512,"best_objective":8}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999959816260099,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.497744949920335e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6666666654344117,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998475842052166,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999767694255,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999994,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.19373966119506483,"diagnostic_seconds":0.0108502320072148}
+{"instance":"n5-s0-r2.json","seed":5,"direct":{"status":"feasible","best":{"feasible":true,"objective":13,"raw_cost":13,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":12,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":18,"reserved_end":19,"changed":false}],"bits":[1,0,1,0,1,0,0,0,1,0,1,0,0],"qubo_energy":13},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7816420788760168,2.9391445769023328],"expected_energy":35.01717394103071,"initial_expected_energy":51.323380728738115,"history":[51.323380728738115,51.301655544560546,36.68083575680686,64.59703558037656,43.199346955246384,39.206864274690815,36.2128853356344,36.564217406414976,37.637698933453756,35.02383384908245,35.755651239251534,35.08191983545515,35.05242449162795,35.05238452503694,35.02372647926086,35.019228379085014,35.03374821387441,35.01820969290286,35.01796794832995,35.01818409869884,35.01794715649061,35.01811472573081,35.0178840787649,35.0178252908005,35.01792336528996,35.01779121872139,35.017737770178194,35.01770390603388,35.01854217135949,35.017558997725054,35.017580193610556,35.01754169805717,35.017633080494264,35.017581496125075,35.01753531684146,35.017517952413854,35.017510917755885,35.01747531070125,35.01744821683051,35.017391326719974,35.01728865019635,35.01789123699905,35.01768449049236,35.017264101378274,35.01735444326301,35.017268604606535,35.01724914906706,35.0172612437665,35.01723686573469,35.017237163213316,35.01723127210895,35.01722621800459,35.017218579856134,35.017237088918435,35.017206187741394,35.017198056421634,35.01721379771091,35.01719155185461,35.017185611767545,35.01717394103071,52.20951708067599,55.741287117172874,49.939924679452545,51.82336528310668,51.118739183625216,49.77393144303957,49.4083360818133,48.825399943021594,48.09629956016772,45.04179953630327,60.23387737865535,48.539694346744966,42.36176605285002,53.82661393037645,42.86597579604707,42.710365922301314,42.34145390492423,43.365383211750796,41.599301107533876,40.70013727905122,39.544622632204515,38.80446225097905,40.87624058206587,46.24588770830768,37.705590712197925,38.00901080482636,37.61752033892466,39.13056075658929,37.43406813818553,37.409720251386354,37.89478396914576,37.25790023265854,37.16416229851413,37.09646329481481,37.1831100930527,37.061818133458154,37.02763993252758,36.97455694112081,36.85364584586301,36.72780358674699,36.51554061297045,36.944413899431346,36.68744143249887,36.64709171909378,36.56594461384957,36.462016521142544,36.51211832650495,36.433048589774565,36.40920524791116,36.351576625094395,36.244149849100154,36.06073456363263,35.86173793818543,35.88963123343462,36.58417188878802,35.98852775426679,35.70446444503524,35.69237532549887,35.816573750193655,35.69776762332161],"feasible_probability":0.7654687965404858,"one_hot_probability":1.0,"sampled_feasible_fraction":0.732421875,"counts":{"0010100010011":7,"0010100010101":27,"0010100011001":1,"0010100100011":8,"0010100100101":20,"0010101000011":18,"0010101000101":8,"0010101001001":22,"0010110000011":2,"0010110000101":17,"0010110001001":17,"0011000010011":2,"0011000010101":21,"0011000011001":2,"0011000100011":2,"0011000100101":11,"0011000101001":1,"0011001000011":7,"0011001000101":1,"0011001001001":11,"0011010000011":2,"0011010000101":5,"0011010001001":5,"0100100010011":3,"0100100010101":27,"0100100011001":2,"0100100100011":6,"0100100100101":14,"0100101000011":10,"0100101000101":6,"0100101001001":11,"0100110000011":4,"0100110000101":10,"0100110001001":12,"0101000010101":18,"0101000100011":2,"0101000100101":14,"0101001000011":8,"0101001000101":4,"0101001001001":11,"0101010000011":3,"0101010000101":5,"0101010001001":7,"1000100010011":3,"1000100010101":18,"1000100100011":4,"1000100100101":20,"1000100101001":1,"1000101000011":5,"1000101000101":1,"1000101001001":6,"1000110000011":3,"1000110000101":7,"1000110001001":4,"1001000010101":12,"1001000011001":1,"1001000100011":2,"1001000100101":8,"1001001000011":7,"1001001000101":1,"1001001001001":1,"1001010000101":6,"1001010001001":8},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.30877960499492474},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":5,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[6,2,3],"max_component_qubits":6,"component_to_original":[[2,3,4,5,6,7],[8,9],[10,11,12]],"components":[{"qubits":6,"penalty":20,"objective_bound":19,"offset":40,"linear":[-12,-10,-20,-13,-15,-11],"quadratic":[[0,1,40],[0,4,20],[1,2,20],[1,3,20],[2,3,40],[2,4,40],[2,5,40],[3,4,40],[3,5,40],[4,5,40]],"domains":[[0,1],[2,3,4,5]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":9,"cost":8},{"index":1,"task":"t1","resource":"r2","start":8,"cost":10},{"index":2,"task":"t2","resource":"r2","start":7,"cost":0},{"index":3,"task":"t2","resource":"r2","start":10,"cost":7},{"index":4,"task":"t2","resource":"r0","start":9,"cost":5},{"index":5,"task":"t2","resource":"r1","start":13,"cost":9}],"conflicts":[{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource"]},{"i":1,"j":3,"reasons":["resource"]}]},{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-1],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":12,"cost":0},{"index":1,"task":"t3","resource":"r0","start":17,"cost":11}],"conflicts":[]},{"qubits":3,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1,-1],"quadratic":[[0,1,16],[0,2,16],[1,2,16]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r1","start":16,"cost":0},{"index":1,"task":"t4","resource":"r1","start":19,"cost":7},{"index":2,"task":"t4","resource":"r1","start":20,"cost":7}],"conflicts":[]}]},"best":{"feasible":true,"objective":13,"raw_cost":13,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":12,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":18,"reserved_end":19,"changed":false}],"bits":[1,0,1,0,1,0,0,0,1,0,1,0,0],"qubo_energy":13},"components":[{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false},{"variable":0,"task":"t1","group":"g1","resource":"r0","start":9,"end":10,"reserved_end":11,"changed":true}],"bits":[1,0,1,0,0,0],"qubo_energy":8},"seed":803261128,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.5300771022379083,2.9450715144357735],"expected_energy":14.760252520769432,"initial_expected_energy":22.277258736784162,"history":[22.277258736784162,22.098009940769106,14.783293027458377,29.152631764949078,17.55016754473136,15.387835711959612,17.09076911767774,14.868851660464717,15.043194190539353,14.929330084738279,14.765081327714634,14.790270062209776,14.764383189163723,14.771580234456023,14.765196128368673,14.765244988090128,14.763753874762994,14.763551625774213,14.763256148051656,14.763011377859238,14.762652165893103,14.762108548108662,14.76195724595635,14.76233697256723,14.764617211157699,14.761880410485245,14.76134064927875,14.761299971271779,14.761212612921877,14.761142356112238,14.761032074294713,14.761116395373254,14.760998149854224,14.760941456672686,14.760832722591749,14.76064939655102,14.760959143632753,14.760996568110462,14.760625622966586,14.760977292191871,14.760564936312697,14.760566123209891,14.760554801153775,14.760553582973555,14.760597852260393,14.760552355804009,14.760535790993199,14.760514554522317,14.760496138110765,14.760485504577677,14.760466401650625,14.76043517044708,14.76037349695049,14.76028087284728,14.761666151085425,14.761110615921915,14.760261129532012,14.76036311384851,14.760325143580763,14.760252520769432,22.54165192291522,22.8628843797269,22.42092255869835,23.505531503887557,22.557340563777025,22.938443675783112,21.39353086864275,21.793958846885424,21.593977549933832,21.552681237555056,21.172899488774515,21.118107093102008,21.149557784253965,21.17349294629918,21.12410611927585,21.117588587771337,21.123045055635146,21.117248677470116,21.113059139661786,21.108910213324833,21.10538815686736,21.10413276014385,21.09978774065696,21.096848143380267,21.08842432646894,21.10042195186226,21.094514216461995,21.087181185198506,21.09164161550981,21.08554984133394,21.084120589327796,21.08535204793153,21.08281964646485,21.083082463341974,21.0813081279933,21.080474427757736,21.082510610667384,21.07860209605016,21.07707531159283,21.07363570862436,21.066806640051734,21.05346718676951,21.059934029275873,21.098784281501857,21.06059162226877,21.052106850635667,21.055717638484964,21.05152589225918,21.049998487832863,21.04843522859691,21.052517371276593,21.04630243227487,21.046086577218748,21.044390078990588,21.04274164119633,21.039517695940315,21.033500284188964,21.044562276483543,21.036215362992444,21.032595239772686],"feasible_probability":0.93645975441279,"one_hot_probability":1.0,"sampled_feasible_fraction":0.9296875,"counts":{"000101":142,"000110":22,"001001":97,"001010":4,"010001":10,"010010":108,"100001":67,"100010":62},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11289621499599889},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t3","group":"g1","resource":"r0","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":3767054407,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7182658745567376,1.1778818359301526],"expected_energy":5.2434218172790475e-05,"initial_expected_energy":1.3990981558159543,"history":[1.3990981558159543,2.710048512211224,9.711771215092856,4.552910890338323,5.263403966768386,1.0611463210234695,0.44528965247071506,0.7086671539187909,0.5570292585667971,0.4884127820153272,0.35707057766351646,0.2758869080975762,0.36984842295079656,0.2868615118379456,0.26318209467117654,0.29303846742874573,0.24854361565965608,0.22490487196824116,0.1953854457995767,0.16357137715752024,0.12172651409503027,0.10162087231844456,0.0525919530964458,0.006971423943333645,0.17258700091713816,0.15436353181914744,0.00531986660075766,0.012644125365292408,0.01201442619145988,0.0019981148578253763,0.00976343412694062,0.003073124901822669,0.0028884437394864322,0.001443321531591565,0.0011958137271772659,0.003350000924909838,0.0007941393596828797,0.0008042453490222305,0.000766746843835085,0.0007626916821220955,0.0008484524362887713,0.0007594978227054755,0.0006872757863111156,0.0005932665584583461,0.0005194673510882388,0.0004938655961956175,0.0004192718990363006,0.00031565214788989253,0.00021327501026649213,7.469058468974128e-05,0.00044589710388151055,0.000270335574028298,6.116032363345255e-05,9.338258170564857e-05,6.217992198317802e-05,5.697304961336314e-05,5.645507381487178e-05,6.628013839803637e-05,5.64005551147345e-05,5.2434218172790475e-05,5.261984025687062,3.6627935695057983,8.122295280013475,3.766592770144126,4.274189492587883,4.228650609385728,2.841203370480045,3.24139779884172,3.4306314110474045,2.9313152050892257,2.587806243384157,2.314719355215899,2.634333776679423,2.1085312158983602,2.0161655226024755,1.8158218460519087,1.453736120720043,0.854792931364843,2.772183524771109,2.3328294427488565,0.9519926498002239,0.8312721673854357,1.1219660227905373,0.6639914372553554,0.5942671392902018,0.4743017290327299,0.2977917116388377,0.3475447722953445,0.6822325300272452,0.2985951740828576,0.2812467671448767,0.2804660239744408,0.32777415405411264,0.2804245851609967,0.26415533234386646,0.236836473554492,0.19789121311775693,0.20186455950943508,0.18448880649443616,0.17208851719289195,0.1497211593003873,0.12059740082761979,0.24821899937894681,0.10566925561684969,0.09049906112401089,0.07450683975021644,0.07072137462416854,0.040449422106959544,0.11441843959568858,0.031021485420499664,0.025331043552074623,0.054403823521785556,0.018718018586424124,0.017872554219588496,0.013059358214759596,0.010714074190111677,0.007563992933449942,0.004713156450733567,0.008214868593584427,0.01280000787256345],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.0849401009909343},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t4","group":"g0","resource":"r1","start":16,"end":18,"reserved_end":19,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":3210010690,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7941052002078797,2.7488382313228206],"expected_energy":2.333334452919189,"initial_expected_energy":6.180539997863139,"history":[6.180539997863139,5.360904140028321,4.155826947554421,4.551595977728321,3.588646966479524,3.1225293201911026,2.5305856065596597,5.273127865867334,2.468396630088711,3.620031317286324,2.43042216727159,2.442394318317991,2.505939879664849,2.4001786034721047,2.390527573989038,2.371783252731564,2.391968062572683,2.393563282454026,2.37298041196535,2.3658248710156586,2.3650203625078414,2.3707403541013603,2.365424021206793,2.3630974839794874,2.360876735660856,2.3648593637714104,2.3592701046403826,2.357771868884518,2.3552122483533795,2.350825317866513,2.3460139091013317,2.3393124933215206,2.3464274173739152,2.341650610305174,2.3397736234353017,2.3422111105183414,2.3384705553662846,2.3380922300437725,2.3391709710011703,2.337729841451343,2.3374107271102513,2.3368263230605586,2.3361826623813804,2.3353477017164703,2.3352862179632163,2.336926790721625,2.335316168224658,2.334778901507385,2.3344932931764895,2.3345705612689045,2.3343986037317506,2.334319678875988,2.3341785562831685,2.333962851300347,2.333763279958801,2.3335915533673006,2.3340465709714486,2.3338372120652533,2.3336633638363624,2.3335686910792175,3.082982274899621,3.4494226616868855,6.740143134765968,3.8802973512001007,4.943134500122816,2.525792058244936,2.4794833139423895,2.4578001271905165,2.5146612523027443,2.397417644665546,2.415366984228087,2.393697301229004,2.405960295010794,2.392838965406346,2.3890231288693444,2.383312479873607,2.3750280179001115,2.3721776447324143,2.363931580390566,2.352943948842519,2.344949125935176,2.3389922651249138,2.3348294196636843,2.3365010528304437,2.34527669350706,2.335406566561726,2.334792299029208,2.3345733802545077,2.3344593392996704,2.335088501870346,2.333814870967853,2.3340334588056804,2.3337904787883605,2.3339201477764018,2.333786449916883,2.3337476839872693,2.333692733053904,2.333619056755676,2.3336443455332407,2.3336039054316027,2.333635705018738,2.333585616736469,2.3335702462891295,2.3335428463685153,2.3334948958930144,2.333424766003024,2.333393697811139,2.33336357868143,2.333363166924989,2.3335299821420517,2.3333649802935312,2.333335638181513,2.3333450860601754,2.3333359181925735,2.3333445357076994,2.333334505371218,2.333335711869477,2.333334638595714,2.3333346412894693,2.333334452919189],"feasible_probability":0.9999999999999999,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":1.0,"counts":{"001":345,"010":86,"100":81},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08525325400114525}],"circuit_evaluations":360,"status":"feasible","feasible_probability":0.9364597544127898,"total_shots":1536,"runtime_seconds":0.28337015899887774},"direct_metrics":{"exact_objective":13,"optimal_count":1,"combinations":72,"optimal_probability":0.06686646042450059,"feasible_probability":0.765468796540486,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.4166666666666667,"shots_for_95_percent":44,"hit_curve":[{"shots":8,"quantum":0.425155479075339,"uniform":0.10585733481633375},{"shots":16,"quantum":0.669553776762897,"uniform":0.20050889429825008},{"shots":32,"quantum":0.8908052935483347,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9880765160829347,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9998578305312795,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999999999999996,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.469446951953614e-17,"independent_samples":[{"shots":8,"best_objective":13},{"shots":16,"best_objective":20},{"shots":32,"best_objective":13},{"shots":64,"best_objective":13},{"shots":128,"best_objective":13},{"shots":512,"best_objective":13}]},"component_metrics":[{"exact_objective":8,"optimal_count":1,"combinations":8,"optimal_probability":0.2897630340464502,"feasible_probability":0.9364597544127898,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.625,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9352520266257104,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9958076999439223,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999824246202398,"uniform":0.9860601629623169},{"shots":64,"quantum":0.999999999691106,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":8},{"shots":16,"best_objective":8},{"shots":32,"best_objective":8},{"shots":64,"best_objective":8},{"shots":128,"best_objective":8},{"shots":512,"best_objective":8}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999952332528934,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.8634724839594607e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.66666650672583,"feasible_probability":0.9999999999999999,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.999847583624663,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999767692486,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999994,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.1931743888681762,"diagnostic_seconds":0.010328825999749824}
+{"instance":"n5-s0-r2.json","seed":6,"direct":{"status":"feasible","best":{"feasible":true,"objective":13,"raw_cost":13,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":12,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":18,"reserved_end":19,"changed":false}],"bits":[1,0,1,0,1,0,0,0,1,0,1,0,0],"qubo_energy":13},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.6001522489123445,1.4081533711276348],"expected_energy":44.326043253800044,"initial_expected_energy":53.46157183942131,"history":[53.46157183942131,54.18325761727651,47.820318215170346,51.957821005339696,46.411812546735334,51.64338955637241,46.81694063293291,48.67133922223098,46.371903068658725,46.60264558452538,46.48844649165143,46.380481969447686,46.37327786635537,46.374062216761246,46.37125964196789,46.38280594063364,46.36795543801785,46.36557042427387,46.36210946824105,46.35325475739289,46.34159362773798,46.346473647871676,46.36433334019003,46.34634180305565,46.336196370110244,46.33326645801756,46.341296676243466,46.33104117197492,46.32919971262159,46.32492899839447,46.316729231053024,46.30038164876312,46.267810320229884,46.21273705681914,49.10122972193645,47.326837665001065,46.4084318004792,46.20821772678413,46.32683559092408,46.19929098875179,46.20422858146526,46.200107354067654,46.20086710030842,46.19743709440186,46.19755130592762,46.19786236755064,46.1966910506014,46.195546175624244,46.19610164274839,46.198608765311555,46.19446757077512,46.19352303560052,46.19186840113373,46.190271510502775,46.185803849651776,46.186239237642596,46.1848405998125,46.18557308488335,46.18541250663215,46.18396734705163,56.851209807246065,53.31578097986462,51.47743631579034,45.99652073473162,44.80527925968025,51.89872665799062,48.62476773778778,53.8762695209149,44.68701684852654,46.10516067534953,44.45571036868115,44.52720690823155,44.51318239418775,44.50035607817961,44.39174911153621,44.37322269075143,44.364560867380895,44.399300045860116,44.362466725677066,44.36055830290136,44.36555520017997,44.35804606605079,44.35685379925921,44.35520306345067,44.35223759795106,44.3521800138715,44.34565748410765,44.35443138425606,44.34978068657436,44.34491619457142,44.34539739275867,44.34491216586132,44.34417782834628,44.34304539599767,44.34052835384703,44.33609845617344,44.33106278422762,44.37343588505387,44.35867210894085,44.33051580058646,44.32902138497443,44.3333500404647,44.33015630166985,44.32942369164981,44.32843029857502,44.328177229209075,44.328677803978536,44.32804618960344,44.32792497050339,44.327706852395565,44.327243912134755,44.32641403414519,44.33153790292804,44.32934863731556,44.326221278619386,44.3269230760037,44.32624371659212,44.326083212850705,44.326043253800044,44.32656633357123],"feasible_probability":0.4531384606339553,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.46484375,"counts":{"0010100010011":29,"0010100010101":34,"0010100011001":8,"0010100100011":16,"0010100100101":9,"0010101000011":11,"0010101000101":5,"0010101001001":17,"0010110000011":31,"0010110000101":8,"0010110001001":27,"0011000010011":9,"0011000010101":5,"0011000100011":8,"0011000100101":2,"0011001000011":3,"0011001000101":1,"0011001001001":5,"0011010000011":5,"0011010000101":4,"0011010001001":8,"0100100010011":5,"0100100010101":14,"0100100011001":6,"0100100100011":7,"0100100100101":2,"0100101000011":2,"0100101000101":2,"0100101001001":4,"0100110000011":9,"0100110000101":2,"0100110001001":10,"0101000010011":2,"0101000010101":3,"0101000011001":5,"0101000100011":1,"0101000100101":1,"0101001001001":1,"0101010000011":4,"0101010000101":2,"0101010001001":1,"1000100010011":21,"1000100010101":18,"1000100011001":11,"1000100100011":15,"1000100100101":9,"1000100101001":1,"1000101000011":7,"1000101000101":3,"1000101001001":12,"1000110000011":28,"1000110000101":8,"1000110001001":16,"1001000010011":6,"1001000010101":5,"1001000011001":3,"1001000100011":4,"1001000100101":1,"1001001000011":1,"1001001000101":1,"1001001001001":5,"1001010000011":4,"1001010000101":1,"1001010001001":4},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.31471638299990445},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":5,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[6,2,3],"max_component_qubits":6,"component_to_original":[[2,3,4,5,6,7],[8,9],[10,11,12]],"components":[{"qubits":6,"penalty":20,"objective_bound":19,"offset":40,"linear":[-12,-10,-20,-13,-15,-11],"quadratic":[[0,1,40],[0,4,20],[1,2,20],[1,3,20],[2,3,40],[2,4,40],[2,5,40],[3,4,40],[3,5,40],[4,5,40]],"domains":[[0,1],[2,3,4,5]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":9,"cost":8},{"index":1,"task":"t1","resource":"r2","start":8,"cost":10},{"index":2,"task":"t2","resource":"r2","start":7,"cost":0},{"index":3,"task":"t2","resource":"r2","start":10,"cost":7},{"index":4,"task":"t2","resource":"r0","start":9,"cost":5},{"index":5,"task":"t2","resource":"r1","start":13,"cost":9}],"conflicts":[{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource"]},{"i":1,"j":3,"reasons":["resource"]}]},{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-1],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":12,"cost":0},{"index":1,"task":"t3","resource":"r0","start":17,"cost":11}],"conflicts":[]},{"qubits":3,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1,-1],"quadratic":[[0,1,16],[0,2,16],[1,2,16]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r1","start":16,"cost":0},{"index":1,"task":"t4","resource":"r1","start":19,"cost":7},{"index":2,"task":"t4","resource":"r1","start":20,"cost":7}],"conflicts":[]}]},"best":{"feasible":true,"objective":13,"raw_cost":13,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":12,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":18,"reserved_end":19,"changed":false}],"bits":[1,0,1,0,1,0,0,0,1,0,1,0,0],"qubo_energy":13},"components":[{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false},{"variable":0,"task":"t1","group":"g1","resource":"r0","start":9,"end":10,"reserved_end":11,"changed":true}],"bits":[1,0,1,0,0,0],"qubo_energy":8},"seed":3153149895,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.5774424469033062,-0.19015454605990373],"expected_energy":14.774053678287443,"initial_expected_energy":21.354351344182692,"history":[21.354351344182692,21.406807733673368,21.701264891775487,22.363904482188655,22.2368265150645,21.34420730318402,22.106033064428708,21.275807641103285,21.255701841024695,21.261022162245062,21.30244267081224,21.24456857710223,21.243495841737747,21.245858356036113,21.244165368711485,21.24157615113281,21.242052545585537,21.24043693099751,21.23861305430705,21.23596027770752,21.2291795691321,21.21903559482941,21.282734973307853,21.296794152145893,21.21496259738541,21.216877479701836,21.21666909200956,21.213400562964843,21.21754108324254,21.21134065093535,21.21148795429567,21.209661227976447,21.20804523787629,21.20505268662064,21.20270321145052,21.19537357154958,21.20415241900665,21.192807854052013,21.19892436332001,21.19184789664915,21.190094476022324,21.18764315706126,21.18376563393869,21.18124167422588,21.173570677455245,21.178113532117266,21.171790319398717,21.178674332935792,21.169722011157607,21.167884412267394,21.164585768322915,21.163997532701067,21.15685394226756,21.15724206999647,21.156868609834234,21.15818840187785,21.155046930082186,21.154396011473317,21.15659321094776,21.15244517045855,21.836672052002555,21.032074966477616,23.560792525698705,20.690616945625962,20.793465846662347,17.97514352816674,21.941094291895162,18.72341802558018,18.39924930380409,18.265144508542367,17.619805868699466,17.173414254763372,17.42534034425747,16.90607077042215,16.7166604854428,16.45835149350696,16.263280201813686,16.132195342920262,15.91817359720473,15.803738669296223,20.621875045741803,15.058190758848708,17.709874061972585,14.984135449422709,15.076037260162625,15.162284965394644,15.10712623711568,14.98719261241136,14.967807953464586,14.941695693578591,14.915901220842347,14.930413469537775,14.912022573202602,14.905341020370297,14.897802993576029,14.884875818444353,14.867823195474003,14.840043488145096,14.872771408702128,14.886512787442072,14.836090127596943,14.863291688847537,14.831826772341014,14.828669056718208,14.835473220366014,14.82567254730338,14.823443496160907,14.818773791769413,14.812088553781171,14.826686277198888,14.836566699730932,14.809567974577433,14.806905067969158,14.802305523100593,14.79511166578579,14.784208996634362,14.779537994336692,14.774053678287443,14.781193181719543,14.809868268758347],"feasible_probability":0.9364658542853994,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.93359375,"counts":{"000101":147,"000110":27,"001001":81,"010001":7,"010010":111,"100001":63,"100010":76},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1015535810001893},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t3","group":"g1","resource":"r0","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":4186225163,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.720439952910997,-0.39277781268867457],"expected_energy":0.00010850806983129976,"initial_expected_energy":6.783676401150927,"history":[6.783676401150927,6.64465282728228,9.359696551658244,0.743782746700199,7.888909220127411,2.6711269658946035,3.7096017244030968,0.6163488682293151,0.6640998565080413,0.7429196048861682,0.47238562989077226,0.4407839053181708,0.6553522398408809,0.37556975201661164,0.3276819328480567,0.2525154903428717,0.19591561579044559,0.1041445244132433,0.2507947051887759,0.3022711090297751,0.11831208923179057,0.06039793627699225,0.07358643901259286,0.05214925442053009,0.05382422552601073,0.049988791281257015,0.04702516996694541,0.04630609682314494,0.050232575565398105,0.04292435905932794,0.03672981573105049,0.02599177558961771,0.011480629681602635,0.04608080683125715,0.03638078354715863,0.009592213532165973,0.009863003541041483,0.008567676928737262,0.007893730618901586,0.00865911973362992,0.005859663174616785,0.005470479180413219,0.004227179362435193,0.003318812200754457,0.0022025866699145243,0.0013712530950425483,0.00039317523767901693,0.0005494267453182697,0.0031782308986873097,0.0019161946509206286,0.00017618102860193256,0.0009594593626848617,0.00032797145958646105,0.00015173162919458898,0.00024019449932890266,0.00014075338835831726,0.0001278052308114733,0.00013575216048506577,0.00010850806983129976,0.00011034836068474499,3.6486875567667143,5.44762572802008,7.793549983816616,3.980544260843799,4.500094201845196,3.9298338679773397,3.837372253913292,3.2934840442628843,2.7338226047981444,2.3244560129779344,1.4741922611818006,1.0362954138236633,0.8876651890343324,0.2523761847377981,0.8456225041748968,2.1920932178589636,0.3155102086463878,0.2630642620473161,0.4635123963505767,0.192948228111199,0.2366054233473864,0.24997461369496315,0.17836271973717366,0.1823264393186721,0.1756891225869635,0.16953584629460372,0.15744502877041713,0.13869499448489975,0.1121724199787125,0.06920399967318121,0.034835084876430986,0.10459354440731851,0.16435646494143735,0.029276026980542325,0.016592595432361926,0.026402332044336115,0.022169589894119438,0.016613309727342113,0.014509510508468968,0.011678819438672793,0.008493614850619516,0.004218020182004749,0.024095188661170254,0.005215116414722327,0.003995977913163339,0.006021413320754806,0.0030596456853922887,0.004565876601597731,0.0026830377493581815,0.0023153335191810516,0.001964382488862104,0.0013849828153842658,0.0013224631311278784,0.00038569549604452433,0.0033823891429386695,0.0013757191805057727,0.00031876641760281404,0.0006386681354860699,0.0003148483703322562,0.0002501229405525286],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07611555799667258},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t4","group":"g0","resource":"r1","start":16,"end":18,"reserved_end":19,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":103425314,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7922813053353834,2.748874722201345],"expected_energy":2.333340927310233,"initial_expected_energy":2.5102058572144728,"history":[2.5102058572144728,2.5411443050088196,6.272746929419421,4.855111535181871,4.157424849064149,2.4009780862709555,2.8470177975103517,2.408480530481568,2.3735269579938714,2.4127196044503147,2.3872111405757397,2.3758318907107676,2.3685792075505328,2.369844512674014,2.367019020644859,2.365931404632464,2.3659637129328,2.3642003427759857,2.362856433857142,2.3625708169761284,2.358704927718957,2.3559778681681207,2.3508518679596766,2.3509590090276022,2.3525603653513523,2.350666378538101,2.3532038698051134,2.350629845534807,2.3486136176744945,2.3466585040104913,2.3445367966852437,2.343125287812488,2.341241542442713,2.3393939207458727,2.33848334471238,2.3359092456676693,2.333564900122811,2.344076175897796,2.3434610617866487,2.3336013395873554,2.3341730751761274,2.3346304023024467,2.3333692303950304,2.333407731569438,2.33337525730915,2.3334176238010995,2.3333625806803564,2.3333548819229195,2.333351605242646,2.333359799152116,2.3333496140059284,2.333347824150411,2.333347167036859,2.3333430066625853,2.33334380048099,2.3333426118723803,2.3333453958052686,2.3333422942057034,2.333341504764152,2.333340927310233,5.50746687967275,5.582239612165116,2.5255383566276652,5.602192414434815,2.9203962880357968,2.544014607895998,2.5740577965051505,2.5694275606544954,2.5215831535688222,2.63271917738218,2.490234880340427,2.470706576502384,2.4569042148775226,2.47294310589476,2.4492674045798455,2.4415943210921904,2.430217550323655,2.411187485945634,2.3848302777750474,2.350638992265381,2.4137457743923845,2.403277253953198,2.353381734618895,2.351680544835677,2.3531828774946835,2.3493995369856973,2.348336993414358,2.3488559099388833,2.3474882291209456,2.3472905085672156,2.349117233361454,2.3459541748185937,2.344942551897436,2.343113124240411,2.344070705384417,2.342837677670217,2.3446784328660266,2.3416129011649205,2.3406339933567297,2.3391355046930657,2.3367605152675512,2.339032723967318,2.3449149156014006,2.336636961652204,2.3356764521690794,2.334441695662014,2.3422262272889194,2.3346512082446864,2.3343939765239305,2.335340843443752,2.3339473256589702,2.3342987827470845,2.3338693197850313,2.333951158765508,2.3338597385328983,2.333834507155644,2.3338123558959794,2.333802428267391,2.3337597060701407,2.3337204858884637],"feasible_probability":0.9999999999999999,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":1.0,"counts":{"001":331,"010":85,"100":96},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07990120501199272}],"circuit_evaluations":360,"status":"feasible","feasible_probability":0.9364658542853993,"total_shots":1536,"runtime_seconds":0.2578368169924943},"direct_metrics":{"exact_objective":13,"optimal_count":1,"combinations":72,"optimal_probability":0.05052639809599589,"feasible_probability":0.4531384606339553,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.4166666666666667,"shots_for_95_percent":58,"hit_curve":[{"shots":8,"quantum":0.3395146990841078,"uniform":0.10585733481633375},{"shots":16,"quantum":0.5637591672740434,"uniform":0.20050889429825008},{"shots":32,"quantum":0.8096939358625639,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9637836019525181,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9986883725124663,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999999999970404,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":7.979727989493313e-17,"independent_samples":[{"shots":8,"best_objective":13},{"shots":16,"best_objective":13},{"shots":32,"best_objective":13},{"shots":64,"best_objective":13},{"shots":128,"best_objective":13},{"shots":512,"best_objective":13}]},"component_metrics":[{"exact_objective":8,"optimal_count":1,"combinations":8,"optimal_probability":0.28594062534184295,"feasible_probability":0.9364658542853994,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.625,"shots_for_95_percent":9,"hit_curve":[{"shots":8,"quantum":0.9324112208437318,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9954317569321652,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999791311552731,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9999999995644914,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.942890293094024e-16,"independent_samples":[{"shots":8,"best_objective":8},{"shots":16,"best_objective":8},{"shots":32,"best_objective":8},{"shots":64,"best_objective":8},{"shots":128,"best_objective":8},{"shots":512,"best_objective":8}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999901356300154,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.7100043089738355e-19,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6666655818128238,"feasible_probability":0.9999999999999999,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998475802413064,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999767682172,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999994,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.19062489294442103,"diagnostic_seconds":0.010306825002771802}
+{"instance":"n5-s0-r2.json","seed":7,"direct":{"status":"feasible","best":{"feasible":true,"objective":13,"raw_cost":13,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":12,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":18,"reserved_end":19,"changed":false}],"bits":[1,0,1,0,1,0,0,0,1,0,1,0,0],"qubo_energy":13},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.8734490805037098,2.9386426680673154],"expected_energy":35.05941788582315,"initial_expected_energy":61.968869833909295,"history":[61.968869833909295,56.868829826026605,53.6801248947762,47.55988413593842,44.924542305220996,51.177605212741696,46.227447949465756,65.7890710712233,45.09405124774619,45.455447752553354,45.55245802689291,44.62158303359301,45.01678777071314,44.69574819068157,44.662336511586446,44.61217216913656,44.59691745736882,44.58562142062483,44.585772652794844,44.58124535884944,44.576959594858494,44.568676048423626,44.55372614404046,44.547466369544416,44.50955187293248,44.58619671976696,44.4992874033222,44.4864546881007,44.48143709974767,44.60073718775769,44.452861503892535,44.45285868607648,44.442731186147,44.42941970742087,44.420044563290105,44.41142798818672,44.40321952453291,44.42236863421666,44.40084745311743,44.395838186546904,44.38551499610282,44.36702263577895,44.3486714044502,44.55040305328184,44.454561235537135,44.34647082042123,44.340738697332306,44.35957253541035,44.34476339383996,44.34247755159604,44.33839535311638,44.33763706800797,44.339601809228846,44.337030748276725,44.33649790976259,44.335685100336576,44.33451936162278,44.332336917432,44.3309752543893,44.331334270968554,43.28997644904354,43.44509517097811,61.75172308777998,53.63483787389305,35.73018581548177,57.55204791920602,40.64921537634671,37.82692740097377,35.39402449806267,37.21020278323338,35.35331164980756,35.66927609560052,35.80423245521858,35.27554358660753,35.31775526394897,35.28159265030324,35.279967608122035,35.268362697656094,35.2796740666676,35.261865653633635,35.25587897979467,35.24438379160166,35.22373613402368,35.18697649146797,35.12397186123168,35.20088935106472,35.92057505048204,35.18161458245524,35.12293464322947,35.21215744437279,35.10629499828276,35.10670716927778,35.1043493357043,35.10371661141297,35.11207419575703,35.10192991809593,35.09903526753552,35.095660062088896,35.09277206858242,35.093309765738496,35.0912952041201,35.09060316227811,35.09212950041206,35.090277715301454,35.089594136715306,35.08828406738678,35.0868134097376,35.08414362526113,35.08182057902569,35.07695699876849,35.06788330632484,35.096188021477055,35.086290948330976,35.07255822791429,35.06682378104341,35.067416038635415,35.06670477774928,35.06559943801956,35.06347521198744,35.05941788582315],"feasible_probability":0.7617814700862292,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.7734375,"counts":{"0010100010011":3,"0010100010101":36,"0010100011001":4,"0010100100011":5,"0010100100101":19,"0010101000011":17,"0010101000101":5,"0010101001001":18,"0010110000101":21,"0010110001001":16,"0011000010011":5,"0011000010101":13,"0011000100011":1,"0011000100101":10,"0011001000011":7,"0011001000101":1,"0011001001001":4,"0011010000011":2,"0011010000101":6,"0011010001001":15,"0100100010011":7,"0100100010101":28,"0100100011001":4,"0100100100011":4,"0100100100101":15,"0100101000011":12,"0100101000101":5,"0100101001001":13,"0100110000011":1,"0100110000101":15,"0100110001001":19,"0101000010011":2,"0101000010101":22,"0101000011001":3,"0101000100011":2,"0101000100101":9,"0101001000011":4,"0101001000101":1,"0101001001001":6,"0101010000101":7,"0101010001001":11,"1000100010011":4,"1000100010101":20,"1000100011001":2,"1000100100011":3,"1000100100101":15,"1000101000011":3,"1000101000101":2,"1000101001001":6,"1000110000011":2,"1000110000101":9,"1000110001001":12,"1001000010101":12,"1001000011001":1,"1001000100011":1,"1001000100101":9,"1001001000011":3,"1001001001001":2,"1001010000101":5,"1001010001001":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.30369097799120937},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":5,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[6,2,3],"max_component_qubits":6,"component_to_original":[[2,3,4,5,6,7],[8,9],[10,11,12]],"components":[{"qubits":6,"penalty":20,"objective_bound":19,"offset":40,"linear":[-12,-10,-20,-13,-15,-11],"quadratic":[[0,1,40],[0,4,20],[1,2,20],[1,3,20],[2,3,40],[2,4,40],[2,5,40],[3,4,40],[3,5,40],[4,5,40]],"domains":[[0,1],[2,3,4,5]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":9,"cost":8},{"index":1,"task":"t1","resource":"r2","start":8,"cost":10},{"index":2,"task":"t2","resource":"r2","start":7,"cost":0},{"index":3,"task":"t2","resource":"r2","start":10,"cost":7},{"index":4,"task":"t2","resource":"r0","start":9,"cost":5},{"index":5,"task":"t2","resource":"r1","start":13,"cost":9}],"conflicts":[{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource"]},{"i":1,"j":3,"reasons":["resource"]}]},{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-1],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":12,"cost":0},{"index":1,"task":"t3","resource":"r0","start":17,"cost":11}],"conflicts":[]},{"qubits":3,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1,-1],"quadratic":[[0,1,16],[0,2,16],[1,2,16]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r1","start":16,"cost":0},{"index":1,"task":"t4","resource":"r1","start":19,"cost":7},{"index":2,"task":"t4","resource":"r1","start":20,"cost":7}],"conflicts":[]}]},"best":{"feasible":true,"objective":13,"raw_cost":13,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":12,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":18,"reserved_end":19,"changed":false}],"bits":[1,0,1,0,1,0,0,0,1,0,1,0,0],"qubo_energy":13},"components":[{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false},{"variable":0,"task":"t1","group":"g1","resource":"r0","start":9,"end":10,"reserved_end":11,"changed":true}],"bits":[1,0,1,0,0,0],"qubo_energy":8},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.5612563810928324,1.233920621111855],"expected_energy":18.998183779974823,"initial_expected_energy":20.292704210010953,"history":[20.292704210010953,20.347389775229143,22.735653174776147,22.127126369708485,22.250943346806938,20.297652900740662,19.17596775463177,20.924885552916823,19.33176500685826,19.072191759445033,19.065463736110196,19.091134300387314,19.106411569194947,19.083572368069724,19.068983068930912,19.072640552909863,19.05318314109629,19.037239156335986,19.034012968130924,19.03895699318217,19.032887932799767,19.032603300488184,19.037320801894314,19.029503778690568,19.027706850248713,19.025559402700722,19.021814619421065,19.029665435308917,19.022229864926388,19.02124774565155,19.022707405066097,19.023204281405334,19.018939666594125,19.019814025140235,19.018078685190964,19.017623099893243,19.018707125174455,19.01739633682663,19.016888856680552,19.01601822761422,19.016519112902415,19.015388074007916,19.01526972755226,19.016771645486322,19.015232625705135,19.014623162135628,19.01372945732492,19.01214327866349,19.01163948097367,19.00983584655483,19.0093508890384,19.006271991299258,19.00968489838715,19.005885956393264,19.006913752636883,19.005963359675484,19.005484125064655,19.00509971733112,19.005835802314003,19.004814277798456,20.11059439888379,20.14353637353575,22.80251983759869,22.160533764415053,22.15360360310649,20.130996204537038,19.10533506394937,21.154896405837516,19.24361222391415,19.05429840259015,19.234351838941095,19.036779332494163,19.270782164589875,19.01934657997488,19.059089125707978,19.022168001218322,19.02973241609111,19.016455375711825,19.01537861274342,19.01825623259583,19.01443663427245,19.013594267774373,19.012130666507602,19.01013734923466,19.006935433938626,19.005799074815915,19.00807922489898,19.020171253703417,19.005214975578927,19.002530685942197,19.002490185342314,19.003256176705047,19.00266805935584,19.00209265147133,19.00188652062388,19.00146297242599,19.001179806458076,19.000784722892426,19.00056703896579,18.999960009029294,19.00083594830603,18.99971728708578,19.000326367955232,18.99963222714529,18.999507624522764,18.999549603557533,18.999474461857865,18.99942675422127,18.999411340370784,18.999473434791227,18.99935411076315,18.999245000690678,18.999040350486055,18.99874794640609,18.998571815182224,18.998183779974823,18.99823745946326,18.999197305814693,18.99827709662047,18.99829077794749],"feasible_probability":0.678352808749191,"one_hot_probability":1.0,"sampled_feasible_fraction":0.697265625,"counts":{"000101":194,"000110":1,"001001":28,"001010":60,"010001":94,"010010":86,"100001":10,"100010":39},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10060896699724253},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t3","group":"g1","resource":"r0","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":3618983171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.6799590846275987,1.1796900923872191],"expected_energy":0.0027258689592139893,"initial_expected_energy":3.6786755167522043,"history":[3.6786755167522043,5.0888981571084875,8.456914465343665,3.53562860330791,1.3930830595179282,0.7933609199096103,9.041719031719808,8.580731417324369,1.9456177846969138,1.0230699063213289,1.1749022376400107,0.7128693625522677,0.5890247097463613,0.7075382544801037,0.5352506740221452,0.5235858895376385,0.4620185490201436,0.37642017307434306,0.2894504315102903,0.1826832133355454,0.25065065623299,0.32321023752213274,0.21374164147789845,0.14619629296046868,0.12494051436279253,0.167099623827054,0.112240613583519,0.10068210501681268,0.09796331726242985,0.06857456582405136,0.06844994324836419,0.05236835662314116,0.041346504352364734,0.028185302565943,0.02080974397938984,0.16600978025157298,0.007498728300255383,0.035040272316633175,0.013558680625326532,0.0084606081993422,0.0061661690037902745,0.005039190994553567,0.006492334508873036,0.00455605454162139,0.004569998832389923,0.004432252233018369,0.004232557312805357,0.0040581232578213635,0.004800035371574834,0.0039468354977286015,0.0036780319481897607,0.0034531605550445254,0.0035124567702665,0.00326908876517414,0.0031286142991881457,0.0031001971362246148,0.0035189779754062167,0.003106091269855121,0.002958983244621024,0.0027258689592139893,6.310086561665521,5.986879843685868,2.8380326882398834,7.065987759725437,3.7963224184834488,2.615134409149154,2.1159153364568515,1.9093598625954136,1.1135890080716508,2.936864899792627,0.8297342704229065,1.5502705766988425,0.8570892146090712,0.6949671180605825,0.7242102488285627,0.6463718538794818,0.6290125090459054,0.7177231044110448,0.592286089125749,0.5601599425832359,0.5057096238924992,0.4087468981139993,0.4758325433753633,0.41005071084194417,0.3846348633168249,0.37861848883624344,0.4752487212930411,0.3684000881167569,0.3329128680713782,0.3059210651522016,0.3203608246128869,0.2837102013339413,0.2634401156113281,0.2267141018367606,0.17525640889870212,0.1444668596121664,0.09653439763218634,0.04964816965441366,0.6539526333596092,0.03473939382917645,0.053919749065138266,0.04791773943596106,0.01718105458003033,0.014126529437215152,0.019048837456643652,0.013333468768413684,0.013647544505710452,0.01185283010335601,0.01204342028551249,0.012726536659781108,0.011927261579427549,0.01143790716453535,0.010635932790664705,0.009125788547529042,0.008282871341377042,0.005286919917254565,0.006148905337010207,0.005069121372512628,0.006104594443152918,0.005050461675601407],"feasible_probability":0.9999999999999999,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07291727399569936},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t4","group":"g0","resource":"r1","start":16,"end":18,"reserved_end":19,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":3831650445,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.791275308561425,2.748702364242535],"expected_energy":2.3333477449487168,"initial_expected_energy":4.860398290093003,"history":[4.860398290093003,5.199279214512871,5.027434643456385,4.85360004468556,4.6460112583622015,4.9256169042240066,5.291157256453415,4.530377824025152,5.039549778094164,4.425666525414778,4.192680497876149,3.912189979080197,4.429734015128411,3.6818487388747756,3.5126246219707813,3.937979992585416,3.3368347666196208,3.221758399838684,3.5730935792967324,3.1216574048356884,3.0455795982700766,2.9157462289303258,3.191359597583512,2.898917914316177,2.8110007108779094,2.68207502389086,2.5531658752774904,2.6482407397695624,2.8205262592380778,2.5928189190082462,2.501211413689125,2.483334633974728,2.575951181554409,2.460737261533768,2.4460710731974222,2.430901193471612,2.4078363361831037,2.432446560856081,2.45696056608955,2.399491055876419,2.390563761168237,2.4014400304335695,2.3841105176393036,2.377222353169394,2.381770213393639,2.3712171083932505,2.371084789059979,2.3732548853344477,2.3716883088776326,2.3689810898193264,2.366476138423197,2.3705180786342845,2.3647355259567306,2.3631083731485836,2.360431335214563,2.35535552093591,2.350359462129381,2.3478902220901468,2.3459429573088597,2.348356227606966,2.7967044869494027,2.4640134754138234,6.223980370061039,4.925870813141724,4.047847415114259,2.429078661715362,2.3990763791399976,2.4483061106250643,2.4560070761679733,2.3417302932420885,2.3744956611358963,2.337591029232941,2.339042991251472,2.3373611305015043,2.3379724555834267,2.3369351090591266,2.3371640067741595,2.33668981520289,2.336669702686918,2.3368486750914723,2.336675691309833,2.3366027828558775,2.3364816023035644,2.336326400568386,2.3361292301556054,2.3359350840983795,2.3355653269231036,2.334980170433978,2.334872725423157,2.3338446498649867,2.336759937961701,2.3349795151596906,2.3337646641249985,2.3340756426520857,2.333762058911412,2.333707894859817,2.3336326636945985,2.333582669272719,2.3335345834324235,2.333492314485169,2.3336026176096007,2.333487018173667,2.3334586018847947,2.3334118546092224,2.3333587608934154,2.3335016468467518,2.3334429035924895,2.333353962733942,2.333367479358217,2.3333559313084455,2.333352660905871,2.3333543110442596,2.3333521216620436,2.333351304782637,2.333351574703312,2.3333507567186427,2.333350252411821,2.3333494030901356,2.3333493504475493,2.3333477449487168],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":353,"010":86,"100":73},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08057052100775763}],"circuit_evaluations":360,"status":"feasible","feasible_probability":0.6783528087491909,"total_shots":1536,"runtime_seconds":0.25436477501352783},"direct_metrics":{"exact_objective":13,"optimal_count":1,"combinations":72,"optimal_probability":0.06839999419235189,"feasible_probability":0.7617814700862292,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.4166666666666667,"shots_for_95_percent":43,"hit_curve":[{"shots":8,"quantum":0.432669854722825,"uniform":0.10585733481633375},{"shots":16,"quantum":0.6781365062597795,"uniform":0.20050889429825008},{"shots":32,"quantum":0.896403891397339,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9892678462823856,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9998848208765815,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999999999999998,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.122502256758253e-17,"independent_samples":[{"shots":8,"best_objective":20},{"shots":16,"best_objective":13},{"shots":32,"best_objective":13},{"shots":64,"best_objective":13},{"shots":128,"best_objective":13},{"shots":512,"best_objective":13}]},"component_metrics":[{"exact_objective":8,"optimal_count":1,"combinations":8,"optimal_probability":0.3700412426753226,"feasible_probability":0.678352808749191,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.625,"shots_for_95_percent":7,"hit_curve":[{"shots":8,"quantum":0.9751974153238097,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9993848317933804,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999996215680775,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9999999999998568,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.885780586188048e-16,"independent_samples":[{"shots":8,"best_objective":8},{"shots":16,"best_objective":8},{"shots":32,"best_objective":8},{"shots":64,"best_objective":8},{"shots":128,"best_objective":8},{"shots":512,"best_objective":8}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9997521937309805,"feasible_probability":0.9999999999999999,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6666646078644691,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998475766785062,"uniform":0.9609815576893767},{"shots":16,"quantum":0.999999976767131,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999994,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.3306690738754696e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.24663226777079347,"diagnostic_seconds":0.011148414996569045}
+{"instance":"n5-s0-r2.json","seed":8,"direct":{"status":"feasible","best":{"feasible":true,"objective":13,"raw_cost":13,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":12,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":18,"reserved_end":19,"changed":false}],"bits":[1,0,1,0,1,0,0,0,1,0,1,0,0],"qubo_energy":13},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.5973800806456462,2.94109631560553],"expected_energy":35.23537296211447,"initial_expected_energy":47.95414434862456,"history":[47.95414434862456,47.42146910733365,54.95804187980849,53.007033520075254,51.64564438796974,50.56196330519266,47.36775176561276,46.60176715342617,46.60276438128862,46.596531982172834,46.606066194383025,46.620445390958906,46.554307700253574,46.49398388188054,46.48017187330906,46.496667365289554,46.50259612051153,46.487434851065665,46.47017391352275,46.471486897880474,46.46462402429559,46.45994875017759,46.450727664326976,46.43283002736568,46.39925214467997,46.36937044495306,46.85626665889409,46.82019173343099,46.371136784919855,46.33035342196975,46.43638954585478,46.33602531772243,46.32690751560907,46.32441798467502,46.32026916185475,46.31241635003414,46.30167585020428,46.35645146048632,46.29525082309492,46.30191494048927,46.303729934900396,46.29338225822181,46.293854459083235,46.29165712308461,46.28960308595175,46.29038145739783,46.28862226181156,46.28783008714208,46.28739481359918,46.28479816760685,46.283122550760496,46.28115626043656,46.277417020723604,46.273429041841155,46.2678382236583,46.27305203582446,46.27784030544698,46.26501308176505,46.264716727904435,46.26691956386936,53.4397012450302,55.8499021346243,49.940822718675236,39.13047018635989,50.75102244308058,65.1565558267502,46.93849748004848,47.5756899745829,43.23857030559866,39.8327279575976,37.67101464022684,37.34880359206038,38.26105977061836,37.13636628936335,37.0569928605894,36.837591679768735,36.904945260386846,36.794996163716455,36.894961863989835,36.77703181346858,36.748435375378456,36.71773948370841,36.67753280596666,36.614541927523334,36.55953066196389,36.442224750476804,36.226890056509085,36.94265272528243,36.602477540562184,36.364957692048684,36.19762064336559,36.19709564670109,36.16512867525668,36.107327618715495,36.01192756791151,35.82564659969178,35.56035186773423,36.51304837309666,36.38546031544456,35.52165387882624,35.508396272906154,35.479805050660374,35.438377067234285,35.5917566013132,35.38822799886248,35.48389295250053,35.44416925431453,35.37903494236866,35.403361532900036,35.353053237288435,35.34132099467235,35.327414339688154,35.316320733287185,35.290733247256654,35.25226378913672,35.90330499931376,35.30683070845114,35.311362164643796,35.24355953638065,35.23537296211447],"feasible_probability":0.76543211641661,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.7734375,"counts":{"0010100010011":2,"0010100010101":28,"0010100011001":3,"0010100100011":9,"0010100100101":26,"0010101000011":12,"0010101000101":5,"0010101001001":10,"0010110000011":3,"0010110000101":15,"0010110001001":11,"0011000010011":3,"0011000010101":15,"0011000011001":2,"0011000100011":2,"0011000100101":14,"0011001000011":7,"0011001000101":4,"0011001001001":8,"0011010000011":2,"0011010000101":3,"0011010001001":8,"0100100010011":4,"0100100010101":32,"0100100011001":1,"0100100100011":6,"0100100100101":23,"0100101000011":14,"0100101000101":2,"0100101001001":14,"0100110000011":1,"0100110000101":17,"0100110001001":19,"0101000010101":12,"0101000100011":2,"0101000100101":12,"0101001000011":7,"0101001000101":3,"0101001001001":12,"0101010000101":16,"0101010001001":10,"1000100010011":2,"1000100010101":22,"1000100100011":3,"1000100100101":16,"1000101000011":7,"1000101000101":1,"1000101001001":7,"1000110000101":11,"1000110001001":7,"1001000010011":1,"1001000010101":12,"1001000100011":1,"1001000100101":5,"1001001000011":4,"1001001000101":1,"1001001001001":4,"1001010000011":2,"1001010000101":1,"1001010001001":6},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.30756909200863447},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":5,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[6,2,3],"max_component_qubits":6,"component_to_original":[[2,3,4,5,6,7],[8,9],[10,11,12]],"components":[{"qubits":6,"penalty":20,"objective_bound":19,"offset":40,"linear":[-12,-10,-20,-13,-15,-11],"quadratic":[[0,1,40],[0,4,20],[1,2,20],[1,3,20],[2,3,40],[2,4,40],[2,5,40],[3,4,40],[3,5,40],[4,5,40]],"domains":[[0,1],[2,3,4,5]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":9,"cost":8},{"index":1,"task":"t1","resource":"r2","start":8,"cost":10},{"index":2,"task":"t2","resource":"r2","start":7,"cost":0},{"index":3,"task":"t2","resource":"r2","start":10,"cost":7},{"index":4,"task":"t2","resource":"r0","start":9,"cost":5},{"index":5,"task":"t2","resource":"r1","start":13,"cost":9}],"conflicts":[{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource"]},{"i":1,"j":3,"reasons":["resource"]}]},{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-1],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":12,"cost":0},{"index":1,"task":"t3","resource":"r0","start":17,"cost":11}],"conflicts":[]},{"qubits":3,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1,-1],"quadratic":[[0,1,16],[0,2,16],[1,2,16]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r1","start":16,"cost":0},{"index":1,"task":"t4","resource":"r1","start":19,"cost":7},{"index":2,"task":"t4","resource":"r1","start":20,"cost":7}],"conflicts":[]}]},"best":{"feasible":true,"objective":13,"raw_cost":13,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":12,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":18,"reserved_end":19,"changed":false}],"bits":[1,0,1,0,1,0,0,0,1,0,1,0,0],"qubo_energy":13},"components":[{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false},{"variable":0,"task":"t1","group":"g1","resource":"r0","start":9,"end":10,"reserved_end":11,"changed":true}],"bits":[1,0,1,0,0,0],"qubo_energy":8},"seed":3257320810,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.5982626071090307,1.234885692555528],"expected_energy":18.998120925274062,"initial_expected_energy":28.893523467317273,"history":[28.893523467317273,29.923357070748978,21.102251993441108,19.61234754355665,20.442342770886306,21.865794512042456,21.67168405919124,19.477353253345708,19.59723930916114,19.600749500763854,19.357855486914815,19.373397212927763,19.397140637725702,19.35140369715227,19.364332875563335,19.34738046390081,19.339671280983897,19.32506437243621,19.298070146375455,19.247246664603,19.21819811594116,19.191046576116534,19.240913002170657,19.36565719864057,19.213388556335318,19.133621880496815,19.12190283159468,19.106869940705515,19.115624589587156,19.10025850193494,19.106433480217643,19.096330370186248,19.094502171590555,19.09033831629573,19.082863413446653,19.068917171173283,19.07098585340369,19.077249763840396,19.069474161200418,19.070665536702627,19.06652407300904,19.06567191533621,19.070267547526562,19.0617969301271,19.058768385294318,19.052928553075994,19.048896914499878,19.038708242790673,19.050538556381433,19.034919181169663,19.044753506999264,19.03226975786736,19.03031831735219,19.02792043282377,19.024778513384792,19.021007106323538,19.01729465674132,19.01701105532222,19.011311260832553,19.00380525506077,21.256562001890316,21.34143865529278,22.163142136952327,21.266080094954226,21.643892759200305,21.17607208907841,21.123173190021724,21.241566364772453,21.336148274281463,20.627833926088506,19.55799703583869,19.74034708056898,19.583183747104282,19.808280147468096,19.176846202650644,19.23076446834477,19.231509342032027,19.30311094293697,19.0736362542561,19.042128981088588,19.036164402643006,19.063258545145306,19.03538973569777,19.0298351443791,19.02705589818228,19.02496587587762,19.023487647344226,19.021393969782935,19.017489072405965,19.01149905609258,19.061123051366504,19.04349493694924,19.012572674459438,19.01111371882466,19.013103268870037,19.012612472104205,19.0097395695393,19.012106649579366,19.00903398816199,19.00874052762963,19.007926737399146,19.007096172705502,19.00570960694764,19.004208021118185,19.003048465982413,19.00135070607244,18.998569870878402,19.010768902959043,19.02001265544542,19.005903265352465,18.998315199417313,18.99935850866775,18.998667956891037,18.998258053320413,18.99819535953964,18.998239829544524,18.99815758411101,18.99815320990219,18.99819061311732,18.998120925274062],"feasible_probability":0.6781535975737603,"one_hot_probability":1.0,"sampled_feasible_fraction":0.66796875,"counts":{"000101":202,"000110":3,"001001":23,"001010":67,"010001":100,"010010":74,"100001":10,"100010":33},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10376521199941635},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t3","group":"g1","resource":"r0","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":631391383,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7050712809401996,1.1776879170417696],"expected_energy":0.00017529595522329283,"initial_expected_energy":10.086455594484862,"history":[10.086455594484862,8.271400950294721,4.283422317183661,4.1079395150878035,5.48475686023587,4.897885625435332,4.163008296648221,4.2573784300421345,3.8283892624828146,3.3913200873807527,3.4856117325271305,3.8209482562244,3.464691904668817,3.1564389741656314,2.7394290616857533,2.9462210210274247,2.5029190362087728,2.770219475378515,2.2796727958534913,2.0742155900898998,1.6930235773866513,1.048619283436379,2.9583193840737603,2.4609394306524655,1.0964237485730055,0.9933285902658313,1.0897435077808553,0.8307388508324449,0.7482396148361583,0.6171125164182285,0.42612285925688803,0.48418300082173726,0.8077037823037065,0.3888181300023103,0.2947598311627556,0.1471233237985326,0.19774317158503663,0.458473247646219,0.2373303219371155,0.1422231533615076,0.16394169037454426,0.14382964895605016,0.134463455275527,0.12333543087472673,0.14020938068346292,0.1133576261480618,0.10400368148303124,0.08579870248789911,0.06858309564509944,0.05156692687506806,0.05352058631548007,0.09700013342266994,0.040696620084451386,0.038106654473946316,0.047040868167958313,0.03510921911308241,0.03266121370809861,0.030591722504348176,0.024272187405562775,0.022482585736453578,0.5156199756466324,0.6091617244321883,5.679298219663781,9.4615438497519,1.0552174941107317,0.5836575050677035,1.8630712651977643,0.3327176563345782,0.11728387612019847,0.08458339057210093,0.20093033019444342,0.05794496446211169,0.044550321327939846,0.08959924938972683,0.038478010064643194,0.0322373414171693,0.02831352797925305,0.04070515588971744,0.02520915461306014,0.022953753551383318,0.020756142539850517,0.01796471145523245,0.014214463029196892,0.012201512493795589,0.021390493829882697,0.01015485158445883,0.009160062427152147,0.007660243962096612,0.005255987103259124,0.004832810992521828,0.0014430962703869841,0.015081200142424768,0.004812449404874022,0.0012179372464361596,0.002820647480757102,0.0014167334696953077,0.0014056640077692213,0.0012915868471751288,0.0011819714500607,0.0011233361936060584,0.0010775588547441116,0.0011902190642510782,0.0010285397479177806,0.0009836829353465977,0.0009082673878474124,0.0009429162804655053,0.000833706379174035,0.000832688267604339,0.000894701844754291,0.0007774031350906769,0.0006850983516883907,0.0005571110037071467,0.0004173005844128807,0.000210461848976563,0.00248100595602984,0.0007426981210132168,0.0004017600410689038,0.0001870458464659714,0.00020778733566632185,0.00017529595522329283],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.0786116410017712},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t4","group":"g0","resource":"r1","start":16,"end":18,"reserved_end":19,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":1558974550,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7985716435969923,2.748784956091047],"expected_energy":2.3333437330559894,"initial_expected_energy":2.4725037047815057,"history":[2.4725037047815057,2.805270286845394,4.916712435234876,6.221292179703239,2.857810656385876,3.019459290916025,2.440554975339025,2.358056801409672,2.3581668258278317,2.3587564162030246,2.363753548983726,2.3504266850067173,2.347714588851026,2.3459456877482925,2.350618570377577,2.3446740481035184,2.343775307885791,2.3428477077252206,2.341450281510843,2.340315358726369,2.3366585920995027,2.342839332200208,2.3427292119742997,2.3379183918003905,2.3369630562474555,2.3367880933121628,2.3364661678641148,2.336399001089802,2.3368530314587463,2.3363475377888436,2.336168494298561,2.3359075193064847,2.335675328822616,2.336675548899481,2.33539599137948,2.3351879236170587,2.334808624905312,2.33477477546377,2.334122124443396,2.3349226694801217,2.3345913883035863,2.3342073183126946,2.3341105901963743,2.3340387469572237,2.3339091146726867,2.3336986094865786,2.33370345279572,2.3339730424553617,2.3337730210584997,2.3336759215296885,2.3336821471313556,2.333673249417842,2.3336552569958062,2.333622534343589,2.3335619647547303,2.3335340378569995,2.3334696305268245,2.3336874813291537,2.333595887134369,2.3334898633634444,4.133316357625977,4.093188792916148,6.958365858699368,2.852652449216975,6.746119050514189,2.40334935257675,2.5876990766557855,2.400820783478618,2.6474761459067806,2.379049293328668,2.361806309418591,2.348853983208649,2.376899472106289,2.3484013889995907,2.3451115814487893,2.339775628314162,2.334669270076217,2.3822862721739755,2.340895280110126,2.33935256790733,2.3343666481891314,2.3339746104855332,2.334059278781104,2.33413249308935,2.333993008354518,2.3339165475853725,2.3338609071021317,2.333774477830399,2.333668913937763,2.3334839273613373,2.3336777217152713,2.3338842920116747,2.3335667079295725,2.333499404218348,2.3335013336215056,2.3334763411408366,2.3334810726114146,2.3334654680580913,2.333460995679199,2.333475617637288,2.3334496200809554,2.3334396552504444,2.3334210633602206,2.3334036405180294,2.3333837105427815,2.333387817946237,2.3334287591952965,2.3333840837365933,2.3333729783028687,2.33336971957032,2.3333639007735107,2.333359002830271,2.3333549582580324,2.333346312202914,2.333364656512552,2.3333550101134852,2.3333508861217758,2.3333503531147812,2.333345053044802,2.3333437330559894],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":318,"010":94,"100":100},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07907169399550185}],"circuit_evaluations":360,"status":"feasible","feasible_probability":0.6781535975737603,"total_shots":1536,"runtime_seconds":0.2617058100004215},"direct_metrics":{"exact_objective":13,"optimal_count":1,"combinations":72,"optimal_probability":0.06283283077697426,"feasible_probability":0.7654321164166099,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.4166666666666667,"shots_for_95_percent":47,"hit_curve":[{"shots":8,"quantum":0.4049731981582403,"uniform":0.10585733481633375},{"shots":16,"quantum":0.6459431050899672,"uniform":0.20050889429825008},{"shots":32,"quantum":0.874643715166666,"uniform":0.3608139719037934},{"shots":64,"quantum":0.984285801852784,"uniform":0.5914412214865954},{"shots":128,"quantum":0.99975306397659,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999999999999963,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":6.938893903907228e-17,"independent_samples":[{"shots":8,"best_objective":13},{"shots":16,"best_objective":13},{"shots":32,"best_objective":13},{"shots":64,"best_objective":13},{"shots":128,"best_objective":13},{"shots":512,"best_objective":13}]},"component_metrics":[{"exact_objective":8,"optimal_count":1,"combinations":8,"optimal_probability":0.3711572622101304,"feasible_probability":0.6781535975737603,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.625,"shots_for_95_percent":7,"hit_curve":[{"shots":8,"quantum":0.9755467606633343,"uniform":0.6563910841941833},{"shots":16,"quantum":0.9994020390859437,"uniform":0.8819329129787512},{"shots":32,"quantum":0.9999996424427453,"uniform":0.9860601629623169},{"shots":64,"quantum":0.9999999999998721,"uniform":0.9998056809433629},{"shots":128,"quantum":1.0,"uniform":0.9999999622401042},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":8},{"shots":16,"best_objective":8},{"shots":32,"best_objective":8},{"shots":64,"best_objective":8},{"shots":128,"best_objective":8},{"shots":512,"best_objective":8}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999840640040706,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.0328790734103208e-20,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6666651809920016,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998475787750727,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999767677702,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999994,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.24743368022285328,"diagnostic_seconds":0.009288348999689333}
+{"instance":"n5-s0-r2.json","seed":9,"direct":{"status":"feasible","best":{"feasible":true,"objective":13,"raw_cost":13,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":12,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":18,"reserved_end":19,"changed":false}],"bits":[1,0,1,0,1,0,0,0,1,0,1,0,0],"qubo_energy":13},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.0296469194472526,2.9334179312672437],"expected_energy":35.36043148095783,"initial_expected_energy":56.41418592546049,"history":[56.41418592546049,57.62821830200909,50.96477781826927,50.961997638613404,51.82031820998914,49.20774232384802,43.31158998737543,50.73217425631583,52.62114009318628,42.28715302773717,51.80613764266947,61.42008989534796,45.188391380002145,37.965834063214594,51.07280735186189,40.73797044599679,38.4070778973499,37.381892961584356,38.293703149129634,37.21506500648607,37.35132522191386,37.204356873170205,37.12765587912969,36.99866987586201,37.25802256366374,36.94442147985555,36.8621501467146,36.69080058109164,36.39309806136016,35.92008858406464,39.748353323745434,40.3837239397086,36.4267716520392,36.214172093481466,35.958086918792986,35.90492042166234,35.88410484945568,35.86594956949013,35.839074464246124,35.92747301846567,35.79262985963616,35.77829524353709,35.86723089896424,35.75098853121683,35.72989537167939,35.694276393760916,35.61874003749932,35.483523285695455,36.75274199371792,35.90267357970409,35.54538303041068,35.516931075751415,35.510282243832464,35.46893097314971,35.45448398408334,35.44367343751935,35.40743283612954,35.406157758232936,35.38090912083003,35.36043148095783,50.888031150879456,50.854898754038416,50.37414149612963,66.03413765096249,46.68242972908811,46.72495689545716,47.558712719748215,45.802391367854696,46.97371898147874,45.83244998448076,45.8866927089767,46.196380116195286,45.83305086684287,45.81146456342883,45.79809465360122,45.82792407960923,45.79682266840213,45.797114209651,45.795478287944036,45.79456051874172,45.797593948643325,45.79363399745904,45.79543390924772,45.795047121173326,45.793919141034806,45.793041369784945,45.792960409029845,45.79264483331786,45.79238471534042,45.79245105655397,45.79214015303026,45.79226490702651,45.79220865227032,45.79204106224708,45.79200397953534,45.79215497312343,45.79186360263964,45.79160710004854,45.79112427698024,45.790177983454136,45.79116247641227,45.79102005601955,45.79063157909074,45.79035501686704,45.79000174522733,45.79025374496655,45.78987453265742,45.789761926418244,45.78950680893573,45.789029451256134,45.788084709477985,45.786114371071136,45.78242223614359,45.79167346388716,45.82096753644197,45.781423331324646,45.78951835977513,45.783483100936145,45.78160065020044,45.78133142785129],"feasible_probability":0.7490334390577262,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.744140625,"counts":{"0010100010101":27,"0010100011001":3,"0010100100011":5,"0010100100101":30,"0010101000011":17,"0010101000101":5,"0010101001001":16,"0010110000011":3,"0010110000101":18,"0010110001001":12,"0011000010011":3,"0011000010101":21,"0011000011001":3,"0011000100011":3,"0011000100101":8,"0011000101001":2,"0011001000011":12,"0011001000101":1,"0011001001001":12,"0011010000011":1,"0011010000101":1,"0011010001001":7,"0100100010011":1,"0100100010101":38,"0100100011001":5,"0100100100011":1,"0100100100101":30,"0100100101001":2,"0100101000011":13,"0100101000101":7,"0100101001001":13,"0100110000011":6,"0100110000101":10,"0100110001001":18,"0101000010011":1,"0101000010101":5,"0101000011001":1,"0101000100011":1,"0101000100101":6,"0101000101001":2,"0101001000011":5,"0101001000101":1,"0101001001001":4,"0101010000101":4,"0101010001001":8,"1000100010011":2,"1000100010101":32,"1000100011001":1,"1000100100101":8,"1000100101001":1,"1000101000011":9,"1000101000101":2,"1000101001001":9,"1000110000011":1,"1000110000101":6,"1000110001001":10,"1001000010011":1,"1001000010101":15,"1001000011001":2,"1001000100011":2,"1001000100101":5,"1001001000011":2,"1001001000101":4,"1001001001001":5,"1001010000101":1,"1001010001001":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.30218453500128817},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":5,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[6,2,3],"max_component_qubits":6,"component_to_original":[[2,3,4,5,6,7],[8,9],[10,11,12]],"components":[{"qubits":6,"penalty":20,"objective_bound":19,"offset":40,"linear":[-12,-10,-20,-13,-15,-11],"quadratic":[[0,1,40],[0,4,20],[1,2,20],[1,3,20],[2,3,40],[2,4,40],[2,5,40],[3,4,40],[3,5,40],[4,5,40]],"domains":[[0,1],[2,3,4,5]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r0","start":9,"cost":8},{"index":1,"task":"t1","resource":"r2","start":8,"cost":10},{"index":2,"task":"t2","resource":"r2","start":7,"cost":0},{"index":3,"task":"t2","resource":"r2","start":10,"cost":7},{"index":4,"task":"t2","resource":"r0","start":9,"cost":5},{"index":5,"task":"t2","resource":"r1","start":13,"cost":9}],"conflicts":[{"i":0,"j":4,"reasons":["resource"]},{"i":1,"j":2,"reasons":["resource"]},{"i":1,"j":3,"reasons":["resource"]}]},{"qubits":2,"penalty":12,"objective_bound":11,"offset":12,"linear":[-12,-1],"quadratic":[[0,1,24]],"domains":[[0,1]],"pruned":[],"variables":[{"index":0,"task":"t3","resource":"r0","start":12,"cost":0},{"index":1,"task":"t3","resource":"r0","start":17,"cost":11}],"conflicts":[]},{"qubits":3,"penalty":8,"objective_bound":7,"offset":8,"linear":[-8,-1,-1],"quadratic":[[0,1,16],[0,2,16],[1,2,16]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t4","resource":"r1","start":16,"cost":0},{"index":1,"task":"t4","resource":"r1","start":19,"cost":7},{"index":2,"task":"t4","resource":"r1","start":20,"cost":7}],"conflicts":[]}]},"best":{"feasible":true,"objective":13,"raw_cost":13,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false},{"variable":2,"task":"t1","group":"g1","resource":"r0","start":9,"end":10,"reserved_end":11,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":12,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":18,"reserved_end":19,"changed":false}],"bits":[1,0,1,0,1,0,0,0,1,0,1,0,0],"qubo_energy":13},"components":[{"status":"feasible","best":{"feasible":true,"objective":8,"raw_cost":8,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t2","group":"g0","resource":"r2","start":7,"end":9,"reserved_end":11,"changed":false},{"variable":0,"task":"t1","group":"g1","resource":"r0","start":9,"end":10,"reserved_end":11,"changed":true}],"bits":[1,0,1,0,0,0],"qubo_energy":8},"seed":747784396,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.8694295705413886,2.1311887564739216],"expected_energy":18.9348317077824,"initial_expected_energy":20.955097296986146,"history":[20.955097296986146,21.35438781170269,21.575003140620836,21.544215119253884,22.091361261499443,19.75587833505136,21.219407927643594,19.728619520201143,20.971414390454967,19.53823320085469,19.32833633040902,19.361527418618962,19.355481872527363,19.340647893106322,19.32387800548604,19.316757054578115,19.314222568384686,19.307160842698718,19.300341628390427,19.287689401160808,19.278490968017927,19.246666334596988,19.23823541410495,19.20850673137147,19.200946684715426,19.15136753406628,19.216009823702755,19.142465024943498,19.18270757516043,19.136108485802694,19.12630126023373,19.11257483656496,19.142052889266623,19.10313454032412,19.0990001211591,19.114552233932983,19.09408617071646,19.09004224929651,19.08262034567337,19.068634479243414,19.08772381273554,19.079274145706123,19.071330285410305,19.070687561742112,19.066398047185295,19.067785894600977,19.063210274373468,19.06168763100043,19.066618013512972,19.0581403849621,19.055256055760577,19.049187522185804,19.038415909882865,19.068960138591677,19.064058973255626,19.038438743815846,19.033674572864616,19.025472110131474,19.03548997872806,19.03535959600441,21.347607262012477,20.609175954753944,22.383773166671514,21.74961662000983,19.94706399838768,24.438842601451093,20.352682222312563,20.001808566971903,20.665127875430166,19.891007280855092,19.85166270778818,19.94497979598033,19.80834244869903,19.77863533086387,19.747196636980068,19.7013916642934,19.668753608805872,19.487714879698125,19.66521210582986,19.746325074722215,19.484461737516583,19.43621079820374,19.377448217432757,19.33297720176394,19.591154325384885,19.325635679415996,19.287472322281715,19.222222446663757,19.141511463067552,19.144361178647443,19.232354168673716,19.163854937990845,19.124831195631202,19.10635617977629,19.120585443309174,19.09584497306991,19.10193701016477,19.0936445702267,19.090297491575676,19.089671194146767,19.084631353026225,19.07602614721653,19.06092125030809,19.099202352770124,19.05739915171062,19.046653273875712,19.028553479857955,19.003704512614554,18.979855935726548,18.957581938087994,19.038086160481658,18.9735175654258,18.979756841531177,18.96439282934707,18.95449617867437,18.949095021459613,18.942721071327185,18.937594791667955,18.943245102943806,18.9348317077824],"feasible_probability":0.817981495591658,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.818359375,"counts":{"000101":23,"000110":5,"001001":136,"001010":64,"010001":24,"010010":134,"100001":122,"100010":4},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1025606329931179},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t3","group":"g1","resource":"r0","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,0],"qubo_energy":0},"seed":4053640108,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[5.134274568894034,1.9636660146136269],"expected_energy":9.931338612537815e-05,"initial_expected_energy":9.446469621194362,"history":[9.446469621194362,7.999462786376071,2.9627750581399894,5.007915699413708,4.39862688188634,3.306871078659565,2.33107247368029,2.6332459525924365,2.1318647369970445,2.0019384660229913,2.123214727432561,1.8035006015672508,1.7215112317136572,1.946139619344878,1.5326090714156324,1.1967522748813915,0.6691222706294541,2.811347382257718,2.3653589161898396,0.7505517820155071,0.6357527661558566,0.7363215043800657,0.7288871454056832,0.5527364180862824,0.720275196380025,0.49638998471854817,0.45358828000687135,0.4023171512227163,0.32339062786413747,0.28261510152111874,0.1320062616372721,0.9445722239360518,0.3316568832380905,0.28746500662720664,0.1554158452232651,0.10729106499655496,0.09358079780230483,0.14562472688125397,0.07993848464635996,0.07166103698841673,0.06153664134982521,0.044127481632329144,0.05981754117054584,0.057874979812046194,0.04493312692591629,0.04754038314713214,0.04488977998188978,0.04095681155151279,0.035030329269147606,0.02534160460278555,0.028653039137856207,0.03979451246700215,0.02347196322113409,0.01870598967624359,0.01097678838052444,0.006403208659664773,0.03384517802725083,0.041551934985978166,0.006043954267681234,0.001301491184300001,7.315987994987141,5.390217595374422,5.623952739384763,3.1834636623743675,0.08780346203740617,6.039809670236472,9.866736003429217,7.623110491194329,0.08923104770705251,7.565154617336999,2.486322985874799,0.7496304479221125,0.11205621141494772,0.1675308976775054,0.17216533986857985,0.1116609346827593,0.08909408261768606,0.08579910162938861,0.08254011304982442,0.07890848871257393,0.08780540179207826,0.07366153254372375,0.0692493030047777,0.0617472343246126,0.04762504254321924,0.03052560728537123,0.029562839537650706,0.0106735466393232,0.020724403148188204,0.034464354625239495,0.013076360207351706,0.009659464654932802,0.008604742040726652,0.008526672585263401,0.012752258079583275,0.006169909283191831,0.0055944284344022505,0.004427588713801038,0.003505118079870022,0.0043379494829064395,0.003477860831145108,0.005159947964500384,0.0023856342389956624,0.0017416159955746463,0.0011510073572579323,0.0005498136850238308,0.001760424633875571,0.0024811172989320242,0.0003182010859907889,0.00038945523713445745,0.0003582185525132584,0.0003048617441757664,0.00026232814530586704,0.000215007081767307,0.0001894687603012817,0.0002839137166020986,0.00016492989515712764,0.00014888368446513178,0.00013064674036897074,9.931338612537815e-05],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"01":512},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07268047500110697},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t4","group":"g0","resource":"r1","start":16,"end":18,"reserved_end":19,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":1988026542,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.7773930744345587,2.7489504034288754],"expected_energy":2.333616485362707,"initial_expected_energy":5.189399332595484,"history":[5.189399332595484,5.219960278134106,2.5104670035026073,5.935990145475669,2.7518688634444093,2.451967953430376,2.413851088580393,2.857464370953009,2.380483693523014,2.4068400926009854,2.4189287051000004,2.380506084244075,2.3844831471400973,2.381616922222392,2.378147193038789,2.3742450011656224,2.3672935188768482,2.3724995772288735,2.367030476205425,2.3734441419334082,2.3676093806898826,2.364349611332342,2.361237085358999,2.3642208576526675,2.359693096683531,2.358305211184655,2.3553988129721435,2.350150534202819,2.356996793739983,2.3542146380364213,2.3498617288594046,2.351949822072786,2.3500360435351015,2.3483071940372153,2.3472174204928855,2.3509330605306795,2.345976875673182,2.344888626031328,2.3430143640612844,2.3430836491373883,2.3425645978938885,2.3452423841776593,2.3432160116224483,2.341700453020387,2.3409258903787062,2.340907104232829,2.3398852939914243,2.339198139002497,2.338532778882856,2.337949130984517,2.33672814110881,2.337083080807255,2.3364431671346275,2.3372625847780637,2.3359070919371447,2.33545083310912,2.3354627564158816,2.3354968165668812,2.335343629289574,2.3353877235180605,4.7678495666711544,4.770481533850539,2.5854939753784576,6.297384018945182,2.6005726812236736,2.43792381014661,2.4415190428075872,2.4531137198919235,2.4327664681937193,2.4566298109432823,2.462088237532656,2.4176083199823566,2.3924949151859454,2.355183683039706,2.5908829794318673,2.4848479595172295,2.417055760109262,2.3719979341882222,2.3609197826000465,2.359216620325242,2.350465716303936,2.3492710544405067,2.3459859236302947,2.343867944733616,2.34159489237768,2.338230699102245,2.377397079885495,2.3443863586175087,2.342244559554968,2.337594132243507,2.337164907157253,2.3378812559900464,2.3368681816103534,2.3366078089104603,2.3365987860506197,2.33620310579228,2.3357086273003222,2.3354012656203946,2.3362922581325205,2.3351739942239336,2.3350129856801027,2.334819100556481,2.3344790227572654,2.3339283052891533,2.338764806884427,2.3357417728419874,2.3342603210846553,2.3338792525181127,2.3340125703604,2.3338410466563566,2.3337908227685036,2.3337034036182107,2.3337615821655397,2.3336966966541186,2.333784657307258,2.3337031690610486,2.3336676120541493,2.333632674615515,2.3336606839792235,2.333616485362707],"feasible_probability":1.0000000000000002,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":1.0,"counts":{"001":363,"010":82,"100":67},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.07754320499952883}],"circuit_evaluations":360,"status":"feasible","feasible_probability":0.8179814955916582,"total_shots":1536,"runtime_seconds":0.25303869099298026},"direct_metrics":{"exact_objective":13,"optimal_count":1,"combinations":72,"optimal_probability":0.0717826877178795,"feasible_probability":0.7490334390577261,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.4166666666666667,"shots_for_95_percent":41,"hit_curve":[{"shots":8,"quantum":0.4489419972045809,"uniform":0.10585733481633375},{"shots":16,"quantum":0.6963350775551238,"uniform":0.20050889429825008},{"shots":32,"quantum":0.9077876148765474,"uniform":0.3608139719037934},{"shots":64,"quantum":0.991496876029844,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9999276968827482,"uniform":0.8330797244996347},{"shots":512,"quantum":1.0,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.898059818321144e-17,"independent_samples":[{"shots":8,"best_objective":20},{"shots":16,"best_objective":13},{"shots":32,"best_objective":13},{"shots":64,"best_objective":13},{"shots":128,"best_objective":13},{"shots":512,"best_objective":13}]},"component_metrics":[{"exact_objective":8,"optimal_count":1,"combinations":8,"optimal_probability":0.050022576619625114,"feasible_probability":0.817981495591658,"uniform_optimal_probability":0.125,"uniform_feasible_probability":0.625,"shots_for_95_percent":59,"hit_curve":[{"shots":8,"quantum":0.33670568698445297,"uniform":0.6563910841941833},{"shots":16,"quantum":0.5600406543212335,"uniform":0.8819329129787512},{"shots":32,"quantum":0.8064357741499116,"uniform":0.9860601629623169},{"shots":64,"quantum":0.962532890471056,"uniform":0.9998056809433629},{"shots":128,"quantum":0.9985962157035461,"uniform":0.9999999622401042},{"shots":512,"quantum":0.9999999999961167,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.942890293094024e-16,"independent_samples":[{"shots":8,"best_objective":15},{"shots":16,"best_objective":15},{"shots":32,"best_objective":8},{"shots":64,"best_objective":8},{"shots":128,"best_objective":8},{"shots":512,"best_objective":8}]},{"exact_objective":0,"optimal_count":1,"combinations":2,"optimal_probability":0.9999909715103522,"feasible_probability":1.0,"uniform_optimal_probability":0.5,"uniform_feasible_probability":1.0,"shots_for_95_percent":1,"hit_curve":[{"shots":8,"quantum":1.0,"uniform":0.99609375},{"shots":16,"quantum":1.0,"uniform":0.9999847412109375},{"shots":32,"quantum":1.0,"uniform":0.9999999997671694},{"shots":64,"quantum":1.0,"uniform":1.0},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.2332799712022613e-18,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6666262163767562,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9998474361805537,"uniform":0.9609815576893767},{"shots":16,"quantum":0.999999976724281,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999994,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.942890293094024e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.03334605991808213,"diagnostic_seconds":0.010204934995272197}
+{"instance":"n5-s0-r3.json","seed":0,"direct":{"status":"feasible","best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":3,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":8,"reserved_end":8,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":11,"reserved_end":12,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":3},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[5.090606162130604,0.1922418590256209],"expected_energy":38.70613937688573,"initial_expected_energy":53.90917428798511,"history":[53.90917428798511,54.46607451218308,52.439623243796376,55.21524674690859,51.203281338252275,48.40705208924933,49.7572213956452,47.61626260706514,47.50989639103779,47.12437014634396,53.385692144829555,47.8613123714785,46.445962709587775,45.49237698075555,45.09569495742638,44.701697040970124,44.522400308684624,44.10225580470647,43.78196148257457,43.32759643462995,43.54171508692958,43.8980386342021,43.199962022333125,43.251318800668315,43.154855919850704,43.13312220238579,43.19532590354435,43.125436194189334,43.10454241122744,43.07093009512416,43.113088914132945,43.046290662667786,43.047178294081775,43.03869517465062,43.0260451104324,43.012413137130096,43.040544404581325,42.997707153046534,42.984584849570105,42.960847453432095,42.92570198255352,42.89949409845655,42.871859280159256,42.86396648685856,42.96368832432418,42.97507735784454,42.86530384336799,42.84735847544245,42.85928126137703,42.84865852986121,42.85133798055411,42.847567110929255,42.84729664293122,42.847563440654966,42.84723370168664,42.84714402118749,42.847090117607614,42.847136552989134,42.84706653268839,42.847059359337436,56.921003299436464,50.5399992327816,50.7590633659022,50.36503313417973,50.191153747506576,53.66162343812161,51.05845198897376,49.24637900873766,48.44919848787697,47.55089334616152,47.94285269157321,49.909133431132126,47.82625246765698,49.67963414391627,46.55390502273617,46.327231365636834,45.10012404395148,43.97909293101243,41.917448977867856,41.35448419198233,52.675007985934144,56.221128800023855,41.71807778372226,39.09591383885647,43.00652393956926,38.954428369148424,40.416404029191376,39.13966815075972,39.35543384667659,38.89704617933238,38.81087656867377,38.80115524460089,38.829539236802205,38.80650911149208,38.78371159538038,38.78526965379582,38.77899257961155,38.77544015517148,38.77523219690439,38.78823117505914,38.775580576744005,38.77002509777799,38.762535281050845,38.7664586531951,38.75725792604218,38.75286199695725,38.747337461954835,38.76735895975624,38.74159742968831,38.73831004408783,38.734315304376096,38.727498390476775,38.72170085128931,38.716891258460464,38.72083956095485,38.739585862393646,38.715573107548,38.70994770604901,38.70894548735006,38.70613937688573],"feasible_probability":0.697942270324264,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.72265625,"counts":{"0010100010011":2,"0010100010101":11,"0010100011001":1,"0010100100011":4,"0010100100101":22,"0010100101001":4,"0010101000011":1,"0010101000101":3,"0010101001001":2,"0010110000011":2,"0010110000101":2,"0010110001001":8,"0011000010011":1,"0011000010101":1,"0011000011001":1,"0011000100011":5,"0011000100101":21,"0011001000101":3,"0011010000011":3,"0011010000101":9,"0011010001001":1,"0100100010011":2,"0100100010101":9,"0100100011001":2,"0100100100011":11,"0100100100101":56,"0100100101001":13,"0100101000011":15,"0100101000101":29,"0100101001001":7,"0100110000011":1,"0100110000101":1,"0101000010011":2,"0101000010101":16,"0101000011001":1,"0101000100011":18,"0101000100101":44,"0101000101001":6,"0101001000011":1,"0101001000101":13,"0101001001001":4,"0101010000011":15,"0101010000101":46,"0101010001001":12,"1000100010011":3,"1000100010101":8,"1000100011001":5,"1000100100101":6,"1000100101001":1,"1000101000011":2,"1000101000101":26,"1000101001001":8,"1000110000011":1,"1001000010011":2,"1001000010101":5,"1001000100101":4,"1001000101001":1,"1001010000101":8,"1001010001001":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3052999439969426},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":3,"removals":[],"infeasible_task":null,"component_qubits":[3,9],"max_component_qubits":9,"component_to_original":[[1,2,3],[4,5,6,7,8,9,10,11,12]],"components":[{"qubits":3,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1,-5],"quadratic":[[0,1,14],[0,2,14],[1,2,14]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":2}],"conflicts":[]},{"qubits":9,"penalty":27,"objective_bound":26,"offset":81,"linear":[-27,-16,-19,-21,-27,-21,-27,-18,-21],"quadratic":[[0,1,54],[0,2,54],[0,3,54],[1,2,54],[1,3,54],[1,6,27],[1,8,27],[2,3,54],[2,5,27],[2,6,27],[3,4,27],[4,5,54],[5,6,27],[5,8,27],[6,7,54],[6,8,54],[7,8,54]],"domains":[[0,1,2,3],[4,5],[6,7,8]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":7,"cost":0},{"index":1,"task":"t2","resource":"r0","start":13,"cost":11},{"index":2,"task":"t2","resource":"r1","start":11,"cost":8},{"index":3,"task":"t2","resource":"r0","start":8,"cost":6},{"index":4,"task":"t3","resource":"r0","start":9,"cost":0},{"index":5,"task":"t3","resource":"r1","start":11,"cost":6},{"index":6,"task":"t4","resource":"r1","start":12,"cost":0},{"index":7,"task":"t4","resource":"r2","start":17,"cost":9},{"index":8,"task":"t4","resource":"r1","start":13,"cost":6}],"conflicts":[{"i":1,"j":6,"reasons":["group"]},{"i":1,"j":8,"reasons":["group"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource"]},{"i":5,"j":8,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":3,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":8,"reserved_end":8,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":11,"reserved_end":12,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":3},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":3757552657,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.176295506516338,1.1460853493119305],"expected_energy":1.2258288581682166,"initial_expected_energy":5.667726844544277,"history":[5.667726844544277,5.343768089495131,2.40247204361727,2.277112689972383,2.7411285018174487,2.5103312897575125,2.6279752040724675,2.24640009435367,2.468654053465112,2.1803665079754273,2.0524666973460275,1.8442358232059943,1.7512163832563035,1.5675833544930968,1.4470684862063328,1.5871456206345533,1.5476281754671315,1.430270013270654,1.4354612385711434,1.4099806081733948,1.4009975957907965,1.4696776944233145,1.3680402766129975,1.368699658350482,1.362212122507374,1.362390158301506,1.3660158091091337,1.3560537369049883,1.3496394227174182,1.358770522987157,1.3439303462320866,1.3385629247646469,1.3285494019393025,1.31210552419814,1.3147430735379948,1.33039791662658,1.3055173393038548,1.298543307178183,1.3010743460195084,1.2933345107029484,1.3012250464472026,1.2957132316395574,1.2904859622110174,1.293587622921696,1.2897334401605995,1.2882272742192162,1.2851152936019323,1.2794053224345747,1.274950669230458,1.2614019989408483,1.2678993511219023,1.2723089381629795,1.2617300913573417,1.262514581909557,1.2599479884448965,1.2595756516965615,1.2639747046035685,1.2578689425257101,1.2564382706148662,1.25420607073941,3.735152709816891,3.8917121349453776,1.3252510999431166,2.7716430058479036,1.4986326803941576,1.3620801077154499,1.4403467815690982,1.3342743580461958,1.3496818767108465,1.3238142405653015,1.3178055286210055,1.309917046827426,1.3041224487156362,1.3154552243575446,1.300251098138041,1.2971620571977938,1.3032839618321839,1.2944306789242863,1.2908883083542988,1.2840918693338725,1.2733546200465167,1.3167879704362613,1.3168147785017483,1.2696870242442742,1.2661866587946646,1.2729304196819409,1.2620858749460087,1.2602675249447852,1.257430062554263,1.252251143290375,1.2457181795023096,1.246982106403134,1.2527336759378056,1.2482728947043662,1.242857082909058,1.2447701284291404,1.242442319752894,1.2416848983636268,1.240846415129341,1.2392882562094942,1.2363987945099806,1.2316595239866053,1.234265487673997,1.2534314557363815,1.2302156598340281,1.233676286730892,1.2302926282106086,1.2297818776195943,1.2297858243630877,1.230069154723887,1.229357610395169,1.2291119320601107,1.2322456852586763,1.228277321467933,1.2277939407946397,1.2273899631542895,1.2280739345791667,1.2270810472726925,1.2266407690630619,1.2258288581682166],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":321,"010":58,"100":133},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08313572200131603},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":7,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t3","group":"g1","resource":"r0","start":9,"end":11,"reserved_end":12,"changed":false},{"variable":6,"task":"t4","group":"g0","resource":"r1","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,0,0,0,1,0,1,0,0],"qubo_energy":0},"seed":673228719,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0633950596821535,1.2042056212480707],"expected_energy":23.6001737766165,"initial_expected_energy":31.562183610381584,"history":[31.562183610381584,37.452208240708806,47.074865324657026,33.55433046577444,35.37811284979815,32.528754596586474,32.418156070916005,29.946406688681204,27.937394860782334,27.326430274077474,29.63197676872607,26.523818603026104,25.888595710739036,24.890598676179096,23.8886321343906,26.865466683913372,26.064315729838267,23.80203491695402,23.725852493632942,23.84569344504775,23.874570673735835,23.716663274189024,23.75138452848112,23.7073447402127,23.676285196181066,23.636490750789335,23.622796237085236,23.642488813151324,23.619807657043076,23.61535393139999,23.61052417831061,23.604253296052953,23.622249903694236,23.604430365882298,23.603963802697216,23.605030235300536,23.604568694867968,23.603037209438533,23.60275501346619,23.604090044695514,23.60231174520421,23.60199232273821,23.602223136891308,23.601528020362736,23.60128615664845,23.601813937683733,23.60114086943795,23.60101294870577,23.600800676064015,23.60060354776784,23.60029902793068,23.60028417736393,23.60017993866856,23.60035691302498,23.600174648292032,23.600204016476937,23.600204137880155,23.600180132432474,23.60017611622424,23.600174146105687,46.31468222979484,44.906793199344236,43.25435160961788,34.484395335576934,43.095563801824795,32.399249704166635,32.32351792328052,54.8431254491184,23.63554009043382,38.366329142340156,29.520926092873065,23.72762301341747,24.656498877149858,24.10872892439414,23.718673556736974,23.840586646542572,23.63049216074662,23.603665189216702,23.622340249739256,23.606463894796693,23.605212702583902,23.60290998296326,23.60303311355005,23.605922965338397,23.60297347071927,23.602055830755816,23.601603863126165,23.601246909918547,23.601039387858776,23.600740911555746,23.600354405321724,23.600803968742902,23.6005479035725,23.600328879791704,23.60035896089385,23.600298506080648,23.600301112448147,23.600334139094418,23.60030019090891,23.60028496158823,23.60026454496586,23.600229708956782,23.600212602619504,23.600190963692327,23.60018442325385,23.6002568408158,23.600176536622424,23.60018296005588,23.600177838432863,23.60017778814428,23.60017595807202,23.600177232650232,23.600175154957196,23.600174922625605,23.60017679091871,23.600174464328703,23.600174232194718,23.600174024530926,23.600173984675397,23.6001737766165],"feasible_probability":0.6286695211741684,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.66796875,"counts":{"001010001":38,"001010010":1,"001010100":10,"001011000":14,"001100001":5,"001100010":1,"001100100":7,"001101000":23,"010010010":11,"010010100":20,"010011000":16,"010100001":6,"010100010":2,"010100100":4,"010101000":4,"100010001":166,"100010010":21,"100010100":95,"100011000":16,"100100001":12,"100100010":2,"100100100":28,"100101000":10},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12861670299025718}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.6286695211741684,"total_shots":1024,"runtime_seconds":0.21198985299270134},"direct_metrics":{"exact_objective":3,"optimal_count":1,"combinations":72,"optimal_probability":0.004101062408401113,"feasible_probability":0.6979422703242639,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.375,"shots_for_95_percent":729,"hit_curve":[{"shots":8,"quantum":0.032341418147733246,"uniform":0.10585733481633375},{"shots":16,"quantum":0.06363686896765997,"uniform":0.20050889429825008},{"shots":32,"quantum":0.12322408684331282,"uniform":0.3608139719037934},{"shots":64,"quantum":0.23126399810825732,"uniform":0.5914412214865954},{"shots":128,"quantum":0.4090449593954986,"uniform":0.8330797244996347},{"shots":512,"quantum":0.8780399017887374,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":19},{"shots":16,"best_objective":20},{"shots":32,"best_objective":15},{"shots":64,"best_objective":9},{"shots":128,"best_objective":5},{"shots":512,"best_objective":3}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6129920797110731,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":4,"hit_curve":[{"shots":8,"quantum":0.9994967789204166,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999997467685451,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999358,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":24,"optimal_probability":0.05743227504682026,"feasible_probability":0.6286695211741685,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.375,"shots_for_95_percent":51,"hit_curve":[{"shots":8,"quantum":0.37698210968986856,"uniform":0.2885690504976606},{"shots":16,"quantum":0.611848708353513,"uniform":0.49386600409019976},{"shots":32,"quantum":0.8493385747931638,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9773011349546449,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9994847615256528,"uniform":0.9956935037719361},{"shots":512,"quantum":0.9999999999999295,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":6},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.03520552972348872,"diagnostic_seconds":0.011293821997242048}
+{"instance":"n5-s0-r3.json","seed":1,"direct":{"status":"feasible","best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":3,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":8,"reserved_end":8,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":11,"reserved_end":12,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":3},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.1118187060445224,1.200274927503861],"expected_energy":32.932628025371315,"initial_expected_energy":55.378038094402456,"history":[55.378038094402456,51.70464784710835,54.18948407203869,49.219781068935035,51.0033738117772,50.38559384506903,49.13304475591886,48.84120895129223,49.618262566759846,48.86399581937344,48.78809533943995,48.77786772898406,48.7591331680217,48.80859746290557,48.803673488531516,48.75421911740851,48.757444000785014,48.753374741470395,48.75280806289531,48.75199525019168,48.751600121969055,48.752331853556235,48.75195962291441,48.751573456495265,48.751690707091946,48.75158129707007,48.75154450245693,48.75153719080969,48.75151581655439,48.75149883848726,48.75148469322501,48.7514696620864,48.75147432518159,48.75149735754545,48.751464365581754,48.75146554587553,48.75146512121701,48.75146354729313,48.75146408658519,48.75146257989498,48.75146205116429,48.7514624443545,48.751461385453766,48.7514608524025,48.75146143540063,48.75146041512052,48.751460532748794,48.75145995328215,48.75145974012301,48.75146045644272,48.75145925345889,48.75145892619378,48.7514586087602,48.751458342408206,48.751458235287366,48.751458007909946,48.75145868265736,48.75145839754993,48.75145793304242,48.751457935436356,46.68905231054946,51.93932496196942,49.96190776196452,51.377960164537406,49.07766693343695,46.32530555763702,43.3975218653801,39.00142261541224,49.45858431522802,47.08433411989209,36.84287563034721,36.66392262406408,35.25358653410124,34.654368922831964,33.90566738913674,34.26937723953622,33.44239334168833,34.02521790126547,33.604877987177616,33.600249672131895,33.59769215669205,33.43644266998791,33.47915367594261,33.43767538069384,33.39901522772212,33.34098626615561,33.36883272467625,33.296568704908,33.2716592154843,33.314250401735464,33.241220404793715,33.21499040518694,33.17039687897576,33.094105864215,33.044202888962765,32.99170990258361,33.04630965446535,33.16597376499724,32.95764681314398,32.9419924035927,32.951842416627,32.934963950602985,32.938568663451306,32.93315190104899,32.93604400102491,32.93408156701362,32.933187348235265,32.933210621362626,32.93308573417016,32.933096326222014,32.93315195344503,32.93299018843621,32.93295522437833,32.933458915793594,32.93281260090146,32.93272117593274,32.93265534002374,32.93270374491297,32.932628025371315,32.93263144155341],"feasible_probability":0.6286485239806119,"one_hot_probability":0.9999999999999997,"sampled_feasible_fraction":0.650390625,"counts":{"0010100010011":13,"0010100010101":1,"0010100011001":17,"0010100100011":1,"0010100100101":1,"0010100101001":2,"0010101000011":3,"0010101000101":1,"0010101001001":3,"0010110000011":4,"0010110000101":3,"0011000010011":2,"0011000011001":1,"0011001000011":3,"0011001000101":2,"0011001001001":2,"0011010000011":6,"0011010001001":16,"0100100011001":1,"0100100100011":3,"0100100101001":3,"0100101000011":5,"0100101000101":2,"0100101001001":6,"0100110000011":10,"0100110000101":2,"0100110001001":11,"0101000010011":1,"0101000011001":6,"0101000100011":1,"0101001000011":3,"0101001000101":1,"0101010000011":3,"0101010001001":1,"1000100010011":72,"1000100010101":19,"1000100011001":95,"1000100100011":8,"1000100101001":13,"1000101000011":37,"1000101000101":4,"1000101001001":43,"1000110000011":5,"1000110000101":3,"1000110001001":8,"1001000010011":3,"1001000011001":9,"1001000100011":4,"1001001000011":18,"1001001000101":5,"1001001001001":12,"1001010000011":4,"1001010000101":2,"1001010001001":8},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3520000110002002},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":3,"removals":[],"infeasible_task":null,"component_qubits":[3,9],"max_component_qubits":9,"component_to_original":[[1,2,3],[4,5,6,7,8,9,10,11,12]],"components":[{"qubits":3,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1,-5],"quadratic":[[0,1,14],[0,2,14],[1,2,14]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":2}],"conflicts":[]},{"qubits":9,"penalty":27,"objective_bound":26,"offset":81,"linear":[-27,-16,-19,-21,-27,-21,-27,-18,-21],"quadratic":[[0,1,54],[0,2,54],[0,3,54],[1,2,54],[1,3,54],[1,6,27],[1,8,27],[2,3,54],[2,5,27],[2,6,27],[3,4,27],[4,5,54],[5,6,27],[5,8,27],[6,7,54],[6,8,54],[7,8,54]],"domains":[[0,1,2,3],[4,5],[6,7,8]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":7,"cost":0},{"index":1,"task":"t2","resource":"r0","start":13,"cost":11},{"index":2,"task":"t2","resource":"r1","start":11,"cost":8},{"index":3,"task":"t2","resource":"r0","start":8,"cost":6},{"index":4,"task":"t3","resource":"r0","start":9,"cost":0},{"index":5,"task":"t3","resource":"r1","start":11,"cost":6},{"index":6,"task":"t4","resource":"r1","start":12,"cost":0},{"index":7,"task":"t4","resource":"r2","start":17,"cost":9},{"index":8,"task":"t4","resource":"r1","start":13,"cost":6}],"conflicts":[{"i":1,"j":6,"reasons":["group"]},{"i":1,"j":8,"reasons":["group"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource"]},{"i":5,"j":8,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":3,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":8,"reserved_end":8,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":11,"reserved_end":12,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":3},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":1641411168,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[-1.3103410659045003,1.9900506335387882],"expected_energy":1.2206010630390307,"initial_expected_energy":2.251047266822476,"history":[2.251047266822476,2.7457510754202525,2.6080565622769574,2.516000057191525,2.3140244204183764,2.4871280800166744,2.2335601810656884,2.1643655820543994,2.1199703959530583,2.0880057677832546,2.053712217432828,1.9928344241790032,2.169714410402177,1.9646304280861262,1.924425766105728,1.8391901310938803,1.6812864346436143,1.4219663462854384,2.159245485091981,2.886661328526093,1.7936870058184229,1.3960077647299165,1.49309449062075,1.397756737184011,1.3890831802371917,1.388354397023376,1.4136240030129386,1.3789307202582812,1.365275944856051,1.3522773158819947,1.3301737037443297,1.3169961405092259,1.3008653682347444,1.2953334162124035,1.3593386468793303,1.2816505588775844,1.2778374286162713,1.2702440091746756,1.257221890652675,1.2456871717951297,1.2803796463452997,1.3029136858230945,1.2367568625187118,1.2391306915917024,1.2376305443451074,1.2361642801657649,1.233949284027843,1.2313363447608527,1.2281127901577737,1.225480695686679,1.236320466905425,1.2397949709550766,1.223616979498323,1.2245541010679182,1.2237877363660123,1.2238202930596866,1.2234034278265253,1.2233525730831714,1.224265809697648,1.2229084754551436,3.420826665844542,4.098584470140127,3.2863938820449072,2.70156526087348,2.10496542073796,1.3165716964923195,1.539829822046369,3.4653868762007014,1.6354758958605555,1.4903716702131802,1.3598567059430224,1.4385550879853097,1.2813013047558222,1.2499442212518341,1.2651120442739845,1.2535383482306393,1.254026267259595,1.252347847074655,1.2496392223963204,1.2486168665033002,1.2466913536115265,1.24437774124446,1.2409569524371273,1.2398009861392854,1.250852418987627,1.2372029051389162,1.236080131271165,1.2346806562772712,1.232679719913387,1.2550611532484832,1.2322221507098905,1.2307335527227585,1.227933619654722,1.2242695954399128,1.2271553443474952,1.229156734620477,1.2247043853623478,1.2249486154942744,1.2242005147410469,1.2250986936591937,1.2237291242555808,1.223585353279991,1.2232111022068322,1.2227530622492306,1.222212941283719,1.2218001206292266,1.2210794858189409,1.2228246282583077,1.227049262119049,1.220981859418452,1.2207694119213224,1.2206253558349083,1.2207322871790183,1.221087822887056,1.22061404648709,1.2206232592695205,1.2206179988787997,1.2206087031629576,1.2206055317465228,1.2206010630390307],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":318,"010":50,"100":144},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.0899915490008425},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":7,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t3","group":"g1","resource":"r0","start":9,"end":11,"reserved_end":12,"changed":false},{"variable":6,"task":"t4","group":"g0","resource":"r1","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,0,0,0,1,0,1,0,0],"qubo_energy":0},"seed":1454127163,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0632314001133807,1.2042004797627528],"expected_energy":23.600173633398512,"initial_expected_energy":34.20659917084374,"history":[34.20659917084374,37.122138549164276,33.392085238403176,36.12864619656023,36.522832186916915,32.918403278562195,34.17557355575683,31.97797765536327,30.041784945100606,27.234792296946438,29.54768258231289,25.99471003094952,25.63705388499726,24.679331140521054,23.850042921842878,29.413432850007254,24.183303681059368,23.875592630607397,24.686402320136867,23.645375036950306,23.63254888742449,23.650002389540113,23.64201227230412,23.618332635694927,23.610308891064467,23.603553330739626,23.61039236379835,23.603670783646926,23.603085483366616,23.603974671239563,23.60526669412096,23.60345891332282,23.602167878110237,23.601773059950343,23.601383415398136,23.60121779237854,23.60087344737889,23.6004894706993,23.600429098062747,23.600205071858813,23.600509235499143,23.60053010813925,23.600219280498155,23.60020564760634,23.60019232641555,23.60018960174641,23.600276735772994,23.600178902248082,23.60024086747884,23.600173690699002,23.600174338966546,23.600173883101835,23.60017409728239,23.600173807703175,23.600173717276228,23.600173721411284,23.600173673570012,23.600173695064214,23.600173650976622,23.600173633398512,40.50866462636874,36.85706702305799,39.58834710611965,39.856033371677064,36.572093775042084,36.88396026668398,36.64913683995983,36.66271398120712,36.56230071938375,36.787101089143015,36.44422702702822,36.345743194610996,36.21129499324466,36.00260650965154,35.8459704754936,35.67518473245527,35.92325941937853,36.60321956869974,35.45711046459968,35.32004473910237,35.23142986786541,35.19069827985868,35.11032435120711,35.17356110540874,35.130705284117646,35.09987966337857,35.118252454045674,35.09245374635972,35.07773535743302,35.05168762855082,35.00383610843214,35.15169892257927,34.998878565669145,34.962692350686225,34.90358367225883,34.825956624797215,34.75932120012516,34.67369932298463,34.511541732104014,34.31266054366716,36.8828776159788,35.323026757343314,34.45519472718256,34.306060188347075,34.4102065162318,34.29372790251783,34.30024685267821,34.29963639398081,34.29260822787197,34.29492105846248,34.29141050367585,34.29026216194141,34.28804774600705,34.28403230660224,34.28818844874298,34.281772072842244,34.27742931057763,34.26877083370551,34.252552830491446,34.24342337978837],"feasible_probability":0.6286645572131466,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.60546875,"counts":{"001010001":22,"001010010":2,"001010100":7,"001011000":17,"001100001":6,"001100010":2,"001100100":9,"001101000":22,"010010001":2,"010010010":3,"010010100":12,"010011000":15,"010100001":6,"010100010":1,"010100100":3,"010101000":3,"100010001":168,"100010010":30,"100010100":93,"100011000":19,"100100001":17,"100100010":9,"100100100":31,"100101000":13},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13764530399930663}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.6286645572131466,"total_shots":1024,"runtime_seconds":0.2278885120031191},"direct_metrics":{"exact_objective":3,"optimal_count":1,"combinations":72,"optimal_probability":0.018293041576453586,"feasible_probability":0.628648523980612,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.375,"shots_for_95_percent":163,"hit_curve":[{"shots":8,"quantum":0.1373096211900745,"uniform":0.10585733481633375},{"shots":16,"quantum":0.25576531030878724,"uniform":0.20050889429825008},{"shots":32,"quantum":0.4461147266602243,"uniform":0.3608139719037934},{"shots":64,"quantum":0.6932111039773219,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9058805732771864,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999215275715052,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":9},{"shots":16,"best_objective":5},{"shots":32,"best_objective":5},{"shots":64,"best_objective":5},{"shots":128,"best_objective":3},{"shots":512,"best_objective":3}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6321291175494131,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9996645998033593,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999998875067081,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999873,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":24,"optimal_probability":0.05743697073136302,"feasible_probability":0.6286645572131466,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.375,"shots_for_95_percent":51,"hit_curve":[{"shots":8,"quantum":0.3770069392645771,"uniform":0.2885690504976606},{"shots":16,"quantum":0.6118796462755097,"uniform":0.49386600409019976},{"shots":32,"quantum":0.8493625910247765,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9773083710172312,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9994850899741083,"uniform":0.9956935037719361},{"shots":512,"quantum":0.9999999999999297,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.7755575615628914e-16,"independent_samples":[{"shots":8,"best_objective":6},{"shots":16,"best_objective":6},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.03630758162312798,"diagnostic_seconds":0.011218781990464777}
+{"instance":"n5-s0-r3.json","seed":2,"direct":{"status":"feasible","best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":3,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":8,"reserved_end":8,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":11,"reserved_end":12,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":3},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9616797316767789,2.9345454117082093],"expected_energy":26.933174024769453,"initial_expected_energy":50.363860097504364,"history":[50.363860097504364,50.33781028855704,53.337995859659344,50.38249302457423,49.02944808679919,59.225319872592934,48.91564865776405,48.868797755988,48.939529887847755,49.06831220451055,48.6616139990664,48.80983248022703,48.6852437515475,48.66801881326264,48.65983666139978,48.65283050144694,48.64787968229575,48.65030057413889,48.65548084049077,48.64884126275043,48.64712889477733,48.648289864866115,48.6480185269433,48.64715388513187,48.64670574219237,48.64588116335022,48.64430632215332,48.64288858645273,48.640912745100216,48.64245452125443,48.64507189679631,48.639892253416015,48.639885347132314,48.640217066730415,48.639935061076955,48.63973441622846,48.639491890347436,48.63972343423456,48.63926697193939,48.6391041478341,48.63914810825195,48.63897382788053,48.6388625256292,48.63871812453664,48.63886258306531,48.63859951010756,48.63848289643506,48.638254971121036,48.63782004052503,48.63745540354096,48.636531586136165,48.63663171322159,48.63635335282109,48.63673724726333,48.6364748420857,48.63618576540152,48.636256205891144,48.63609208299343,48.63600716178399,48.63586934682266,67.5958562062506,62.41300994785472,48.8841974207235,43.17515649549466,49.03776931267843,65.99207914906182,47.13973087208136,40.65149202548249,50.46573301090583,41.166212044301375,41.005669198769596,40.60116520764221,42.48958304200661,39.406085294900834,38.6970005030402,37.79476652449415,35.94506117719021,32.280401220671756,27.401468883683293,41.51758130623457,47.887496055608274,27.208843158221832,31.274235815832995,27.71357558245264,27.714638952548285,27.17915167088804,27.117510228068326,27.132750869585568,27.14234991918383,27.122732054267047,27.098242400735543,27.06416533263372,27.008788913252197,27.690438854517403,27.140150794252154,27.065376440767274,27.001485303604955,27.00303233348341,26.993292640230308,26.989869629957234,27.02174387959755,26.97513446919438,26.97743911526988,26.9730407552466,26.977216345577407,26.970292592640757,26.96801264662262,26.963963204742107,26.956817772857733,26.946270040784547,26.942597749901527,26.939685875350754,26.937033977290838,26.96088237535397,26.935240397114335,26.94152466123097,26.935944567208722,26.93347205895369,26.933174024769453,26.93324016142968],"feasible_probability":0.8154534977647233,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.80859375,"counts":{"0010100010011":11,"0010100010101":15,"0010100011001":11,"0010100100011":3,"0010100100101":6,"0010100101001":1,"0010101000011":5,"0010101000101":3,"0010110000011":10,"0010110000101":16,"0010110001001":8,"0011000010011":2,"0011000010101":2,"0011001000011":2,"0011001000101":1,"0011010000011":1,"0011010000101":4,"0011010001001":4,"0100100010011":23,"0100100010101":32,"0100100011001":20,"0100100100011":16,"0100100100101":20,"0100100101001":17,"0100101000011":22,"0100101000101":20,"0100101001001":11,"0100110000011":4,"0100110000101":3,"0100110001001":4,"0101000010011":17,"0101000010101":18,"0101000011001":13,"0101000100011":10,"0101000100101":11,"0101000101001":12,"0101001000101":1,"0101001001001":1,"0101010000011":19,"0101010000101":15,"0101010001001":16,"1000100010011":8,"1000100010101":13,"1000100011001":6,"1000100100011":1,"1000100101001":1,"1000101000011":12,"1000101000101":16,"1000101001001":10,"1000110000011":2,"1000110000101":2,"1000110001001":1,"1001000010011":1,"1001000010101":2,"1001000100011":1,"1001001001001":1,"1001010000011":2,"1001010000101":2,"1001010001001":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.329810302995611},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":3,"removals":[],"infeasible_task":null,"component_qubits":[3,9],"max_component_qubits":9,"component_to_original":[[1,2,3],[4,5,6,7,8,9,10,11,12]],"components":[{"qubits":3,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1,-5],"quadratic":[[0,1,14],[0,2,14],[1,2,14]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":2}],"conflicts":[]},{"qubits":9,"penalty":27,"objective_bound":26,"offset":81,"linear":[-27,-16,-19,-21,-27,-21,-27,-18,-21],"quadratic":[[0,1,54],[0,2,54],[0,3,54],[1,2,54],[1,3,54],[1,6,27],[1,8,27],[2,3,54],[2,5,27],[2,6,27],[3,4,27],[4,5,54],[5,6,27],[5,8,27],[6,7,54],[6,8,54],[7,8,54]],"domains":[[0,1,2,3],[4,5],[6,7,8]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":7,"cost":0},{"index":1,"task":"t2","resource":"r0","start":13,"cost":11},{"index":2,"task":"t2","resource":"r1","start":11,"cost":8},{"index":3,"task":"t2","resource":"r0","start":8,"cost":6},{"index":4,"task":"t3","resource":"r0","start":9,"cost":0},{"index":5,"task":"t3","resource":"r1","start":11,"cost":6},{"index":6,"task":"t4","resource":"r1","start":12,"cost":0},{"index":7,"task":"t4","resource":"r2","start":17,"cost":9},{"index":8,"task":"t4","resource":"r1","start":13,"cost":6}],"conflicts":[{"i":1,"j":6,"reasons":["group"]},{"i":1,"j":8,"reasons":["group"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource"]},{"i":5,"j":8,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":3,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":8,"reserved_end":8,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":11,"reserved_end":12,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":3},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":2001025171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.226630306650682,2.88597340396366],"expected_energy":0.8125649166135634,"initial_expected_energy":2.0478043844664056,"history":[2.0478043844664056,1.9698358200787887,2.0218465477717604,3.9617235881771857,2.031863324795875,2.2324131562614484,2.096733340028087,1.7301377726051097,1.4096271956572775,1.3375637126455557,1.352556690637214,1.3699469735900136,1.3381608337532493,1.339396010274998,1.3346707084181733,1.3314985824648529,1.342067290020171,1.324991974424805,1.3207520720367303,1.3171360067819546,1.3199690141668547,1.3142714292616617,1.315048527490606,1.313558188585957,1.311932257212761,1.3088899685950506,1.3028409897444542,1.2910607647701395,1.2712781036397893,1.3240206429927364,1.3608826025663623,1.2705369248607474,1.2612929837886504,1.245720055630256,1.2904750301115133,1.297686170492315,1.243454637274454,1.2767355751991118,1.240286421608781,1.2417630934436077,1.2427363744946378,1.240350697059056,1.2393978032882238,1.2381148341947035,1.235218965081915,1.2301961634020033,1.2584871293648112,1.2465246988873175,1.229228651478012,1.2356395930771478,1.2290115475516061,1.228162398272884,1.227601784923053,1.2376092227856588,1.2259133983980552,1.2261112199962632,1.2257923118289893,1.225979040239384,1.226087566417896,1.2254976351114526,2.927504694883667,2.876357869686585,2.38962646207996,1.3263047243034718,5.117551112567536,1.1016277095630107,4.408021489140019,2.480462707047339,1.0877044051851623,0.9728069798377044,1.7189003661546494,0.9693338313823832,1.1161356051302043,0.9476018520590499,1.0521370610980232,0.9535021675162789,0.9413506572000039,0.9327906275313611,0.9276976011257242,0.9206756974059312,0.9078101639361631,0.8872144293905541,0.8997308461675947,0.9673357733494653,0.8853124012797116,0.8783564218345588,0.865909143252304,0.8484716499319305,0.8446509795078063,0.8382747707242036,0.8732007800610155,0.870968990624158,0.8434197394254892,0.8275765389029929,0.8267527050636622,0.8259314680785467,0.8260314051887154,0.8245598688074879,0.8242973938144902,0.8260925934098289,0.8230160981013516,0.8219249595745532,0.8198887689598464,0.8193846779390862,0.8163129675156267,0.8287862354153019,0.8143154781147437,0.8151615676457399,0.815626316963172,0.8140327715665402,0.8142570935254427,0.8139343745711177,0.81376347741403,0.8136195029356877,0.814098210793145,0.8135218417567237,0.8133121146314166,0.8131197961305485,0.8129663704711398,0.8125649166135634],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":310,"010":3,"100":199},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08406169500085525},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":7,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t3","group":"g1","resource":"r0","start":9,"end":11,"reserved_end":12,"changed":false},{"variable":6,"task":"t4","group":"g0","resource":"r1","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,0,0,0,1,0,1,0,0],"qubo_energy":0},"seed":2240297063,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.063641951952474,1.204225366043027],"expected_energy":23.60017577268571,"initial_expected_energy":35.64602002626871,"history":[35.64602002626871,35.21396115798983,35.147909469705866,35.82325112258837,35.64357759655412,35.6611805246373,35.1439771195703,35.1644794039854,35.282316957969975,34.97789731366303,35.030958778094146,34.997500793412755,34.986889181375126,34.96778484324436,34.96792282734803,34.96850707132894,34.96704316240973,34.96553949205256,34.96287295239448,34.96073933746864,34.966898617365196,34.972029025139676,34.960226076495985,34.95854084479507,34.95900383897027,34.95884651230697,34.95860255844015,34.95850476583789,34.95844743548433,34.95840275769961,34.95857303938335,34.95833212680265,34.95826579249945,34.958140953182294,34.95791166953643,34.95761896478986,34.95737052051887,34.95713522718535,34.95818457995697,34.95726474785165,34.95733940626226,34.95722970928985,34.95701017636134,34.95701280255815,34.9569763550038,34.95694521366449,34.9568895363846,34.956801132352936,34.95722980773274,34.956925744397864,34.956832196438164,34.95678640966581,34.95674122511314,34.95669375259272,34.95667906885735,34.95664551758423,34.956751383742066,34.95663967637801,34.956651766206704,34.95663795824886,36.08051849422806,32.55079678679486,53.041176775158654,31.025345481800898,35.25492309402887,35.4223155618778,32.98646176335733,26.777897639069252,27.352066443112143,26.459881678033742,27.627827041163,25.86701127366983,24.639424794828322,23.900109578694902,25.16567730076249,23.780186904786973,24.544683863690203,23.714601408214847,23.818771187498335,23.877959832464413,23.747182299578856,23.651038115020818,23.641053982934807,23.62769433224327,23.64935562897695,23.619965444240385,23.615769997403895,23.62315589149811,23.61323694563034,23.610966415049408,23.608473209287354,23.60493375697389,23.603091560819607,23.60984628299462,23.602111524280037,23.601643942213457,23.60369214549963,23.60117779862367,23.600950490633352,23.600677587442597,23.600472407406333,23.600856259267157,23.60060590722975,23.60044935521271,23.60056200076754,23.600376721510205,23.600324435476598,23.600244640910343,23.60021158528685,23.60019129598821,23.600181263512418,23.60030665721486,23.600205337347745,23.600197530548,23.600181960254098,23.60017888228323,23.600178238552775,23.600184297724567,23.600176537991373,23.60017577268571],"feasible_probability":0.6286765450246523,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.654296875,"counts":{"001010001":38,"001010010":3,"001010100":7,"001011000":10,"001100001":9,"001100100":3,"001101000":14,"010010010":4,"010010100":17,"010011000":13,"010100001":4,"010100010":1,"010100100":4,"010101000":5,"100010001":172,"100010010":27,"100010100":94,"100011000":22,"100100001":15,"100100010":4,"100100100":30,"100101000":16},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1251987979921978}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.6286765450246523,"total_shots":1024,"runtime_seconds":0.209488070991938},"direct_metrics":{"exact_objective":3,"optimal_count":1,"combinations":72,"optimal_probability":0.034229054336136336,"feasible_probability":0.8154534977647235,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.375,"shots_for_95_percent":87,"hit_curve":[{"shots":8,"quantum":0.24317915151096808,"uniform":0.10585733481633375},{"shots":16,"quantum":0.4272222032923418,"uniform":0.20050889429825008},{"shots":32,"quantum":0.6719255955987206,"uniform":0.3608139719037934},{"shots":64,"quantum":0.8923671851767457,"uniform":0.5914412214865954},{"shots":128,"quantum":0.988415177173223,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999999819881805,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.85722573273506e-17,"independent_samples":[{"shots":8,"best_objective":9},{"shots":16,"best_objective":3},{"shots":32,"best_objective":9},{"shots":64,"best_objective":3},{"shots":128,"best_objective":3},{"shots":512,"best_objective":3}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6017295123466474,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":4,"hit_curve":[{"shots":8,"quantum":0.99936696895862,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999995992717007,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999998395,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":24,"optimal_probability":0.05742997202223024,"feasible_probability":0.6286765450246524,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.375,"shots_for_95_percent":51,"hit_curve":[{"shots":8,"quantum":0.3769699315704297,"uniform":0.2885690504976606},{"shots":16,"quantum":0.6118335338326449,"uniform":0.49386600409019976},{"shots":32,"quantum":0.8493267945431476,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9772975851573571,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9994846003603125,"uniform":0.9956935037719361},{"shots":512,"quantum":0.9999999999999294,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":6},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.03455730905901821,"diagnostic_seconds":0.009802118001971394}
+{"instance":"n5-s0-r3.json","seed":3,"direct":{"status":"feasible","best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":3,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":8,"reserved_end":8,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":11,"reserved_end":12,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":3},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.112700559432913,1.198365115948137],"expected_energy":32.93345397988203,"initial_expected_energy":38.76082020409806,"history":[38.76082020409806,48.34870094500685,52.19030065120867,50.01622535316924,44.04522450118198,39.57050353948013,39.20212145190681,38.320095423519035,38.902428690540674,37.49473923834822,36.73830649014896,36.15409621084903,34.72605442874713,34.76109160502273,34.61149962056176,35.272488574922164,34.984019322655016,34.26570306488871,34.920934539171824,34.025665912295096,34.05325481905267,33.933481970626104,33.85917974554228,33.80312502847255,34.21863016573602,33.729836513047836,33.611214883127346,33.46175768141187,33.319524140289396,33.24645987818187,33.076604248804216,33.43556616948108,33.28463781339168,33.03235531404313,33.038996729101655,33.018637351856654,32.99850991830163,32.98922616860402,33.01978844243345,32.98015880397516,32.97514949984509,32.9871678209545,32.96465046258221,32.95936394026636,32.95254839388423,32.946790502167666,32.94730593927039,32.94679089850267,32.945302545136066,32.944795578719244,32.948722529361376,32.943870627966746,32.942313775515025,32.940199725648526,32.93851129915277,32.94099658802402,32.937797217988226,32.93614510566483,32.93390214567013,32.93345397988203,54.19623798297715,48.38354391520291,52.51399041115963,49.07519901748232,47.71993300366338,48.13201336707992,47.665511523730714,49.218386090955185,47.62650353813859,47.613138412575005,47.78026434100986,47.82503296562777,47.652628469579554,47.62989239319198,47.61229376879486,47.612336726447424,47.61110040670799,47.61000945577627,47.60906108298809,47.62781008387601,47.604842418563564,47.60383804825767,47.601800471936016,47.59771950901293,47.58879515367827,47.55899967763335,47.617930656296835,47.60879919103323,47.56854421224483,47.553617419026935,47.527356695661,47.49372162080308,47.40800962470965,47.34704247449886,46.983511533214696,45.13915411848858,48.1786845927405,45.895180948961965,43.95328279793067,45.055862610749614,44.690893955074756,44.170257080311615,43.56126879734032,43.37864268752421,43.72415533874649,43.28761792844746,43.20823181235758,43.08887226718841,42.975581777562915,42.896655393143305,43.002966865235535,42.92942479036313,42.89082590999156,42.90800712163955,42.885360702459856,42.87981191772634,42.87733328697165,42.864290537124575,42.867964764337216,42.86312951454704],"feasible_probability":0.6286542143684919,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.62890625,"counts":{"0010100010011":6,"0010100011001":11,"0010100100011":1,"0010100101001":3,"0010101000011":1,"0010101001001":1,"0010110000011":8,"0010110000101":1,"0010110001001":8,"0011000010011":2,"0011000010101":1,"0011000011001":2,"0011000101001":1,"0011001000011":5,"0011001001001":2,"0011010000011":14,"0011010001001":14,"0100100101001":5,"0100101000011":7,"0100101000101":4,"0100101001001":10,"0100110000011":12,"0100110000101":2,"0100110001001":5,"0101000010011":4,"0101000011001":2,"0101000101001":1,"0101010000011":2,"0101010000101":3,"0101010001001":4,"1000100010011":79,"1000100010101":17,"1000100011001":85,"1000100100011":6,"1000100100101":3,"1000100101001":9,"1000101000011":33,"1000101000101":9,"1000101001001":40,"1000110000011":7,"1000110000101":2,"1000110001001":13,"1001000010011":5,"1001000011001":6,"1001000100011":2,"1001000100101":1,"1001000101001":2,"1001001000011":11,"1001001000101":3,"1001001001001":16,"1001010000011":11,"1001010000101":1,"1001010001001":9},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3311428849992808},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":3,"removals":[],"infeasible_task":null,"component_qubits":[3,9],"max_component_qubits":9,"component_to_original":[[1,2,3],[4,5,6,7,8,9,10,11,12]],"components":[{"qubits":3,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1,-5],"quadratic":[[0,1,14],[0,2,14],[1,2,14]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":2}],"conflicts":[]},{"qubits":9,"penalty":27,"objective_bound":26,"offset":81,"linear":[-27,-16,-19,-21,-27,-21,-27,-18,-21],"quadratic":[[0,1,54],[0,2,54],[0,3,54],[1,2,54],[1,3,54],[1,6,27],[1,8,27],[2,3,54],[2,5,27],[2,6,27],[3,4,27],[4,5,54],[5,6,27],[5,8,27],[6,7,54],[6,8,54],[7,8,54]],"domains":[[0,1,2,3],[4,5],[6,7,8]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":7,"cost":0},{"index":1,"task":"t2","resource":"r0","start":13,"cost":11},{"index":2,"task":"t2","resource":"r1","start":11,"cost":8},{"index":3,"task":"t2","resource":"r0","start":8,"cost":6},{"index":4,"task":"t3","resource":"r0","start":9,"cost":0},{"index":5,"task":"t3","resource":"r1","start":11,"cost":6},{"index":6,"task":"t4","resource":"r1","start":12,"cost":0},{"index":7,"task":"t4","resource":"r2","start":17,"cost":9},{"index":8,"task":"t4","resource":"r1","start":13,"cost":6}],"conflicts":[{"i":1,"j":6,"reasons":["group"]},{"i":1,"j":8,"reasons":["group"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource"]},{"i":5,"j":8,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":3,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":8,"reserved_end":8,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":11,"reserved_end":12,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":3},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":819382448,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.2996042067219817,1.1514312447623798],"expected_energy":1.2205533365799865,"initial_expected_energy":1.8640212821906839,"history":[1.8640212821906839,1.9314378306380842,2.573662046161004,1.9450102491791794,2.7398230690332914,1.3852839849665268,1.4232868169912676,1.3924883833424317,1.7368289262610368,1.2767790948604243,1.2261638802722283,1.2284031217187281,1.22438547706708,1.2218458586173098,1.2252539302643468,1.2631732490659582,1.2227933729099398,1.2225137442512972,1.2217140530840247,1.2231076846109463,1.2215446464386197,1.2207566863196007,1.2205645743287645,1.2205783793499871,1.2209656265177944,1.2205875573201086,1.2205646925991822,1.2206086244282544,1.2205601987839887,1.2205559069637266,1.220557740782485,1.220555351346724,1.2205554062476223,1.2205552817301881,1.2205552149285603,1.2205553231720179,1.2205550900036075,1.22055497097575,1.2205547646074457,1.220554418966955,1.2205540109117252,1.2205535687547147,1.2205551940731796,1.220555153063987,1.2205535072719804,1.2205534257930712,1.2205534848018886,1.220553541321069,1.2205533916943472,1.2205533910467117,1.220553404778303,1.220553393258907,1.2205533829134523,1.2205533697277695,1.220553381799353,1.2205533578526844,1.2205533521531953,1.220553369031314,1.2205533440165641,1.2205533365799865,2.2569613913628848,2.3353997832967304,3.3955584481846803,2.3141925604689004,3.073591924015497,2.4995694508710207,1.7991105933500369,1.9560888787219806,1.6830683581662116,1.690237447504014,1.647446777885845,1.6211477565566499,1.662565927996901,1.609562961290945,1.609131910242409,1.59997387764182,1.5868941130109473,1.573512574969046,1.547912326455189,1.5395837163622867,1.4925597219920774,1.6007349963162931,1.4745464623512143,1.4669354338988356,1.5381267059010135,1.4484600474089753,1.439984222024398,1.4304150513778584,1.4212316414114987,1.4694052946161453,1.4056598594837635,1.398996640955846,1.3886584899514889,1.368768271107168,1.3336394487958274,1.3285370798977207,1.276699633733733,1.4409111579198677,1.266387657039981,1.2732110115962354,1.2729524909007448,1.25982182717469,1.2565625862971346,1.2706756516265072,1.2534093665013317,1.2519540547882115,1.2492419934924182,1.2452105739247075,1.2378800649313786,1.2267727262063073,1.246292911655423,1.2675330269218579,1.2255356853853498,1.2280815688017728,1.2275043056115438,1.2247723862690925,1.224451529677761,1.2240909551459858,1.2238095183825277,1.2234689289350456],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":336,"010":57,"100":119},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.0848730369907571},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":7,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t3","group":"g1","resource":"r0","start":9,"end":11,"reserved_end":12,"changed":false},{"variable":6,"task":"t4","group":"g0","resource":"r1","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,0,0,0,1,0,1,0,0],"qubo_energy":0},"seed":1645421708,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.1866620782184634,2.934485411683493],"expected_energy":20.13702010364084,"initial_expected_energy":48.45372793740468,"history":[48.45372793740468,44.35391415912103,36.570298594872206,36.152385293216575,46.31578629231245,36.92078880023048,37.26915153404942,36.385472363179154,35.73167734245449,35.30133143919829,35.12694359975051,34.09898908993655,32.969815290784915,30.53710731767771,33.19235096845257,32.67352048526628,31.13165259867297,31.760957862692607,30.107743151427123,29.469868676378482,28.252186983687814,26.90234208209015,30.890145147492245,24.434188340829973,31.822030550312952,26.187035520973293,24.81566619442996,24.577671962091046,24.228762795569956,24.23145389232867,24.340668202168903,24.034878947899244,23.78146846751477,23.869269931073738,23.623055559760346,23.52001888305968,23.55496902117201,23.484900924566027,23.41895853401647,23.30153809079293,23.154163622406163,23.472507405671195,23.08556376865683,22.94845155861077,22.693266721304308,22.208143517371457,21.849801650034344,21.090808008767766,22.278837867504613,22.14326572112917,20.819413817709048,20.652420604433416,20.809570886814626,20.529264211167668,20.48808705240657,20.575237121118562,20.447739500298457,20.379258145091704,20.331351041856042,20.13702010364084,34.817609373682586,36.497545700246654,36.32654758186368,37.11520569433801,35.29602834934627,34.76672309421914,34.764971821108105,35.119373457902746,34.79630059726722,34.62898819004838,34.682030771821324,34.63278431465226,34.63423859945089,34.62733673643525,34.632241063953245,34.62805056278251,34.62665043888592,34.627629815699514,34.62659965513483,34.6267037663734,34.62659940663763,34.6265904208006,34.626599598868914,34.62659241704774,34.62659046565262,34.626589893384185,34.6265897348288,34.62659098275086,34.6265895086998,34.6265895620767,34.62658952106123,34.62658965868498,34.62658950991822,34.6265895235124,34.62658951421753,34.62658949907492,34.62658949192147,34.626589495172624,34.626589490136006,34.6265894984239,34.626589484831776,34.626589483177895,34.626589482015376,34.626589482151594],"feasible_probability":0.8063041383556095,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.798828125,"counts":{"001010001":57,"001010010":3,"001010100":5,"001011000":22,"001100010":10,"001100100":13,"001101000":8,"010010001":70,"010010010":47,"010010100":66,"010011000":16,"010100001":51,"010100010":13,"010100100":3,"010101000":51,"100010001":25,"100010100":29,"100011000":8,"100100010":4,"100100100":1,"100101000":10},"circuit_evaluations":104,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":44}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11603938200278208}],"circuit_evaluations":224,"status":"feasible","feasible_probability":0.8063041383556095,"total_shots":1024,"runtime_seconds":0.20116154200513847},"direct_metrics":{"exact_objective":3,"optimal_count":1,"combinations":72,"optimal_probability":0.01798296678475855,"feasible_probability":0.6286542143684918,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.375,"shots_for_95_percent":166,"hit_curve":[{"shots":8,"quantum":0.13512734518958788,"uniform":0.10585733481633375},{"shots":16,"quantum":0.2519952909611897,"uniform":0.20050889429825008},{"shots":32,"quantum":0.44048895525576476,"uniform":0.3608139719037934},{"shots":64,"quantum":0.6869473908092144,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9019980638788413,"uniform":0.8330797244996347},{"shots":512,"quantum":0.999907755894737,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":9},{"shots":16,"best_objective":9},{"shots":32,"best_objective":3},{"shots":64,"best_objective":3},{"shots":128,"best_objective":3},{"shots":512,"best_objective":3}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6307820553792831,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":4,"hit_curve":[{"shots":8,"quantum":0.9996546476603595,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999998807317615,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999858,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":24,"optimal_probability":0.09735603810405755,"feasible_probability":0.8063041383556095,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.375,"shots_for_95_percent":30,"hit_curve":[{"shots":8,"quantum":0.5593113647600239,"uniform":0.2885690504976606},{"shots":16,"quantum":0.8057935267703273,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9622838457556924,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9985774917090195,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999979764701621,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.551115123125783e-17,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.061410441818861225,"diagnostic_seconds":0.010838292000698857}
+{"instance":"n5-s0-r3.json","seed":4,"direct":{"status":"feasible","best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":3,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":8,"reserved_end":8,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":11,"reserved_end":12,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":3},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[5.0899781522228205,3.3325917146708015],"expected_energy":38.70679719559084,"initial_expected_energy":49.96917709222156,"history":[49.96917709222156,49.69547582621816,59.57662056980185,49.82652390631753,51.07128054950584,49.760348852906006,49.87864014827047,49.427962243634475,49.298882031568674,49.36930504502389,49.48962359353733,49.2494328345771,49.254570670752514,49.261147848928815,49.227771713212704,49.18801192954229,49.13252826127722,49.296025793206724,49.079487729294996,49.058514638152886,49.01503706428735,48.95254548827258,48.86284739073021,48.770023342819755,48.73938578795937,50.82327210675338,48.89928374558572,48.748822854489305,49.16398705742568,48.646916808508195,48.649372961947876,48.650265962306264,48.65183110830296,48.63984557082138,48.63676853966989,48.63678745526243,48.638421609713326,48.6360611412295,48.6388821932378,48.63670801365923,48.63640419982695,48.63596945061331,48.63738147292562,48.635716962034024,48.63535194521883,48.63509671703856,48.63464508387632,48.633890591022784,48.63425928618632,48.63505027383534,48.63376521042454,48.634501523604655,48.633692237811886,48.633557591281985,48.63361326821434,48.63349672727021,48.63346662550252,48.63351769416664,48.633400684286,48.63333738169791,53.893124803880355,53.6163095759521,50.93248374835957,50.871860982648336,49.76828824160048,46.60004622306481,48.406573925898,49.83119854817369,40.7876662649723,51.487536820661504,43.93347257562242,40.41651319338133,42.096675302745,40.332917833369216,41.45561741534138,40.11730269803911,39.97938306886124,39.79243412928851,39.62435983664689,39.474607045257954,39.435302382474404,41.42516578015866,39.080198852983365,39.14131615494969,39.064077031541146,39.14391359230475,39.048957819220455,39.02509647935205,38.99340221365881,39.04983856722861,38.975331042904514,38.957472831796416,38.934823310791884,38.90104340727667,38.883348865941024,38.96244965863335,38.86406387101822,38.85275466297705,38.83847358246717,38.81247667436207,38.79420640666538,38.780937299913575,38.77712792806004,39.09801205518786,38.719764529300114,38.73394842550353,38.71782175332219,38.735725081368265,38.71286695035942,38.715223810139236,38.71806187880366,38.71145612006839,38.711350023594036,38.71200093342887,38.71142852459981,38.710731086957296,38.709677374528624,38.70948236345931,38.7080304948491,38.70679719559084],"feasible_probability":0.6975026673274896,"one_hot_probability":1.0,"sampled_feasible_fraction":0.720703125,"counts":{"0010100010011":3,"0010100010101":12,"0010100011001":1,"0010100100011":6,"0010100100101":18,"0010100101001":7,"0010101000011":1,"0010101000101":5,"0010110000011":1,"0010110000101":6,"0010110001001":3,"0011000010101":3,"0011000011001":1,"0011000100011":2,"0011000100101":31,"0011000101001":6,"0011001000011":1,"0011001000101":2,"0011001001001":3,"0011010000101":10,"0011010001001":2,"0100100010011":3,"0100100010101":13,"0100100011001":4,"0100100100011":11,"0100100100101":34,"0100100101001":9,"0100101000011":7,"0100101000101":18,"0100101001001":13,"0100110000101":2,"0101000010011":5,"0101000010101":18,"0101000011001":6,"0101000100011":21,"0101000100101":59,"0101000101001":17,"0101001000011":2,"0101001000101":5,"0101001001001":3,"0101010000011":7,"0101010000101":38,"0101010001001":16,"1000100010011":2,"1000100010101":10,"1000100011001":1,"1000100100011":1,"1000100100101":4,"1000100101001":3,"1000101000011":9,"1000101000101":24,"1000101001001":8,"1001000010011":2,"1001000010101":1,"1001000100101":3,"1001000101001":3,"1001010000011":1,"1001010000101":4,"1001010001001":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3283291410043603},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":3,"removals":[],"infeasible_task":null,"component_qubits":[3,9],"max_component_qubits":9,"component_to_original":[[1,2,3],[4,5,6,7,8,9,10,11,12]],"components":[{"qubits":3,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1,-5],"quadratic":[[0,1,14],[0,2,14],[1,2,14]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":2}],"conflicts":[]},{"qubits":9,"penalty":27,"objective_bound":26,"offset":81,"linear":[-27,-16,-19,-21,-27,-21,-27,-18,-21],"quadratic":[[0,1,54],[0,2,54],[0,3,54],[1,2,54],[1,3,54],[1,6,27],[1,8,27],[2,3,54],[2,5,27],[2,6,27],[3,4,27],[4,5,54],[5,6,27],[5,8,27],[6,7,54],[6,8,54],[7,8,54]],"domains":[[0,1,2,3],[4,5],[6,7,8]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":7,"cost":0},{"index":1,"task":"t2","resource":"r0","start":13,"cost":11},{"index":2,"task":"t2","resource":"r1","start":11,"cost":8},{"index":3,"task":"t2","resource":"r0","start":8,"cost":6},{"index":4,"task":"t3","resource":"r0","start":9,"cost":0},{"index":5,"task":"t3","resource":"r1","start":11,"cost":6},{"index":6,"task":"t4","resource":"r1","start":12,"cost":0},{"index":7,"task":"t4","resource":"r2","start":17,"cost":9},{"index":8,"task":"t4","resource":"r1","start":13,"cost":6}],"conflicts":[{"i":1,"j":6,"reasons":["group"]},{"i":1,"j":8,"reasons":["group"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource"]},{"i":5,"j":8,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":3,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":8,"reserved_end":8,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":11,"reserved_end":12,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":3},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":367776961,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[-1.0684743234704874,1.9968823939528866],"expected_energy":1.2385187551265147,"initial_expected_energy":2.8012155711926656,"history":[2.8012155711926656,2.9210926124423,2.2742014941399757,2.4665339421643795,1.9785747908527238,1.8714006392057738,2.546752606126942,1.8403006845286685,1.8627886148274826,1.8781274943076354,1.8003295733193685,1.8047537055201008,1.8105225844325679,1.8027999239309154,1.794581725446318,1.7851133721765695,1.764300784738317,1.718593529697258,1.620446319292624,1.6718334330552866,1.9796096724555308,1.5984300239999323,1.7513931737211408,1.5959710636247826,1.5709509702767743,1.522567485053363,1.4324323924684679,1.307782937864168,2.436588613283709,1.8990164220784425,1.2954210051170905,1.313144568378817,1.3278830959889445,1.2727074585090201,1.296020833556184,1.2813768310721354,1.2736067628353895,1.2698392887201124,1.2700192738364422,1.268812567950238,1.2680229042475533,1.2675682158503614,1.2720229267316308,1.2659289489264283,1.2645519027318968,1.262354766510716,1.2582058371161602,1.2576981510275849,1.2494111555960588,1.2544253288430804,1.253105545038375,1.2507476419309833,1.24834842492585,1.250824571922517,1.2473975333634222,1.2465824589806433,1.2457570693626545,1.243652676277998,1.2423366261917754,1.2385187551265147,2.7279833934329796,2.8054708171283256,1.8895315312953254,3.2084689129345634,1.8205729613898738,1.7280699121476557,1.8094850754959546,1.7139679966575494,1.7428307246341745,1.6945477647230434,1.6894887801209029,1.656044258468791,1.707941262801922,1.662251129828974,1.6523918518691811,1.6690648331065925,1.648898877889526,1.6424544982550018,1.6365710754361162,1.634309646725011,1.6197695651100457,1.6084842464597044,1.5853895969120595,1.5488386722510583,1.7124337668896974,1.718120383664305,1.5316694793423449,1.5244624226251182,1.6028772055605696,1.5045928541956273,1.4952695088606065,1.4854696829118017,1.480849239309264,1.4517674081876257,1.4594166491459535,1.44720285942766,1.4624040369292226,1.4406945101761481,1.4349681045063423,1.4242828723755683,1.4033371708358096,1.3693662762868313,1.457642233349922,1.527659004684032,1.3661470758553915,1.354471651092204,1.332739446746149,1.300389790677948,1.3068717262675653,1.4172910523839963,1.3123773080192906,1.298095742477423,1.3105158545842945,1.2941932645855654,1.2914702118109682,1.2948569586539842,1.2900232499242041,1.2885949244417572,1.2858033882651947,1.2805776344101871],"feasible_probability":0.9999999999999999,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":1.0,"counts":{"001":296,"010":46,"100":170},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08610851199773606},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":7,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t3","group":"g1","resource":"r0","start":9,"end":11,"reserved_end":12,"changed":false},{"variable":6,"task":"t4","group":"g0","resource":"r1","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,0,0,0,1,0,1,0,0],"qubo_energy":0},"seed":3166742020,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9666961342492254,2.9273401946671607],"expected_energy":19.204726566521085,"initial_expected_energy":37.30257637982084,"history":[37.30257637982084,38.56588133381985,35.72603105056791,38.18470585625192,34.646037534335555,35.22808669904861,34.95085998849472,34.714762626441605,34.67797282825862,34.65211075888851,34.65765003885536,34.6538784927216,34.64842133195528,34.64154435768679,34.63462001363208,34.630032952260315,34.62964424493513,34.62831591057466,34.62972882523467,34.6295834915999,34.626980762598414,34.62681507489592,34.62666523409921,34.626983520494164,34.62703818533808,34.626644121079195,34.626731009432994,34.62663120260196,34.626620366256695,34.626637431386634,34.62660593837742,34.62659939803023,34.62659245183157,34.626590936876745,34.62660728579055,34.62658954413043,34.626591637880175,34.626589739691156,34.62658969743466,34.62658959538247,34.626589483699085,34.62658950555327,34.62658948443388,34.626589502229635,34.626589482023526,34.626589484272245,36.15927575973721,37.21146009665708,32.30533145308727,47.615178515878505,33.056995774206214,33.32132930872934,31.98237604226053,36.423578992487734,31.495900015462368,30.629865675068878,29.077264122706325,26.54818421749018,22.30708651397243,26.471519333912656,61.559824377129765,24.32288536691836,22.73386505317711,26.26190696224097,21.062712416647944,21.58489776750044,21.33977979148712,21.09682333004311,20.94469529840201,20.871254716088085,21.225666424452484,20.714840375403366,20.667462308638264,20.557860956188104,20.46422275555244,20.436925241830654,20.162000261511714,20.146237012917496,20.007768580738798,19.851708261063017,19.742336558926137,20.072865667587855,19.667907151082623,19.63267895928253,19.75611854660562,19.600623056074276,19.574044071652587,19.527634153392142,19.443474054820346,19.33915244400523,19.354012441327725,19.508431201732026,19.373079562525234,19.31009391961656,19.293350408253474,19.35161137371918,19.278627403548054,19.2706268032283,19.25871531855039,19.240538673248235,19.233529077373674,19.225382354628792,19.262462282836537,19.284901000830544,19.235556419155028,19.204726566521085],"feasible_probability":0.8095153259384882,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.818359375,"counts":{"001010001":46,"001010010":5,"001010100":7,"001011000":24,"001100001":2,"001100010":1,"001100100":6,"001101000":11,"010010001":72,"010010010":48,"010010100":77,"010011000":17,"010100001":43,"010100010":24,"010101000":44,"100010001":32,"100010010":1,"100010100":33,"100011000":4,"100100001":2,"100100100":1,"100101000":12},"circuit_evaluations":106,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":46},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11151780199725181}],"circuit_evaluations":226,"status":"feasible","feasible_probability":0.8095153259384881,"total_shots":1024,"runtime_seconds":0.19791331299347803},"direct_metrics":{"exact_objective":3,"optimal_count":1,"combinations":72,"optimal_probability":0.004137856352334806,"feasible_probability":0.6975026673274896,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.375,"shots_for_95_percent":723,"hit_curve":[{"shots":8,"quantum":0.032627385895549484,"uniform":0.10585733481633375},{"shots":16,"quantum":0.06419022548072187,"uniform":0.20050889429825008},{"shots":32,"quantum":0.1242600659141778,"uniform":0.3608139719037934},{"shots":64,"quantum":0.2330795678473598,"uniform":0.5914412214865954},{"shots":128,"quantum":0.4118330507468076,"uniform":0.8330797244996347},{"shots":512,"quantum":0.8803252671889787,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.0408340855860843e-16,"independent_samples":[{"shots":8,"best_objective":5},{"shots":16,"best_objective":20},{"shots":32,"best_objective":9},{"shots":64,"best_objective":9},{"shots":128,"best_objective":3},{"shots":512,"best_objective":3}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.5953366119285375,"feasible_probability":0.9999999999999999,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":4,"hit_curve":[{"shots":8,"quantum":0.9992809628871284,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999994829856304,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999997327,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":24,"optimal_probability":0.09809885597066724,"feasible_probability":0.8095153259384882,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.375,"shots_for_95_percent":30,"hit_curve":[{"shots":8,"quantum":0.5622042890487692,"uniform":0.2885690504976606},{"shots":16,"quantum":0.8083349154727064,"uniform":0.49386600409019976},{"shots":32,"quantum":0.9632644953731454,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9986505026998104,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9999981788570368,"uniform":0.9956935037719361},{"shots":512,"quantum":1.0,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.551115123125783e-17,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.058401840547642615,"diagnostic_seconds":0.010749427005066536}
+{"instance":"n5-s0-r3.json","seed":5,"direct":{"status":"feasible","best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":3,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":8,"reserved_end":8,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":11,"reserved_end":12,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":3},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9753542128619546,2.9334802052836726],"expected_energy":26.93611999504887,"initial_expected_energy":49.24570111882427,"history":[49.24570111882427,49.46920870018391,30.7495769078934,82.46695301613423,37.000058354249084,33.89606107398115,29.78881444838257,35.677802231772695,29.34754996373464,29.642531778825504,30.929644426286046,28.181679466977933,29.331005934800125,28.42310057333747,28.162644784548462,28.04645363079421,27.831915533358117,27.584402345370126,27.67287505904195,27.941383503860077,27.598524540628603,27.628850046781388,27.511705269961386,27.426718228656856,27.39187689070826,27.495784548849933,27.35774542298456,27.328048344238777,27.273443759082134,27.178343075286257,27.34764148667703,27.344422368553218,27.18008937960813,27.171252666248844,27.163392910745156,27.17338624955812,27.13716638519491,27.122316076893824,27.10236500241688,27.066880927030226,27.05220555520636,27.019026616747347,27.15985073384956,27.095508370108366,26.99812479153275,26.984770923204465,26.984447963749204,26.96155988893207,26.960418008386927,26.95173924131381,26.94539355704333,26.943452353282346,26.950837172670028,26.97299608438663,26.942372836300954,26.93639960526532,26.95104269866934,26.93838643913107,26.937496709587244,26.93611999504887,51.69660285035055,60.01130499827178,47.63675368829304,49.88411902457966,50.04665793925293,48.23483122193267,46.078629373724375,44.15599640140523,52.38115316740467,41.11510899234854,37.78926503400907,35.26211775829861,32.22211340857492,48.16438582575073,28.646775987253168,33.30690614674742,29.18278019470016,28.28366138368769,28.086926763279994,30.49813454447176,27.65128803816176,27.666901170148794,27.624490043859176,27.627236063300607,27.652595368728687,27.580047301794846,27.537137373274696,27.5993752968643,27.49813849777479,27.462064213682144,27.39861958498976,27.328446356103917,27.22680892371038,27.239417381461358,27.329153632592213,27.232150192257272,27.19822400363731,27.178487739419943,27.15704617495399,27.134960028036872,27.096621138910617,27.080129453709446,27.00966265383935,27.119216228755008,27.003998328852195,27.02543929550522,26.989709495784446,26.97814411864907,26.964569564966453,27.023625995512123,26.954182851812654,26.958664374493626,26.96489797769699,26.953843255598613,26.956635687352023,26.953982431202316,26.9528829992189,26.9514304395159,26.952531318647406,26.95024489287769],"feasible_probability":0.8169599697879972,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.806640625,"counts":{"0010100010011":15,"0010100010101":24,"0010100011001":18,"0010100100011":3,"0010100101001":3,"0010101000011":1,"0010101000101":3,"0010101001001":2,"0010110000011":13,"0010110000101":10,"0010110001001":12,"0011000101001":1,"0011001000011":3,"0011001000101":1,"0011001001001":2,"0011010000011":2,"0011010000101":3,"0011010001001":4,"0100100010011":29,"0100100010101":16,"0100100011001":17,"0100100100011":20,"0100100100101":16,"0100100101001":13,"0100101000011":24,"0100101000101":15,"0100101001001":15,"0100110000011":6,"0100110000101":9,"0100110001001":4,"0101000010011":13,"0101000010101":16,"0101000011001":6,"0101000100011":11,"0101000100101":16,"0101000101001":4,"0101001000011":1,"0101010000011":16,"0101010000101":22,"0101010001001":18,"1000100010011":12,"1000100010101":11,"1000100011001":4,"1000100100011":1,"1000100100101":1,"1000100101001":1,"1000101000011":13,"1000101000101":14,"1000101001001":15,"1000110000011":3,"1000110000101":3,"1000110001001":2,"1001000011001":1,"1001010000011":1,"1001010000101":2,"1001010001001":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3180612510041101},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":3,"removals":[],"infeasible_task":null,"component_qubits":[3,9],"max_component_qubits":9,"component_to_original":[[1,2,3],[4,5,6,7,8,9,10,11,12]],"components":[{"qubits":3,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1,-5],"quadratic":[[0,1,14],[0,2,14],[1,2,14]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":2}],"conflicts":[]},{"qubits":9,"penalty":27,"objective_bound":26,"offset":81,"linear":[-27,-16,-19,-21,-27,-21,-27,-18,-21],"quadratic":[[0,1,54],[0,2,54],[0,3,54],[1,2,54],[1,3,54],[1,6,27],[1,8,27],[2,3,54],[2,5,27],[2,6,27],[3,4,27],[4,5,54],[5,6,27],[5,8,27],[6,7,54],[6,8,54],[7,8,54]],"domains":[[0,1,2,3],[4,5],[6,7,8]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":7,"cost":0},{"index":1,"task":"t2","resource":"r0","start":13,"cost":11},{"index":2,"task":"t2","resource":"r1","start":11,"cost":8},{"index":3,"task":"t2","resource":"r0","start":8,"cost":6},{"index":4,"task":"t3","resource":"r0","start":9,"cost":0},{"index":5,"task":"t3","resource":"r1","start":11,"cost":6},{"index":6,"task":"t4","resource":"r1","start":12,"cost":0},{"index":7,"task":"t4","resource":"r2","start":17,"cost":9},{"index":8,"task":"t4","resource":"r1","start":13,"cost":6}],"conflicts":[{"i":1,"j":6,"reasons":["group"]},{"i":1,"j":8,"reasons":["group"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource"]},{"i":5,"j":8,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":3,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":8,"reserved_end":8,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":11,"reserved_end":12,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":3},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":803261128,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.9436381786936758,2.882640951767187],"expected_energy":0.8233213750836017,"initial_expected_energy":2.8583453362697497,"history":[2.8583453362697497,2.7804661145425067,1.0840585549827098,5.480244348353511,1.1856146346645122,1.076046123412672,1.189087260542454,1.0751016268125384,1.2093426684334037,1.0448832555250875,1.0369049403801336,1.015456335626133,0.9823771506719353,0.9247320823587792,0.9294673730000018,1.2408517283208234,0.9499154815076503,0.9430792151776136,0.9301237740602668,0.9195471257644143,0.9271898195124351,0.9182139945711933,0.9158939622399417,0.9131889910608668,0.9079624050467636,0.8979335661843576,0.8886607179460269,0.8755179513208307,0.884569758328674,0.9007061424023646,0.875074100449345,0.8694999811319268,0.8686028039278808,0.8747491052947721,0.8662020197649853,0.8619173677697299,0.8546032161393678,0.8420724610505639,0.8422452575913428,0.8894339356459638,0.8385669636337626,0.8493029420737427,0.8389234094543655,0.8367145966963496,0.8380461069376606,0.8389548591753123,0.8354250377875757,0.8356979937090591,0.8361203617568269,0.8343282631817498,0.8333478388576776,0.8403956836025726,0.8313271100233309,0.8301248676470536,0.8289983078085852,0.8289087932106913,0.8267354366863683,0.8250405306309018,0.8233213750836017,0.8255130044173051,2.087180787295181,2.342477385522188,2.9574567590985383,2.3891894192036895,1.86105219880565,3.5054511213102444,1.9874417731497738,1.8438962730359947,2.022576129929507,1.821441980320889,1.8234559850779624,1.830854508705411,1.8253900340627984,1.8143415486317522,1.805342667635232,1.7937981093634685,1.7711977195453346,1.7290380027239642,1.732833510428436,1.8302303798419657,1.724451928650796,1.710115533690807,1.6820169232184323,1.6344674556643524,1.538566620883361,1.365088782835395,3.7678552626000217,2.5793130475514867,1.7773683743709197,1.3497912599116133,1.5069539536126744,1.3500473614813022,1.3466499291572815,1.346482606541354,1.3600157620705993,1.3463638409078937,1.3417822358982754,1.3341744792124923,1.3237520716684794,1.3251575068820491,1.3203003643545834,1.3171101776184844,1.3112308038717715,1.302742005529323,1.4013736632958347,1.2973737252642747,1.2940561022104418,1.2958229964976562,1.291403559736,1.2872833873625171,1.2831471567169705,1.2775818360921414,1.272520880217962,1.266080852041004,1.2572001413141196,1.259937638940367,1.2843391316806678,1.256282389408708,1.2526527440745654,1.252934268237788],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":305,"010":7,"100":200},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08328165899729356},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":7,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t3","group":"g1","resource":"r0","start":9,"end":11,"reserved_end":12,"changed":false},{"variable":6,"task":"t4","group":"g0","resource":"r1","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,0,0,0,1,0,1,0,0],"qubo_energy":0},"seed":3767054407,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0639598160938997,1.204239455796501],"expected_energy":23.60018142214932,"initial_expected_energy":37.815824219529134,"history":[37.815824219529134,42.98805617249708,39.47496636548317,30.033885789822534,31.138613760983922,38.30007957808391,33.528743359238874,30.952950183738025,30.503488016042397,29.289356398429227,28.9575953852397,29.733990790460737,28.178459515900403,27.474787029474776,26.21629283362506,25.425088899792456,24.62733903620923,25.66443106365,27.705323752286535,23.995103775075048,23.715975416436198,23.87926267885548,23.691365188760752,23.843702082730474,23.709139452197064,23.757545806777895,23.677774921128634,23.648116397688412,23.61244804815624,23.60211186750669,23.611454411181445,23.60309716525407,23.6085944090041,23.6012458357888,23.602548903309753,23.60109583499411,23.60098131065157,23.600692984579474,23.600316268455202,23.600449134449743,23.60047881770542,23.6003403926126,23.60034510233171,23.600288918986863,23.600298183593576,23.60032340469823,23.600289472487596,23.600275621212575,23.600256120150057,23.600222899341336,23.600214602977143,23.600189660877348,23.60020112376004,23.60018871651816,23.600195987515953,23.600189583787166,23.600185491400588,23.600183272880336,23.60018863179569,23.60018142214932,37.59397429027601,30.987205436623057,50.7139032322476,32.98522607972747,34.91364063343396,32.133892223165304,31.74922636120124,29.479371224158236,27.138392770627636,27.03861289979045,25.06872344105708,24.012020394832035,23.672657194303348,25.581479844278785,23.82358744988695,23.79313397508401,23.69756265879295,23.64972466892339,23.63507159808752,23.672167608121327,23.626696713430693,23.621063970792083,23.625941684680175,23.618421946614934,23.617970029394105,23.61499573387392,23.612490179078044,23.608324050076753,23.60276360334799,23.60948654466604,23.606966151707834,23.60229488752994,23.60405611787776,23.60177975539875,23.601384386449958,23.601056280548317,23.600604243404472,23.60094259798718,23.601088264704725,23.60059745767231,23.60050335396612,23.60046524801072,23.60056266081844,23.60039536008476,23.60033771781327,23.600300462292456,23.6002238705983,23.60028375897693,23.60029349560596,23.60022659680195,23.60020041782066,23.6002104974023,23.60019497894564,23.60020203725655,23.600193908758598,23.60019102356716,23.600188728577454,23.600190694809555,23.600186890800025,23.600186146294728],"feasible_probability":0.6286859262358786,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.640625,"counts":{"001010001":35,"001010010":3,"001010100":3,"001011000":14,"001100001":5,"001100010":1,"001100100":9,"001101000":34,"010010001":4,"010010010":3,"010010100":13,"010011000":12,"010100001":6,"010100010":2,"010100100":3,"010101000":6,"100010001":164,"100010010":30,"100010100":95,"100011000":15,"100100001":13,"100100010":5,"100100100":21,"100101000":16},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12099159500212409}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.6286859262358786,"total_shots":1024,"runtime_seconds":0.20452350900450256},"direct_metrics":{"exact_objective":3,"optimal_count":1,"combinations":72,"optimal_probability":0.03435169518757478,"feasible_probability":0.8169599697879972,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.375,"shots_for_95_percent":86,"hit_curve":[{"shots":8,"quantum":0.24394766426003195,"uniform":0.10585733481633375},{"shots":16,"quantum":0.4283848656221386,"uniform":0.20050889429825008},{"shots":32,"quantum":0.6732561381501795,"uniform":0.3608139719037934},{"shots":64,"quantum":0.8932384487434655,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9886019711732983,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999999831220769,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":7.632783294297951e-17,"independent_samples":[{"shots":8,"best_objective":3},{"shots":16,"best_objective":5},{"shots":32,"best_objective":5},{"shots":64,"best_objective":5},{"shots":128,"best_objective":3},{"shots":512,"best_objective":3}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6187934211614649,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":4,"hit_curve":[{"shots":8,"quantum":0.9995540531542332,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999998011314107,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999605,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.3306690738754696e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":24,"optimal_probability":0.057422476044844614,"feasible_probability":0.6286859262358786,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.375,"shots_for_95_percent":51,"hit_curve":[{"shots":8,"quantum":0.3769302922934746,"uniform":0.2885690504976606},{"shots":16,"quantum":0.611784139338505,"uniform":0.49386600409019976},{"shots":32,"quantum":0.8492884455308547,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9772860273494939,"uniform":0.9343761001763541},{"shots":128,"quantum":0.999484075446432,"uniform":0.9956935037719361},{"shots":512,"quantum":0.9999999999999292,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":6},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.03553265040335166,"diagnostic_seconds":0.009799722989555448}
+{"instance":"n5-s0-r3.json","seed":6,"direct":{"status":"feasible","best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":3,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":8,"reserved_end":8,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":11,"reserved_end":12,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":3},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.8326131734952877,0.6273056276521729],"expected_energy":48.67061703777611,"initial_expected_energy":51.97978381877746,"history":[51.97978381877746,50.04462958707076,58.5310505406536,48.821747283114206,50.699038845148266,49.911643876939905,48.95125528524219,48.807749859036946,48.82780205323779,48.91489189383897,48.811744150739784,48.8110750060069,48.8092017385918,48.80294964377964,48.79913321877889,48.79135293140091,48.78019314905712,48.77091585752575,48.7617933037918,48.77512953454366,48.7657206775225,48.76450532654877,48.76405142778045,48.75896540585587,48.758913516485904,48.76107322356505,48.75705397866939,48.75410019109312,48.75267464662339,48.7616891898217,48.76254981633724,48.75267894051962,48.75147298822992,48.7527454252107,48.751564244695054,48.7514838233406,48.75149737215377,48.75148530135547,48.75147367875607,48.75147087477434,48.75147402574513,48.7514722260798,48.751469064265734,48.751469328619045,48.75146800817373,48.75146707743344,48.75146568958189,48.7514684879314,48.75146407925706,48.75146275435803,48.75146328403868,48.75146207854129,48.75146183321006,48.75146266881872,48.75146113826412,48.751460537958415,48.75145955423348,48.75145979499343,48.75145994227411,48.751459361748395,49.847557390859905,49.80272603063457,49.92362562551314,51.15675177310068,49.755764454607146,49.328970818239114,51.01969351447691,49.224630017514144,49.242901220093344,49.30077074593073,49.18120499147503,49.372035644118796,49.12565880478515,49.08081701142641,49.00258591761478,48.88855060922413,49.05822160796224,49.09622558569114,48.86838480907216,48.86011347404401,48.84783745010384,48.83966944221226,48.84969095863069,48.83464187695232,48.82605984589905,48.81516403865343,48.80535549500057,48.80554987783358,48.80031226096334,48.80355624229873,48.803596385558976,48.795524093668966,48.79401175238046,48.81069963361344,48.794454498810424,48.78799187123915,48.78195941816441,48.796775438585804,48.776758742936565,48.77195831677403,48.763034714367144,48.75579357232711,48.737553525408174,48.745223173315345,48.73335782934635,48.747462044551966,48.72879366551844,48.724779498257476,48.7177510771225,48.7258555134538,48.71576698436979,48.70739422412901,48.693903239919315,48.67061703777611,48.80385715755639,48.771311595478856,48.69999233958691,48.674062478532164,48.67176614478829,48.67109694845887],"feasible_probability":0.40006622985304435,"one_hot_probability":1.0,"sampled_feasible_fraction":0.412109375,"counts":{"0010100010011":4,"0010100010101":16,"0010100011001":2,"0010100100011":7,"0010100100101":16,"0010100101001":4,"0010101000011":7,"0010101000101":21,"0010101001001":10,"0010110000011":3,"0010110000101":8,"0010110001001":3,"0011000010011":2,"0011000010101":7,"0011000011001":3,"0011000100011":2,"0011000100101":11,"0011000101001":2,"0011001000101":1,"0011010000011":9,"0011010000101":28,"0011010001001":13,"0100100010011":11,"0100100010101":32,"0100100011001":21,"0100100100011":3,"0100100100101":4,"0100100101001":2,"0100101000011":3,"0100101000101":13,"0100101001001":4,"0100110000011":3,"0100110000101":7,"0100110001001":5,"0101000010011":4,"0101000010101":14,"0101000011001":14,"0101000100011":2,"0101000100101":9,"0101000101001":6,"0101001000011":4,"0101001000101":10,"0101001001001":7,"0101010000011":6,"0101010000101":15,"0101010001001":3,"1000100010011":4,"1000100010101":10,"1000100011001":7,"1000100100011":3,"1000100100101":5,"1000100101001":3,"1000101000101":1,"1000101001001":1,"1000110000011":3,"1000110000101":6,"1000110001001":1,"1001000010011":2,"1001000010101":4,"1001000011001":3,"1001000100011":13,"1001000100101":23,"1001000101001":11,"1001001000011":2,"1001001000101":12,"1001001001001":8,"1001010000011":1,"1001010000101":6,"1001010001001":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.31775154000206385},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":3,"removals":[],"infeasible_task":null,"component_qubits":[3,9],"max_component_qubits":9,"component_to_original":[[1,2,3],[4,5,6,7,8,9,10,11,12]],"components":[{"qubits":3,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1,-5],"quadratic":[[0,1,14],[0,2,14],[1,2,14]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":2}],"conflicts":[]},{"qubits":9,"penalty":27,"objective_bound":26,"offset":81,"linear":[-27,-16,-19,-21,-27,-21,-27,-18,-21],"quadratic":[[0,1,54],[0,2,54],[0,3,54],[1,2,54],[1,3,54],[1,6,27],[1,8,27],[2,3,54],[2,5,27],[2,6,27],[3,4,27],[4,5,54],[5,6,27],[5,8,27],[6,7,54],[6,8,54],[7,8,54]],"domains":[[0,1,2,3],[4,5],[6,7,8]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":7,"cost":0},{"index":1,"task":"t2","resource":"r0","start":13,"cost":11},{"index":2,"task":"t2","resource":"r1","start":11,"cost":8},{"index":3,"task":"t2","resource":"r0","start":8,"cost":6},{"index":4,"task":"t3","resource":"r0","start":9,"cost":0},{"index":5,"task":"t3","resource":"r1","start":11,"cost":6},{"index":6,"task":"t4","resource":"r1","start":12,"cost":0},{"index":7,"task":"t4","resource":"r2","start":17,"cost":9},{"index":8,"task":"t4","resource":"r1","start":13,"cost":6}],"conflicts":[{"i":1,"j":6,"reasons":["group"]},{"i":1,"j":8,"reasons":["group"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource"]},{"i":5,"j":8,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":3,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":8,"reserved_end":8,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":11,"reserved_end":12,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":3},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":3153149895,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3996478242295596,1.1505630768732156],"expected_energy":1.2242256561945415,"initial_expected_energy":2.0976081271905835,"history":[2.0976081271905835,2.194546996381213,2.522350271404065,2.822811080671414,2.854002162016547,2.0473712946504996,2.2741606115336794,2.069892234397648,2.0195857336945444,2.022059262531615,2.0304069093578496,2.0209847218607426,2.0157977474162947,2.0118042361216535,2.00365633877175,1.9868267789437606,1.9598164302445351,1.9835121528150783,2.1132966944046156,1.9513518184508416,1.9457068376398605,1.949308419461076,1.9325213619936266,1.9292738265432168,1.9178994749513532,1.909007990148089,1.888414249235569,1.8492763358205386,1.7572705759616758,2.009226448391131,2.2080651344598503,1.852539896708088,1.7464040140304073,1.780294349453674,1.7407562944397088,1.72872996156386,1.7041185848392195,1.656551720867806,1.5608201485958677,1.3842799988706245,4.985987604300655,2.51023149951775,1.9033327749281908,1.461046524732843,1.376218196324905,1.4219515844177535,1.368621857325276,1.362741369881394,1.3734099194306535,1.3572497423807548,1.352990866629673,1.3442361281574602,1.3320022668485836,1.3221012911357153,1.3111345624695407,1.3315113628241377,1.3023821694302065,1.3051557173828645,1.3217424110179996,1.3022444145943581,5.399214712567246,5.301226519884212,1.8675291912167926,2.324414935098057,2.0616759608806348,2.0992849945298593,1.617618288002121,1.6135924669995902,1.5660163669026492,1.5236968849056307,1.4536637597999464,1.3521544261369303,2.2877685655053086,1.6783776390496516,1.4659060547899543,1.3402678877801326,1.3557833825071472,1.3350559097643557,1.3558642597434272,1.3199204293308928,1.3202088102392102,1.3175892787911565,1.3131231661307674,1.3046800404634746,1.2904701722238698,1.312555714974783,1.2895594516584965,1.2790503613526902,1.2619974511307444,1.2420543890063003,1.2743343993773426,1.2801196254583707,1.239501212110432,1.2418323476375361,1.2408700703249909,1.2377912646764941,1.238061410240796,1.238723290981284,1.2379674945948267,1.2369786363999022,1.23551567645574,1.2327183598052163,1.2285101655036268,1.2477016582409435,1.2528711962774104,1.2291862621788023,1.2290034045928087,1.2290113134283687,1.2278756279727971,1.2278338407647935,1.2284675482766962,1.2272849825818817,1.226295944480792,1.224621192515017,1.2306685585348054,1.2290057135869557,1.2252741169286894,1.2244643484327107,1.2247226015417807,1.2242256561945415],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":328,"010":66,"100":118},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08740518899867311},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":7,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t3","group":"g1","resource":"r0","start":9,"end":11,"reserved_end":12,"changed":false},{"variable":6,"task":"t4","group":"g0","resource":"r1","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,0,0,0,1,0,1,0,0],"qubo_energy":0},"seed":4186225163,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.188456270841798,1.7447370944449396],"expected_energy":34.157546928202585,"initial_expected_energy":42.41117872353499,"history":[42.41117872353499,38.49962359304656,39.2126715771797,36.9386513843471,38.46800708072073,34.934431088349335,35.445877455525526,35.18522815661826,35.07679910513122,34.78309298337142,34.692229332048385,34.78537518852158,34.65827407054343,34.63708035849907,34.634386585538834,34.6274391487703,34.627283327506134,34.62720562601619,34.62818760611543,34.62727721531887,34.62763061564687,34.62721775679297,34.62703620292247,34.62678124351807,34.6270669711314,34.62682190289362,34.626744818212714,34.626831825745974,34.62672116656447,34.62668225875774,34.62663082148086,34.626602174334984,34.626608423676046,34.62660454731057,34.62660839053092,34.62660188342548,34.626599361547335,34.62659562969392,34.626602760230895,34.626593612515975,34.62659099448752,34.62658980768121,34.62659076362797,34.626590372258796,34.62659000763695,34.62658965004283,34.62658991388915,34.626589544714605,34.626589777022396,34.62658950554727,34.62658949158753,34.62658957337408,34.62658948248489,34.626589487206566,34.626589486786806,43.10506453832473,42.13647302170123,34.53432498598063,36.79779913479442,34.731227125755424,34.30372173492832,34.56804225583247,34.34722945661363,34.36598920401897,34.28679707188961,34.55376161604191,34.30244690935668,34.272180935297804,34.25479941810272,34.24848474049419,34.26606256422722,34.243878850689114,34.23978910899484,34.23236216443228,34.22443174818136,34.21370606243301,34.218475847505935,34.22902103507381,34.210169043798516,34.21036991266539,34.21160101379003,34.20758235342826,34.203251315498875,34.205534686186425,34.200896243301294,34.19876299327254,34.195502130222856,34.207757248402174,34.19087241865551,34.19342597368947,34.19463267056303,34.189911135152975,34.19021775058378,34.18961718023473,34.18908548241704,34.18817914513232,34.18770105344185,34.18474353265806,34.18381104712955,34.18132480647254,34.178435741036125,34.17436258978519,34.174053425216385,34.16710405379451,34.174731575216725,34.16638248184818,34.16863719764481,34.16606112243421,34.16525308091281,34.16422564045301,34.16281764442232,34.161358074394876,34.16093987873367,34.157546928202585,34.16889397472176],"feasible_probability":0.39022832586904505,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.388671875,"counts":{"001010001":27,"001010010":26,"001010100":26,"001011000":2,"001100001":25,"001100010":2,"001100100":15,"001101000":38,"010010001":7,"010010010":6,"010010100":36,"010011000":38,"010100001":16,"010100010":39,"010100100":25,"100010001":55,"100010010":13,"100010100":13,"100011000":9,"100100001":14,"100100010":31,"100100100":22,"100101000":27},"circuit_evaluations":115,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":55},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12732825499551836}],"circuit_evaluations":235,"status":"feasible","feasible_probability":0.39022832586904505,"total_shots":1024,"runtime_seconds":0.21496730300714262},"direct_metrics":{"exact_objective":3,"optimal_count":1,"combinations":72,"optimal_probability":0.008112496901724588,"feasible_probability":0.40006622985304435,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.375,"shots_for_95_percent":368,"hit_curve":[{"shots":8,"quantum":0.06308681967062915,"uniform":0.10585733481633375},{"shots":16,"quantum":0.12219369252510383,"uniform":0.20050889429825008},{"shots":32,"quantum":0.22945608655728805,"uniform":0.3608139719037934},{"shots":64,"quantum":0.4062620774563904,"uniform":0.5914412214865954},{"shots":128,"quantum":0.6474752793335987,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9845560527871103,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.7755575615628914e-17,"independent_samples":[{"shots":8,"best_objective":5},{"shots":16,"best_objective":12},{"shots":32,"best_objective":14},{"shots":64,"best_objective":3},{"shots":128,"best_objective":3},{"shots":512,"best_objective":3}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6420943925867741,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9997307547679446,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999999275070051,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999948,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.3306690738754696e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":24,"optimal_probability":0.06853967334579379,"feasible_probability":0.390228325869045,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.375,"shots_for_95_percent":43,"hit_curve":[{"shots":8,"quantum":0.4333499974562019,"uniform":0.2885690504976606},{"shots":16,"quantum":0.6789077746171136,"uniform":0.49386600409019976},{"shots":32,"quantum":0.8968997827986657,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9893703452130377,"uniform":0.9343761001763541},{"shots":128,"quantum":0.99988701043911,"uniform":0.9956935037719361},{"shots":512,"quantum":0.9999999999999999,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.249000902703301e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.04400893992506338,"diagnostic_seconds":0.011304020998068154}
+{"instance":"n5-s0-r3.json","seed":7,"direct":{"status":"feasible","best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":3,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":8,"reserved_end":8,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":11,"reserved_end":12,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":3},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.016172855512428,2.9315538802127192],"expected_energy":26.9981516048857,"initial_expected_energy":52.070003784950686,"history":[52.070003784950686,48.770063362659414,50.03255743431005,50.063457864813046,49.818331668832485,48.866702864409575,48.76384285916705,48.84682884651282,48.755534031651145,48.86840120677416,48.768881106654035,48.75683329324463,48.76991573554784,48.753031276340046,48.752702437262954,48.75188958618526,48.75154142368531,48.75283874557579,48.75244136490817,48.75190209526653,48.751511068320816,48.751553331459355,48.751517739496954,48.75149679801184,48.751509233294335,48.751490077296395,48.75148991927337,48.751485882041436,48.75147920435836,48.75147038972033,48.75146409956317,48.751459566170105,48.751458974232506,48.75145810819724,48.75146122471913,48.751457958421476,48.751458191068615,48.75145808042184,48.75145792071647,48.75145790497457,48.751458035048906,48.75145787972583,48.75145787696093,48.75145786502608,48.751457861840606,48.751457862447936,48.75145786753407,44.3708972139508,49.13674617459483,59.61227085330829,55.920848165509724,37.10301428800215,76.50641984859186,41.239664567994744,36.92452726744193,46.66340907249129,36.066834040255365,35.24384228178746,34.70850251553557,36.07889905921089,34.144816857821695,33.738383621079485,32.922465362508795,32.536571833053074,31.19730780187656,33.84171644582107,30.301613046396405,31.86458514323471,29.940358980531528,29.761337597658716,29.375446501719384,29.032994246244925,28.424692288719882,29.142277460083452,28.91056604412042,28.62327376525209,28.51165742757724,28.352483793428377,28.499699510927556,28.32640530500953,28.278438281805677,28.199501950168113,28.240741499448568,28.12112307091928,28.12115604157183,28.143744284490058,28.080919372369603,28.020355749902947,28.033494594901935,28.148248384620313,27.97325290859194,27.934828400760956,27.89405764546674,27.789319857530145,27.710405216319845,27.540060040475588,27.40973541947492,27.315253955154148,27.197370932180146,27.602794178487212,27.233436192014395,27.191540870671282,27.694612163350204,27.106388664924093,27.01176652138975,26.9981516048857,27.05550332470694],"feasible_probability":0.8200640634746622,"one_hot_probability":1.0,"sampled_feasible_fraction":0.798828125,"counts":{"0010100010011":16,"0010100010101":12,"0010100011001":10,"0010100100011":1,"0010100100101":2,"0010100101001":1,"0010101000011":5,"0010101000101":4,"0010101001001":2,"0010110000011":1,"0010110000101":11,"0010110001001":11,"0011000010101":1,"0011000011001":2,"0011000100101":2,"0011001000011":6,"0011001000101":4,"0011001001001":2,"0011010000011":4,"0011010000101":1,"0011010001001":3,"0100100010011":26,"0100100010101":30,"0100100011001":20,"0100100100011":24,"0100100100101":18,"0100100101001":14,"0100101000011":26,"0100101000101":12,"0100101001001":13,"0100110000011":7,"0100110000101":4,"0100110001001":3,"0101000010011":11,"0101000010101":12,"0101000011001":16,"0101000100011":16,"0101000100101":7,"0101000101001":10,"0101001000101":1,"0101001001001":3,"0101010000011":22,"0101010000101":23,"0101010001001":18,"1000100010011":8,"1000100010101":9,"1000100011001":6,"1000100100011":3,"1000100100101":1,"1000101000011":13,"1000101000101":7,"1000101001001":10,"1000110000011":1,"1000110000101":3,"1000110001001":2,"1001001001001":1,"1001010000011":4,"1001010000101":6,"1001010001001":1},"circuit_evaluations":107,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":47},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.30831570400914643},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":3,"removals":[],"infeasible_task":null,"component_qubits":[3,9],"max_component_qubits":9,"component_to_original":[[1,2,3],[4,5,6,7,8,9,10,11,12]],"components":[{"qubits":3,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1,-5],"quadratic":[[0,1,14],[0,2,14],[1,2,14]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":2}],"conflicts":[]},{"qubits":9,"penalty":27,"objective_bound":26,"offset":81,"linear":[-27,-16,-19,-21,-27,-21,-27,-18,-21],"quadratic":[[0,1,54],[0,2,54],[0,3,54],[1,2,54],[1,3,54],[1,6,27],[1,8,27],[2,3,54],[2,5,27],[2,6,27],[3,4,27],[4,5,54],[5,6,27],[5,8,27],[6,7,54],[6,8,54],[7,8,54]],"domains":[[0,1,2,3],[4,5],[6,7,8]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":7,"cost":0},{"index":1,"task":"t2","resource":"r0","start":13,"cost":11},{"index":2,"task":"t2","resource":"r1","start":11,"cost":8},{"index":3,"task":"t2","resource":"r0","start":8,"cost":6},{"index":4,"task":"t3","resource":"r0","start":9,"cost":0},{"index":5,"task":"t3","resource":"r1","start":11,"cost":6},{"index":6,"task":"t4","resource":"r1","start":12,"cost":0},{"index":7,"task":"t4","resource":"r2","start":17,"cost":9},{"index":8,"task":"t4","resource":"r1","start":13,"cost":6}],"conflicts":[{"i":1,"j":6,"reasons":["group"]},{"i":1,"j":8,"reasons":["group"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource"]},{"i":5,"j":8,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":3,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":8,"reserved_end":8,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":11,"reserved_end":12,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":3},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3069216360536664,1.1522005312137211],"expected_energy":1.2205821401920485,"initial_expected_energy":1.9085609429533958,"history":[1.9085609429533958,1.9872723127587455,2.5493126000434074,1.8856142333786132,2.40514496407281,2.1199985476048875,1.8387545664620741,1.8432827384963102,1.971994505489413,1.6085254980454717,1.3035881770364661,1.2235953802343325,1.2229836550258948,1.2643678605977855,1.2408712511694235,1.2362677601844645,1.2231786448896367,1.2218703115347163,1.223964815078007,1.222165248451909,1.2220721894459161,1.2217485450764267,1.221555695545595,1.2214595781049518,1.2221212495527378,1.2213059133828787,1.2214408846429359,1.2214495578015598,1.221302888636283,1.221261489689029,1.2212390866916447,1.2212883911244672,1.2212310306763237,1.2212147230354424,1.2211836949540493,1.2211250277107546,1.221026105718204,1.2209715645563342,1.2208538525011936,1.2213059903282724,1.220752147084564,1.220949598093617,1.220731478419542,1.2207462817977346,1.2207184424240274,1.2207326592235743,1.2207108865057736,1.2207044614722231,1.2206970394635437,1.220683230336775,1.2206582226754548,1.2206322049828557,1.22063155797987,1.2205854906986144,1.2206289736761344,1.220650464558585,1.2205898285923231,1.2205862352636174,1.2205832987450231,1.2205821401920485,1.8248692759449714,1.906296977417579,2.6042707556427542,1.9884769589569236,2.797773217673256,1.3641666722212813,1.4499477537106547,1.370673173126318,1.7931143830694762,1.265599852908482,1.225259777346257,1.2333903204081589,1.2296939077193985,1.2366819772778106,1.2261375361303397,1.224424077756039,1.2245255785111566,1.2251722467522215,1.224489000425751,1.224038227524463,1.2238847398404413,1.223519109373815,1.2233196559663737,1.22298526666665,1.2227031760097544,1.2222585598830946,1.2224800788094965,1.2228986398096175,1.222113297417287,1.222130784069826,1.2220854465467723,1.2220372565128894,1.2219617271011978,1.2220330654183418,1.2218605779695317,1.2217927439984124,1.2219347906549047,1.2217349881948425,1.2216856781673426,1.2215890977662156,1.2214621001888797,1.2213362827462473,1.2212496201903817,1.2217133415344272,1.2211295282111962,1.22111547439128,1.2210295208546547,1.2209500166550875,1.2208346181036718,1.2209344669731257,1.2209836566816075,1.2208202889009194,1.2209627440062554,1.220803897134764,1.220786046489605,1.2207639565905095,1.220731660224352,1.2207819794842305,1.2207363427855638,1.220727551352506],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":322,"010":53,"100":137},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10479716899862979},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":7,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t3","group":"g1","resource":"r0","start":9,"end":11,"reserved_end":12,"changed":false},{"variable":6,"task":"t4","group":"g0","resource":"r1","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,0,0,0,1,0,1,0,0],"qubo_energy":0},"seed":3618983171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.7498696020358913,2.1416525182427466],"expected_energy":32.45553937807733,"initial_expected_energy":41.612482643745075,"history":[41.612482643745075,41.3245466716722,35.142690587361656,38.02845692873398,34.43645690302957,36.549820801929656,34.484781798219785,34.75723599074899,34.40653869850891,34.31861151437856,34.567531874621935,34.39300742239494,34.36567829972799,34.349410337413055,34.32647817158502,34.30325394319794,34.292113270196054,34.30199664078532,34.287435967603535,34.285668466182386,34.280554042747426,34.27104254042478,34.25363921094406,34.22341867179405,34.47027223061171,34.31694844001082,34.24270323620026,34.22049027520066,34.2276934378295,34.21811468953426,34.21502715717276,34.209339452369285,34.205669433038395,34.197766008761285,34.21997893063072,34.20986894277454,34.19447333093496,34.19283036037623,34.1975882949153,34.188482296542006,34.18701673641173,34.18466440595289,34.18260459056302,34.17945936835037,34.17518453063553,34.172784228202254,34.17582271838239,34.19125678275168,34.17134541255838,34.168188430390956,34.167961283241056,34.17139139101576,34.16684350510555,34.166012013685624,34.16479030061079,34.16262632747758,34.1585113075622,34.15451826399244,34.25817223088952,34.206703137555174,37.229737829119856,36.25866923855469,38.11144618766977,35.62059107205637,34.59179677165118,36.9523463888639,43.63550973901946,34.40728334655214,35.22766012300175,34.187649149594215,33.57159350091983,32.52543008170192,35.103544661870195,32.50039756368345,32.74306350787732,32.76654389697608,32.55341070415657,32.50801621817293,32.514473163535335,32.49650993089729,32.49075228488546,32.4807196696687,32.474693551007014,32.46895583808228,32.479971810856405,32.48957508081727,32.47190565341732,32.46203686590466,32.46072613630277,32.45913958144385,32.46095758373401,32.458395249626086,32.45791115941737,32.45904361320359,32.45752093181458,32.4572386162694,32.456946715506106,32.4564701027908,32.45652498533771,32.45688766437621,32.45637462673301,32.45675039724316,32.45632403943645,32.456236581034744,32.45608589449521,32.45588118392761,32.45584289074438,32.45570337283624,32.455588564853386,32.455541647634696,32.45577693794216,32.455678431794496,32.45554917727541,32.455545798342555,32.45555241955688,32.45554997677074,32.45554342736882,32.45553937807733,32.45553959037914,32.45553950887213],"feasible_probability":0.4302551545485598,"one_hot_probability":1.0,"sampled_feasible_fraction":0.427734375,"counts":{"001010001":16,"001010010":32,"001010100":61,"001011000":7,"001100001":9,"001100010":29,"001100100":2,"001101000":28,"010010001":32,"010010010":8,"010010100":6,"010011000":2,"010100001":4,"010100010":39,"010100100":10,"010101000":33,"100010001":71,"100010010":4,"100010100":10,"100011000":11,"100100001":11,"100100010":4,"100100100":34,"100101000":49},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.14509748700947966}],"circuit_evaluations":240,"status":"feasible","feasible_probability":0.4302551545485598,"total_shots":1024,"runtime_seconds":0.25016366499767173},"direct_metrics":{"exact_objective":3,"optimal_count":1,"combinations":72,"optimal_probability":0.03465099960072151,"feasible_probability":0.8200640634746621,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.375,"shots_for_95_percent":85,"hit_curve":[{"shots":8,"quantum":0.24582034991922774,"uniform":0.10585733481633375},{"shots":16,"quantum":0.4312130554040439,"uniform":0.20050889429825008},{"shots":32,"quantum":0.6764814116571968,"uniform":0.3608139719037934},{"shots":64,"quantum":0.8953357229966799,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9890453891193722,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999999855991601,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":9.020562075079397e-17,"independent_samples":[{"shots":8,"best_objective":12},{"shots":16,"best_objective":3},{"shots":32,"best_objective":3},{"shots":64,"best_objective":3},{"shots":128,"best_objective":3},{"shots":512,"best_objective":3}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6317900993161397,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":3,"hit_curve":[{"shots":8,"quantum":0.9996621190586329,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999998858364695,"uniform":0.9984775611596526},{"shots":32,"quantum":0.999999999999987,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":24,"optimal_probability":0.029624244294009103,"feasible_probability":0.4302551545485598,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.375,"shots_for_95_percent":100,"hit_curve":[{"shots":8,"quantum":0.21382451163589297,"uniform":0.2885690504976606},{"shots":16,"quantum":0.3819281014954578,"uniform":0.49386600409019976},{"shots":32,"quantum":0.6179871282789908,"uniform":0.7438283781843783},{"shots":64,"quantum":0.8540661658394678,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9787033160472063,"uniform":0.9956935037719361},{"shots":512,"quantum":0.9999997942935337,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.249000902703301e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":6},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.018716304244677597,"diagnostic_seconds":0.01250349399924744}
+{"instance":"n5-s0-r3.json","seed":8,"direct":{"status":"feasible","best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":3,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":8,"reserved_end":8,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":11,"reserved_end":12,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":3},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.958073088456326,2.933998737127713],"expected_energy":26.933852799479716,"initial_expected_energy":44.23273525120149,"history":[44.23273525120149,48.57457981976304,46.505088907565025,52.150763921754034,47.37170868063348,44.93945908975428,43.353024703901106,41.61921601878174,38.69548747965068,40.43567010654331,40.50134214559696,39.221075270029324,37.602556510502644,36.48533318299611,35.173529372994665,34.120416057870884,36.15729684447908,35.17693509437697,34.3620002392208,33.9767988195792,35.06927733138674,33.70771949627408,33.51406836763125,33.23071855855268,33.40780044476756,33.26574396964163,33.295103382477464,33.23359822079187,33.20738515873981,33.163636148959455,33.089859841283825,33.12550928140193,33.12892225537624,33.071329712269446,33.109747079202606,33.054216411432826,33.03906911874529,33.01387820991947,32.99101157253787,32.95096726194228,32.98415467556864,33.00937353748313,32.96656309448268,32.95478581746891,32.95094337137689,32.94462417832665,32.93984958932629,32.93448366380278,32.94529973530796,32.941064543427686,32.93402637231642,32.933288307495886,32.93315712261635,32.935991122473574,32.93315542101933,32.93260238576317,32.932660247764346,32.93258069898128,32.932696162412846,32.932503344922395,70.23906019734358,65.34183173614385,47.97043016039229,42.255992746144834,48.44489903023698,70.45679050531957,46.05149768797944,42.81438249771166,41.00134917974894,42.51780544532816,39.83249530767123,39.098507801158554,38.27883749179496,37.15131752727767,44.19185522041874,35.98057931111966,35.70716883016277,34.58195192254138,33.63959326333024,31.657471989998943,33.74047929626597,34.04185405789326,31.416899924573254,33.01837817431567,30.91308476394291,30.630472313514176,33.409850607146566,29.997526350631567,29.80310690372763,29.464917304745992,28.88277756110323,28.971214459073845,29.224712566898177,29.01312009499749,29.060996569634437,28.86850121985117,28.80268268943355,28.701850685975263,28.88798023577685,28.609086697905276,28.49903720418721,28.294285740045975,27.94558618671762,27.856188430729375,27.805351589550963,27.631626735841543,26.942128236502455,31.7572817827351,29.533346876639797,27.481054318760204,26.967343289408827,27.133594114401898,26.934183864033564,26.967474598927357,26.936258369182582,26.937795370203784,26.933967322562545,26.934358454989386,26.934046243535015,26.933852799479716],"feasible_probability":0.8152143852506356,"one_hot_probability":1.0,"sampled_feasible_fraction":0.80078125,"counts":{"0010100010011":14,"0010100010101":12,"0010100011001":7,"0010100100011":4,"0010100100101":5,"0010100101001":2,"0010101000011":2,"0010101000101":4,"0010101001001":3,"0010110000011":13,"0010110000101":10,"0010110001001":2,"0011000010101":2,"0011000011001":1,"0011000100011":1,"0011001000011":2,"0011001000101":2,"0011001001001":5,"0011010000011":5,"0011010000101":5,"0011010001001":2,"0100100010011":22,"0100100010101":30,"0100100011001":23,"0100100100011":10,"0100100100101":16,"0100100101001":10,"0100101000011":19,"0100101000101":26,"0100101001001":10,"0100110000011":1,"0100110000101":4,"0100110001001":4,"0101000010011":17,"0101000010101":13,"0101000011001":9,"0101000100011":15,"0101000100101":10,"0101000101001":8,"0101001000011":2,"0101001000101":1,"0101010000011":29,"0101010000101":22,"0101010001001":15,"1000100010011":14,"1000100010101":12,"1000100011001":4,"1000100100011":1,"1000101000011":13,"1000101000101":18,"1000101001001":12,"1000110000011":2,"1000110000101":5,"1000110001001":4,"1001000011001":1,"1001010000101":5,"1001010001001":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.345261013993877},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":3,"removals":[],"infeasible_task":null,"component_qubits":[3,9],"max_component_qubits":9,"component_to_original":[[1,2,3],[4,5,6,7,8,9,10,11,12]],"components":[{"qubits":3,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1,-5],"quadratic":[[0,1,14],[0,2,14],[1,2,14]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":2}],"conflicts":[]},{"qubits":9,"penalty":27,"objective_bound":26,"offset":81,"linear":[-27,-16,-19,-21,-27,-21,-27,-18,-21],"quadratic":[[0,1,54],[0,2,54],[0,3,54],[1,2,54],[1,3,54],[1,6,27],[1,8,27],[2,3,54],[2,5,27],[2,6,27],[3,4,27],[4,5,54],[5,6,27],[5,8,27],[6,7,54],[6,8,54],[7,8,54]],"domains":[[0,1,2,3],[4,5],[6,7,8]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":7,"cost":0},{"index":1,"task":"t2","resource":"r0","start":13,"cost":11},{"index":2,"task":"t2","resource":"r1","start":11,"cost":8},{"index":3,"task":"t2","resource":"r0","start":8,"cost":6},{"index":4,"task":"t3","resource":"r0","start":9,"cost":0},{"index":5,"task":"t3","resource":"r1","start":11,"cost":6},{"index":6,"task":"t4","resource":"r1","start":12,"cost":0},{"index":7,"task":"t4","resource":"r2","start":17,"cost":9},{"index":8,"task":"t4","resource":"r1","start":13,"cost":6}],"conflicts":[{"i":1,"j":6,"reasons":["group"]},{"i":1,"j":8,"reasons":["group"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource"]},{"i":5,"j":8,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":3,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":8,"reserved_end":8,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":11,"reserved_end":12,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":3},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":3257320810,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.1672465387306883,1.1475052364182097],"expected_energy":1.22652118523448,"initial_expected_energy":4.215544030974615,"history":[4.215544030974615,4.5428436280517905,3.672246632337014,1.3248684161971434,1.9482845214408622,2.663903816304881,1.4069064263261448,1.6646397267873452,1.314427699813895,1.2819310505877544,1.2977115379138553,1.2890322878878986,1.2830999024661782,1.2787194941438604,1.2747536092135991,1.2690952056436284,1.2664834813470065,1.2844513848046848,1.2621929553601596,1.2601646124230843,1.257503691782115,1.2529004707649392,1.2606878058786632,1.2531492721369855,1.2520658934851758,1.2526207568215013,1.2530553750103164,1.2504622681090667,1.2488164688397725,1.2503150542634707,1.2478862654818659,1.2473101213813123,1.2463446792952806,1.2445730041570353,1.2412207722702897,1.2396707481180451,1.2361254872078387,1.2512335827813184,1.2442854525379285,1.2376075409116665,1.233062620593887,1.2327327911975008,1.2321767809964284,1.231831198660378,1.232225494970236,1.2311144349105487,1.2306592559072271,1.230078924865609,1.2289856074316279,1.2270237360509837,1.2328488728248799,1.2317476571260513,1.2273679719578974,1.226856745074742,1.2269699713174664,1.2271600272429035,1.22652118523448,1.2266686431242053,1.2267715290031735,1.226524619865815,2.39000720486647,2.4310599245041424,2.2701116127528476,2.806617545944806,2.245181514462859,2.183035082387398,2.714390251142174,2.221496363286719,2.1962874160956813,2.181499753989332,2.2497642744077986,2.1689149926126037,2.2153999486284452,2.1659468028091493,2.165735203884849,2.165541184061647,2.165678994652853,2.1658566708590357,2.1655115267735257,2.1656622463726602,2.1655100823051603,2.1654565048467522,2.165407258790383,2.165313603658775,2.165150611859545,2.1647568286566687,2.1649177378236026,2.165584966309628,2.164859085876798,2.1646984810195935,2.164421600845917,2.1645500758767855,2.164539757121375,2.1643788765073246,2.1644279362809993,2.164330467257229,2.164276420097979,2.1641722243614527,2.1640337881499043,2.1638046973634495,2.1637610942148817,2.1634238954328873,2.163440820813318,2.1633581255155776,2.1633825988349034,2.163400825353362,2.163290127518408,2.163227173838285,2.1633911722611634,2.1631521899085078,2.1630815331830746,2.162942412490083,2.1626613526718126,2.1620992948142184,2.160967798468733,2.1595938289155168,2.1639926452205205,2.160135181034031,2.1668348435477833,2.157632163309844],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":327,"010":61,"100":124},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08465717898798175},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":7,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t3","group":"g1","resource":"r0","start":9,"end":11,"reserved_end":12,"changed":false},{"variable":6,"task":"t4","group":"g0","resource":"r1","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,0,0,0,1,0,1,0,0],"qubo_energy":0},"seed":631391383,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0633129976847644,1.2042111939023927],"expected_energy":23.600173595619253,"initial_expected_energy":39.13773355855185,"history":[39.13773355855185,35.14083370436897,38.56711590167114,35.75645262830754,35.55191793315986,35.48556695925661,35.0909516821214,34.9078699415434,34.646162874659616,34.89462984169143,34.83331109504626,34.675860763994244,34.700684643109796,34.65140393464536,34.66568554075622,34.646796726763355,34.650250453266416,34.639076524660354,34.62951445237326,34.62671253218428,34.628270128515844,34.62760593122164,34.626719142315345,34.62674020075454,34.62670778044206,34.626752323634875,34.626690145518715,34.62665092425552,34.626624908705764,34.62662815385366,34.62661596320868,34.62660854129261,34.62659816041142,34.62660092400047,34.62659587825613,34.62659491370037,34.62660029061079,34.6265939869633,34.6265925352807,34.626590796837434,34.62659330924126,34.62659037522239,34.62658985600159,34.62659065781467,34.62658965657677,34.62658953227096,34.6265895054991,34.626589520598415,34.62658960467819,34.62658949413089,34.62658949821402,34.62658948613882,34.626589483503196,34.62658948175642,34.62658948301129,28.558287678180427,35.40026621660748,36.92673007200478,39.104932733891175,27.275007538348152,26.06843656341408,32.9982142793891,23.751703819814185,25.743260858882373,23.686161657901057,24.157199300599153,23.857989247951984,23.796107089500982,23.68022484751052,23.65444279479717,23.623949770304506,23.76263090778423,23.61674605389331,23.613603437139165,23.617092639008415,23.607453741839773,23.606902996498214,23.60324117712517,23.60218894176056,23.601053338277097,23.601216284527148,23.60325969101343,23.60109273891204,23.600625500836053,23.60060470955373,23.600495426711316,23.600409087551906,23.600289678096786,23.6002357104146,23.600233801426764,23.600190513901225,23.600186319932376,23.60018024630952,23.600216911989243,23.600181898279413,23.600177509924283,23.600176357783585,23.600209902037896,23.600182848682948,23.60017714683716,23.60017941211841,23.600175879583624,23.60017508604281,23.600174134735685,23.600177615459597,23.60017401447945,23.600173798689838,23.600174043351874,23.60017362188595,23.600173752412584,23.600173642710217,23.60017365896646,23.60017361397192,23.600173598003117,23.600173595619253],"feasible_probability":0.6286667442292351,"one_hot_probability":1.0,"sampled_feasible_fraction":0.630859375,"counts":{"001010001":30,"001010010":6,"001010100":6,"001011000":17,"001100001":5,"001100010":1,"001100100":3,"001101000":27,"010010001":7,"010010010":10,"010010100":10,"010011000":15,"010100001":8,"010100010":4,"010100100":3,"010101000":4,"100010001":161,"100010010":18,"100010100":89,"100011000":19,"100100001":15,"100100010":6,"100100100":34,"100101000":14},"circuit_evaluations":115,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":55},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12650989901158027}],"circuit_evaluations":235,"status":"feasible","feasible_probability":0.6286667442292351,"total_shots":1024,"runtime_seconds":0.21141461700608488},"direct_metrics":{"exact_objective":3,"optimal_count":1,"combinations":72,"optimal_probability":0.034199451625773945,"feasible_probability":0.8152143852506355,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.375,"shots_for_95_percent":87,"hit_curve":[{"shots":8,"quantum":0.2429935476498935,"uniform":0.10585733481633375},{"shots":16,"quantum":0.4269412311003059,"uniform":0.20050889429825008},{"shots":32,"quantum":0.671603647387167,"uniform":0.3608139719037934},{"shots":64,"quantum":0.8921558355905879,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9883696362028357,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999999817032819,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.551115123125783e-17,"independent_samples":[{"shots":8,"best_objective":3},{"shots":16,"best_objective":9},{"shots":32,"best_objective":5},{"shots":64,"best_objective":3},{"shots":128,"best_objective":3},{"shots":512,"best_objective":3}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.6118150709625678,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":4,"hit_curve":[{"shots":8,"quantum":0.9994844042106354,"uniform":0.9609815576893767},{"shots":16,"quantum":0.999999734160982,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999999999293,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":24,"optimal_probability":0.05743788306804084,"feasible_probability":0.6286667442292351,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.375,"shots_for_95_percent":51,"hit_curve":[{"shots":8,"quantum":0.3770117633663181,"uniform":0.2885690504976606},{"shots":16,"quantum":0.6118856570160556,"uniform":0.49386600409019976},{"shots":32,"quantum":0.8493672567701411,"uniform":0.7438283781843783},{"shots":64,"quantum":0.9773097766670474,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9994851537651007,"uniform":0.9956935037719361},{"shots":512,"quantum":0.9999999999999297,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.7755575615628914e-16,"independent_samples":[{"shots":8,"best_objective":6},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.035141362505213075,"diagnostic_seconds":0.010029174998635426}
+{"instance":"n5-s0-r3.json","seed":9,"direct":{"status":"feasible","best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":3,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":8,"reserved_end":8,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":11,"reserved_end":12,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":3},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.1053506939160829,1.200199263963606],"expected_energy":32.932633032046816,"initial_expected_energy":41.54093905805075,"history":[41.54093905805075,41.74678002693297,70.11959795380481,44.73159379562412,54.63788485159199,35.81472616202328,38.6632526393403,36.538061310353235,38.99433711008387,35.14633525903306,34.2868426391678,33.86756094902978,34.58259182676417,33.674694387427834,33.49205422220358,33.29713161736991,33.1346169072678,33.048110126917585,33.78350695875855,32.95380011349187,33.06438170434751,32.963949424525396,32.981798039400466,32.95036989418593,32.94556462325666,32.94451193380033,32.93861795864517,32.939761824599984,32.93810551981215,32.94119566091915,32.9377074264338,32.936803592775775,32.936152861468734,32.936471755522945,32.93589962051168,32.93570380507338,32.93564058215482,32.935057894557644,32.93461880036591,32.93389286690986,32.93528884322533,32.93397704034787,32.93377019502236,32.93396445563434,32.933892601589406,32.93358196135006,32.933502863073265,32.93391824631164,32.933352842022,32.933220360909964,32.933004379025775,32.93300630836832,32.932916182043385,32.93316926509867,32.93298111019753,32.93284367455625,32.93293543484441,32.93275818724429,32.93270814596657,32.932633032046816,49.910633576215574,50.132914893902324,56.503585665998756,50.24206630591069,52.809663787481085,50.626295773687275,49.922945470805885,50.220595659849266,50.00949753320811,50.00248249018726,49.89968573333785,49.909797354363405,49.90051172123262,49.90150313419193,49.8996148770893,49.90440913254176,49.898313880909775,49.89740544150875,49.896591684739356,49.89678458725479,49.896041427298314,49.89621061038048,49.896306620518715,49.895615793524726,49.895193706441844,49.89624930914283,49.89465884381933,49.894162041384206,49.89320148217645,49.8912777136365,49.88737290616365,49.88345269371291,49.88039252222623,49.878154007663106,49.93271931182282,49.86161317200468,49.86075062055261,49.85676161255057,49.84905697322306,49.83417792854268,49.80246414337244,49.839403776126645,49.89032050754999,49.82124693441799,49.80485787261333,49.806619012058945,49.796564244545614,49.78866959155589,49.778151415145004,49.84805624806344,49.76150643947128,49.75693775562883,49.74354968065593,49.71864775573335,49.66691302687428,49.60195183440747,49.46075484710848,50.69779068782041,49.417414863174194,49.23154499779041],"feasible_probability":0.6284669345897177,"one_hot_probability":1.0,"sampled_feasible_fraction":0.611328125,"counts":{"0010100010011":3,"0010100010101":3,"0010100011001":16,"0010100100011":1,"0010100101001":2,"0010101000011":3,"0010101001001":2,"0010110000011":8,"0010110001001":10,"0011000010011":3,"0011000011001":4,"0011001000011":3,"0011001001001":6,"0011010000011":8,"0011010000101":2,"0011010001001":12,"0100100010011":1,"0100100100011":1,"0100100100101":3,"0100100101001":2,"0100101000011":4,"0100101001001":4,"0100110000011":2,"0100110001001":4,"0101000010011":4,"0101000010101":1,"0101000011001":3,"0101000100011":1,"0101001000101":1,"0101001001001":1,"0101010000011":1,"0101010000101":2,"0101010001001":1,"1000100010011":74,"1000100010101":22,"1000100011001":85,"1000100100011":11,"1000100100101":3,"1000100101001":7,"1000101000011":34,"1000101000101":11,"1000101001001":37,"1000110000011":11,"1000110000101":2,"1000110001001":10,"1001000010011":12,"1001000010101":1,"1001000011001":5,"1001000100011":3,"1001000100101":2,"1001000101001":2,"1001001000011":22,"1001001000101":2,"1001001001001":19,"1001010000011":6,"1001010000101":2,"1001010001001":7},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.32949845799885225},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":3,"removals":[],"infeasible_task":null,"component_qubits":[3,9],"max_component_qubits":9,"component_to_original":[[1,2,3],[4,5,6,7,8,9,10,11,12]],"components":[{"qubits":3,"penalty":7,"objective_bound":6,"offset":7,"linear":[-7,-1,-5],"quadratic":[[0,1,14],[0,2,14],[1,2,14]],"domains":[[0,1,2]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":4,"cost":0},{"index":1,"task":"t1","resource":"r1","start":7,"cost":6},{"index":2,"task":"t1","resource":"r1","start":5,"cost":2}],"conflicts":[]},{"qubits":9,"penalty":27,"objective_bound":26,"offset":81,"linear":[-27,-16,-19,-21,-27,-21,-27,-18,-21],"quadratic":[[0,1,54],[0,2,54],[0,3,54],[1,2,54],[1,3,54],[1,6,27],[1,8,27],[2,3,54],[2,5,27],[2,6,27],[3,4,27],[4,5,54],[5,6,27],[5,8,27],[6,7,54],[6,8,54],[7,8,54]],"domains":[[0,1,2,3],[4,5],[6,7,8]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":7,"cost":0},{"index":1,"task":"t2","resource":"r0","start":13,"cost":11},{"index":2,"task":"t2","resource":"r1","start":11,"cost":8},{"index":3,"task":"t2","resource":"r0","start":8,"cost":6},{"index":4,"task":"t3","resource":"r0","start":9,"cost":0},{"index":5,"task":"t3","resource":"r1","start":11,"cost":6},{"index":6,"task":"t4","resource":"r1","start":12,"cost":0},{"index":7,"task":"t4","resource":"r2","start":17,"cost":9},{"index":8,"task":"t4","resource":"r1","start":13,"cost":6}],"conflicts":[{"i":1,"j":6,"reasons":["group"]},{"i":1,"j":8,"reasons":["group"]},{"i":2,"j":5,"reasons":["resource"]},{"i":2,"j":6,"reasons":["resource"]},{"i":3,"j":4,"reasons":["resource"]},{"i":5,"j":6,"reasons":["resource"]},{"i":5,"j":8,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":3,"raw_cost":3,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r1","start":1,"end":3,"reserved_end":4,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":7,"end":8,"reserved_end":8,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":9,"end":11,"reserved_end":12,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":3},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":6,"changed":false}],"bits":[1,0,0],"qubo_energy":0},"seed":747784396,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.153299342702511,1.903602604489978],"expected_energy":1.0702979053773127,"initial_expected_energy":2.250945025181406,"history":[2.250945025181406,2.463739633250781,2.329672903591413,1.4438981361813834,1.3862040021247293,3.354553696223549,2.76162723410443,1.8015554976786619,1.407695686978041,1.6921118911355992,1.3471096823161837,1.3573314188083452,1.3552808593904269,1.347539157746338,1.3461778656325576,1.3445325313031065,1.3420815270793334,1.3433296311545813,1.3390008837739578,1.3355706246153805,1.3292389374814062,1.328656910096901,1.3163541244310364,1.3104171695677485,1.2967878437934877,1.2732902629588279,1.2402293125640136,1.4627272649387377,1.3165643583125903,1.2372029535318496,1.2576980604438937,1.237892744832036,1.2363996525527554,1.2466874633883767,1.2341257484137451,1.2333361316785525,1.2320078803473518,1.2296003928859212,1.2262670595909504,1.2334764297727046,1.2336468145401764,1.2257046970722802,1.225501013826074,1.2251714958816036,1.2249631443804825,1.225320648591314,1.2243953435424997,1.224246196406365,1.2238553969204327,1.2235358657603332,1.2229671108218338,1.2221489960480523,1.2218465354013355,1.2212821300569865,1.2231959849756004,1.2210688975012705,1.2213915675414415,1.2210556147823757,1.2219465369480909,1.2207518855140387,2.336342724340132,2.0190123822512587,2.738010028311023,2.713646452460335,2.0532599617542875,2.074035268082765,2.073231765283095,1.9333584859280046,1.9010271330356245,2.005222390004039,1.9179155502388072,1.8732495998775103,1.9090953056008448,1.8594759810976371,1.8479375227864612,1.8331141390926529,1.804810530132875,1.74791494398259,1.6430156856698266,2.1581004725361144,1.7864157749897007,1.628891179704066,1.8699569597921442,1.5698739032052675,1.554820493311666,1.5154956235479107,1.4794765592256676,1.4105262108699723,1.2950676365395235,1.3619638587382288,1.8536037381172004,1.2956257542380645,1.2911949581952111,1.2952359561108542,1.3108720416522834,1.2625034096617047,1.2515584439355452,1.3146991965381876,1.232842391771509,1.2163896940600223,1.1879707626386231,1.184100324863974,1.1194953338763203,1.185838193546861,1.1525764068851385,1.1289535415052874,1.1145073786846007,1.1332029935743502,1.1075754581095616,1.101280570618259,1.090492031898887,1.0915415493333749,1.0808673827417767,1.0879568698104105,1.0844096394752656,1.0767438182522855,1.0794716804915103,1.0754502129826278,1.0731997315899584,1.0702979053773127],"feasible_probability":1.0,"one_hot_probability":1.0,"sampled_feasible_fraction":1.0,"counts":{"001":237,"100":275},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.08718807400146034},{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":7,"end":8,"reserved_end":8,"changed":false},{"variable":4,"task":"t3","group":"g1","resource":"r0","start":9,"end":11,"reserved_end":12,"changed":false},{"variable":6,"task":"t4","group":"g0","resource":"r1","start":12,"end":15,"reserved_end":16,"changed":false}],"bits":[1,0,0,0,1,0,1,0,0],"qubo_energy":0},"seed":4053640108,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.749493071467646,2.1417163749455685],"expected_energy":32.45554060193412,"initial_expected_energy":38.88296650141455,"history":[38.88296650141455,35.75265541376553,42.05078161170612,35.51916395746726,36.49861817986522,37.3337533386542,35.089176392134966,35.16584735647457,35.27797286551649,34.869826729846075,34.81754884965332,34.71940414773895,34.62712767693494,34.84367864480796,34.71222100448934,34.695425969813265,34.636514724191926,34.63040600003597,34.626958744855756,34.62875261679887,34.626779669870025,34.627134359696676,34.62715659243984,34.62686124185164,34.626638909718906,34.62662541241449,34.62661641286193,34.62662723643382,34.62660157003793,34.62659639371547,34.62661463055945,34.62659242439793,34.62659037877873,34.62659081297104,34.626590398044144,34.62659080951753,34.62659015028453,34.626590125636085,34.62659078968454,34.626589745525436,34.626589607040245,34.62658949819899,34.62658952764185,34.626589527605915,34.62658950521308,34.62658950427182,34.62658949340413,34.626589496931274,34.62658948821629,34.62658948992075,37.08849679829948,33.21450748278615,39.56674982450088,35.35681197274887,35.86251893434849,33.41243402413631,34.42012457695179,33.00246876887888,32.855569684688206,33.18911306513136,32.77631182107509,32.72508237137335,32.822273889175705,32.68568268062451,32.65366797160151,32.59482125391884,32.531219364079945,32.53106027437281,32.469058395217566,32.51572124445659,32.564004812867886,32.47437144571559,32.46424509882033,32.46457871132539,32.46742021234439,32.46136179893271,32.463288643056934,32.46253627712316,32.461366648052675,32.460816742846845,32.45980940476607,32.458320838083836,32.46145432817664,32.461441081519084,32.457831600689865,32.45727241581008,32.45746551150652,32.45703481718155,32.458227496841594,32.45689256289923,32.45667822028383,32.45649719669235,32.45662823914093,32.45640606686956,32.45637100805754,32.45646106322914,32.45628649081876,32.45613432202838,32.45591839836587,32.45587149439818,32.45572665215144,32.45560439977842,32.45554210995486,32.45574780892954,32.455668071120186,32.45554060193412,32.45555643037541,32.45557601577522,32.455541902532325,32.455542891951275],"feasible_probability":0.4302547356507149,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.421875,"counts":{"001010001":12,"001010010":28,"001010100":46,"001011000":7,"001100001":20,"001100010":35,"001100100":2,"001101000":33,"010010001":43,"010010010":10,"010010100":19,"010011000":2,"010100001":2,"010100010":33,"010100100":7,"010101000":21,"100010001":66,"100010010":3,"100010100":10,"100011000":15,"100100001":14,"100100010":1,"100100100":29,"100101000":54},"circuit_evaluations":110,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":50},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12133274499501567}],"circuit_evaluations":230,"status":"feasible","feasible_probability":0.4302547356507149,"total_shots":1024,"runtime_seconds":0.20876425299502444},"direct_metrics":{"exact_objective":3,"optimal_count":1,"combinations":72,"optimal_probability":0.018371248059386343,"feasible_probability":0.6284669345897176,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.375,"shots_for_95_percent":162,"hit_curve":[{"shots":8,"quantum":0.13785926929975223,"uniform":0.10585733481633375},{"shots":16,"quantum":0.2567133604676428,"uniform":0.20050889429825008},{"shots":32,"quantum":0.4475249714926957,"uniform":0.3608139719037934},{"shots":64,"quantum":0.6947713428758533,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9068354668701901,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999246640190133,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.942890293094024e-16,"independent_samples":[{"shots":8,"best_objective":9},{"shots":16,"best_objective":3},{"shots":32,"best_objective":5},{"shots":64,"best_objective":3},{"shots":128,"best_objective":3},{"shots":512,"best_objective":3}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":3,"optimal_probability":0.46489189070453113,"feasible_probability":1.0,"uniform_optimal_probability":0.3333333333333333,"uniform_feasible_probability":1.0,"shots_for_95_percent":5,"hit_curve":[{"shots":8,"quantum":0.9932774775641883,"uniform":0.9609815576893767},{"shots":16,"quantum":0.9999548076921,"uniform":0.9984775611596526},{"shots":32,"quantum":0.9999999979576553,"uniform":0.9999976821799774},{"shots":64,"quantum":1.0,"uniform":0.9999999999946277},{"shots":128,"quantum":1.0,"uniform":1.0},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.3306690738754696e-16,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]},{"exact_objective":0,"optimal_count":1,"combinations":24,"optimal_probability":0.02961102877701323,"feasible_probability":0.430254735650715,"uniform_optimal_probability":0.041666666666666664,"uniform_feasible_probability":0.375,"shots_for_95_percent":100,"hit_curve":[{"shots":8,"quantum":0.21373885235827114,"uniform":0.2885690504976606},{"shots":16,"quantum":0.3817934077091114,"uniform":0.49386600409019976},{"shots":32,"quantum":0.6178206092480871,"uniform":0.7438283781843783},{"shots":64,"quantum":0.8539389132844967,"uniform":0.9343761001763541},{"shots":128,"quantum":0.9786661589474862,"uniform":0.9956935037719361},{"shots":512,"quantum":0.999999792854158,"uniform":0.9999999996560492}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.249000902703301e-16,"independent_samples":[{"shots":8,"best_objective":6},{"shots":16,"best_objective":6},{"shots":32,"best_objective":6},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.01376592715385196,"diagnostic_seconds":0.010298330002115108}
+{"instance":"n5-s1-r0.json","seed":0,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":13,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,2],"reasons":["resource"]}],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":5,"end":7,"reserved_end":9,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":10,"end":12,"reserved_end":14,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":14,"end":16,"reserved_end":17,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":17,"end":20,"reserved_end":22,"changed":false}],"bits":[1,0,1,1,0,0,0,1,0,1,0,0],"qubo_energy":55},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.8159063267681397,2.106628042132435],"expected_energy":80.1519822625684,"initial_expected_energy":86.89271404508105,"history":[86.89271404508105,88.01670827004591,86.80121369109284,86.24091467375175,87.85845481722993,86.10431138745713,85.19965655608378,84.94289449133653,85.45655093411969,85.55252314971793,85.01489822480235,84.7189256924269,84.36783187913173,84.2090412371401,83.02336163659913,84.26254365858466,83.10146011189701,83.12989868554774,82.90215913017494,82.99336577773106,83.05607044359292,82.73193367245581,82.81563326031433,82.62185241807005,82.55030049206134,82.60340937216017,82.52486073925193,82.46786647205397,82.35660512650448,82.14061686171024,81.77655137493488,81.69209708126117,80.94818339792266,83.98848820569869,81.73258364217442,80.87509281015417,81.11113440393525,80.88926012013403,80.82611181239207,80.84675510804414,80.79302255181611,80.7927996633471,80.81000182860774,80.79606587007524,80.77643675694931,80.7523463884746,80.8006426314212,80.72945819430451,80.7035712336028,80.65506436441845,80.5697181398366,80.44235627810221,80.33933243943957,80.20621837585391,80.2598134905184,80.8163753547425,80.18591064559094,80.37382788040468,80.22503353437412,80.19118609859262,97.14666227455173,95.10193325036518,87.48928872865406,85.64283722350808,85.5153259700505,83.32964173988097,96.90718246930768,87.89204202936745,81.1704690921615,90.86636051127401,82.03579765726721,81.91340664632342,81.22650173238839,81.23062443111701,80.80278897001534,80.92492055573248,80.86832272112038,80.82494336631758,80.76417871467098,80.72120809502822,80.66716927312964,80.68499611243317,80.63733631071327,80.74616893893138,80.65399038070328,80.61387448837667,80.59011349334838,80.58871832156599,80.57069410080919,80.5442634757932,80.51839848462322,80.47244455754392,80.42118962397487,80.36972863316535,80.33757757831364,80.59405938667997,80.28390892579012,80.30633280474669,80.27912809063926,80.29439151138303,80.27646454256146,80.27028382458269,80.2634486393885,80.25129436872425,80.24481522952014,80.27104264136983,80.23747004019108,80.23253876269722,80.2272093424795,80.21844532177983,80.22316189077841,80.21531628542162,80.22470978754396,80.20888749723099,80.20347901908376,80.1940363003723,80.18293307387175,80.17827144898062,80.15834338112585,80.1519822625684],"feasible_probability":0.0,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.0,"counts":{"001010001011":5,"001010001101":3,"001010010011":2,"001010100011":4,"001010100101":7,"001011000011":19,"001011000101":6,"001100001011":17,"001100001101":9,"001100010011":7,"001100010101":8,"001100100011":6,"001100100101":1,"001101000011":13,"001101000101":8,"010010010011":9,"010010010101":7,"010010100011":3,"010010100101":1,"010011000011":92,"010011000101":42,"010100001011":34,"010100001101":21,"010100010011":12,"010100010101":5,"010100100011":14,"010100100101":7,"010101000011":6,"010101000101":1,"100010001011":9,"100010001101":4,"100010010011":14,"100010010101":3,"100010100011":3,"100010100101":1,"100011000011":12,"100011000101":11,"100100001011":38,"100100001101":9,"100100010011":7,"100100010101":2,"100100100011":15,"100100100101":8,"100101000011":6,"100101000101":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.26316127899917774},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[0],"fixed_cost":11,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]},{"variable":2,"forced_by":0,"reasons":["resource"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.241599526721984e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":48,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.005931353996857069}
+{"instance":"n5-s1-r0.json","seed":1,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":13,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,2],"reasons":["resource"]}],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":5,"end":7,"reserved_end":9,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":10,"end":12,"reserved_end":14,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":14,"end":16,"reserved_end":17,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":17,"end":20,"reserved_end":22,"changed":false}],"bits":[1,0,1,1,0,0,0,1,0,1,0,0],"qubo_energy":55},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0782752299660305,1.2668876084728116],"expected_energy":74.60496390486759,"initial_expected_energy":87.70907754934346,"history":[87.70907754934346,87.55478931487944,84.69416750141069,86.57726904361195,87.54190148973893,85.8168427821432,83.00018923915334,83.39290916005041,83.0365575760737,83.38259496711834,82.92665267137133,82.81102557824875,82.42666130887787,81.9235929859851,80.63501205208837,79.69869242325956,75.71984691717641,86.99510505970937,89.51420171172694,75.3453611487307,79.11172760492173,75.37863600003432,75.35269592806736,75.55269779967132,75.33292332004565,75.24980054991022,75.14135467941051,75.21720090300363,75.09251827218435,75.05318727846202,74.96614955809545,74.82715743545552,75.89948036239625,74.92504065346942,74.8650140594499,74.84857934332837,74.80626986625353,74.83005572407801,74.80016957043404,74.78833196406666,74.76990890206275,74.80906128162366,74.75085998001728,74.73173201533909,74.7173753434579,74.67783693237462,74.6789423170826,74.67134244804177,74.68123722104377,74.67629476959993,74.66469009462391,74.66477100271456,74.65832476163696,74.65258393866347,74.64456090946726,74.66332107273008,74.63795964322867,74.63368893645011,74.62890603003953,74.62103730036011,82.07413525169943,84.78653665509594,84.64313223942172,86.69546879755691,84.97476744869553,82.6785461964914,81.48505412315843,80.50758446710421,79.5461768169732,80.10097789971653,79.18688197874246,78.83302308649837,78.10898523078723,76.76393622262165,74.78836426922048,89.73727922291465,77.43281262598347,74.70154345160822,76.35121963926032,74.79425016571287,74.79365363554984,74.67517203538009,74.69378245880651,74.67177158356404,74.66495796102714,74.65804659944877,74.64558196524268,74.64267383872533,74.62490367689914,74.62941181656575,74.63310016159235,74.62799147319859,74.62234655619355,74.62747184138347,74.6186812187581,74.61645911415675,74.61337080604319,74.611694353404,74.61731460791097,74.6103529115059,74.60947595991135,74.60848427855913,74.60686482282516,74.61108809438056,74.60881995696965,74.60706393266014,74.60667164421183,74.60682260578022,74.60659473420371,74.60647544619358,74.6064138364395,74.60674491150552,74.60627814046555,74.60602973477515,74.60560330098087,74.60509892625174,74.60524618150266,74.60557596634227,74.60523148802808,74.60496390486759],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"001010001011":14,"001010001101":28,"001010010011":3,"001010010101":7,"001010100011":5,"001010100101":12,"001011000011":8,"001011000101":14,"001100001011":5,"001100001101":8,"001100010011":2,"001100010101":3,"001100100011":1,"001101000011":1,"010010001011":5,"010010001101":3,"010010010011":1,"010010100011":3,"010010100101":5,"010011000011":12,"010011000101":17,"010100001011":12,"010100001101":12,"010100010011":7,"010100010101":4,"010100100011":4,"010100100101":6,"010101000011":13,"010101000101":14,"100010001011":24,"100010001101":36,"100010010011":4,"100010010101":3,"100010100011":16,"100010100101":20,"100011000011":32,"100011000101":30,"100100001011":24,"100100001101":38,"100100010011":7,"100100010101":18,"100100100011":6,"100100100101":5,"100101000011":13,"100101000101":7},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.2570044809981482},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[0],"fixed_cost":11,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]},{"variable":2,"forced_by":0,"reasons":["resource"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.482999793253839e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":48,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.469446951953614e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.005564204999245703}
+{"instance":"n5-s1-r0.json","seed":2,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":13,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,2],"reasons":["resource"]}],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":5,"end":7,"reserved_end":9,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":10,"end":12,"reserved_end":14,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":14,"end":16,"reserved_end":17,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":17,"end":20,"reserved_end":22,"changed":false}],"bits":[1,0,1,1,0,0,0,1,0,1,0,0],"qubo_energy":55},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3534898243909192,2.9431006132785944],"expected_energy":69.88346469267658,"initial_expected_energy":91.81053331629931,"history":[91.81053331629931,91.93654096775161,87.4452610548549,86.60900277635812,86.43343341879215,84.89451892049759,82.49165554095126,87.44643177561474,87.69327657431435,101.43470998322749,84.62082395371237,85.03014826882244,82.3718494076304,81.54262791294508,79.84871632785371,77.21193423995096,72.93374290335774,107.44970676235117,87.14576250646962,82.2928013954797,77.95095406235076,72.64705144194417,72.50635213092657,72.17465108756929,72.2228463091771,73.08336778825274,72.17442445934037,71.9296702753993,71.80718774608152,71.89984751972747,71.78889043455794,71.74526203151106,71.65954665116945,71.49040133279422,71.18316183317924,71.11795895003903,70.53280546951775,72.30811169430598,71.08403498041253,70.47911973196369,70.70594453438714,70.46303349558055,70.41145335664353,70.36974068187672,70.59421916512761,70.28103547712465,70.3053766456777,70.25264001445345,70.22922862210294,70.20844624895096,70.14338081989645,70.1238322586577,70.06650373059153,70.01016356934782,69.91711730853409,69.97698619623594,69.99320701962074,69.9047195222183,69.97920562089607,69.88346469267658,91.22496697115359,88.55075434462685,86.39352622897894,89.42286035528699,86.22107179772068,87.41856167510538,86.1991869840823,85.9312762954211,86.14301650252294,85.90751550165831,85.9580445266923,85.90464120492446,85.89075206034008,85.88013909185878,85.86232381086924,85.84746881393025,85.83051322487273,85.7991109708604,85.80717262234795,85.79235935867823,85.82534618331113,85.78812951536364,85.77562031145322,85.76569713747313,85.771089034103,85.7571298742582,85.749310327946,85.73583121379903,85.7332899190942,85.70116848354795,85.67554152744881,85.65211645353293,85.74117280184328,85.62773354158494,85.61410972360073,85.6933540430123,85.58797773596116,85.572471890723,85.55778746522273,85.55692103149508,85.52711295654524,85.50095134752138,85.47677147671352,85.50914115663369,85.45170808946142,85.43488757162451,85.50599747199789,85.41229037801034,85.39884466024341,85.38335284476094,85.35629148199286,85.39242778920698,85.33734545849437,85.30829234579357,85.25213836011888,85.17137208931095,87.671629689331,85.10434459723444,84.96518219281784,84.70425229334201],"feasible_probability":0.0,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.0,"counts":{"001010001011":26,"001010001101":20,"001010100011":14,"001010100101":16,"001011000011":7,"001011000101":14,"001100010011":2,"001100010101":5,"001101000011":1,"001101000101":8,"010010001011":20,"010010001101":30,"010010010011":2,"010010010101":1,"010010100011":27,"010010100101":24,"010011000011":21,"010011000101":23,"010100001011":34,"010100001101":28,"010100010011":10,"010100010101":17,"010100100011":20,"010100100101":30,"010101000011":4,"010101000101":3,"100010001011":11,"100010001101":9,"100010010011":1,"100010010101":2,"100010100011":5,"100010100101":8,"100011000011":10,"100011000101":10,"100100001011":8,"100100001101":8,"100100010011":4,"100100010101":9,"100100100011":7,"100100100101":12,"100101000011":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.25488819199381396},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[0],"fixed_cost":11,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]},{"variable":2,"forced_by":0,"reasons":["resource"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.361799801699817e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":48,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.551115123125783e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.005735650993301533}
+{"instance":"n5-s1-r0.json","seed":3,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":13,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,2],"reasons":["resource"]}],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":5,"end":7,"reserved_end":9,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":10,"end":12,"reserved_end":14,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":14,"end":16,"reserved_end":17,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":17,"end":20,"reserved_end":22,"changed":false}],"bits":[1,0,1,1,0,0,0,1,0,1,0,0],"qubo_energy":55},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0678040601090113,1.2678871844918491],"expected_energy":74.60468062319595,"initial_expected_energy":77.44487436517784,"history":[77.44487436517784,80.81060145735731,90.55091696490184,86.934002511535,79.95486122687836,78.48367219294002,77.6602363239796,77.19011543378883,76.8632675133341,76.54745524722352,77.99652855408593,76.1335811233019,75.9118590161437,75.62666213518163,75.15978027842576,75.90689562241107,75.96692416340083,75.28706353875188,75.11161435207136,75.25610556578597,75.05826278135035,75.01149311594479,74.92790559474244,74.85679696922786,74.74778372898984,74.80032734109196,74.87590630185282,74.74869294399437,74.71366910348614,74.70054639647984,74.6785263738944,74.66034367880253,74.66961442439069,74.66216040259965,74.65649030262428,74.65609668479777,74.66747713682444,74.64782164607738,74.63895965395291,74.62908893717885,74.619380267016,74.62380347432128,74.6334859275832,74.62344819422506,74.6141774550359,74.61600647560374,74.61145138327828,74.60924715100613,74.61114894443043,74.61032515327244,74.60967033231165,74.61039549770213,74.60935086700368,74.6087566998695,74.60786272078246,74.60676929571957,74.60612506032389,74.60511246816247,74.60468062319595,74.61780423927821,83.77200880332785,82.7814205126383,89.13256316685266,87.2439140603695,81.26511756990806,88.68689801274742,80.87211084469382,81.36286428204366,81.15581621823317,80.68370802164472,80.680329009024,81.1663731593677,80.55385756967871,80.53440002323381,80.4763069820948,80.37733474036773,80.26577449149578,80.7212386886765,80.79691327996036,80.24824802966549,80.23414960153028,80.23424440839494,80.24127534178123,80.22355143483149,80.21764222444362,80.23990887668795,80.21198214506242,80.2077533331406,80.21094778777527,80.20381149740089,80.20591316705216,80.20629911931024,80.2008461141516,80.20320116566617,80.19842706566462,80.1973209817229,80.19961094696797,80.1961383676346,80.19499262506012,80.19275235043469,80.18843296775094,80.18115949747957,80.18095601282064,80.16491601727932,80.17321373996086,80.1770417596934,80.1672795001532,80.16409189736149,80.16071052004561,80.15770823387295,80.15385530639742,80.16271722385989,80.15135949179128,80.15081492402122,80.14950957282716,80.14844150099444,80.14739764751451,80.15508136157817,80.14618273396479,80.14455250862586],"feasible_probability":0.0,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.0,"counts":{"001010001011":24,"001010001101":23,"001010010011":4,"001010010101":3,"001010100011":7,"001010100101":15,"001011000011":9,"001011000101":8,"001100001011":4,"001100001101":5,"001100010011":2,"001101000101":1,"010010001011":9,"010010001101":8,"010010010101":1,"010010100011":5,"010010100101":3,"010011000011":14,"010011000101":17,"010100001011":9,"010100001101":11,"010100010011":2,"010100010101":1,"010100100011":3,"010100100101":2,"010101000011":7,"010101000101":11,"100010001011":36,"100010001101":35,"100010010011":1,"100010010101":4,"100010100011":25,"100010100101":18,"100011000011":36,"100011000101":50,"100100001011":20,"100100001101":29,"100100010011":8,"100100010101":7,"100100100011":10,"100100100101":8,"100101000011":10,"100101000101":7},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.26735637898673303},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[0],"fixed_cost":11,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]},{"variable":2,"forced_by":0,"reasons":["resource"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.3127001845277846e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":48,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":6.938893903907228e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.005969270001514815}
+{"instance":"n5-s1-r0.json","seed":4,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":13,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,2],"reasons":["resource"]}],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":5,"end":7,"reserved_end":9,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":10,"end":12,"reserved_end":14,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":14,"end":16,"reserved_end":17,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":17,"end":20,"reserved_end":22,"changed":false}],"bits":[1,0,1,1,0,0,0,1,0,1,0,0],"qubo_energy":55},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.848425524173023,5.25793179416294],"expected_energy":80.1280750135374,"initial_expected_energy":86.03988066487594,"history":[86.03988066487594,85.83094825134,84.00083058589807,84.03023016340298,83.63450935384455,83.5972085966595,89.12338518105355,83.63938419400228,85.44614584071479,83.75696821422088,83.88517972370997,83.75536851367882,83.59245984800056,83.59356815732926,83.5984009107151,83.58601664884851,83.58592664987833,83.58145662804003,83.57928771329551,83.57575549960666,83.57194402178169,83.566770383904,83.57385629159424,83.5906253171924,83.56684099062115,83.5648201112441,83.5699147730338,83.5663949169356,83.56455670000844,83.56383067508764,83.56342812144055,83.56593031642615,83.56255958536686,83.56181575153485,83.560443258892,83.5579381271639,83.55501865265552,83.55038462926814,83.56408026542415,83.55687391638926,83.54982341470597,83.55897737611177,83.54867115766326,83.54756706763075,83.54668727675681,83.5475521279995,83.5461430798864,83.54624147626816,83.54603608324919,83.545844760702,83.54551825357618,83.54526630209008,83.54731651737929,83.54517762090259,83.54449623060778,83.54403564583629,83.54360613107286,83.54322168583685,83.54238906919826,83.54085689784655,91.21639753564251,90.90223436649252,90.53012324966178,88.16895859377695,88.5470934690602,87.11051686042094,84.65971389188654,83.50680048672947,91.51210449702619,84.46472362854175,88.72721486877276,81.72543282715978,80.1841451833567,80.44084933191235,80.3247445652714,80.29060426918585,80.19958975850662,80.53836794818943,80.15963923902936,80.24704599058082,80.17256981708948,80.16403523541084,80.15537440614725,80.15075800929331,80.15323000839348,80.14844381762273,80.14577281185541,80.14109304913632,80.14893476820538,80.15013362576227,80.14268009148785,80.14078690883781,80.1427876502246,80.14043291028847,80.13981431713103,80.13877624806571,80.13691721270777,80.14005475900318,80.13758609388304,80.13688728817941,80.13784503100112,80.13690584808563,80.13656698413655,80.13605083969722,80.13589221653135,80.13519004717892,80.13458511505016,80.13410427428175,80.13260089921926,80.1331831124645,80.1322907996688,80.13318918410168,80.13211682380715,80.13180230885337,80.13122123997395,80.13020197460014,80.13004059832589,80.1280750135374,80.13146509787364,80.1298927881776],"feasible_probability":0.0,"one_hot_probability":1.0000000000000004,"sampled_feasible_fraction":0.0,"counts":{"001010001011":5,"001010001101":5,"001010100011":5,"001010100101":3,"001011000011":23,"001011000101":7,"001100001011":14,"001100001101":7,"001100010011":11,"001100010101":6,"001100100011":5,"001100100101":1,"001101000011":19,"001101000101":11,"010010001011":1,"010010010011":10,"010010010101":10,"010010100011":3,"010010100101":1,"010011000011":81,"010011000101":55,"010100001011":32,"010100001101":9,"010100010011":10,"010100010101":5,"010100100011":23,"010100100101":9,"010101000011":6,"010101000101":1,"100010001011":4,"100010001101":2,"100010010011":4,"100010010101":8,"100010100101":1,"100011000011":12,"100011000101":5,"100100001011":29,"100100001101":19,"100100010011":6,"100100010101":3,"100100100011":17,"100100100101":12,"100101000011":5,"100101000101":7},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.26127253599406686},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[0],"fixed_cost":11,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]},{"variable":2,"forced_by":0,"reasons":["resource"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.497000190895051e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":48,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.551115123125783e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.005597729003056884}
+{"instance":"n5-s1-r0.json","seed":5,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":13,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,2],"reasons":["resource"]}],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":5,"end":7,"reserved_end":9,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":10,"end":12,"reserved_end":14,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":14,"end":16,"reserved_end":17,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":17,"end":20,"reserved_end":22,"changed":false}],"bits":[1,0,1,1,0,0,0,1,0,1,0,0],"qubo_energy":55},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.1853741442573944,2.938332157046841],"expected_energy":69.5292813995338,"initial_expected_energy":86.35858950778285,"history":[86.35858950778285,86.46607537396936,71.72517629043958,108.95640395848699,80.4649716863625,75.1067305732463,70.80716654732709,72.82575094273056,70.73686174610592,73.82801354614435,69.57000550424317,70.53223054852502,69.56844018798148,69.71648835636661,69.57119455745644,69.54554410360898,69.54449526122013,69.549320616021,69.54289673468719,69.55146950633033,69.53836428411341,69.5386119431223,69.53813216192293,69.53829658930448,69.53790013428113,69.53749922484533,69.53692074798661,69.53595983912865,69.53805743873463,69.53542086001033,69.53502742074316,69.53565554354375,69.53472445724634,69.53446715353293,69.53393804101239,69.53305451169916,69.53395193254326,69.53477788390205,69.53280223579331,69.53238399267559,69.53172183812688,69.53497751205566,69.53176555557751,69.53219149952068,69.5312746155287,69.5311982632538,69.5322153454872,69.53090680197224,69.53072670640906,69.53058121906196,69.53089115123008,69.53047302496779,69.53031317314395,69.53001050556882,69.52957417123793,69.53296204173296,69.53219519020243,69.52943643740494,69.52938875296374,69.5292813995338,87.66968614468333,92.76747443019633,85.28238511857658,86.47530666405402,86.59086415622706,85.75281437914877,85.22100200647421,85.3875797719403,85.07958508454655,85.08630847095645,84.99625829130966,84.93647122728174,84.93586980023618,85.08889712646564,84.94224034798465,84.86294930085555,84.72585783108121,84.48793243717371,83.6213183692762,80.7681544644403,83.03895658499908,78.11419407890034,87.67426102213638,79.00520455290284,77.13650578577044,75.7138641350214,75.55414276923955,80.48415404094902,75.70169406769253,73.37802644119914,72.48421165247558,74.40717110666813,72.39881692215714,73.52723262083782,72.3607165405042,71.94962910095424,71.4432079631328,71.16575490680191,71.19696437794093,71.08903408517345,71.05230510826418,71.20655085763342,71.02140779283248,70.95942422789395,70.86089165200636,70.93346224485833,70.79202280906799,70.76517795532513,70.90617295860707,70.71054864915747,70.66508822835854,70.59213834152737,70.45205017140435,70.34675381015009,70.17140645871297,70.45282866851474,70.48459135121809,70.20084659509597,70.07746132189806,70.06488360951813],"feasible_probability":0.0,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.0,"counts":{"001010001011":16,"001010001101":24,"001010010011":1,"001010100011":15,"001010100101":33,"001011000011":10,"001011000101":14,"001100001011":3,"001100001101":1,"001100010011":4,"001100010101":4,"001100100011":1,"001100100101":1,"001101000101":4,"010010001011":23,"010010001101":27,"010010010011":1,"010010010101":5,"010010100011":19,"010010100101":25,"010011000011":21,"010011000101":14,"010100001011":22,"010100001101":21,"010100010011":24,"010100010101":29,"010100100011":13,"010100100101":20,"010101000011":1,"010101000101":1,"100010001011":4,"100010001101":12,"100010010011":4,"100010100011":12,"100010100101":8,"100011000011":8,"100011000101":5,"100100001011":10,"100100001101":9,"100100010011":8,"100100010101":10,"100100100011":14,"100100100101":11},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.2789745390036842},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[0],"fixed_cost":11,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]},{"variable":2,"forced_by":0,"reasons":["resource"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.95770073030144e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":48,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.551115123125783e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.006209639992448501}
+{"instance":"n5-s1-r0.json","seed":6,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":13,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,2],"reasons":["resource"]}],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":5,"end":7,"reserved_end":9,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":10,"end":12,"reserved_end":14,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":14,"end":16,"reserved_end":17,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":17,"end":20,"reserved_end":22,"changed":false}],"bits":[1,0,1,1,0,0,0,1,0,1,0,0],"qubo_energy":55},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.392809455301696,1.1762924695721704],"expected_energy":81.88879631878208,"initial_expected_energy":85.57041718455093,"history":[85.57041718455093,85.2969800419132,84.06921346325701,86.07382200153823,87.80169752524726,85.04834497724012,83.86742972853511,83.78289228436438,84.10035926438448,83.49230038632561,83.71201839410628,83.49507142512356,83.50209273376743,83.49398799283216,83.49808598703177,83.49363633444918,83.48830600665033,83.48912460987722,83.48640951453756,83.48515592322819,83.48564617000586,83.48452950859767,83.48340356427514,83.48167439496056,83.48236033889538,83.47970199155745,83.47830726781321,83.47917994367384,83.47604345664125,83.47376399303045,83.47021890835259,83.46178198045703,83.4523014440369,83.43123596496032,83.37899373148494,83.46111129716893,83.45115026906959,83.42561285174848,83.3696747805665,83.39060584823855,83.3617091553723,83.35406227827679,83.33898804827628,83.30947265722138,83.2769144961391,83.20231358249644,83.26870602356182,83.16908714419438,83.228824379219,83.14541525564476,83.12313280001057,83.07404315876269,82.98454100784058,82.72707191226762,82.69734650183176,82.0246733487752,82.3624702948607,82.22434472619923,82.14696762266888,81.88879631878208,97.59709143827759,92.77790920025053,86.60764705079828,83.54937196977781,85.67346501988266,83.6018818656056,86.27449042674458,83.54626834923909,83.6960921821972,84.16857155931693,83.52737292112397,83.58899447452924,83.52658544337649,83.51526279887345,83.5116349039331,83.51222960556197,83.51525839974391,83.51248497646202,83.51183205818691,83.511612429152,83.51164310451294,83.51158489973604,83.51157894657338,83.51170122174238,83.51151710813774,83.51150769956897,83.51145692408753,83.5113993202304,83.51130816782896,83.51129438653052,83.51113553323185,83.51153861407323,83.51126541212184,83.51111820524825,83.51115544497442,83.51110603784062,83.51116472280543,83.51108272340356,83.51106715822324,83.511049824393,83.5110182973977,83.5110557817701,83.5110089884839,83.51098811549866,83.5109479845883,83.51088294075734,83.51075801979715,83.51052693306735,83.51068427070537,83.51330827309127,83.51092128974389,83.51076549688332,83.51050974342955,83.51050383858492,83.51049073393452,83.51046749089383,83.51043875861288,83.51069150020635,83.51039431269788,83.51041042675021],"feasible_probability":0.0,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.0,"counts":{"001010001011":5,"001010001101":14,"001010010011":2,"001010010101":8,"001010100011":3,"001010100101":5,"001011000011":9,"001011000101":9,"001100001011":11,"001100001101":13,"001100010011":4,"001100010101":5,"001100100011":4,"001100100101":7,"001101000011":15,"001101000101":13,"010010001011":10,"010010001101":17,"010010010101":1,"010010100101":2,"010011000011":19,"010011000101":19,"010100001011":13,"010100001101":11,"010100010011":1,"010100010101":6,"010100100011":1,"010101000011":7,"010101000101":12,"100010001011":8,"100010001101":16,"100010010011":1,"100010010101":9,"100010100011":1,"100010100101":7,"100011000011":29,"100011000101":63,"100100001011":30,"100100001101":40,"100100010011":12,"100100010101":15,"100100100011":4,"100100100101":11,"100101000011":7,"100101000101":13},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.2767340379941743},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[0],"fixed_cost":11,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]},{"variable":2,"forced_by":0,"reasons":["resource"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.180999530944973e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":48,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":6.245004513516506e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.007235498007503338}
+{"instance":"n5-s1-r0.json","seed":7,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":13,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,2],"reasons":["resource"]}],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":5,"end":7,"reserved_end":9,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":10,"end":12,"reserved_end":14,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":14,"end":16,"reserved_end":17,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":17,"end":20,"reserved_end":22,"changed":false}],"bits":[1,0,1,1,0,0,0,1,0,1,0,0],"qubo_energy":55},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.215766739146715,2.939078903215091],"expected_energy":69.54688388217295,"initial_expected_energy":97.7108146209575,"history":[97.7108146209575,91.45153302760188,84.93199806470065,86.95529740397801,86.924124023696,87.68165371713414,84.91542438124968,85.34273732652522,85.23671992322518,85.04953640287385,84.9202933697411,84.9157980707705,84.92392003690594,84.9121867722449,84.91765442705548,84.91371005588671,84.91204048551202,84.91134078937588,84.9103297423557,84.9161886527293,84.90920426401422,84.90805539535742,84.90806549886958,84.9071289235139,84.90789131273725,84.90754882016205,84.90660455127495,84.90675872793214,84.90648172869695,84.90620089393968,84.90563549455112,84.9045117499804,84.90242988123323,84.89904041958081,84.89427948041228,84.89586937440279,84.90207312549506,84.89807673694705,84.89469524579516,84.89351090067572,84.89247998251051,84.89037950904623,84.88652419016748,84.88074876223351,84.91228700092789,84.94773889917501,84.87886251620755,84.88264778680048,84.87994362489914,84.87858478218521,84.88007854939022,84.87810123241672,84.87727545098431,84.87704625274783,84.87660144930521,84.8763847809668,84.87695794586658,84.87614206280392,84.87591196939572,84.87546904954331,85.51297232965561,89.2642772666672,97.59050321488411,88.19370582971744,72.8965925494136,81.51526076450934,85.16339525189287,72.25482092296127,74.99625754830953,72.06732051739297,70.86299226146312,71.62089809982571,70.78096253672629,71.00441741802658,70.77027795801303,70.7093229309882,70.66385662432577,70.59314996881469,70.5507759385517,70.48619378173002,70.36697660954002,70.20730655501343,70.24470810149,70.37782570158015,70.26597259159743,70.14381056426484,70.19279419116162,70.11894311321083,70.09748322554475,70.04922557184348,69.9628502883536,70.0600420363573,70.1153576738734,69.95955238986947,69.93071734481899,69.88547871601645,69.82615961901257,69.77474494517747,69.71619090783071,69.64927056056905,70.68651715352607,69.64426901024817,69.62686947452175,69.59791714586666,69.6203283147122,69.91878727935259,69.55170616512676,69.55542465727305,69.55400658984406,69.555526905269,69.55630654292113,69.55081696616985,69.54966527633536,69.54858324883257,69.5485947999726,69.54814800700063,69.54779688502666,69.5474618037033,69.54871800765474,69.54688388217295],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"001010001011":23,"001010001101":19,"001010010011":1,"001010100011":13,"001010100101":23,"001011000011":10,"001011000101":8,"001100010011":3,"001100010101":3,"001100100011":1,"001100100101":2,"001101000011":1,"001101000101":1,"010010001011":22,"010010001101":34,"010010010011":2,"010010010101":7,"010010100011":20,"010010100101":33,"010011000011":20,"010011000101":23,"010100001011":29,"010100001101":18,"010100010011":16,"010100010101":15,"010100100011":18,"010100100101":24,"010101000011":3,"010101000101":3,"100010001011":4,"100010001101":7,"100010010011":1,"100010100011":6,"100010100101":9,"100011000011":8,"100011000101":8,"100100001011":11,"100100001101":19,"100100010011":15,"100100010101":12,"100100100011":7,"100100100101":9,"100101000101":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.28566982300253585},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[0],"fixed_cost":11,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]},{"variable":2,"forced_by":0,"reasons":["resource"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":5.089900514576584e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":48,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.551115123125783e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.006581758992979303}
+{"instance":"n5-s1-r0.json","seed":8,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":13,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,2],"reasons":["resource"]}],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":5,"end":7,"reserved_end":9,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":10,"end":12,"reserved_end":14,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":14,"end":16,"reserved_end":17,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":17,"end":20,"reserved_end":22,"changed":false}],"bits":[1,0,1,1,0,0,0,1,0,1,0,0],"qubo_energy":55},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0749717188493995,1.266639100679003],"expected_energy":74.60466206589149,"initial_expected_energy":82.04446490702784,"history":[82.04446490702784,84.1527922502154,81.24696898193875,89.86837065457877,83.24823571430616,81.78692138174077,82.30613621701035,79.42913459025694,77.35919241157738,77.33363354032224,77.0980614693532,76.94651080786267,77.06385049351456,76.52131038252168,76.35968122205162,76.79880593154735,76.04041561954406,75.76489415687504,75.67949029615106,75.15047435604045,75.77766842565771,75.03518392110816,75.46862383744812,74.85380539164967,74.74218391728911,74.77860405636707,74.7927211652266,74.7619739417944,74.72639013418716,74.75734686229683,74.72336906760364,74.7135716762474,74.69643546482986,74.67013697508617,74.91219263678914,74.6691121983244,74.64998787793053,74.62521003566505,74.61280068960129,74.63466055812462,74.62759693744576,74.61132161579279,74.60929545907901,74.60869334788126,74.60668725886705,74.60861570704105,74.60635822845654,74.60690923743266,74.60634344024137,74.60617760450677,74.60594211110586,74.60553534850055,74.60538528947149,74.60503149330313,74.60498339899046,74.6047421622687,74.60504871753604,74.60470699013541,74.60478038656281,74.60466206589149,90.03420290290143,87.51411819370703,86.75187031384607,90.65519212447114,86.53759477680066,87.2606567314873,86.36550037303667,86.01471010764,86.31458527003852,86.10023617425267,85.96945575266172,85.92896997781389,85.9756873451176,85.93465562891427,85.92365756613492,85.94925353224178,85.91610978592702,85.90391404297705,85.90056269253733,85.89189918407038,85.8849001164294,85.88713377644692,85.87735044751415,85.87232628086282,85.87355377303987,85.86357365789532,85.8570151715618,85.86026025043502,85.84935352478419,85.84440234816489,85.84665486879578,85.83553470955863,85.82909177750246,85.83606626214407,85.82118518691638,85.81250539043785,85.79540882955872,85.76390857311716,85.73573837823801,85.64507924731183,85.78082917769294,85.73693283817809,85.63074037505976,85.67997646105661,85.62567497586508,85.61012193287658,85.58848236915398,85.65604901489246,85.56838094945459,85.55483440640982,85.53776967926967,85.50391334664155,85.43752415763299,85.32705130841481,85.05548081777356,77.31994804896112,86.05900798010406,79.85018121402294,80.66643902442368,77.9696405763661],"feasible_probability":0.0,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.0,"counts":{"001010001011":22,"001010001101":20,"001010010011":2,"001010100011":7,"001010100101":10,"001011000011":13,"001011000101":15,"001100001011":4,"001100001101":10,"001100010011":4,"001100010101":1,"001100100101":1,"010010001011":6,"010010001101":4,"010010010011":1,"010010010101":1,"010010100011":4,"010010100101":5,"010011000011":18,"010011000101":14,"010100001011":10,"010100001101":16,"010100010011":3,"010100010101":2,"010100100011":6,"010100100101":8,"010101000011":6,"010101000101":10,"100010001011":23,"100010001101":33,"100010010011":4,"100010010101":7,"100010100011":15,"100010100101":22,"100011000011":31,"100011000101":35,"100100001011":29,"100100001101":32,"100100010011":16,"100100010101":13,"100100100011":11,"100100100101":8,"100101000011":7,"100101000101":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.2736655280023115},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[0],"fixed_cost":11,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]},{"variable":2,"forced_by":0,"reasons":["resource"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.3019987060688436e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":48,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.551115123125783e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.0056844259961508214}
+{"instance":"n5-s1-r0.json","seed":9,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":13,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,2],"reasons":["resource"]}],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":5,"end":8,"reserved_end":10,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":5,"end":7,"reserved_end":9,"changed":true},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":10,"end":12,"reserved_end":14,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":14,"end":16,"reserved_end":17,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":17,"end":20,"reserved_end":22,"changed":false}],"bits":[1,0,1,1,0,0,0,1,0,1,0,0],"qubo_energy":55},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0700308130113838,1.2670291272145269],"expected_energy":74.60452593264958,"initial_expected_energy":77.91119034223163,"history":[77.91119034223163,77.95743703679835,90.88815802183743,83.31188806858681,90.88656666935333,78.14444075701704,75.08809608215351,76.00206907691228,74.99806854545042,75.75553217412633,74.848912480326,74.97907968333092,74.98031921319762,74.81344059538984,74.82829240153933,74.80650823721646,74.79448789615554,74.77622973715364,74.8007075063876,74.7545699393419,74.73542083221076,74.74926109438886,74.72180485732304,74.7328034812627,74.71175056265926,74.70630808581004,74.71449673706339,74.69689941994045,74.68807668374745,74.67258213572097,74.65226481704035,74.62831506105934,74.61326976283867,74.89071222245997,74.61978828189167,74.61449155775887,74.63273223111597,74.60683803446139,74.6061905774299,74.60769404683235,74.60656397268707,74.60771034608226,74.60611262472139,74.60573703129076,74.60567977276602,74.60541613310963,74.60520504815165,74.60493722693401,74.6048550865354,74.60457384119887,74.60509808145468,74.6052626352936,74.60455017818497,74.60474032137564,74.6045532019808,74.60454403702062,74.6045844983993,74.60453371081911,74.60453234924756,74.60452593264958,86.95983626896006,87.24400844593195,84.213719489484,85.19430862029826,82.52790875246494,81.35234865743652,87.92143476420144,80.26489364479193,78.31446666129025,79.4412322504159,80.32138813463321,77.99579384467657,78.12626793789374,77.62669998207593,77.28138297969792,76.7622512955219,76.43722788275593,74.97961003718021,82.13890703464199,77.72169809158574,75.86126851612153,74.91561793011371,75.23593653812199,74.8808798371627,74.71243914400989,74.89760678436015,74.97234865147738,74.8544956878676,74.76443966899915,74.72374623555731,74.70792852498988,74.70256957231992,74.70669269280694,74.69378671350213,74.68759893481644,74.6914422384576,74.67981736111491,74.67457668993387,74.67970733237983,74.6672424571494,74.66340569829322,74.65642334188271,74.65013016154285,74.63903350253167,74.62510608574189,74.61553897256177,74.60562501074185,74.62059443135601,74.6407755874022,74.6102451395152,74.61149582009575,74.60644316565646,74.60518480286031,74.60538054248889,74.60533298928556,74.60513013358518,74.60548503143747,74.60508733499812,74.60501730555148,74.60490363537397],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"001010001011":19,"001010001101":19,"001010010011":1,"001010010101":5,"001010100011":5,"001010100101":13,"001011000011":9,"001011000101":9,"001100001011":2,"001100001101":6,"001100010011":3,"001100010101":5,"001101000011":1,"001101000101":1,"010010001011":8,"010010001101":5,"010010100011":4,"010010100101":2,"010011000011":13,"010011000101":18,"010100001011":14,"010100001101":16,"010100010101":7,"010100100011":4,"010100100101":3,"010101000011":13,"010101000101":8,"100010001011":35,"100010001101":33,"100010010011":4,"100010010101":4,"100010100011":11,"100010100101":18,"100011000011":29,"100011000101":39,"100100001011":24,"100100001101":44,"100100010011":14,"100100010101":12,"100100100011":2,"100100100101":14,"100101000011":8,"100101000101":8},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.2974609410011908},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[0],"fixed_cost":11,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]},{"variable":2,"forced_by":0,"reasons":["resource"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.9964000936597586e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":48,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":6.245004513516506e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.006352131997118704}
+{"instance":"n5-s1-r1.json","seed":0,"direct":{"status":"infeasible_domain","best":null,"seed":0,"mixer":"xy","runtime_seconds":3.396009560674429e-06,"circuit_evaluations":0},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":3.3953998354263604e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":1.982989488169551e-06}
+{"instance":"n5-s1-r1.json","seed":1,"direct":{"status":"infeasible_domain","best":null,"seed":1,"mixer":"xy","runtime_seconds":1.644002622924745e-06,"circuit_evaluations":0},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":2.1608997485600412e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":1.0959920473396778e-06}
+{"instance":"n5-s1-r1.json","seed":2,"direct":{"status":"infeasible_domain","best":null,"seed":2,"mixer":"xy","runtime_seconds":1.2110103853046894e-06,"circuit_evaluations":0},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.771100505720824e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":8.990027708932757e-07}
+{"instance":"n5-s1-r1.json","seed":3,"direct":{"status":"infeasible_domain","best":null,"seed":3,"mixer":"xy","runtime_seconds":8.889910532161593e-07,"circuit_evaluations":0},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.575000351294875e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":8.030037861317396e-07}
+{"instance":"n5-s1-r1.json","seed":4,"direct":{"status":"infeasible_domain","best":null,"seed":4,"mixer":"xy","runtime_seconds":8.589995559304953e-07,"circuit_evaluations":0},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.3500000932253897e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":8.019997039809823e-07}
+{"instance":"n5-s1-r1.json","seed":5,"direct":{"status":"infeasible_domain","best":null,"seed":5,"mixer":"xy","runtime_seconds":1.0170042514801025e-06,"circuit_evaluations":0},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.4360994100570679e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":6.76998752169311e-07}
+{"instance":"n5-s1-r1.json","seed":6,"direct":{"status":"infeasible_domain","best":null,"seed":6,"mixer":"xy","runtime_seconds":9.100040188059211e-07,"circuit_evaluations":0},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.2484000762924552e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":6.560003384947777e-07}
+{"instance":"n5-s1-r1.json","seed":7,"direct":{"status":"infeasible_domain","best":null,"seed":7,"mixer":"xy","runtime_seconds":6.860063876956701e-07,"circuit_evaluations":0},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.3038996257819235e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":5.579931894317269e-07}
+{"instance":"n5-s1-r1.json","seed":8,"direct":{"status":"infeasible_domain","best":null,"seed":8,"mixer":"xy","runtime_seconds":7.519993232563138e-07,"circuit_evaluations":0},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.1921991244889796e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":6.059999577701092e-07}
+{"instance":"n5-s1-r1.json","seed":9,"direct":{"status":"infeasible_domain","best":null,"seed":9,"mixer":"xy","runtime_seconds":7.069902494549751e-07,"circuit_evaluations":0},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.1828000424429774e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":4.309986252337694e-07}
+{"instance":"n5-s1-r2.json","seed":0,"direct":{"status":"feasible","best":{"feasible":true,"objective":20,"raw_cost":20,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":5,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":12,"end":14,"reserved_end":16,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":15,"end":17,"reserved_end":19,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":20,"end":23,"reserved_end":25,"changed":false}],"bits":[1,0,1,0,0,0,1,1,0,1,0,0],"qubo_energy":20},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.320799568034591,1.206895585031178],"expected_energy":51.952391842075215,"initial_expected_energy":66.49599761067651,"history":[66.49599761067651,71.31218817164985,73.68355774600258,89.38090339803077,62.895586702677356,70.39879317526243,65.32450674497761,63.01835500843945,62.30073812280929,61.67607362817133,62.082378878221064,61.448807487064386,61.32212670513124,61.07572094549149,60.71758357698752,59.89811424269422,58.46252635405653,55.845945415049584,82.14059181475798,76.830960138076,60.613457076490896,55.63468978063764,58.33195007997233,55.25493063646164,55.36481233157987,55.46896772986571,55.273281524126816,55.16809920578794,55.00433298227748,54.67191606635122,54.03856723795738,53.323048376216015,56.319817231047544,56.30306567951054,53.19582413403121,52.77303404735314,53.03455345500347,52.906449182327584,52.785932214244944,52.71633525642873,52.61002699868196,52.48902868470293,52.4031978592345,52.28898655228903,52.356217321572394,53.128247372591275,52.138170854546004,52.1073705507397,52.044987929227005,52.02742428145088,52.0030775954305,52.05294903359308,52.05909715910558,51.99127109042459,51.98323415720884,51.98053619464139,51.96778748859644,51.96562251415301,51.9582369250466,51.952391842075215,108.32388434244643,100.86303082488377,69.99695862499229,68.17305676328067,69.50258559513631,74.09191920096407,60.890187541602515,82.89206785581877,65.85226736295328,60.81357444436112,64.84606558052837,60.42054820636033,60.076526442145024,59.876904552827384,60.78378587977336,59.61956929599036,59.47197539598743,59.29307106614067,58.97049405274821,59.1375581814909,58.888402665622344,59.265261764604986,58.86156006673147,58.727808366880545,58.626939894886135,58.450325027559835,58.29808289048543,57.95854201750221,57.3401206710293,56.73993386415793,57.95078513382119,59.940961926598604,55.912301695896424,55.76460016588455,55.43590451914856,54.81414931069182,54.1025410083052,66.42498386191387,53.602216023330556,54.06745189645195,53.78314348721699,53.34260570773763,53.34532737356656,53.30290292164552,53.22652049941094,53.08296744043585,52.82907974408199,52.4555225333893,55.845883689589705,54.54235171092674,52.364695434785325,52.53741260642069,52.45522550417009,52.30471662559595,52.25874522299881,52.41781904514592,52.20611544494362,52.18938067760332,52.15171310431363,52.095064889425245],"feasible_probability":0.43695287718297976,"one_hot_probability":0.9999999999999996,"sampled_feasible_fraction":0.4375,"counts":{"001010001011":4,"001010001101":2,"001010010011":3,"001010010101":2,"001010100011":1,"001010100101":28,"001011000011":3,"001011000101":67,"001100001011":19,"001100001101":55,"001100010101":45,"001100100101":11,"001101000011":2,"001101000101":14,"010010001101":5,"010010100011":2,"010010100101":7,"010011000101":13,"010100001011":5,"010100001101":22,"010100010101":16,"010100100101":2,"010101000011":3,"010101000101":6,"100010001011":13,"100010001101":19,"100010010011":2,"100010010101":22,"100010100011":1,"100010100101":19,"100011000011":4,"100011000101":36,"100100001011":10,"100100001101":3,"100100010011":3,"100100010101":8,"100100100011":2,"100100100101":8,"100101000011":1,"100101000101":24},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.29374550499778707},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[0,2],"fixed_cost":14,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]},{"variable":3,"forced_by":2,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[4,5,6,7,8,9,10,11]],"components":[{"qubits":8,"penalty":29,"objective_bound":28,"offset":87,"linear":[-18,-20,-23,-29,-23,-29,-23,-18],"quadratic":[[0,1,58],[0,2,58],[0,3,29],[0,6,29],[1,2,58],[2,4,29],[3,4,58],[3,6,29],[5,6,58],[5,7,58],[6,7,58]],"domains":[[0,1,2],[3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":15,"cost":11},{"index":1,"task":"t2","resource":"r2","start":15,"cost":9},{"index":2,"task":"t2","resource":"r1","start":12,"cost":6},{"index":3,"task":"t3","resource":"r0","start":15,"cost":0},{"index":4,"task":"t3","resource":"r1","start":13,"cost":6},{"index":5,"task":"t4","resource":"r1","start":20,"cost":0},{"index":6,"task":"t4","resource":"r0","start":17,"cost":6},{"index":7,"task":"t4","resource":"r2","start":25,"cost":11}],"conflicts":[{"i":0,"j":3,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":20,"raw_cost":20,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":5,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":12,"end":14,"reserved_end":16,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":15,"end":17,"reserved_end":19,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":20,"end":23,"reserved_end":25,"changed":false}],"bits":[1,0,1,0,0,0,1,1,0,1,0,0],"qubo_energy":20},"components":[{"status":"feasible","best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t2","group":"g0","resource":"r1","start":12,"end":14,"reserved_end":16,"changed":true},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":15,"end":17,"reserved_end":19,"changed":false},{"variable":5,"task":"t4","group":"g0","resource":"r1","start":20,"end":23,"reserved_end":25,"changed":false}],"bits":[0,0,1,1,0,1,0,0],"qubo_energy":6},"seed":3757552657,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0549265361989648,1.295479056279134],"expected_energy":24.505791747269363,"initial_expected_energy":48.97509349149942,"history":[48.97509349149942,46.697905721304714,33.87494573785477,36.71618963824518,35.54265341098599,35.31368432686608,31.79092117059895,31.381240011957615,30.536082077564032,30.186281146719487,33.405315015453006,30.018577084240846,29.335088040397938,29.077938675963075,29.498126461228814,28.92005473606809,28.8109825677693,28.636576333764815,28.39100732508743,27.848147140071013,26.962546998794526,32.94285476046897,29.693498073891888,28.271125281364988,26.84104580075565,26.903931042880554,26.791873116263098,26.854462245221818,26.754012490595073,26.692063727373885,26.615774662167606,26.522163695748354,26.35133357487235,26.070170410081353,27.461132655445915,27.516030658201412,26.049953147306788,25.949729003408237,25.75769996165982,25.446871018211866,24.96677362376603,32.35027298677204,29.42728923240655,24.867061795558122,25.43613119417853,25.43605913278168,24.76103340410905,24.78309239719377,24.78501685402876,24.759770735653685,24.77543337131852,24.747004280238816,24.727378890396885,24.69365031848306,24.81383117528193,24.693925764230823,24.686540068056328,24.686136710157772,24.71082015437385,24.66723852052656,39.116190287579364,41.29622179763697,28.81568927998218,37.86486659175779,32.63454934517887,30.378375211459833,25.741688011797596,31.04521926026854,26.323898301101046,26.1686169849323,25.31809650158479,25.681809738316062,25.080221495163713,25.255683182940523,25.066040696270377,25.159616111270342,25.069768727988425,25.03521393566082,24.989919720978364,25.031188953654286,24.952900886464032,24.92869886337229,24.954353397495364,24.907512794396425,24.88876567270054,24.854861999031275,24.84622615443297,24.76656895924441,24.732886417304474,24.676835364748626,24.619400104128466,24.616020934619872,24.549958387352195,24.575638403067828,24.629448045087422,24.559163441791107,24.54604432837524,24.542219890341805,24.542055492915217,24.556456010953475,24.53366230948408,24.53115573038287,24.52693076484585,24.523608436811486,24.53106747211592,24.522555680383014,24.51900046594696,24.51319815808895,24.50823498766787,24.54124627690314,24.532704952906528,24.507761944126656,24.506423517708395,24.510326705893924,24.50716662870572,24.506751135383166,24.505999600666996,24.50588384242996,24.506286673590477,24.505791747269363],"feasible_probability":0.6884787675758397,"one_hot_probability":1.0,"sampled_feasible_fraction":0.669921875,"counts":{"00101010":44,"00101100":78,"00110001":37,"00110010":55,"00110100":59,"01001001":3,"01001010":14,"01001100":11,"01010001":6,"01010010":19,"01010100":31,"10001001":10,"10001010":17,"10001100":64,"10010001":21,"10010010":8,"10010100":35},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1282634759991197}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.6884787675758397,"total_shots":512,"runtime_seconds":0.12845959200058132},"direct_metrics":{"exact_objective":20,"optimal_count":1,"combinations":48,"optimal_probability":0.1028276600122134,"feasible_probability":0.43695287718297976,"uniform_optimal_probability":0.020833333333333332,"uniform_feasible_probability":0.1875,"shots_for_95_percent":28,"hit_curve":[{"shots":8,"quantum":0.5802342446177944,"uniform":0.15500728552284493},{"shots":16,"quantum":0.8237967106084063,"uniform":0.2859873124805291},{"shots":32,"quantum":0.9689524008075823,"uniform":0.4901858820612224},{"shots":64,"quantum":0.9990360465843869,"uniform":0.7400895651503061},{"shots":128,"quantum":0.9999990707938126,"uniform":0.9324465658562431},{"shots":512,"quantum":1.0,"uniform":0.9999791747738264}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":20},{"shots":16,"best_objective":20},{"shots":32,"best_objective":20},{"shots":64,"best_objective":20},{"shots":128,"best_objective":20},{"shots":512,"best_objective":20}]},"component_metrics":[{"exact_objective":6,"optimal_count":1,"combinations":18,"optimal_probability":0.1523879415251389,"feasible_probability":0.6884787675758398,"uniform_optimal_probability":0.05555555555555555,"uniform_feasible_probability":0.5,"shots_for_95_percent":19,"hit_curve":[{"shots":8,"quantum":0.7335737498660341,"uniform":0.3669888932096303},{"shots":16,"quantum":0.9290170532395534,"uniform":0.5992969386800311},{"shots":32,"quantum":0.9949614212692036,"uniform":0.8394370566488053},{"shots":64,"quantum":0.9999746127243736,"uniform":0.9742195412224011},{"shots":128,"quantum":0.9999999993554862,"uniform":0.9993353679452165},{"shots":512,"quantum":1.0,"uniform":0.9999999999998048}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":6},{"shots":16,"best_objective":6},{"shots":32,"best_objective":6},{"shots":64,"best_objective":6},{"shots":128,"best_objective":6},{"shots":512,"best_objective":6}]}],"reduced_single_joint_draw_p_opt":0.1523879415251389,"diagnostic_seconds":0.008669043003465049}
+{"instance":"n5-s1-r2.json","seed":1,"direct":{"status":"feasible","best":{"feasible":true,"objective":20,"raw_cost":20,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":5,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":12,"end":14,"reserved_end":16,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":15,"end":17,"reserved_end":19,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":20,"end":23,"reserved_end":25,"changed":false}],"bits":[1,0,1,0,0,0,1,1,0,1,0,0],"qubo_energy":20},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.2733500580160535,1.2099916045142036],"expected_energy":51.92755148419103,"initial_expected_energy":97.28884305286431,"history":[97.28884305286431,91.73517825573309,62.43762930549177,74.6389496473082,68.00095947148444,64.73021585124752,59.82905939393834,60.48646892289428,60.018641877294755,59.91538903495163,59.76782348609864,60.76779483956362,59.47698577947594,59.282100031843484,59.12603996663378,58.76353518510406,58.10132505591156,58.128333762919354,59.356030804675946,58.08652575113818,57.83939090853427,57.44547952052809,56.89656343364614,56.2428081690765,56.225969311663164,54.68947516371839,56.18934026642269,54.51666367069818,54.91231564956272,54.52243881140608,54.37843353613546,54.23015728855466,55.250135063926386,54.0070757432797,53.91246080792663,53.75188618176887,53.45283140154888,52.92372706678215,56.320471444800866,54.46999610697257,53.26160567077463,52.95464418308234,52.95355427010826,52.891383050145414,52.91197513532897,52.905584581459784,52.86749542619134,52.838166908365864,52.86043209491263,52.81445010198063,52.795668009497625,52.78908395068826,52.73625238143039,52.69092239140979,52.60865919943626,52.45656991927022,52.85050681424872,52.57697531227874,52.49524870161741,52.48052049930169,60.688960172426874,63.166178656906084,70.87451971060474,103.37070695553221,55.72686808486331,69.99857969432034,55.03456488076744,56.07124092874134,55.44098544888818,54.69038031354347,54.491235220289425,55.20549181681804,54.288737010446596,54.19036797114629,54.019950796787526,53.720982519041,53.15539134772567,52.758264432968616,55.638210185038645,55.85773336701172,52.73559521860976,52.21720387841709,52.56556587261575,52.18433488598866,52.276555685049026,52.18043624693388,52.15595040505191,52.13825647616739,52.112005448925416,52.09907385652475,52.07540683451668,52.0352148680977,52.00158386356256,52.04880925643817,52.1522371209309,51.97276851331864,51.97207822050272,51.96311888891293,51.95293363544684,51.94590165757732,51.966632095232995,51.943523966378606,51.94152700981528,51.94705479456795,51.93917272317405,51.93818618251872,51.93663443251671,51.93399820109157,51.933756440205954,51.92957243606788,51.943487613550374,51.93320772663763,51.92925655120874,51.93074082063511,51.92908381571467,51.928751082617005,51.928158345913964,51.92755148419103,51.92929315978208,51.92967005034457],"feasible_probability":0.43657269256096004,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.42578125,"counts":{"001010001011":4,"001010001101":7,"001010010101":4,"001010100011":1,"001010100101":35,"001011000011":6,"001011000101":50,"001100001011":22,"001100001101":71,"001100010101":46,"001100100011":4,"001100100101":15,"001101000011":3,"001101000101":7,"010010001011":3,"010010001101":1,"010010100101":6,"010011000011":1,"010011000101":9,"010100001011":10,"010100001101":23,"010100010101":18,"010100100101":3,"010101000101":6,"100010001011":12,"100010001101":16,"100010010011":1,"100010010101":12,"100010100011":2,"100010100101":19,"100011000011":6,"100011000101":36,"100100001011":3,"100100001101":6,"100100010011":1,"100100010101":8,"100100100011":4,"100100100101":6,"100101000011":1,"100101000101":24},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.284199052999611},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[0,2],"fixed_cost":14,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]},{"variable":3,"forced_by":2,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[4,5,6,7,8,9,10,11]],"components":[{"qubits":8,"penalty":29,"objective_bound":28,"offset":87,"linear":[-18,-20,-23,-29,-23,-29,-23,-18],"quadratic":[[0,1,58],[0,2,58],[0,3,29],[0,6,29],[1,2,58],[2,4,29],[3,4,58],[3,6,29],[5,6,58],[5,7,58],[6,7,58]],"domains":[[0,1,2],[3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":15,"cost":11},{"index":1,"task":"t2","resource":"r2","start":15,"cost":9},{"index":2,"task":"t2","resource":"r1","start":12,"cost":6},{"index":3,"task":"t3","resource":"r0","start":15,"cost":0},{"index":4,"task":"t3","resource":"r1","start":13,"cost":6},{"index":5,"task":"t4","resource":"r1","start":20,"cost":0},{"index":6,"task":"t4","resource":"r0","start":17,"cost":6},{"index":7,"task":"t4","resource":"r2","start":25,"cost":11}],"conflicts":[{"i":0,"j":3,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":20,"raw_cost":20,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":5,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":12,"end":14,"reserved_end":16,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":15,"end":17,"reserved_end":19,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":20,"end":23,"reserved_end":25,"changed":false}],"bits":[1,0,1,0,0,0,1,1,0,1,0,0],"qubo_energy":20},"components":[{"status":"feasible","best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t2","group":"g0","resource":"r1","start":12,"end":14,"reserved_end":16,"changed":true},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":15,"end":17,"reserved_end":19,"changed":false},{"variable":5,"task":"t4","group":"g0","resource":"r1","start":20,"end":23,"reserved_end":25,"changed":false}],"bits":[0,0,1,1,0,1,0,0],"qubo_energy":6},"seed":1641411168,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.1068588273118622,1.2885244397225684],"expected_energy":24.51640988166545,"initial_expected_energy":34.312241066335105,"history":[34.312241066335105,35.65766628664387,34.39670931227579,30.74057645335562,27.995663446963107,60.43004299963727,34.21409359482454,46.8337012578996,26.312448525723017,33.193036801920094,26.86955761566956,27.032064741168043,25.635539937566392,25.46500134024908,25.302407585424994,25.238464314273777,25.081197454782114,25.57163848768741,25.19280148811052,25.307746857421783,25.14965201726772,25.10155651200722,25.04661114075659,25.018345450942537,25.069167565769213,24.99521337102772,24.963407487430704,24.902504110034773,24.8145952804444,25.356990403612063,25.344790685232823,24.77192276476118,24.76909204719957,24.853054035252583,24.770321235955755,24.74447193159672,24.712315723043655,24.719176449509987,24.70102904480628,24.69084240428978,24.671953165295395,24.638094181249144,24.60026688381421,24.6322791244926,24.689978772142545,24.614094141071117,24.580166856739012,24.57315201274398,24.601610992140166,24.565929747596442,24.560379361038425,24.549832958290516,24.536679667889647,24.535772751837225,24.51965608183599,24.52410638481911,24.53738829254217,24.522188347826756,24.51839248593962,24.51640988166545,44.802496899677095,57.106999228652455,36.1734436129425,33.43491667003997,34.31007039664348,33.43505925474584,33.76528147906512,33.73106535587121,33.44378585259561,33.66070395021454,33.41031527142331,33.66400059051458,33.37031933857968,33.32864580039727,33.202451405066995,33.01677015919882,32.50045364042104,30.158811550053507,37.3116846749223,30.56262623218065,29.652762155420973,29.62408177108862,30.58560513303975,29.709645743145543,29.174924111828382,28.515567398833582,29.23780056703996,27.95242041349284,27.6119726309204,28.271994482758863,27.4668181342878,27.190264855482084,26.739551756776233,26.002783519802954,25.40299659128562,24.956493586820866,24.788314825827683,24.859580978270525,25.366435297460654,24.866421469071433,24.666080854465466,24.66059523167195,24.729905057849223,24.66561887117659,24.63965929899157,24.619584982041694,24.633714086139136,24.610813229809878,24.607064526678535,24.59752203682626,24.583457731803186,24.55603072036292,24.530669478019533,24.628546235551497,24.63712674973277,24.51847249753338,24.52630381113912,24.52056826023108,24.520138560965847,24.52010659082896],"feasible_probability":0.6885952980620985,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.666015625,"counts":{"00101001":5,"00101010":46,"00101100":56,"00110001":33,"00110010":62,"00110100":58,"01001001":7,"01001010":18,"01001100":8,"01010001":8,"01010010":33,"01010100":23,"10001001":14,"10001010":9,"10001100":71,"10010001":22,"10010010":9,"10010100":30},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12136589699366596}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.6885952980620985,"total_shots":512,"runtime_seconds":0.12156015199434478},"direct_metrics":{"exact_objective":20,"optimal_count":1,"combinations":48,"optimal_probability":0.09954933695807351,"feasible_probability":0.43657269256096015,"uniform_optimal_probability":0.020833333333333332,"uniform_feasible_probability":0.1875,"shots_for_95_percent":29,"hit_curve":[{"shots":8,"quantum":0.5678053589276342,"uniform":0.15500728552284493},{"shots":16,"quantum":0.813207792228329,"uniform":0.2859873124805291},{"shots":32,"quantum":0.9651086711157849,"uniform":0.4901858820612224},{"shots":64,"quantum":0.9987825951686935,"uniform":0.7400895651503061},{"shots":128,"quantum":0.9999985179254767,"uniform":0.9324465658562431},{"shots":512,"quantum":1.0,"uniform":0.9999791747738264}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":9.71445146547012e-17,"independent_samples":[{"shots":8,"best_objective":20},{"shots":16,"best_objective":20},{"shots":32,"best_objective":20},{"shots":64,"best_objective":20},{"shots":128,"best_objective":20},{"shots":512,"best_objective":20}]},"component_metrics":[{"exact_objective":6,"optimal_count":1,"combinations":18,"optimal_probability":0.1518187343934487,"feasible_probability":0.6885952980620985,"uniform_optimal_probability":0.05555555555555555,"uniform_feasible_probability":0.5,"shots_for_95_percent":19,"hit_curve":[{"shots":8,"quantum":0.7321390497243119,"uniform":0.3669888932096303},{"shots":16,"quantum":0.9282505113174053,"uniform":0.5992969386800311},{"shots":32,"quantum":0.9948520108737863,"uniform":0.8394370566488053},{"shots":64,"quantum":0.9999734982079563,"uniform":0.9742195412224011},{"shots":128,"quantum":0.999999999297655,"uniform":0.9993353679452165},{"shots":512,"quantum":1.0,"uniform":0.9999999999998048}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":6},{"shots":16,"best_objective":6},{"shots":32,"best_objective":6},{"shots":64,"best_objective":6},{"shots":128,"best_objective":6},{"shots":512,"best_objective":6}]}],"reduced_single_joint_draw_p_opt":0.1518187343934487,"diagnostic_seconds":0.008248472004197538}
+{"instance":"n5-s1-r2.json","seed":2,"direct":{"status":"feasible","best":{"feasible":true,"objective":20,"raw_cost":20,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":5,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":12,"end":14,"reserved_end":16,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":15,"end":17,"reserved_end":19,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":20,"end":23,"reserved_end":25,"changed":false}],"bits":[1,0,1,0,0,0,1,1,0,1,0,0],"qubo_energy":20},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.274252210242682,2.9572404154192795],"expected_energy":50.90482993125293,"initial_expected_energy":94.91742477526219,"history":[94.91742477526219,85.03543030001637,72.03963997925456,76.5777813450478,66.09415961761242,62.49673197064874,62.470998463197176,60.00803618907374,67.24459543185543,61.95081446610659,59.83502205252067,60.34543635175753,59.70691354005812,60.448114596362444,59.4673368953516,59.30850944732947,59.13029439420971,58.800546926073935,58.8879064082179,58.75260608210912,59.1281802129667,58.72405521534843,58.586314826487815,58.408192482164196,58.242418662682454,58.08148421477542,57.74309107774985,57.104780444530206,60.533950642757624,57.83570996551304,57.388183270285786,56.93741307599076,56.570798875433084,55.83110575882985,54.65198929231538,57.31198181941023,64.13116292326401,55.07488432591923,54.58230994871101,55.59622157289334,54.31434062618477,54.21719589200508,54.0517952836653,53.89990158481777,53.71625203341081,53.43313181549329,53.418198790432186,53.14521922438309,53.04834782119025,52.950649632394814,53.04472253935676,52.87470239231027,52.78901759251135,52.863162204754445,52.712251035242154,52.653335122410844,52.81922075097901,52.58125446094106,52.53907017556803,52.49137235734885,79.29232555969647,79.27071151917205,75.44925240154312,58.481954898398136,104.29685641560458,68.13786668069515,64.28104554741374,60.031331208061644,60.97798093245794,56.986962570512,57.878165610066326,56.55776928337603,56.52050951392067,56.20515627506701,55.76717513412906,55.49050075222438,55.10264922617745,54.79536495257664,55.909178780440115,54.61540895802453,54.27006348288387,53.60322583078368,52.51992760187862,69.68605696599636,56.567980010217894,54.3608572728089,52.57685173113927,52.56468245412256,52.51167289453575,52.6239895682463,52.50176822005658,52.4108265837836,52.300988427837744,52.21092232605367,52.163499010819834,52.06862380805598,51.91939249249767,51.62316626174072,51.191900961050614,58.54727256802123,56.41592322358573,51.8040529101596,51.16530112826658,51.657818165325736,51.12438609200767,51.11697549181544,51.086335850543705,51.041267122677134,50.977934924284696,51.00764938464099,51.052041318780965,50.98500323688042,50.99419932355828,50.95952235551851,50.95246259852816,50.934732593585984,50.93180125207685,50.90482993125293,50.91653954464901,50.91659422623865],"feasible_probability":0.5157281015498006,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.484375,"counts":{"001010001011":22,"001010001101":14,"001010010011":1,"001010100011":4,"001010100101":31,"001011000011":13,"001011000101":45,"001100001011":22,"001100001101":27,"001100010011":1,"001100010101":22,"001100100011":10,"001100100101":38,"010010001011":1,"010010001101":1,"010010010011":2,"010010010101":10,"010010100101":6,"010011000011":1,"010011000101":3,"010100001011":10,"010100001101":20,"010100010011":1,"010100010101":5,"010100100011":6,"010100100101":31,"010101000011":2,"010101000101":14,"100010001011":17,"100010001101":14,"100010010011":1,"100010100011":2,"100010100101":20,"100011000011":8,"100011000101":27,"100100001011":13,"100100001101":8,"100100010101":15,"100100100011":5,"100100100101":19},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.2773423320031725},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[0,2],"fixed_cost":14,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]},{"variable":3,"forced_by":2,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[4,5,6,7,8,9,10,11]],"components":[{"qubits":8,"penalty":29,"objective_bound":28,"offset":87,"linear":[-18,-20,-23,-29,-23,-29,-23,-18],"quadratic":[[0,1,58],[0,2,58],[0,3,29],[0,6,29],[1,2,58],[2,4,29],[3,4,58],[3,6,29],[5,6,58],[5,7,58],[6,7,58]],"domains":[[0,1,2],[3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":15,"cost":11},{"index":1,"task":"t2","resource":"r2","start":15,"cost":9},{"index":2,"task":"t2","resource":"r1","start":12,"cost":6},{"index":3,"task":"t3","resource":"r0","start":15,"cost":0},{"index":4,"task":"t3","resource":"r1","start":13,"cost":6},{"index":5,"task":"t4","resource":"r1","start":20,"cost":0},{"index":6,"task":"t4","resource":"r0","start":17,"cost":6},{"index":7,"task":"t4","resource":"r2","start":25,"cost":11}],"conflicts":[{"i":0,"j":3,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":20,"raw_cost":20,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":5,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":12,"end":14,"reserved_end":16,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":15,"end":17,"reserved_end":19,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":20,"end":23,"reserved_end":25,"changed":false}],"bits":[1,0,1,0,0,0,1,1,0,1,0,0],"qubo_energy":20},"components":[{"status":"feasible","best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t2","group":"g0","resource":"r1","start":12,"end":14,"reserved_end":16,"changed":true},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":15,"end":17,"reserved_end":19,"changed":false},{"variable":5,"task":"t4","group":"g0","resource":"r1","start":20,"end":23,"reserved_end":25,"changed":false}],"bits":[0,0,1,1,0,1,0,0],"qubo_energy":6},"seed":2001025171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0584531552855194,1.295837346519152],"expected_energy":24.50537310266198,"initial_expected_energy":34.18464548039744,"history":[34.18464548039744,34.05947795288454,26.57582132960513,43.282564168090275,24.903939528115412,25.124438517333054,25.9757713223625,24.650628599167185,24.74069981059157,24.9097286847404,24.532371769553862,24.784774248471763,24.551763047557625,24.545325758610094,24.676007641793994,24.526661821574884,24.53253454069781,24.527718916995706,24.524221389553226,24.529866806055573,24.522268667284106,24.520584909324434,24.518265702023314,24.515410187380724,24.513195752008613,24.507861427540483,24.51606831978892,24.523232152031774,24.508678635819948,24.51078610519513,24.50835098326306,24.50770706463626,24.508230518893427,24.50766460100491,24.50752101731145,24.50739868173916,24.507447854823432,24.507293835065326,24.50721725339799,24.507244920724222,24.50710001768825,24.50699053912787,24.506910601817182,24.506657872781375,24.506487153513177,24.506288847433485,24.50594511705983,24.506185845267385,24.506319063069522,24.50596251150759,24.505898259736192,24.50589396213276,24.50604115855951,24.50579163905543,24.505726377547195,24.505662877523548,24.505614218987922,24.505473800372116,24.50546590787948,24.50537310266198,41.265122968586745,36.15226269106398,33.526778847153984,37.94204565804316,34.61009626977736,34.346204497103685,33.59609778005934,33.42882711292768,33.39891821659146,33.27330448726809,33.83723261900939,33.451894432135155,33.37322706094066,33.29118396208386,33.258647982276024,33.23880935852931,33.23567516736814,33.20237963656336,33.195254832975955,33.168373464107624,33.13508436308391,33.088701339396394,33.07058262672457,33.07237552508666,33.146920330586816,33.05956137431343,33.05980624831572,33.070352305872824,33.042144159745455,33.02417437251803,33.020006773039576,33.05359417328457,33.00973103298724,33.00222791837647,32.99023905481974,32.96384999570281,32.9196067075347,33.68363308139835,33.06398466555664,33.01298818401787,32.91073726402854,32.90691675211059,32.94407060861436,32.89738983575322,32.89285228841775,32.88797603693956,32.88459937741474,32.871806100085735,32.876467308671735,32.869243203585455,32.87690680395441,32.86371557446999,32.85881811205954,32.84913640758316,32.830072690942764,32.80398387807633,32.90817394752735,32.91035503686339,32.799542888441,32.79391527264712],"feasible_probability":0.6887380603795199,"one_hot_probability":1.0,"sampled_feasible_fraction":0.681640625,"counts":{"00101001":2,"00101010":38,"00101100":84,"00110001":31,"00110010":48,"00110100":48,"01001001":1,"01001010":11,"01001100":12,"01010001":8,"01010010":23,"01010100":33,"10001001":8,"10001010":19,"10001100":75,"10010001":23,"10010010":8,"10010100":40},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1234641759947408}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.6887380603795199,"total_shots":512,"runtime_seconds":0.12367692100815475},"direct_metrics":{"exact_objective":20,"optimal_count":1,"combinations":48,"optimal_probability":0.071653690094552,"feasible_probability":0.5157281015498005,"uniform_optimal_probability":0.020833333333333332,"uniform_feasible_probability":0.1875,"shots_for_95_percent":41,"hit_curve":[{"shots":8,"quantum":0.4483290393750337,"uniform":0.15500728552284493},{"shots":16,"quantum":0.6956591512031269,"uniform":0.2859873124805291},{"shots":32,"quantum":0.9073766477535988,"uniform":0.4901858820612224},{"shots":64,"quantum":0.9914209146186391,"uniform":0.7400895651503061},{"shots":128,"quantum":0.9999263992940193,"uniform":0.9324465658562431},{"shots":512,"quantum":1.0,"uniform":0.9999791747738264}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":6.938893903907228e-17,"independent_samples":[{"shots":8,"best_objective":20},{"shots":16,"best_objective":23},{"shots":32,"best_objective":20},{"shots":64,"best_objective":20},{"shots":128,"best_objective":20},{"shots":512,"best_objective":20}]},"component_metrics":[{"exact_objective":6,"optimal_count":1,"combinations":18,"optimal_probability":0.15238349374308732,"feasible_probability":0.68873806037952,"uniform_optimal_probability":0.05555555555555555,"uniform_feasible_probability":0.5,"shots_for_95_percent":19,"hit_curve":[{"shots":8,"quantum":0.7335625652431104,"uniform":0.3669888932096303},{"shots":16,"quantum":0.9290110933601682,"uniform":0.5992969386800311},{"shots":32,"quantum":0.9949605751340812,"uniform":0.8394370566488053},{"shots":64,"quantum":0.9999746041970208,"uniform":0.9742195412224011},{"shots":128,"quantum":0.9999999993550532,"uniform":0.9993353679452165},{"shots":512,"quantum":1.0,"uniform":0.9999999999998048}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":9},{"shots":16,"best_objective":6},{"shots":32,"best_objective":6},{"shots":64,"best_objective":6},{"shots":128,"best_objective":6},{"shots":512,"best_objective":6}]}],"reduced_single_joint_draw_p_opt":0.15238349374308732,"diagnostic_seconds":0.008866295000188984}
+{"instance":"n5-s1-r2.json","seed":3,"direct":{"status":"feasible","best":{"feasible":true,"objective":20,"raw_cost":20,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":5,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":12,"end":14,"reserved_end":16,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":15,"end":17,"reserved_end":19,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":20,"end":23,"reserved_end":25,"changed":false}],"bits":[1,0,1,0,0,0,1,1,0,1,0,0],"qubo_energy":20},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.2940802303301724,1.2070511200779854],"expected_energy":51.934086996545666,"initial_expected_energy":53.305214738976304,"history":[53.305214738976304,56.48130488297213,81.94262364711902,84.72825486888055,63.80687315171025,56.29215724370927,53.153904404860775,53.31472765234681,53.18587753352358,53.40200093461592,53.16007632550544,53.07441797278885,53.01977888411651,52.9572349380896,52.84037297878112,52.63170430511521,52.31310457497899,52.21616962501903,52.28303153166144,53.060590605381385,52.121150041291045,52.130192596283294,52.1610200823208,52.0701970229301,52.05549148587035,52.030889596370514,51.990669999733896,52.04765765415049,52.05722017929285,52.01980612455918,51.98636434794011,51.98556263576504,51.97877431167616,51.97253642650995,51.96215358122086,51.98535091633607,51.96503142047753,51.962264497101586,51.96653567343039,51.962290299982214,51.960457054195146,51.957892483784946,51.95312787703683,51.95077042434187,51.942588973933624,51.9529357292519,51.940622456906056,51.947862014713266,51.94078480248771,51.93895842599137,51.938955530291906,51.940206342477566,51.93904449069258,51.93849345439891,51.93775842734152,51.93786680505807,51.93717566157801,51.93662700258069,51.93561400572738,51.934086996545666,70.29190953784172,64.92435153607366,78.23929597416017,76.32083623223923,69.74498578428157,67.05517465959858,65.23091208492215,64.85755517533116,64.40736183373333,63.993693594052715,63.31483468787495,65.89921177180216,63.55988287663429,63.460764312761505,63.56493460910271,63.26930990285601,63.144081621956914,63.01287476212863,63.13856775745258,62.92226229367114,62.86572375538415,62.773771863444836,62.597642849061366,62.25882247122199,61.625187161223806,62.50163475877527,62.892584188810666,61.774276857688136,61.590622449763785,61.88971904371006,61.487217000895726,61.402790342380584,61.26787579985848,60.9846255026284,60.51250043059141,62.44631755894328,62.59725828045818,60.44873238704015,60.303615840523506,60.00965184397826,59.487997076318834,58.594361739509424,68.02208227632255,63.57852000672072,59.83259745674094,58.499806355045195,58.964283332362356,58.47589496895103,58.38803934104441,58.313978619050886,59.15794207534931,58.14514658476146,58.100523864992105,57.986367736489434,57.78963449465932,57.413198839258285,57.644090174900626,58.487762890847,57.34526215986328,57.94337902313866],"feasible_probability":0.4368221421415,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.453125,"counts":{"001010001011":10,"001010001101":4,"001010010011":1,"001010010101":1,"001010100011":2,"001010100101":38,"001011000011":2,"001011000101":45,"001100001011":24,"001100001101":65,"001100010101":55,"001100100011":4,"001100100101":7,"001101000011":6,"001101000101":3,"010010001101":1,"010010100101":5,"010011000101":7,"010100001011":3,"010100001101":23,"010100010101":16,"010100100101":2,"010101000011":1,"010101000101":2,"100010001011":11,"100010001101":11,"100010010011":2,"100010010101":9,"100010100011":6,"100010100101":19,"100011000011":5,"100011000101":47,"100100001011":4,"100100001101":3,"100100010011":2,"100100010101":6,"100100100011":1,"100100100101":13,"100101000011":8,"100101000101":38},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.27674990700325},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[0,2],"fixed_cost":14,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]},{"variable":3,"forced_by":2,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[4,5,6,7,8,9,10,11]],"components":[{"qubits":8,"penalty":29,"objective_bound":28,"offset":87,"linear":[-18,-20,-23,-29,-23,-29,-23,-18],"quadratic":[[0,1,58],[0,2,58],[0,3,29],[0,6,29],[1,2,58],[2,4,29],[3,4,58],[3,6,29],[5,6,58],[5,7,58],[6,7,58]],"domains":[[0,1,2],[3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":15,"cost":11},{"index":1,"task":"t2","resource":"r2","start":15,"cost":9},{"index":2,"task":"t2","resource":"r1","start":12,"cost":6},{"index":3,"task":"t3","resource":"r0","start":15,"cost":0},{"index":4,"task":"t3","resource":"r1","start":13,"cost":6},{"index":5,"task":"t4","resource":"r1","start":20,"cost":0},{"index":6,"task":"t4","resource":"r0","start":17,"cost":6},{"index":7,"task":"t4","resource":"r2","start":25,"cost":11}],"conflicts":[{"i":0,"j":3,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":20,"raw_cost":20,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":5,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":12,"end":14,"reserved_end":16,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":15,"end":17,"reserved_end":19,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":20,"end":23,"reserved_end":25,"changed":false}],"bits":[1,0,1,0,0,0,1,1,0,1,0,0],"qubo_energy":20},"components":[{"status":"feasible","best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t2","group":"g0","resource":"r1","start":12,"end":14,"reserved_end":16,"changed":true},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":15,"end":17,"reserved_end":19,"changed":false},{"variable":5,"task":"t4","group":"g0","resource":"r1","start":20,"end":23,"reserved_end":25,"changed":false}],"bits":[0,0,1,1,0,1,0,0],"qubo_energy":6},"seed":819382448,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9954671359558773,2.945399571168696],"expected_energy":19.986327592900633,"initial_expected_energy":27.315467189778307,"history":[27.315467189778307,31.499151499588343,42.398226000462046,32.707459112981454,37.09673487486049,26.057649014056636,24.95616722023705,25.946580754640728,25.203426348382166,24.90552507152851,24.960870769067714,24.97629009933317,24.888097119114118,24.930645067647426,24.88116184450947,24.867884005154046,24.84378007283796,24.79848611773942,24.713759227841045,24.800601551399375,24.876091619931117,24.745286183104163,24.704982525464324,24.711594529516816,24.69724315793563,24.69437277421293,24.7072846249728,24.683631692552197,24.67450321208091,24.6575146457343,24.653846455913857,24.62427658130788,24.61609105698063,24.577900857497845,24.57750936168916,24.531754406198246,24.70420078281854,24.578068410361517,24.5284286381545,24.54761568941961,24.526971793453157,24.52356884143151,24.51759308712753,24.514531942554843,24.531224752020343,24.54798639880192,24.513970688437382,24.508152525720725,24.509319874074386,24.50790422025495,24.50885544899981,24.50782620836273,24.507537463936956,24.50713987646827,24.506949493975718,24.507211675072167,24.50684008328099,24.506751515646723,24.506546741556463,24.506209240895473,34.13806345170095,33.476200155433816,28.457206822721297,49.98388630898414,37.397064571142224,31.382080641715508,22.750284353388974,35.39697442781769,21.419617992712716,21.11748475129315,21.155417986691713,22.56581317191054,20.956369363274185,21.20842214667089,21.00993566157572,20.91315102459428,20.821452862848,20.66108156140778,20.55609121035485,20.510936915457048,20.411274528016666,20.130860969577697,20.266328799628692,21.418355592401113,20.188282297497423,20.125404610297885,20.113767770388158,20.136471211063274,20.142446133411866,20.070586661270745,20.043760153188945,20.081816426218793,20.04510163407977,20.03839876315026,20.050754269041356,20.03376056097893,20.029875369888945,20.023484959026213,20.01307152711923,20.00120438918664,19.992646560036114,20.088086294485954,20.0581201374009,19.99216997837351,19.988667101674636,20.00308916911119,19.989987724165353,19.98959173789142,19.98759811588461,19.98754035426692,19.98731456424917,19.987135796268607,19.986866375160677,19.98647872904424,19.986649928038826,19.986905162821095,19.986523114219853,19.986568205105392,19.98637605500293,19.986327592900633],"feasible_probability":0.9151369022951897,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.921875,"counts":{"00101001":2,"00101010":61,"00101100":44,"00110001":46,"00110010":67,"00110100":1,"01001001":10,"01001010":13,"01001100":6,"01010010":47,"01010100":6,"10001001":2,"10001010":49,"10001100":63,"10010001":45,"10010010":50},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11785332499130163}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.9151369022951897,"total_shots":512,"runtime_seconds":0.11803751999104861},"direct_metrics":{"exact_objective":20,"optimal_count":1,"combinations":48,"optimal_probability":0.10084568618179254,"feasible_probability":0.43682214214149995,"uniform_optimal_probability":0.020833333333333332,"uniform_feasible_probability":0.1875,"shots_for_95_percent":29,"hit_curve":[{"shots":8,"quantum":0.5727580804059996,"uniform":0.15500728552284493},{"shots":16,"quantum":0.8174643421416337,"uniform":0.2859873124805291},{"shots":32,"quantum":0.9666807336102134,"uniform":0.4901858820612224},{"shots":64,"quantum":0.9988898264872464,"uniform":0.7400895651503061},{"shots":128,"quantum":0.9999987675147716,"uniform":0.9324465658562431},{"shots":512,"quantum":1.0,"uniform":0.9999791747738264}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":6.938893903907228e-17,"independent_samples":[{"shots":8,"best_objective":20},{"shots":16,"best_objective":20},{"shots":32,"best_objective":20},{"shots":64,"best_objective":20},{"shots":128,"best_objective":20},{"shots":512,"best_objective":20}]},"component_metrics":[{"exact_objective":6,"optimal_count":1,"combinations":18,"optimal_probability":0.11926479627572446,"feasible_probability":0.9151369022951896,"uniform_optimal_probability":0.05555555555555555,"uniform_feasible_probability":0.5,"shots_for_95_percent":24,"hit_curve":[{"shots":8,"quantum":0.6379547562639545,"uniform":0.3669888932096303},{"shots":16,"quantum":0.8689232414881074,"uniform":0.5992969386800311},{"shots":32,"quantum":0.982818883378015,"uniform":0.8394370566488053},{"shots":64,"quantum":0.9997048092316217,"uniform":0.9742195412224011},{"shots":128,"quantum":0.9999999128624103,"uniform":0.9993353679452165},{"shots":512,"quantum":1.0,"uniform":0.9999999999998048}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.249000902703301e-16,"independent_samples":[{"shots":8,"best_objective":6},{"shots":16,"best_objective":6},{"shots":32,"best_objective":6},{"shots":64,"best_objective":6},{"shots":128,"best_objective":6},{"shots":512,"best_objective":6}]}],"reduced_single_joint_draw_p_opt":0.11926479627572446,"diagnostic_seconds":0.007983943010913208}
+{"instance":"n5-s1-r2.json","seed":4,"direct":{"status":"feasible","best":{"feasible":true,"objective":20,"raw_cost":20,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":5,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":12,"end":14,"reserved_end":16,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":15,"end":17,"reserved_end":19,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":20,"end":23,"reserved_end":25,"changed":false}],"bits":[1,0,1,0,0,0,1,1,0,1,0,0],"qubo_energy":20},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.2898209770184748,1.2004078779479672],"expected_energy":51.94461957943135,"initial_expected_energy":76.96550109654088,"history":[76.96550109654088,76.08393342546992,68.20147001053904,69.70451664670418,70.3911921053284,66.7088092107038,66.21384190499555,64.24781179508993,62.08542108898859,60.74689657842816,58.2696435470569,66.95607002184722,64.98072601008826,61.21064944379353,58.056107204061306,58.259552087736445,57.86614050241369,58.45799900360478,57.63338619552982,57.514579358374846,57.33939373734741,56.992625954721944,56.304564283111745,54.97032794947431,61.0951335096805,61.05794012333183,54.61598129118056,56.2031905404166,54.757273654756986,54.546178101292504,54.431100501375475,55.346177619468165,54.23971222484246,54.00734277782307,53.91583544558077,53.75385205449449,53.60618701942676,53.3396344343522,52.91561445874259,52.6328732605364,54.25061479234805,55.75133713610486,52.67170439727931,52.13067957412241,52.53443004391727,52.20008589938914,52.14429872422667,52.11160636550392,52.164436222221994,52.098373994566714,52.08685622756247,52.065999436658615,52.03787702992268,52.00340479428834,51.98549324304524,51.94461957943135,52.103814938317626,52.27918052253719,51.95902260723365,51.950156021581705,83.76808565644549,88.17757360653617,75.84004754331858,99.9210015958015,76.02974972120191,77.75163771939916,75.83225412816489,78.13802496509892,75.16507106688263,76.34244511733002,75.0878911782674,75.08572382475393,75.06110267816828,75.0293038382183,75.00930190683516,74.97483900180188,74.97040279676969,74.90584262384999,74.92548804804267,74.92386051037005,74.91722549039504,74.89449588881047,74.90725143615308,74.87760448497494,74.86062866540888,74.82497668967801,74.75493971889446,74.59456623587042,75.0069502223273,75.23280544489359,74.64207542850902,74.60113486435155,74.60958415995641,74.57378690294382,74.56626387831417,74.59382106545823,74.54167192266152,74.51855302795128,74.47254510455889,74.37782391665422,74.3393860775559,74.11019859498653,74.56586095323223,74.00597533434238,73.9600950872194,74.33053401531194,73.85833867636788,73.79561577772938,73.73458927607405,73.69891755198401,73.50129771387614,73.42474556382962,73.22322380011714,72.91552336320919,71.99850640554857,71.63147355087744,68.3456687384334,75.13716934224159,69.44117887729894,69.19662155597894],"feasible_probability":0.43671354881227115,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.4921875,"counts":{"001010001011":3,"001010001101":4,"001010010011":1,"001010100011":3,"001010100101":22,"001011000011":6,"001011000101":65,"001100001011":26,"001100001101":57,"001100010101":56,"001100100011":2,"001100100101":12,"001101000011":3,"001101000101":13,"010010100101":4,"010011000101":5,"010100001011":7,"010100001101":20,"010100010011":1,"010100010101":17,"010100100101":4,"010101000101":3,"100010001011":9,"100010001101":14,"100010010101":13,"100010100011":7,"100010100101":28,"100011000011":7,"100011000101":45,"100100001011":4,"100100001101":5,"100100010101":11,"100100100011":3,"100100100101":9,"100101000011":3,"100101000101":20},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.27812088798964396},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[0,2],"fixed_cost":14,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]},{"variable":3,"forced_by":2,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[4,5,6,7,8,9,10,11]],"components":[{"qubits":8,"penalty":29,"objective_bound":28,"offset":87,"linear":[-18,-20,-23,-29,-23,-29,-23,-18],"quadratic":[[0,1,58],[0,2,58],[0,3,29],[0,6,29],[1,2,58],[2,4,29],[3,4,58],[3,6,29],[5,6,58],[5,7,58],[6,7,58]],"domains":[[0,1,2],[3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":15,"cost":11},{"index":1,"task":"t2","resource":"r2","start":15,"cost":9},{"index":2,"task":"t2","resource":"r1","start":12,"cost":6},{"index":3,"task":"t3","resource":"r0","start":15,"cost":0},{"index":4,"task":"t3","resource":"r1","start":13,"cost":6},{"index":5,"task":"t4","resource":"r1","start":20,"cost":0},{"index":6,"task":"t4","resource":"r0","start":17,"cost":6},{"index":7,"task":"t4","resource":"r2","start":25,"cost":11}],"conflicts":[{"i":0,"j":3,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":20,"raw_cost":20,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":5,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":12,"end":14,"reserved_end":16,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":15,"end":17,"reserved_end":19,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":20,"end":23,"reserved_end":25,"changed":false}],"bits":[1,0,1,0,0,0,1,1,0,1,0,0],"qubo_energy":20},"components":[{"status":"feasible","best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t2","group":"g0","resource":"r1","start":12,"end":14,"reserved_end":16,"changed":true},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":15,"end":17,"reserved_end":19,"changed":false},{"variable":5,"task":"t4","group":"g0","resource":"r1","start":20,"end":23,"reserved_end":25,"changed":false}],"bits":[0,0,1,1,0,1,0,0],"qubo_energy":6},"seed":367776961,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.28333453928943,2.2316529653004924],"expected_energy":32.70754649707413,"initial_expected_energy":44.09587076710827,"history":[44.09587076710827,42.05901912834405,32.75638581742151,33.21720304530109,33.27400296930537,33.110105754240855,35.48270458006917,32.75690111741976,33.354348151012125,32.753416177031454,32.82570405728446,32.749926647387824,32.73485919550866,32.727780628829365,32.72917334445347,32.72684340038901,32.72638354916714,32.728820693995075,32.72574127157493,32.72535686019301,32.72491934684697,32.72418211862619,32.72765072957872,32.72385951714254,32.723408779733134,32.72245797980588,32.72064833197745,32.71750974687531,32.73831137848187,32.734530533019715,32.72089224109982,32.7171791219736,32.718493146832905,32.717105357673745,32.71676939874536,32.71620393523341,32.718201604302735,32.7160614551631,32.71563593597003,32.71480591216973,32.713551267608466,32.71191542540556,32.71239770921545,32.71796190686199,32.712620513601465,32.711230019151955,32.71121656129371,32.71218140902524,32.71124387752701,32.71094365118729,32.71062845677562,32.710797057128104,32.71051604573172,32.710408464506024,32.71021158288796,32.709790265067596,32.70900578980732,32.70754649707413,32.71929558913452,32.71889656771386,37.58196109371627,38.60802921215739,33.98278388038085,36.01594540130658,35.16207367874344,35.37942532080931,33.41888702207778,35.14619910422112,33.40518242440436,33.91175683088059,33.29314917879029,33.68781143794111,33.30040265056094,33.27878085770104,33.27009885361868,33.26655084465463,33.30598868100754,33.258023412028834,33.25301357266475,33.24940243131695,33.25351177502429,33.247045078918845,33.24467578429002,33.24059499586738,33.231811945397794,33.21292381842294,33.1734238129359,33.141418355089364,33.40368821786866,33.51219414259076,33.14092185566021,33.08193839417065,33.122693055741706,33.07581078219067,33.08597199050411,33.0747198510487,33.071225830211816,33.06858422447093,33.07147785021084,33.06619270474293,33.064348828637705,33.065631064969686,33.06197110380757,33.0608065251694,33.062929426561276,33.06021932669601,33.05897051571278,33.05653017776206,33.05326081473965,33.0482887125034,33.044054008762146,33.034377139324505,33.018529254859004,32.97901873068798,33.02833124158927,33.21842525134291,33.012860642862194,32.97510613723774,32.99709564794608,32.97064444980454],"feasible_probability":0.6126471729308031,"one_hot_probability":1.0,"sampled_feasible_fraction":0.5625,"counts":{"00101001":50,"00101010":18,"00101100":19,"00110001":5,"00110010":25,"00110100":12,"01001001":19,"01001010":6,"01001100":19,"01010001":25,"01010010":22,"01010100":6,"10001001":66,"10001010":12,"10001100":68,"10010001":57,"10010010":62,"10010100":21},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13900905499758665}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.6126471729308031,"total_shots":512,"runtime_seconds":0.13924428301106673},"direct_metrics":{"exact_objective":20,"optimal_count":1,"combinations":48,"optimal_probability":0.09967289359333556,"feasible_probability":0.4367135488122711,"uniform_optimal_probability":0.020833333333333332,"uniform_feasible_probability":0.1875,"shots_for_95_percent":29,"hit_curve":[{"shots":8,"quantum":0.5682795648234715,"uniform":0.15500728552284493},{"shots":16,"quantum":0.8136174658509889,"uniform":0.2859873124805291},{"shots":32,"quantum":0.9652615509641927,"uniform":0.4901858820612224},{"shots":64,"quantum":0.9987932401585866,"uniform":0.7400895651503061},{"shots":128,"quantum":0.9999985437306852,"uniform":0.9324465658562431},{"shots":512,"quantum":1.0,"uniform":0.9999791747738264}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.163336342344337e-17,"independent_samples":[{"shots":8,"best_objective":20},{"shots":16,"best_objective":20},{"shots":32,"best_objective":20},{"shots":64,"best_objective":20},{"shots":128,"best_objective":20},{"shots":512,"best_objective":20}]},"component_metrics":[{"exact_objective":6,"optimal_count":1,"combinations":18,"optimal_probability":0.02721014788299421,"feasible_probability":0.6126471729308031,"uniform_optimal_probability":0.05555555555555555,"uniform_feasible_probability":0.5,"shots_for_95_percent":109,"hit_curve":[{"shots":8,"quantum":0.19804084038238215,"uniform":0.3669888932096303},{"shots":16,"quantum":0.35686150630540414,"uniform":0.5992969386800311},{"shots":32,"quantum":0.5863728779282462,"uniform":0.8394370566488053},{"shots":64,"quantum":0.8289126038866386,"uniform":0.9742195412224011},{"shots":128,"quantum":0.9707291028911498,"uniform":0.9993353679452165},{"shots":512,"quantum":0.9999992659187482,"uniform":0.9999999999998048}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":21},{"shots":16,"best_objective":6},{"shots":32,"best_objective":6},{"shots":64,"best_objective":6},{"shots":128,"best_objective":6},{"shots":512,"best_objective":6}]}],"reduced_single_joint_draw_p_opt":0.02721014788299421,"diagnostic_seconds":0.009459779001190327}
+{"instance":"n5-s1-r2.json","seed":5,"direct":{"status":"feasible","best":{"feasible":true,"objective":20,"raw_cost":20,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":5,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":12,"end":14,"reserved_end":16,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":15,"end":17,"reserved_end":19,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":20,"end":23,"reserved_end":25,"changed":false}],"bits":[1,0,1,0,0,0,1,1,0,1,0,0],"qubo_energy":20},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.1528725193125362,-0.1876726687045078],"expected_energy":50.810572717120536,"initial_expected_energy":75.57902643205861,"history":[75.57902643205861,75.50618460786812,58.069865465836955,117.09799950940348,70.64543241777764,61.26817656652945,56.280740086454145,55.574817952594664,60.32466837957682,54.84152378103561,53.22645970627005,53.77288421671123,53.52751244006554,53.288196330829315,53.08862899699835,52.98293411998323,52.68889435008266,52.67974411708507,52.451447107968846,52.356468917298216,52.09333009958062,51.71958116637909,51.26442112010144,53.21868533939129,53.544348024323014,51.22088901653959,51.129132550621776,51.25311670350079,51.16243107511893,51.07867403944641,51.07011662907449,51.05468124935807,51.06177562597637,51.045617585171726,51.04397648479757,51.05742101937782,51.041122420945236,51.03578365395206,51.02588534094954,51.00813365049994,50.97369883397144,50.92294672950369,51.3056251266472,51.2701340028007,50.9131472046864,50.912331149565404,50.967630562589434,50.91400975654017,50.89537547323997,50.88643418659245,50.890658601230434,50.884977661476675,50.8819353369144,50.8761008509434,50.865476904007075,50.85016638423785,50.8340163404646,50.82208082622351,51.24312588343513,50.81743176359751,78.25978082377233,88.39490878593423,87.55682030593627,97.13535673384537,75.48457267529196,63.20829847455172,77.34040105395609,56.14472905582981,86.56198198008835,54.78051646917598,62.65209873036069,54.5399213514373,53.688600012886496,52.42415843458819,51.10419933279658,65.05479746368151,60.52131432089,51.026021440476626,51.78678973841484,53.7023854051113,51.000870255750456,51.02687003880331,51.045091869971834,50.935792169831245,50.90562617867856,50.97216068115282,50.898124805605406,50.90735247065633,50.89064775740411,50.9138781602809,50.89668945885695,50.88917829772757,50.885794401255104,50.883620936814424,50.87677958874937,50.871266988659485,50.86003407461095,50.84016619583727,50.90919041086704,50.9063807454564,50.850472811859575,50.83830596913776,50.843286935047054,50.837578521885064,50.83551748090319,50.83290725143539,50.8352065116575,50.83048858007657,50.830291090576566,50.831292397891744,50.83045305835377,50.82935396691309,50.82793829990122,50.830543339487264,50.82658565358929,50.82497648436656,50.82191436947774,50.81632386462608,50.813130663520695,50.810572717120536],"feasible_probability":0.5090349693588301,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.515625,"counts":{"001010001011":14,"001010001101":19,"001010010011":1,"001010100011":5,"001010100101":30,"001011000011":10,"001011000101":30,"001100001011":25,"001100001101":19,"001100010011":4,"001100010101":34,"001100100011":14,"001100100101":42,"010010001011":3,"010010010011":2,"010010010101":11,"010010100011":1,"010010100101":6,"010011000101":1,"010100001011":20,"010100001101":18,"010100010011":2,"010100010101":1,"010100100011":2,"010100100101":25,"010101000011":1,"010101000101":11,"100010001011":12,"100010001101":14,"100010010011":2,"100010100011":3,"100010100101":24,"100011000011":1,"100011000101":28,"100100001011":14,"100100001101":8,"100100010011":2,"100100010101":22,"100100100011":2,"100100100101":29},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3221851560083451},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[0,2],"fixed_cost":14,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]},{"variable":3,"forced_by":2,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[4,5,6,7,8,9,10,11]],"components":[{"qubits":8,"penalty":29,"objective_bound":28,"offset":87,"linear":[-18,-20,-23,-29,-23,-29,-23,-18],"quadratic":[[0,1,58],[0,2,58],[0,3,29],[0,6,29],[1,2,58],[2,4,29],[3,4,58],[3,6,29],[5,6,58],[5,7,58],[6,7,58]],"domains":[[0,1,2],[3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":15,"cost":11},{"index":1,"task":"t2","resource":"r2","start":15,"cost":9},{"index":2,"task":"t2","resource":"r1","start":12,"cost":6},{"index":3,"task":"t3","resource":"r0","start":15,"cost":0},{"index":4,"task":"t3","resource":"r1","start":13,"cost":6},{"index":5,"task":"t4","resource":"r1","start":20,"cost":0},{"index":6,"task":"t4","resource":"r0","start":17,"cost":6},{"index":7,"task":"t4","resource":"r2","start":25,"cost":11}],"conflicts":[{"i":0,"j":3,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":20,"raw_cost":20,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":5,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":12,"end":14,"reserved_end":16,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":15,"end":17,"reserved_end":19,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":20,"end":23,"reserved_end":25,"changed":false}],"bits":[1,0,1,0,0,0,1,1,0,1,0,0],"qubo_energy":20},"components":[{"status":"feasible","best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t2","group":"g0","resource":"r1","start":12,"end":14,"reserved_end":16,"changed":true},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":15,"end":17,"reserved_end":19,"changed":false},{"variable":5,"task":"t4","group":"g0","resource":"r1","start":20,"end":23,"reserved_end":25,"changed":false}],"bits":[0,0,1,1,0,1,0,0],"qubo_energy":6},"seed":803261128,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0021046628040706,2.945776451593157],"expected_energy":19.985754304444594,"initial_expected_energy":37.64420179608386,"history":[37.64420179608386,37.7856618313344,20.03497614726328,64.38247182804925,27.13345805295658,21.441231326091312,24.879207549882082,20.256871691025353,20.589219320932187,20.364227846561533,20.008082128754992,19.993326498862302,20.006546641436437,20.002235116378703,19.98591189345094,19.99018114502845,19.98768756671721,19.985901666756625,19.98593632866424,19.98604584835115,19.98575927538849,19.985814172844165,19.98576943761825,19.985765799314922,19.985754589711803,19.985758931849666,19.985755534958393,19.98575466861548,19.98575454937737,19.985754582867706,19.985754469033132,19.98575446813618,19.985754507671523,19.98575443350005,19.985754374022648,19.985754304444594,19.985754533135427,19.985754368367175,19.985754308804424,19.98575438523919,39.59232958037466,43.02257463754501,36.53166927432025,34.74890031842871,38.74898201734568,38.2147338630227,31.681529008116424,31.766388318023857,32.88350327889215,30.707065283327367,32.02996558984654,31.54694567789043,29.171057998791586,27.626825906772513,30.36005261957976,27.18852314979958,26.178253614576697,25.262492786482234,25.32855472925991,24.799723391510668,25.290349494693128,25.391911028138054,24.264103536554963,25.23849130443125,23.824492944892782,23.443016276793976,23.038436164434817,22.31203198001431,22.12433904439155,21.516752691764747,21.68883011697292,21.42558438537208,21.889147300367377,21.351826062496052,21.22770646039252,21.014057698576,20.70369552272022,20.730080804214616,20.8597629769552,20.77275711309081,20.64234529472273,20.733217598670212,20.630155561793963,20.601823112559558,20.573177657165672,20.52529081307874,20.45750775248213,20.346938201389587,20.21117574139177,20.18508623379381,20.113608900681253,20.54365873718271,20.047929090914558,20.216997463042073,20.060319643219664,20.086643596584402,20.032976832960138,20.03111881093259,20.048594136529275,20.025741710692017],"feasible_probability":0.9158074535206981,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.919921875,"counts":{"00101001":5,"00101010":65,"00101100":70,"00110001":42,"00110010":76,"00110100":1,"01001001":9,"01001010":3,"01001100":10,"01010001":2,"01010010":51,"01010100":8,"10001001":2,"10001010":50,"10001100":39,"10010001":29,"10010010":49,"10010100":1},"circuit_evaluations":100,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":40},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11005365400342271}],"circuit_evaluations":100,"status":"feasible","feasible_probability":0.9158074535206981,"total_shots":512,"runtime_seconds":0.11029989199596457},"direct_metrics":{"exact_objective":20,"optimal_count":1,"combinations":48,"optimal_probability":0.06843514593239075,"feasible_probability":0.5090349693588301,"uniform_optimal_probability":0.020833333333333332,"uniform_feasible_probability":0.1875,"shots_for_95_percent":43,"hit_curve":[{"shots":8,"quantum":0.43284108708131935,"uniform":0.15500728552284493},{"shots":16,"quantum":0.6783307674969005,"uniform":0.2859873124805291},{"shots":32,"quantum":0.8965289048608669,"uniform":0.4901858820612224},{"shots":64,"quantum":0.9892937324707085,"uniform":0.7400895651503061},{"shots":128,"quantum":0.9998853758355912,"uniform":0.9324465658562431},{"shots":512,"quantum":0.9999999999999998,"uniform":0.9999791747738264}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":20},{"shots":16,"best_objective":23},{"shots":32,"best_objective":20},{"shots":64,"best_objective":20},{"shots":128,"best_objective":20},{"shots":512,"best_objective":20}]},"component_metrics":[{"exact_objective":6,"optimal_count":1,"combinations":18,"optimal_probability":0.11962969851248101,"feasible_probability":0.915807453520698,"uniform_optimal_probability":0.05555555555555555,"uniform_feasible_probability":0.5,"shots_for_95_percent":24,"hit_curve":[{"shots":8,"quantum":0.6391530251871064,"uniform":0.3669888932096303},{"shots":16,"quantum":0.8697894607683829,"uniform":0.5992969386800311},{"shots":32,"quantum":0.9830452154730115,"uniform":0.8394370566488053},{"shots":64,"quantum":0.9997125352816434,"uniform":0.9742195412224011},{"shots":128,"quantum":0.9999999173640357,"uniform":0.9993353679452165},{"shots":512,"quantum":1.0,"uniform":0.9999999999998048}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":6},{"shots":16,"best_objective":6},{"shots":32,"best_objective":6},{"shots":64,"best_objective":6},{"shots":128,"best_objective":6},{"shots":512,"best_objective":6}]}],"reduced_single_joint_draw_p_opt":0.11962969851248101,"diagnostic_seconds":0.007995613006642088}
+{"instance":"n5-s1-r2.json","seed":6,"direct":{"status":"feasible","best":{"feasible":true,"objective":20,"raw_cost":20,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":5,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":12,"end":14,"reserved_end":16,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":15,"end":17,"reserved_end":19,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":20,"end":23,"reserved_end":25,"changed":false}],"bits":[1,0,1,0,0,0,1,1,0,1,0,0],"qubo_energy":20},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3759105806383758,1.2053144010493442],"expected_energy":52.02668423818878,"initial_expected_energy":86.7764551257759,"history":[86.7764551257759,82.37480948780444,63.266489544461564,75.35693144251474,68.4168888251092,64.11549802620246,63.320144222928135,63.55678882953949,62.75276534759232,62.447433458705405,63.35968440398125,62.16175939221355,61.94287604153945,61.493538861844385,60.847798188971026,62.19034141034645,63.01876787281164,60.48772921106681,60.30937338666374,61.31563659665787,60.03161700252217,59.86623828758449,59.690375025170844,59.45931107377521,59.10978213849518,58.98618192259173,60.04768923869823,58.711597057592655,58.560517152177155,58.406411490435815,58.28690323436912,57.873372576271976,57.88761257916156,57.785753591579294,57.827553677181754,57.84026723728654,57.7009415991111,57.638232967474586,57.919005595534344,57.536368535250105,57.443896940250596,57.2700076067617,56.93042343497097,56.249952450058736,54.90365138126171,54.43347050394911,64.28075317061574,69.25959695908276,54.601370918478686,52.59281889271508,54.38078256841983,52.80778611807441,52.590497757751734,52.48487260277926,52.3052376056952,52.13497994061167,52.706517936449885,53.04755459661704,52.109180963049766,52.02668423818878,100.6400324530039,91.7029179561932,75.51964694378933,69.61866109561682,75.53096667697481,74.02151988194055,71.14418626512668,68.29335400953764,66.99427024690158,67.98621654035588,66.14019994400483,66.09985361253078,66.88030976128124,65.4058499392593,64.14714790996948,62.04874724502843,69.2399958949457,67.13301782549675,63.02512956677677,61.857718394618544,62.328016098927804,61.588154674012685,62.00089997462736,61.361504729957566,61.4081033805942,61.326108749748656,61.215119612982356,61.0021950428992,60.606795279968274,61.851931230932756,60.575027578949324,60.29150740734674,59.86133863528218,59.3103075963737,58.71833460719786,58.36422358587991,61.55172769130774,57.791882986091906,57.85576162561459,57.73474036226243,57.74157411443728,57.6975947048405,57.61245074279351,57.482741170417654,57.58893197804096,57.359533857918294,57.450847571173284,57.275224923255685,57.23393615352491,57.321083261224615,57.21642794260981,57.180563362996466,57.110034867767666,56.971309276516145,56.69814614164077,56.147893111419386,55.05775336965776,53.75552477017534,60.13318782263653,62.68916571269061],"feasible_probability":0.43675432527660496,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.447265625,"counts":{"001010001011":5,"001010001101":5,"001010010011":1,"001010010101":3,"001010100011":3,"001010100101":44,"001011000011":7,"001011000101":53,"001100001011":23,"001100001101":76,"001100010011":1,"001100010101":43,"001100100011":2,"001100100101":13,"001101000011":6,"001101000101":7,"010010001011":2,"010010001101":2,"010010100101":4,"010011000101":7,"010100001011":9,"010100001101":21,"010100010011":1,"010100010101":8,"010100100011":1,"010101000011":1,"010101000101":6,"100010001011":11,"100010001101":14,"100010010011":1,"100010010101":10,"100010100011":2,"100010100101":21,"100011000011":5,"100011000101":39,"100100001011":2,"100100001101":4,"100100010101":13,"100100100011":3,"100100100101":3,"100101000011":2,"100101000101":28},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3078231809922727},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[0,2],"fixed_cost":14,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]},{"variable":3,"forced_by":2,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[4,5,6,7,8,9,10,11]],"components":[{"qubits":8,"penalty":29,"objective_bound":28,"offset":87,"linear":[-18,-20,-23,-29,-23,-29,-23,-18],"quadratic":[[0,1,58],[0,2,58],[0,3,29],[0,6,29],[1,2,58],[2,4,29],[3,4,58],[3,6,29],[5,6,58],[5,7,58],[6,7,58]],"domains":[[0,1,2],[3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":15,"cost":11},{"index":1,"task":"t2","resource":"r2","start":15,"cost":9},{"index":2,"task":"t2","resource":"r1","start":12,"cost":6},{"index":3,"task":"t3","resource":"r0","start":15,"cost":0},{"index":4,"task":"t3","resource":"r1","start":13,"cost":6},{"index":5,"task":"t4","resource":"r1","start":20,"cost":0},{"index":6,"task":"t4","resource":"r0","start":17,"cost":6},{"index":7,"task":"t4","resource":"r2","start":25,"cost":11}],"conflicts":[{"i":0,"j":3,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":20,"raw_cost":20,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":5,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":12,"end":14,"reserved_end":16,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":15,"end":17,"reserved_end":19,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":20,"end":23,"reserved_end":25,"changed":false}],"bits":[1,0,1,0,0,0,1,1,0,1,0,0],"qubo_energy":20},"components":[{"status":"feasible","best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t2","group":"g0","resource":"r1","start":12,"end":14,"reserved_end":16,"changed":true},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":15,"end":17,"reserved_end":19,"changed":false},{"variable":5,"task":"t4","group":"g0","resource":"r1","start":20,"end":23,"reserved_end":25,"changed":false}],"bits":[0,0,1,1,0,1,0,0],"qubo_energy":6},"seed":3153149895,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.1963750940004334,1.2833774376369234],"expected_energy":24.60409004183193,"initial_expected_energy":33.32970240475818,"history":[33.32970240475818,33.30602305867372,36.8088829166916,39.442732386444504,37.442893787083555,33.33607722425823,37.26120570009111,32.76464628445327,33.030999128754445,32.79684918900923,32.78770333924782,32.754448977456356,32.78128800732529,32.75654649238373,32.75074914540636,32.75616644965815,32.7493691396785,32.748671566785454,32.74712305711368,32.74530120794338,32.74241430328122,32.74066965088259,32.738033004485466,32.744770000697635,32.74626557381954,32.735708826154415,32.73397731048197,32.731458533251825,32.730559912447774,32.72973114093863,32.731589954396604,32.732007833094755,32.726607168995926,32.72561258389856,32.726773078202925,32.72556086983054,32.725063193110486,32.72427712673342,32.72250592598178,32.7196996304016,32.71386645361848,32.70948306643646,32.89425473138998,32.80782579552701,32.709904415130225,32.710505676582116,32.71748414225803,32.70657380655729,32.70579631448868,32.70661158853243,32.7057572873219,32.70596114053928,32.705753141390545,32.705610284012096,32.705541943306024,32.70539233165894,32.70526858537222,32.70536140886908,32.70529175748537,32.70525106442262,51.547903130273404,47.04663232956766,30.42849127590298,36.516782864198305,33.36607540300898,31.803586928450756,28.791338401104017,29.38870091866137,28.936042205073257,28.99478007694234,28.578882544581948,28.55964239943378,29.396145993962822,28.12112194967314,28.069505282678925,27.729707702431043,27.42130146651367,26.942231399628653,27.416489034139886,27.486235951446897,27.202628812325443,27.175132058508815,26.874763680458067,26.786586968699652,26.70311954925829,27.029145328576487,26.56483812993718,26.510605453421768,26.417557024508035,26.243159558049456,25.92605590289793,25.618665940095934,27.220911086976464,27.586011386607346,25.555752981884797,25.225443910416736,25.395853866064055,25.297220423835153,25.23664289948138,25.21818571553464,25.206458713621238,25.19493129583085,25.232005699056625,25.17828106736109,25.16290273277157,25.134294563177665,25.0800040557406,24.97445213147622,24.96784810787944,24.75732956858343,25.416604768350805,24.928384545281368,24.73786745306015,24.79600185854489,24.72730431858613,24.70591000767354,24.66810957715694,24.60409004183193,25.062061073392798,24.779876485797253],"feasible_probability":0.689672279137704,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.685546875,"counts":{"00101001":4,"00101010":50,"00101100":87,"00110001":20,"00110010":64,"00110100":60,"01001001":5,"01001010":12,"01001100":6,"01010001":6,"01010010":28,"01010100":34,"10001001":4,"10001010":16,"10001100":53,"10010001":31,"10010010":2,"10010100":30},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13346660300157964}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.689672279137704,"total_shots":512,"runtime_seconds":0.13370376201055478},"direct_metrics":{"exact_objective":20,"optimal_count":1,"combinations":48,"optimal_probability":0.10636363625458008,"feasible_probability":0.4367543252766049,"uniform_optimal_probability":0.020833333333333332,"uniform_feasible_probability":0.1875,"shots_for_95_percent":27,"hit_curve":[{"shots":8,"quantum":0.5932883039813321,"uniform":0.15500728552284493},{"shots":16,"quantum":0.8345855963216187,"uniform":0.2859873124805291},{"shots":32,"quantum":0.9726380750557255,"uniform":0.4901858820612224},{"shots":64,"quantum":0.9992513250633439,"uniform":0.7400895651503061},{"shots":128,"quantum":0.9999994394858392,"uniform":0.9324465658562431},{"shots":512,"quantum":1.0,"uniform":0.9999791747738264}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":20},{"shots":16,"best_objective":20},{"shots":32,"best_objective":20},{"shots":64,"best_objective":20},{"shots":128,"best_objective":20},{"shots":512,"best_objective":20}]},"component_metrics":[{"exact_objective":6,"optimal_count":1,"combinations":18,"optimal_probability":0.15072822337720582,"feasible_probability":0.6896722791377038,"uniform_optimal_probability":0.05555555555555555,"uniform_feasible_probability":0.5,"shots_for_95_percent":19,"hit_curve":[{"shots":8,"quantum":0.7293714982204873,"uniform":0.3669888932096303},{"shots":16,"quantum":0.9267602140245763,"uniform":0.5992969386800311},{"shots":32,"quantum":0.9946359337502741,"uniform":0.8394370566488053},{"shots":64,"quantum":0.9999712267932686,"uniform":0.9742195412224011},{"shots":128,"quantum":0.9999999991721026,"uniform":0.9993353679452165},{"shots":512,"quantum":1.0,"uniform":0.9999999999998048}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":6},{"shots":16,"best_objective":6},{"shots":32,"best_objective":6},{"shots":64,"best_objective":6},{"shots":128,"best_objective":6},{"shots":512,"best_objective":6}]}],"reduced_single_joint_draw_p_opt":0.15072822337720582,"diagnostic_seconds":0.008346800997969694}
+{"instance":"n5-s1-r2.json","seed":7,"direct":{"status":"feasible","best":{"feasible":true,"objective":20,"raw_cost":20,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":5,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":12,"end":14,"reserved_end":16,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":15,"end":17,"reserved_end":19,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":20,"end":23,"reserved_end":25,"changed":false}],"bits":[1,0,1,0,0,0,1,1,0,1,0,0],"qubo_energy":20},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.3108619951508744,2.9558235621166533],"expected_energy":51.01844556318636,"initial_expected_energy":93.87997931302591,"history":[93.87997931302591,88.1120063538513,80.5617569140493,67.50274125316038,73.20752187772155,72.97627152000095,73.55432426057759,74.3751366665907,68.1449721984508,66.85954407190292,65.91258428839433,65.34288237862367,63.89464299469985,62.528157872625684,61.47637302139863,59.73087792593299,56.56526764477129,52.467335241880775,123.54290737690094,74.50717654467115,61.04460495062437,52.317019209837596,52.552731614166134,52.78690390265808,51.966977143720676,52.47055442005123,51.95910048028115,52.0184921375385,51.962293495345804,51.94636174006973,51.942694479329205,51.93937709551557,51.94085454412994,51.938706452501165,51.941188291711875,51.938371728127386,51.937610678122894,51.936961256914266,51.93735456913857,51.93642460156494,51.9363119601043,51.937430631784224,51.936128681072056,51.935790257228874,51.93520063675332,51.93426890114644,51.93241783037126,51.92992886952992,51.93252276770051,51.93406763073227,51.92949882379426,51.929409692805905,51.92915337540164,51.92894446440909,51.92877932116785,51.93067044374438,51.92850125139364,51.92817039436848,51.92806147832796,51.9278486388845,69.00718824379769,75.53709816434585,92.4446906429487,75.95452358221112,54.731652148229784,125.41438383133126,60.86124603103516,55.05055537084765,56.753444484470826,55.40430950711405,55.35629900394954,54.95173086845675,54.865899808590136,54.55031088109952,54.54420268550649,54.623959085375546,54.561001557692926,54.46606003525593,54.34362626062755,54.50441529266762,54.22904000990452,54.09276981531677,53.83384778402009,53.35312231452988,52.94793099231606,52.93624394061232,51.94164047062361,52.214371084595264,53.29792356673908,52.087087606186515,51.88100485920976,51.83137064831981,51.860655078334105,51.77409122885924,51.74435226040215,51.765687473613156,51.708325858161004,51.67680598620001,51.60808309183149,51.485529815551835,52.17547982311662,51.59448473142065,51.52732165689339,51.505224539621054,51.46634994442127,51.494182099009954,51.43563389084177,51.40666447816848,51.350557783562955,51.24308799496167,51.1200957006764,51.362373067602036,51.617229202354565,51.09195608492097,51.046194998664205,51.05898464558389,51.07516942243648,51.03992085678591,51.077034204743555,51.01844556318636],"feasible_probability":0.5163284845775717,"one_hot_probability":1.0,"sampled_feasible_fraction":0.56640625,"counts":{"001010001011":19,"001010001101":14,"001010010011":3,"001010100011":3,"001010100101":32,"001011000011":3,"001011000101":40,"001100001011":25,"001100001101":14,"001100010011":2,"001100010101":36,"001100100011":13,"001100100101":43,"010010001011":2,"010010010011":2,"010010010101":7,"010010100011":3,"010010100101":5,"010011000011":1,"010011000101":2,"010100001011":10,"010100001101":13,"010100010011":3,"010100010101":5,"010100100011":2,"010100100101":21,"010101000101":7,"100010001011":12,"100010001101":18,"100010100011":6,"100010100101":32,"100011000011":4,"100011000101":32,"100100001011":8,"100100001101":10,"100100010011":3,"100100010101":21,"100100100011":3,"100100100101":33},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3049208379961783},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[0,2],"fixed_cost":14,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]},{"variable":3,"forced_by":2,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[4,5,6,7,8,9,10,11]],"components":[{"qubits":8,"penalty":29,"objective_bound":28,"offset":87,"linear":[-18,-20,-23,-29,-23,-29,-23,-18],"quadratic":[[0,1,58],[0,2,58],[0,3,29],[0,6,29],[1,2,58],[2,4,29],[3,4,58],[3,6,29],[5,6,58],[5,7,58],[6,7,58]],"domains":[[0,1,2],[3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":15,"cost":11},{"index":1,"task":"t2","resource":"r2","start":15,"cost":9},{"index":2,"task":"t2","resource":"r1","start":12,"cost":6},{"index":3,"task":"t3","resource":"r0","start":15,"cost":0},{"index":4,"task":"t3","resource":"r1","start":13,"cost":6},{"index":5,"task":"t4","resource":"r1","start":20,"cost":0},{"index":6,"task":"t4","resource":"r0","start":17,"cost":6},{"index":7,"task":"t4","resource":"r2","start":25,"cost":11}],"conflicts":[{"i":0,"j":3,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":20,"raw_cost":20,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":5,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":12,"end":14,"reserved_end":16,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":15,"end":17,"reserved_end":19,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":20,"end":23,"reserved_end":25,"changed":false}],"bits":[1,0,1,0,0,0,1,1,0,1,0,0],"qubo_energy":20},"components":[{"status":"feasible","best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t2","group":"g0","resource":"r1","start":12,"end":14,"reserved_end":16,"changed":true},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":15,"end":17,"reserved_end":19,"changed":false},{"variable":5,"task":"t4","group":"g0","resource":"r1","start":20,"end":23,"reserved_end":25,"changed":false}],"bits":[0,0,1,1,0,1,0,0],"qubo_energy":6},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.08586354962088,1.2933972263230034],"expected_energy":24.50741502249626,"initial_expected_energy":27.947343552795154,"history":[27.947343552795154,32.20701148589414,41.81608716662417,32.328726008777615,37.01804352182643,25.166434920943686,25.9194396913663,25.237767605454483,25.068674857589794,25.14214072630392,25.21412111801811,25.022955021101204,25.018594725778193,25.033711297095824,25.021226385988427,25.004306023112562,24.982589352389937,25.0312795399681,24.96114106209931,24.935269936850013,24.885401506364296,24.801613791299534,25.007480919505394,25.061269047990542,24.786976061702344,24.764308662785275,24.720037796156873,24.643112126311635,24.59909314094164,24.9836056746258,25.031422943641438,24.59548962939773,24.529790076382064,24.574444160803832,24.52627921738923,24.537170641038465,24.52136662454464,24.52099603775808,24.51713401944797,24.516954195869673,24.512007680251568,24.51695342160113,24.515874016860515,24.513945734100375,24.511461629960625,24.510545756078713,24.509084232572903,24.514392097449928,24.50981508682556,24.509660912382262,24.509462928444968,24.508614164299516,24.508664512285158,24.508542368944568,24.508414133660786,24.508188549497646,24.50793508921786,24.50931523788087,24.507715479563693,24.50741502249626,27.25095129512671,31.565144137809103,42.268349458112,32.76085628952185,36.596883459605934,25.02100089056042,26.23439155466579,25.089256836806868,25.166612287431068,25.237458506515303,25.1025444167788,25.027479697558384,25.01199325969798,24.997559384563317,24.984214871428485,25.013096510569397,24.978915848578552,24.96576481231176,24.941206189634105,24.93124930687127,24.86759388510866,24.845929504688208,24.79073200355498,24.761965389228923,24.68278218518313,24.78735359881422,24.662107349923495,24.742204743654632,24.665672116328366,24.64415109997241,24.649774880471007,24.63725575754693,24.63535948783793,24.648454540499436,24.625740204669086,24.618304620979767,24.604276914978094,24.59986325771935,24.570125091900806,24.61390314839675,24.564102605464523,24.586677286870373,24.560510491032986,24.554885025297374,24.54723053439509,24.567279615954842,24.54393288367837,24.541510928798147,24.537684817985966,24.536295105097796,24.54707250879654,24.531050564268327,24.529858176891025,24.525441196746787,24.522934439012264,24.519570708074685,24.51522366854433,24.514588193262615,24.51029592908053,24.510901776984856],"feasible_probability":0.6892200755509048,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.69921875,"counts":{"00101010":37,"00101100":89,"00110001":30,"00110010":54,"00110100":60,"01001001":1,"01001010":12,"01001100":7,"01010001":7,"01010010":28,"01010100":25,"10001001":10,"10001010":16,"10001100":73,"10010001":23,"10010010":8,"10010100":32},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13931774100637995}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.6892200755509048,"total_shots":512,"runtime_seconds":0.13954508700408041},"direct_metrics":{"exact_objective":20,"optimal_count":1,"combinations":48,"optimal_probability":0.07272987050889666,"feasible_probability":0.5163284845775716,"uniform_optimal_probability":0.020833333333333332,"uniform_feasible_probability":0.1875,"shots_for_95_percent":40,"hit_curve":[{"shots":8,"quantum":0.45342450180266625,"uniform":0.15500728552284493},{"shots":16,"quantum":0.7012552247703364,"uniform":0.2859873124805291},{"shots":32,"quantum":0.9107515592729778,"uniform":0.4901858820612224},{"shots":64,"quantum":0.9920347158277952,"uniform":0.7400895651503061},{"shots":128,"quantum":0.999936554248056,"uniform":0.9324465658562431},{"shots":512,"quantum":1.0,"uniform":0.9999791747738264}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.0408340855860843e-16,"independent_samples":[{"shots":8,"best_objective":23},{"shots":16,"best_objective":20},{"shots":32,"best_objective":20},{"shots":64,"best_objective":20},{"shots":128,"best_objective":20},{"shots":512,"best_objective":20}]},"component_metrics":[{"exact_objective":6,"optimal_count":1,"combinations":18,"optimal_probability":0.1521978385931544,"feasible_probability":0.6892200755509048,"uniform_optimal_probability":0.05555555555555555,"uniform_feasible_probability":0.5,"shots_for_95_percent":19,"hit_curve":[{"shots":8,"quantum":0.733095340558525,"uniform":0.3669888932096303},{"shots":16,"quantum":0.9287619027684303,"uniform":0.5992969386800311},{"shots":32,"quantum":0.9949251335028254,"uniform":0.8394370566488053},{"shots":64,"quantum":0.9999742457300359,"uniform":0.9742195412224011},{"shots":128,"quantum":0.9999999993367176,"uniform":0.9993353679452165},{"shots":512,"quantum":1.0,"uniform":0.9999999999998048}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":6.938893903907228e-17,"independent_samples":[{"shots":8,"best_objective":6},{"shots":16,"best_objective":6},{"shots":32,"best_objective":6},{"shots":64,"best_objective":6},{"shots":128,"best_objective":6},{"shots":512,"best_objective":6}]}],"reduced_single_joint_draw_p_opt":0.1521978385931544,"diagnostic_seconds":0.00867532700067386}
+{"instance":"n5-s1-r2.json","seed":8,"direct":{"status":"feasible","best":{"feasible":true,"objective":20,"raw_cost":20,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":5,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":12,"end":14,"reserved_end":16,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":15,"end":17,"reserved_end":19,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":20,"end":23,"reserved_end":25,"changed":false}],"bits":[1,0,1,0,0,0,1,1,0,1,0,0],"qubo_energy":20},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.2172617283592346,2.956801538154781],"expected_energy":50.80131585877232,"initial_expected_energy":62.22557266664613,"history":[62.22557266664613,64.15118494446045,65.17907779057099,104.87448773390811,53.08770999346024,64.9104663326957,52.80565636355149,55.7286266649411,52.79930815932751,52.57213759620474,52.21164245433302,53.584592889845425,53.63848705819356,52.71621137477547,52.253998548416575,52.22647084894703,52.22524743616247,52.20633683076717,52.19254311641788,52.17521482086986,52.187847724673574,52.161208452192156,52.15540066413385,52.169584395321905,52.14217031083108,52.12964315563032,52.106275338719065,52.092889174530626,52.045515759248374,52.07374839001831,52.03773549454816,52.07658261245949,52.03612576598177,52.02497324670241,52.01867834977902,52.01071782344519,52.00284334119073,51.989663461934576,51.97799075479071,51.9530258460744,52.04153093511966,51.992585731658934,51.9504795649417,51.985766323744855,51.945223768557284,51.9457252729175,51.94723321965106,51.944688076405996,51.944594879210506,51.945996816303634,51.9445203139861,51.9440316364981,51.94318494895272,51.94170955800745,51.94137877098492,51.939404007155616,51.93708052907291,51.93534861977355,51.9386377051565,51.934389370776984,77.24266770153757,77.56189637170242,75.79619147807406,51.197118106718335,101.60349387214094,61.52957285981998,77.89893299069058,60.30910724493053,51.33818344653368,51.93172103456807,53.11048884795894,51.13297773039247,51.172245834872626,51.17310749373995,51.076086259655135,51.05306535559567,51.071890336718354,51.035325146711926,51.017114400047745,50.982235233615185,50.95367987612056,50.97333206249871,51.06992862229549,50.97240947021892,50.924540239377706,50.915129621381354,50.94479430915766,50.907253956866974,50.90054800216577,50.889154400037434,50.87200249065614,50.84768824153763,50.85845566161441,50.89886703827405,50.86098201394737,50.85031921529376,50.84890999105925,50.84778417127998,50.845472641160995,50.84246507808717,50.849090425370015,50.839970558889874,50.83800180492871,50.83370451251294,50.82592020869762,50.817426828710666,50.83492126035638,50.850713222640366,50.815063391996716,50.81034494258639,50.81048316957666,50.81185142528889,50.810589095694894,50.80974940117327,50.80859836849908,50.80633409287541,50.802395267958175,50.80632634508018,50.8134347928938,50.80131585877232],"feasible_probability":0.5134544275078834,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.51171875,"counts":{"001010001011":23,"001010001101":18,"001010100011":4,"001010100101":25,"001011000011":12,"001011000101":36,"001100001011":13,"001100001101":18,"001100010011":2,"001100010101":30,"001100100011":9,"001100100101":42,"010010001011":1,"010010010011":1,"010010010101":11,"010010100101":5,"010011000101":6,"010100001011":9,"010100001101":15,"010100010011":3,"010100010101":4,"010100100011":10,"010100100101":31,"010101000011":2,"010101000101":4,"100010001011":15,"100010001101":21,"100010010011":1,"100010010101":1,"100010100011":6,"100010100101":22,"100011000011":4,"100011000101":34,"100100001011":14,"100100001101":11,"100100010011":3,"100100010101":20,"100100100011":4,"100100100101":22},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.2986355059983907},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[0,2],"fixed_cost":14,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]},{"variable":3,"forced_by":2,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[4,5,6,7,8,9,10,11]],"components":[{"qubits":8,"penalty":29,"objective_bound":28,"offset":87,"linear":[-18,-20,-23,-29,-23,-29,-23,-18],"quadratic":[[0,1,58],[0,2,58],[0,3,29],[0,6,29],[1,2,58],[2,4,29],[3,4,58],[3,6,29],[5,6,58],[5,7,58],[6,7,58]],"domains":[[0,1,2],[3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":15,"cost":11},{"index":1,"task":"t2","resource":"r2","start":15,"cost":9},{"index":2,"task":"t2","resource":"r1","start":12,"cost":6},{"index":3,"task":"t3","resource":"r0","start":15,"cost":0},{"index":4,"task":"t3","resource":"r1","start":13,"cost":6},{"index":5,"task":"t4","resource":"r1","start":20,"cost":0},{"index":6,"task":"t4","resource":"r0","start":17,"cost":6},{"index":7,"task":"t4","resource":"r2","start":25,"cost":11}],"conflicts":[{"i":0,"j":3,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":20,"raw_cost":20,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":5,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":12,"end":14,"reserved_end":16,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":15,"end":17,"reserved_end":19,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":20,"end":23,"reserved_end":25,"changed":false}],"bits":[1,0,1,0,0,0,1,1,0,1,0,0],"qubo_energy":20},"components":[{"status":"feasible","best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t2","group":"g0","resource":"r1","start":12,"end":14,"reserved_end":16,"changed":true},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":15,"end":17,"reserved_end":19,"changed":false},{"variable":5,"task":"t4","group":"g0","resource":"r1","start":20,"end":23,"reserved_end":25,"changed":false}],"bits":[0,0,1,1,0,1,0,0],"qubo_energy":6},"seed":3257320810,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.069990558195704,1.2948726747671018],"expected_energy":24.505079817128514,"initial_expected_energy":56.74642620890048,"history":[56.74642620890048,51.91579389155421,40.37280535276514,26.541644611895194,36.60578991686517,26.900045742031015,30.043033561395575,28.71472467696677,26.701455935850547,26.303422249506706,26.32058582565519,26.415113468904934,26.31713592987905,26.26254161541981,26.22167313124202,26.148743982925176,26.041224947946137,25.855589293944853,25.701904168156464,25.474270588116326,25.837683054239868,26.052569563968397,25.509505065779884,25.329514297219653,25.3321286932054,25.298124670021345,25.269827913927237,25.227234021323362,25.380470641673515,25.14936212843011,25.1459711701671,25.222282056127803,25.149418124940283,25.120660366467284,25.08400140701025,25.11373284464613,25.055225347960327,25.031935290999094,25.021869163009413,24.94838077723503,24.982451787797224,24.953857754062476,24.93177603386795,24.931701459505906,24.9523158778428,24.913723088531597,24.885503084960117,24.851159173249,24.80096481441507,24.738072593004205,24.691452236694055,24.61901291534965,24.52128710251759,24.70556754989974,24.79493466556648,24.51553732369337,24.556452750849616,24.535025614209957,24.51460770061413,24.51285250509249,32.34244943927068,34.640926060566656,38.5316342884701,29.384640051671727,37.87815549523113,31.485273197269677,30.67115629828918,28.709907443799803,27.292312067673926,25.233080001024607,27.310375039638437,24.784092548208967,24.803868264916535,24.70347347052085,24.703380357222017,25.433133522388186,24.586767897094663,25.180099389375712,24.53353298069498,24.52577064939053,24.668404803196545,24.51721432790103,24.53968137153473,24.52034254888081,24.51514067485946,24.514005711291304,24.52109775259534,24.512392828099657,24.511868360381325,24.510757253548945,24.509109376566407,24.50752459094484,24.509056214521863,24.51426986257008,24.50717429114826,24.507521592799627,24.507117692020532,24.50697882245509,24.506881130929997,24.50665563021993,24.50645693417607,24.50617419526459,24.50587851522088,24.505675560220983,24.50647127761364,24.505542542749602,24.505537015513127,24.505682946696,24.505437831372348,24.505382575358308,24.505345568290053,24.505407383418223,24.505321505711876,24.505299487596808,24.505286909296505,24.50523460611057,24.505208301076692,24.50516742954511,24.505114470676062,24.505079817128514],"feasible_probability":0.6889792473653106,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.73828125,"counts":{"00101001":1,"00101010":53,"00101100":80,"00110001":26,"00110010":72,"00110100":54,"01001001":1,"01001010":9,"01001100":2,"01010001":8,"01010010":29,"01010100":27,"10001001":2,"10001010":15,"10001100":73,"10010001":23,"10010010":7,"10010100":30},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12896263701259159}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.6889792473653106,"total_shots":512,"runtime_seconds":0.12918635999085382},"direct_metrics":{"exact_objective":20,"optimal_count":1,"combinations":48,"optimal_probability":0.07015390128488566,"feasible_probability":0.5134544275078834,"uniform_optimal_probability":0.020833333333333332,"uniform_feasible_probability":0.1875,"shots_for_95_percent":42,"hit_curve":[{"shots":8,"quantum":0.44115858169185185,"uniform":0.15500728552284493},{"shots":16,"quantum":0.6876962691833374,"uniform":0.2859873124805291},{"shots":32,"quantum":0.9024663797179935,"uniform":0.4901858820612224},{"shots":64,"quantum":0.9904871929146853,"uniform":0.7400895651503061},{"shots":128,"quantum":0.9999095065013576,"uniform":0.9324465658562431},{"shots":512,"quantum":0.9999999999999999,"uniform":0.9999791747738264}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":23},{"shots":16,"best_objective":20},{"shots":32,"best_objective":20},{"shots":64,"best_objective":20},{"shots":128,"best_objective":20},{"shots":512,"best_objective":20}]},"component_metrics":[{"exact_objective":6,"optimal_count":1,"combinations":18,"optimal_probability":0.15231811488098138,"feasible_probability":0.6889792473653106,"uniform_optimal_probability":0.05555555555555555,"uniform_feasible_probability":0.5,"shots_for_95_percent":19,"hit_curve":[{"shots":8,"quantum":0.7333981127624447,"uniform":0.3669888932096303},{"shots":16,"quantum":0.9289234337213739,"uniform":0.5992969386800311},{"shots":32,"quantum":0.9949481217260401,"uniform":0.8394370566488053},{"shots":64,"quantum":0.999974478525905,"uniform":0.9742195412224011},{"shots":128,"quantum":0.9999999993486544,"uniform":0.9993353679452165},{"shots":512,"quantum":1.0,"uniform":0.9999999999998048}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":6},{"shots":16,"best_objective":6},{"shots":32,"best_objective":6},{"shots":64,"best_objective":6},{"shots":128,"best_objective":6},{"shots":512,"best_objective":6}]}],"reduced_single_joint_draw_p_opt":0.15231811488098138,"diagnostic_seconds":0.008809731996734627}
+{"instance":"n5-s1-r2.json","seed":9,"direct":{"status":"feasible","best":{"feasible":true,"objective":20,"raw_cost":20,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":5,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":12,"end":14,"reserved_end":16,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":15,"end":17,"reserved_end":19,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":20,"end":23,"reserved_end":25,"changed":false}],"bits":[1,0,1,0,0,0,1,1,0,1,0,0],"qubo_energy":20},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.271042787287228,1.2086046991310826],"expected_energy":51.92705736791039,"initial_expected_energy":61.792529115777825,"history":[61.792529115777825,60.51922209648194,78.31507890763501,64.50778126195469,81.03261646714103,53.147781412330644,52.37087456338111,53.55177232810401,52.822371900933106,51.96945720555419,52.18202577918766,52.19439182287589,52.06042722619642,51.98957569653646,51.97114753389185,51.96504495927225,51.96865360434659,51.96247737275473,51.96229679311266,51.96074250592312,51.95929787923659,51.95668560300879,51.952125197918356,51.94483911077073,51.93980904544527,51.94413681555275,51.975754084549564,51.94256017561233,51.93332703540938,51.93387454112353,51.93414793455344,51.933732683259514,51.93268267401276,51.93175866676018,51.929976780205344,51.927776468433606,51.935792909058485,51.93418642275632,51.92756286771128,51.927779893749985,51.92770715432756,51.92741528434175,51.92736249515056,51.92743393790191,51.92730438313873,51.9273052641518,51.92727758492121,51.92726254396495,51.927276365853274,51.927253959644744,51.92723936472724,51.92722467393397,51.92725788437477,51.9272200751069,51.92720477161883,51.92717723477313,51.92713208528979,51.92737256246635,51.927106898660625,51.92705736791039,74.173983405827,74.8942127024656,63.50857088038865,74.61181573969414,58.69102977406756,64.65328543235715,59.689881439048236,58.682247288763875,59.28085592496576,58.22120210825071,57.64974173166027,56.88068728939261,56.318245373480636,56.46032318003532,58.21725525372611,56.11683742810103,56.22022119766455,56.547195153364335,55.68615051390208,55.77391852000588,55.60618335274929,55.76144215314868,55.50846630525808,55.420071008798374,55.25113251269396,54.915536693359456,54.32071815609617,55.24675100714768,56.53094639343965,54.30949567452406,54.09005640007726,53.724540251807696,53.23867949343529,52.93006287448229,52.37261373239297,53.669759671267364,53.83761723534617,52.29652321673222,52.90370046174445,52.28847487643599,52.21698456850797,52.10467232302875,52.81848006290117,52.33363417686166,52.274402873838945,52.073815485464166,52.065823074293206,52.13498266905942,52.05058532724737,52.03996928358944,52.03156343462651,52.01438167107297,51.98560457939619,52.035011851640014,52.05906562193558,51.9785422297457,51.992774513421764,51.97650712271452,51.96899542579404,51.963703848599835],"feasible_probability":0.43657164840088314,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.4453125,"counts":{"001010001011":7,"001010001101":3,"001010010101":2,"001010100011":1,"001010100101":36,"001011000011":3,"001011000101":63,"001100001011":25,"001100001101":59,"001100010011":2,"001100010101":50,"001100100011":1,"001100100101":15,"001101000011":1,"001101000101":10,"010010001011":1,"010010100101":5,"010011000101":5,"010100001011":7,"010100001101":25,"010100010101":13,"010101000101":6,"100010001011":20,"100010001101":13,"100010010011":5,"100010010101":7,"100010100011":2,"100010100101":21,"100011000011":8,"100011000101":28,"100100001011":12,"100100001101":8,"100100010011":4,"100100010101":8,"100100100011":1,"100100100101":7,"100101000011":6,"100101000101":22},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.2850821559986798},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":12,"fixed_variables":[0,2],"fixed_cost":14,"removals":[{"variable":1,"forced_by":0,"reasons":["resource"]},{"variable":3,"forced_by":2,"reasons":["resource"]}],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[4,5,6,7,8,9,10,11]],"components":[{"qubits":8,"penalty":29,"objective_bound":28,"offset":87,"linear":[-18,-20,-23,-29,-23,-29,-23,-18],"quadratic":[[0,1,58],[0,2,58],[0,3,29],[0,6,29],[1,2,58],[2,4,29],[3,4,58],[3,6,29],[5,6,58],[5,7,58],[6,7,58]],"domains":[[0,1,2],[3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r0","start":15,"cost":11},{"index":1,"task":"t2","resource":"r2","start":15,"cost":9},{"index":2,"task":"t2","resource":"r1","start":12,"cost":6},{"index":3,"task":"t3","resource":"r0","start":15,"cost":0},{"index":4,"task":"t3","resource":"r1","start":13,"cost":6},{"index":5,"task":"t4","resource":"r1","start":20,"cost":0},{"index":6,"task":"t4","resource":"r0","start":17,"cost":6},{"index":7,"task":"t4","resource":"r2","start":25,"cost":11}],"conflicts":[{"i":0,"j":3,"reasons":["resource"]},{"i":0,"j":6,"reasons":["resource"]},{"i":2,"j":4,"reasons":["resource"]},{"i":3,"j":6,"reasons":["resource"]}]}]},"best":{"feasible":true,"objective":20,"raw_cost":20,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":3,"end":5,"reserved_end":7,"changed":true},{"variable":2,"task":"t1","group":"g1","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r1","start":12,"end":14,"reserved_end":16,"changed":true},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":15,"end":17,"reserved_end":19,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":20,"end":23,"reserved_end":25,"changed":false}],"bits":[1,0,1,0,0,0,1,1,0,1,0,0],"qubo_energy":20},"components":[{"status":"feasible","best":{"feasible":true,"objective":6,"raw_cost":6,"violation_count":0,"violations":[],"schedule":[{"variable":2,"task":"t2","group":"g0","resource":"r1","start":12,"end":14,"reserved_end":16,"changed":true},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":15,"end":17,"reserved_end":19,"changed":false},{"variable":5,"task":"t4","group":"g0","resource":"r1","start":20,"end":23,"reserved_end":25,"changed":false}],"bits":[0,0,1,1,0,1,0,0],"qubo_energy":6},"seed":747784396,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0501926142583708,1.2963670189476706],"expected_energy":24.506623579036933,"initial_expected_energy":34.709006150819235,"history":[34.709006150819235,36.95309507569523,36.89308095041867,26.6757451953659,34.27972587746541,40.73366654686464,25.513449607359302,30.154549458874772,25.26948336356225,27.06164572155077,25.285573503059368,25.27230138499405,25.36720956027419,25.256369369366872,25.269935347466436,25.26540867719833,25.241094863622294,25.222888503194064,25.23954833865858,25.216088545972756,25.20158286412712,25.173636274456875,25.12452185455813,25.05606183941601,24.929475339252143,24.854849819532383,24.800780247882358,24.683106163100774,24.580168224710114,25.77403036534581,25.914341284353355,24.63173271894621,24.62058312833689,24.5933388233448,24.543289939132997,24.537227327665086,24.551328112971714,24.534635256461087,24.54085029280413,24.52948602037233,24.5283420293975,24.523801095303636,24.521680263527184,24.518150247884627,24.515701121424367,24.513216242385543,24.514474414818036,24.522318484371205,24.51287215843418,24.511230788089893,24.517273402293135,24.510027223268835,24.509339447910026,24.508606685492396,24.50821192198109,24.510188625926418,24.507735337018776,24.50750995412306,24.507184832531912,24.506623579036933,36.32124484273872,36.924969279755686,36.283243254438645,37.690630856341116,36.39403307265977,38.00669075174213,34.37902879892633,35.460644089531186,34.343936812364845,34.75516605592561,34.429247716856885,34.43626993432851,34.3294046194674,34.312294188369826,34.2918480051473,34.262877458563395,34.28704185077505,34.235178103240735,34.24203969753532,34.23963871260771,34.22836535683233,34.22135575859256,34.24685941142695,34.20849631675894,34.19777215568621,34.17976630933427,34.14072673630295,34.062654205150736,33.90729916880851,33.760458308952956,34.689850433931866,35.30081363114945,33.721711175752205,33.477743337874415,33.58336611903374,33.517482527397604,33.48817190019298,33.45768271222423,33.43756516163057,33.408971094035465,33.37158490877975,33.352916041860155,33.47302849985841,33.323841845023736,33.309405913750645,33.29042205571781,33.2557665368595,33.25025991621527,33.17128626995619,33.17808546561335,33.16674235379534,33.175050718271606,33.1565371863518,33.14883254244132,33.1317646712384,33.10130403095796,33.06800961440098,33.00596983461766,33.29133870902806,33.11438330166405],"feasible_probability":0.6885021525615028,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.71484375,"counts":{"00101001":1,"00101010":47,"00101100":79,"00110001":29,"00110010":57,"00110100":50,"01001001":1,"01001010":20,"01001100":3,"01010001":11,"01010010":27,"01010100":26,"10001001":5,"10001010":15,"10001100":81,"10010001":25,"10010010":6,"10010100":29},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.1178584180015605}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.6885021525615028,"total_shots":512,"runtime_seconds":0.11804478999692947},"direct_metrics":{"exact_objective":20,"optimal_count":1,"combinations":48,"optimal_probability":0.09921019687984088,"feasible_probability":0.43657164840088325,"uniform_optimal_probability":0.020833333333333332,"uniform_feasible_probability":0.1875,"shots_for_95_percent":29,"hit_curve":[{"shots":8,"quantum":0.5665014084219744,"uniform":0.15500728552284493},{"shots":16,"quantum":0.8120789710998682,"uniform":0.2859873124805291},{"shots":32,"quantum":0.9646856868971158,"uniform":0.4901858820612224},{"shots":64,"quantum":0.9987528992900715,"uniform":0.7400895651503061},{"shots":128,"quantum":0.9999984447398192,"uniform":0.9324465658562431},{"shots":512,"quantum":1.0,"uniform":0.9999791747738264}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":20},{"shots":16,"best_objective":20},{"shots":32,"best_objective":20},{"shots":64,"best_objective":20},{"shots":128,"best_objective":20},{"shots":512,"best_objective":20}]},"component_metrics":[{"exact_objective":6,"optimal_count":1,"combinations":18,"optimal_probability":0.15241811477705222,"feasible_probability":0.6885021525615029,"uniform_optimal_probability":0.05555555555555555,"uniform_feasible_probability":0.5,"shots_for_95_percent":19,"hit_curve":[{"shots":8,"quantum":0.7336496142406145,"uniform":0.3669888932096303},{"shots":16,"quantum":0.9290574720058266,"uniform":0.5992969386800311},{"shots":32,"quantum":0.9949671577217959,"uniform":0.8394370566488053},{"shots":64,"quantum":0.9999746704986027,"uniform":0.9742195412224011},{"shots":128,"quantum":0.9999999993584163,"uniform":0.9993353679452165},{"shots":512,"quantum":1.0,"uniform":0.9999999999998048}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.8041124150158794e-16,"independent_samples":[{"shots":8,"best_objective":6},{"shots":16,"best_objective":6},{"shots":32,"best_objective":6},{"shots":64,"best_objective":6},{"shots":128,"best_objective":6},{"shots":512,"best_objective":6}]}],"reduced_single_joint_draw_p_opt":0.15241811477705222,"diagnostic_seconds":0.008693373994901776}
+{"instance":"n5-s1-r3.json","seed":0,"direct":{"status":"infeasible_domain","best":null,"seed":0,"mixer":"xy","runtime_seconds":3.1170056900009513e-06,"circuit_evaluations":0},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":2.9920993256382644e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":1.6999983927235007e-06}
+{"instance":"n5-s1-r3.json","seed":1,"direct":{"status":"infeasible_domain","best":null,"seed":1,"mixer":"xy","runtime_seconds":1.6139965737238526e-06,"circuit_evaluations":0},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":2.0992985810153186e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":1.1550000635907054e-06}
+{"instance":"n5-s1-r3.json","seed":2,"direct":{"status":"infeasible_domain","best":null,"seed":2,"mixer":"xy","runtime_seconds":1.1459924280643463e-06,"circuit_evaluations":0},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.5967991203069687e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":7.060007192194462e-07}
+{"instance":"n5-s1-r3.json","seed":3,"direct":{"status":"infeasible_domain","best":null,"seed":3,"mixer":"xy","runtime_seconds":8.260103641077876e-07,"circuit_evaluations":0},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.3719007256440818e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":7.259950507432222e-07}
+{"instance":"n5-s1-r3.json","seed":4,"direct":{"status":"infeasible_domain","best":null,"seed":4,"mixer":"xy","runtime_seconds":8.219940355047584e-07,"circuit_evaluations":0},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.2432006769813597e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":6.080081220716238e-07}
+{"instance":"n5-s1-r3.json","seed":5,"direct":{"status":"infeasible_domain","best":null,"seed":5,"mixer":"xy","runtime_seconds":7.979979272931814e-07,"circuit_evaluations":0},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.217599492520094e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":5.90996933169663e-07}
+{"instance":"n5-s1-r3.json","seed":6,"direct":{"status":"infeasible_domain","best":null,"seed":6,"mixer":"xy","runtime_seconds":1.8319988157600164e-06,"circuit_evaluations":0},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.799900201149285e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":8.969946065917611e-07}
+{"instance":"n5-s1-r3.json","seed":7,"direct":{"status":"infeasible_domain","best":null,"seed":7,"mixer":"xy","runtime_seconds":1.1889933375641704e-06,"circuit_evaluations":0},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.3523997040465474e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":7.700000423938036e-07}
+{"instance":"n5-s1-r3.json","seed":8,"direct":{"status":"infeasible_domain","best":null,"seed":8,"mixer":"xy","runtime_seconds":8.710048859938979e-07,"circuit_evaluations":0},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.264600723516196e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":6.350019248202443e-07}
+{"instance":"n5-s1-r3.json","seed":9,"direct":{"status":"infeasible_domain","best":null,"seed":9,"mixer":"xy","runtime_seconds":7.010094122961164e-07,"circuit_evaluations":0},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":10,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":"t0","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":1.2029006029479206e-05},"direct_metrics":null,"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":5.580077413469553e-07}
+{"instance":"n5-s2-r0.json","seed":0,"direct":{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":3,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":19,"reserved_end":21,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":4},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[5.570724032015452,1.2297656214050487],"expected_energy":50.608682545295,"initial_expected_energy":89.87052462008398,"history":[89.87052462008398,89.1036987051437,90.54464155162093,93.57484960448687,91.53381685138596,88.43757243555285,89.63069968293107,88.39961743157411,88.51251423142669,88.4883176048769,88.4467490534359,88.39411822985329,88.37858797067001,88.36475042070103,88.34977966883675,88.31738031882293,88.32540242044405,88.30882152192837,88.3227677292397,88.30549659957836,88.29920674313803,88.28718070798031,88.26421069103247,88.2362234303134,88.2030714115021,88.21067700180856,88.27127567886552,88.2037732080517,88.18436438024128,88.17487112607878,88.16243389261427,88.15037876915025,88.12457708130742,88.07578073880032,87.94499144289789,87.80837361378082,86.62355330782357,88.56476930571846,86.51731748275915,85.01762296569788,81.32301206568184,73.97372821344473,68.18916543467469,98.7585827345942,89.19991815033875,66.72075378544379,52.4937409110073,82.1455686274079,54.57358797218842,51.964163063547005,55.95916270755511,51.425615755669696,51.20847925881313,50.831461239572505,50.9888470873476,51.24505744616915,50.841384080483735,50.73074879489228,50.686246279127744,50.608682545295,98.16493433574229,95.01071866387561,90.16403874015076,85.7812518082033,87.94870627512861,91.42966064507695,87.75327723445935,87.75118730694011,86.06106696039555,84.92263460538149,84.05988807822332,86.70626627402262,83.15266492017713,82.3829856083814,81.03316128042636,79.0564883910871,83.3858223917267,82.0109111327618,79.12909820444588,79.3912772870962,79.05313564150819,79.28572037885148,79.055120015261,78.97814823700588,78.86067806729034,78.82806145044476,78.71339242171383,78.65353082232274,78.89798904606779,78.61901145972355,78.5468785871301,78.49715393697406,78.52819333131913,78.47276093370895,78.45583615404733,78.46575534404369,78.43125129153707,78.41278855738128,78.42904776533187,78.39221738037523,78.38031796334067,78.39512145150874,78.35744617713625,78.33646000545397,78.29656917445683,78.24219460712499,78.19300428439946,78.15061106184285,78.34393794726472,78.16418453171741,78.16215390487359,78.1635682879691,78.13371863010164,78.13080839676175,78.14391292195879,78.1210662335638,78.11284379168394,78.10810316580655,78.09105378111846,78.11092531382856],"feasible_probability":0.46950709294578896,"one_hot_probability":0.9999999999999996,"sampled_feasible_fraction":0.505859375,"counts":{"0010100010011":78,"0010100010101":12,"0010100011001":42,"0010100100011":8,"0010100100101":9,"0010100101001":7,"0010101000011":79,"0010101000101":3,"0010101001001":40,"0010110000011":11,"0010110000101":9,"0010110001001":10,"0011000010011":5,"0011000011001":3,"0011000100011":2,"0011001001001":1,"0011010000011":2,"0100100010011":20,"0100100010101":3,"0100100011001":8,"0100100100011":1,"0100100100101":3,"0100101000011":20,"0100101000101":3,"0100101001001":10,"0100110000011":20,"0100110000101":3,"0100110001001":10,"0101000010011":4,"0101000011001":2,"0101000100011":1,"0101001000011":2,"0101010000011":1,"0101010000101":2,"1000100010011":12,"1000100010101":1,"1000100011001":3,"1000100100101":3,"1000100101001":2,"1000101000011":31,"1000101000101":5,"1000101001001":13,"1000110000011":1,"1001000011001":2,"1001000100011":2,"1001010000011":1,"1001010001001":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.37244044299586676},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":4,"removals":[],"infeasible_task":null,"component_qubits":[12],"max_component_qubits":12,"component_to_original":[[1,2,3,4,5,6,7,8,9,10,11,12]],"components":[{"qubits":12,"penalty":45,"objective_bound":44,"offset":180,"linear":[-45,-33,-40,-45,-37,-39,-37,-45,-33,-45,-33,-37],"quadratic":[[0,1,90],[0,2,90],[1,2,90],[1,3,45],[1,5,45],[2,5,45],[3,4,90],[3,5,90],[3,6,90],[4,5,90],[4,6,90],[4,7,45],[4,11,45],[5,6,90],[6,7,45],[6,9,45],[6,11,45],[7,8,90],[7,11,45],[8,9,45],[8,11,45],[9,10,90],[9,11,90],[10,11,90]],"domains":[[0,1,2],[3,4,5,6],[7,8],[9,10,11]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":12},{"index":2,"task":"t1","resource":"r0","start":4,"cost":5},{"index":3,"task":"t2","resource":"r2","start":8,"cost":0},{"index":4,"task":"t2","resource":"r0","start":12,"cost":8},{"index":5,"task":"t2","resource":"r0","start":6,"cost":6},{"index":6,"task":"t2","resource":"r2","start":14,"cost":8},{"index":7,"task":"t3","resource":"r0","start":13,"cost":0},{"index":8,"task":"t3","resource":"r2","start":19,"cost":12},{"index":9,"task":"t4","resource":"r1","start":16,"cost":0},{"index":10,"task":"t4","resource":"r0","start":22,"cost":12},{"index":11,"task":"t4","resource":"r0","start":14,"cost":8}],"conflicts":[{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":2,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":7,"reasons":["resource","precedence"]},{"i":4,"j":11,"reasons":["resource","group"]},{"i":6,"j":7,"reasons":["precedence"]},{"i":6,"j":9,"reasons":["group"]},{"i":6,"j":11,"reasons":["group"]},{"i":7,"j":11,"reasons":["resource","precedence"]},{"i":8,"j":9,"reasons":["precedence"]},{"i":8,"j":11,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":3,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":19,"reserved_end":21,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":4},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":8,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":16,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":16,"end":19,"reserved_end":21,"changed":false}],"bits":[1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":0},"seed":3757552657,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[-0.7655972763708769,0.21933330059591344],"expected_energy":44.54697653278034,"initial_expected_energy":92.47696228576645,"history":[92.47696228576645,86.26148286162277,80.59070109542277,79.19156370064435,81.52549666222804,80.86401558351203,76.72464306117548,76.90088010173167,77.05030449231245,77.36159132291826,77.21793716772999,75.92472326890311,75.74557865313298,77.70456440738057,75.31458814325975,74.52794502032869,73.1341515734868,71.18129995620356,73.97488363131555,71.97353695497127,71.69522665341992,71.5385830387579,71.00843225270336,70.83941850038835,70.68875052252638,70.48252100229453,70.61873522675441,70.79493912864554,70.40635914823594,70.41359143090727,70.39567517730481,70.37680137640493,70.34413328475745,70.31177605021331,70.54001392419156,70.29390140212666,70.24165700685913,70.22087249083775,70.26798564462112,70.20497449094044,70.19119221950817,70.17450659431108,70.14890979040513,70.138527538172,70.11822238937035,70.11504254742069,70.09482776251585,70.10559132886561,70.09266122305104,70.1069534962239,70.08504310129818,70.07979869716127,70.0749418002363,70.06708185882913,70.08513456291733,70.09275914910256,70.07021390768467,70.06773493343637,70.06754313887197,70.06662784423801,70.92631340907015,74.32450112518409,92.75806957814363,103.81450766964164,88.60010670770083,70.43357529245017,73.28201981585471,71.08344529442033,70.19766466878673,70.09541998223192,72.06374017102745,69.66174975483872,69.58057338052815,69.37197736614374,68.97709117024388,68.28347634765234,74.2576739655908,69.99732825321132,69.37138991043969,68.15958759360886,68.097026488507,67.9232497796745,67.78174178204442,67.94011383030801,67.6240049991423,67.55567945938557,68.02095165615654,67.42121439012092,67.33255537159003,67.25103359857735,67.23939882004714,67.08933208524054,66.92549325524917,66.80405880040801,67.0572702463901,66.69855841058205,66.62024786323344,66.43798910515163,66.0705403818681,65.2569767677001,67.36897522815316,66.7381474751147,65.515762828159,65.16208128386424,65.16791514565871,65.13318014097146,65.02255724030597,64.8022085004221,64.37107695691758,64.01091023660112,61.96555539874601,61.9309783884263,56.81543207369456,50.88611249811021,46.25375267421367,72.64076349950444,60.79684506531777,53.58842628720698,45.48268079320056,44.54697653278034],"feasible_probability":0.5834148377801661,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.603515625,"counts":{"001010001001":24,"001010001010":8,"001010001100":21,"001010010001":4,"001010010010":8,"001010010100":8,"001010100001":12,"001010100010":7,"001010100100":5,"001011000010":2,"001011000100":3,"001100001001":2,"001100001100":1,"001100010001":4,"001100010010":5,"001100010100":3,"001100100001":5,"001100100010":2,"001100100100":1,"001101000100":1,"010010001001":20,"010010001010":3,"010010001100":17,"010010010001":8,"010010010010":9,"010010010100":12,"010010100001":34,"010010100010":15,"010010100100":9,"010011000001":4,"010011000010":13,"010011000100":8,"010100001001":19,"010100001010":3,"010100001100":17,"010100010001":20,"010100010010":25,"010100010100":15,"010100100001":26,"010100100010":16,"010100100100":2,"010101000001":24,"010101000010":18,"010101000100":17,"100010001001":5,"100010001010":1,"100010001100":1,"100010100001":5,"100010100010":3,"100010100100":1,"100100001001":3,"100100001010":1,"100100001100":2,"100100100001":2,"100100100010":3,"100100100100":4,"100101000100":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3386672799970256}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.5834148377801661,"total_shots":512,"runtime_seconds":0.3389008000085596},"direct_metrics":{"exact_objective":4,"optimal_count":1,"combinations":72,"optimal_probability":0.15062981171123163,"feasible_probability":0.469507092945789,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.20833333333333334,"shots_for_95_percent":19,"hit_curve":[{"shots":8,"quantum":0.7291205179660492,"uniform":0.10585733481633375},{"shots":16,"quantum":0.9266243062130185,"uniform":0.20050889429825008},{"shots":32,"quantum":0.9946160075612791,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9999710126254198,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9999999991597321,"uniform":0.8330797244996347},{"shots":512,"quantum":1.0,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.3592239273284576e-16,"independent_samples":[{"shots":8,"best_objective":4},{"shots":16,"best_objective":4},{"shots":32,"best_objective":4},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":72,"optimal_probability":0.042119006470275826,"feasible_probability":0.5834148377801661,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.20833333333333334,"shots_for_95_percent":70,"hit_curve":[{"shots":8,"quantum":0.2912510183772988,"uniform":0.10585733481633375},{"shots":16,"quantum":0.4976748810487839,"uniform":0.20050889429825008},{"shots":32,"quantum":0.7476694748706466,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9363293060879447,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9959460427367574,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999999997299049,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.163336342344337e-17,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":12},{"shots":32,"best_objective":5},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.042119006470275826,"diagnostic_seconds":0.01710487400123384}
+{"instance":"n5-s2-r0.json","seed":1,"direct":{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":3,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":19,"reserved_end":21,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":4},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.09900564795411,2.109116043609728],"expected_energy":77.47284412148986,"initial_expected_energy":90.3282148000984,"history":[90.3282148000984,91.4839518200375,92.9367332844424,101.2388886059175,89.47736828591256,95.80612048966657,90.7392630748968,87.09348989767415,89.3178919195011,87.37540084988457,87.16147958556601,86.9226414332789,86.99228770952152,86.87664073222501,87.12384276557914,86.85860232007049,86.80649584676087,86.77836201011355,86.85838428077696,86.75527139493336,86.73427040627533,86.69459136517617,86.61585402902554,86.45744019955366,86.1592775372828,89.2374542105868,88.13618809805097,86.06688406114989,86.1932381617516,86.11624771493533,86.01313878312894,86.01222599824402,86.03747089886065,85.98780131222138,85.9400685467556,85.84896666214198,85.67281150326224,85.29476128238093,85.54712499196783,86.73036337456016,85.76773512937883,85.32419279435388,85.31505922649491,85.28381356214621,85.36765240034256,85.2507176902565,85.22305304598612,85.17770600633825,85.08403234394476,84.93518710980706,85.54345977852243,85.68258629943512,84.84983412618227,84.82783409864986,85.14891025410886,84.74016458167229,84.69050793777443,84.64909625862477,84.73494018840975,84.60984729896903,95.72716500790438,91.50309813411462,84.54974140989084,84.27071360947465,80.02950742803486,95.03578818757074,85.33616046524722,78.39581958690475,80.00678037288803,78.65839579251698,78.22322340443834,78.28554364716916,78.57389660506232,78.21137611194493,78.13693007296953,78.13686172122691,78.16277821943298,78.14560534700101,78.11188238366356,78.09370450098346,78.14588347074377,78.07279725853653,78.06240299005464,78.04377844923891,78.00839964319962,77.95006938909395,78.04050622254198,77.94960707531868,77.89901294639289,77.8241180610601,77.73460687023605,77.7492573762984,77.84777786645122,77.76218728039213,77.71106106289488,77.69082710634571,77.71554406180393,77.67908204822004,77.66922681709352,77.6864492165179,77.66048658226126,77.64932716261823,77.62924050703609,77.63444124072984,77.62426957151186,77.64629892770552,77.60960175722022,77.59743639890235,77.57650386969304,77.54580901014643,77.64675458115534,77.69838266872122,77.54096653881504,77.53219799208176,77.51474608028548,77.48448944042917,77.47284412148986,77.66341748194904,77.70250780398365,77.47322926030347],"feasible_probability":0.3403880094130551,"one_hot_probability":1.0,"sampled_feasible_fraction":0.3828125,"counts":{"0010100010011":13,"0010100010101":1,"0010100011001":39,"0010100100011":2,"0010100100101":9,"0010100101001":2,"0010101000011":10,"0010101000101":2,"0010101001001":31,"0010110000011":5,"0010110001001":5,"0011000010011":7,"0011000011001":3,"0011000100011":1,"0011000100101":15,"0011000101001":5,"0011001000011":2,"0011001000101":1,"0011001001001":22,"0011010000011":10,"0011010000101":1,"0011010001001":21,"0100100010011":4,"0100100010101":3,"0100100011001":12,"0100100100011":2,"0100100100101":3,"0100101000011":5,"0100101000101":2,"0100101001001":25,"0100110000011":4,"0100110000101":1,"0100110001001":5,"0101000010011":1,"0101000010101":4,"0101000011001":12,"0101000100011":4,"0101000100101":15,"0101000101001":1,"0101001000011":12,"0101001000101":1,"0101001001001":3,"0101010000011":8,"0101010001001":60,"1000100010011":2,"1000100010101":1,"1000100011001":2,"1000100100011":1,"1000100100101":4,"1000101000011":5,"1000101000101":3,"1000101001001":34,"1000110000011":4,"1000110000101":1,"1000110001001":1,"1001000010011":8,"1001000010101":2,"1001000011001":4,"1001000100011":1,"1001000100101":5,"1001000101001":3,"1001001000011":3,"1001001000101":1,"1001001001001":9,"1001010000011":1,"1001010001001":23},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3820339979865821},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":4,"removals":[],"infeasible_task":null,"component_qubits":[12],"max_component_qubits":12,"component_to_original":[[1,2,3,4,5,6,7,8,9,10,11,12]],"components":[{"qubits":12,"penalty":45,"objective_bound":44,"offset":180,"linear":[-45,-33,-40,-45,-37,-39,-37,-45,-33,-45,-33,-37],"quadratic":[[0,1,90],[0,2,90],[1,2,90],[1,3,45],[1,5,45],[2,5,45],[3,4,90],[3,5,90],[3,6,90],[4,5,90],[4,6,90],[4,7,45],[4,11,45],[5,6,90],[6,7,45],[6,9,45],[6,11,45],[7,8,90],[7,11,45],[8,9,45],[8,11,45],[9,10,90],[9,11,90],[10,11,90]],"domains":[[0,1,2],[3,4,5,6],[7,8],[9,10,11]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":12},{"index":2,"task":"t1","resource":"r0","start":4,"cost":5},{"index":3,"task":"t2","resource":"r2","start":8,"cost":0},{"index":4,"task":"t2","resource":"r0","start":12,"cost":8},{"index":5,"task":"t2","resource":"r0","start":6,"cost":6},{"index":6,"task":"t2","resource":"r2","start":14,"cost":8},{"index":7,"task":"t3","resource":"r0","start":13,"cost":0},{"index":8,"task":"t3","resource":"r2","start":19,"cost":12},{"index":9,"task":"t4","resource":"r1","start":16,"cost":0},{"index":10,"task":"t4","resource":"r0","start":22,"cost":12},{"index":11,"task":"t4","resource":"r0","start":14,"cost":8}],"conflicts":[{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":2,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":7,"reasons":["resource","precedence"]},{"i":4,"j":11,"reasons":["resource","group"]},{"i":6,"j":7,"reasons":["precedence"]},{"i":6,"j":9,"reasons":["group"]},{"i":6,"j":11,"reasons":["group"]},{"i":7,"j":11,"reasons":["resource","precedence"]},{"i":8,"j":9,"reasons":["precedence"]},{"i":8,"j":11,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":3,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":19,"reserved_end":21,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":4},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":8,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":16,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":16,"end":19,"reserved_end":21,"changed":false}],"bits":[1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":0},"seed":1641411168,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[-1.0037698379268547,0.22177053675031316],"expected_energy":42.148448599180874,"initial_expected_energy":80.26438967338359,"history":[80.26438967338359,81.19069861986229,80.5801353108321,81.88694084354005,80.8429543398201,80.26003715336645,80.65428381341152,80.28421038453766,79.5162835109361,77.3576774477473,74.01324184718675,80.49389979998475,72.89935609861598,72.03607027468189,71.06866497735749,70.14559668090855,73.2045528529228,72.72005792656671,70.21350932631462,70.556259149355,70.81690112181897,70.18855862126415,70.16980909316484,70.16422297942731,70.13895062683758,70.12488316647357,70.12459420759609,70.1148075330198,70.10596224210201,70.09142889182624,70.11476624627373,70.10064919756806,70.09364827677,70.0957954847166,70.09131363165244,70.08957103828645,70.08686941667848,70.09111086119091,70.08461140874039,70.08166804051295,70.0764089144588,70.07197458779046,70.07075145243948,70.06565405080681,70.06025349830489,70.05993978134234,70.067089086513,70.06010394356791,70.06107781843316,70.06047564495435,70.0599037864791,70.05989849700028,70.05984113295924,70.05975074851084,70.05977921876108,70.05988411191001,70.05982103220671,70.05973551829233,70.0597602293439,70.05972716806075,90.66755838523066,110.05983963613451,71.811061405672,88.57957309611781,79.94920361862395,67.21293850616614,68.56327886611659,67.36698010172965,67.3736031542937,67.62404248092898,67.3767585010163,67.26199971921973,67.12102998586766,66.96690332797758,66.64258698653096,66.40825872559078,65.96506489362648,67.58305051110786,66.94763934078081,66.1527796683917,65.55251840027253,65.44386035460109,65.2321244678968,65.06322228941465,64.55679215464973,64.04288872758339,62.109906927835695,60.41354083464651,53.701653490338,43.922172057397844,44.9213300572593,63.179834613071705,44.861167834386144,46.19506957556376,45.3033076447975,43.129957491176675,44.101332643206405,43.725760039488854,43.090833444491665,42.97098613013193,42.824485067252574,42.76118648278877,42.90353523727674,42.71249470923719,42.66857152355878,42.594084960178066,42.49202946053826,42.344693776396454,42.27616740434271,42.63417516366755,42.874642872599544,42.271455677346886,42.16701314271999,42.20481211837371,42.161636136139364,42.206417517020476,42.148448599180874,42.15822883763956,42.15668562200244,42.14862398532304],"feasible_probability":0.6352831869018485,"one_hot_probability":1.0,"sampled_feasible_fraction":0.619140625,"counts":{"001010001001":22,"001010001010":2,"001010001100":14,"001010010001":9,"001010010010":9,"001010010100":10,"001010100001":18,"001010100010":11,"001010100100":8,"001011000001":1,"001011000100":1,"001100001001":1,"001100010001":1,"001100010010":3,"001100010100":5,"001100100001":3,"001101000100":1,"010010001001":28,"010010001100":20,"010010010001":4,"010010010010":5,"010010010100":7,"010010100001":34,"010010100010":8,"010010100100":13,"010011000001":1,"010011000010":5,"010011000100":6,"010100001001":28,"010100001010":3,"010100001100":21,"010100010001":17,"010100010010":17,"010100010100":21,"010100100001":23,"010100100010":24,"010100100100":5,"010101000001":18,"010101000010":23,"010101000100":13,"100010001001":6,"100010001010":2,"100010001100":4,"100010010001":3,"100010100001":4,"100010100010":3,"100010100100":4,"100011000001":1,"100100001001":2,"100100001010":2,"100100001100":2,"100100010001":1,"100100010010":1,"100100100001":4,"100100100010":7,"100100100100":2,"100101000001":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3366147429915145}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.6352831869018485,"total_shots":512,"runtime_seconds":0.33687282699975185},"direct_metrics":{"exact_objective":4,"optimal_count":1,"combinations":72,"optimal_probability":0.018758694114051722,"feasible_probability":0.340388009413055,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.20833333333333334,"shots_for_95_percent":159,"hit_curve":[{"shots":8,"quantum":0.14057778740778035,"uniform":0.10585733481633375},{"shots":16,"quantum":0.2613934605030936,"uniform":0.20050889429825008},{"shots":32,"quantum":0.45446037981240484,"uniform":0.3608139719037934},{"shots":64,"quantum":0.7023865228055743,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9114262181922431,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999384510353166,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.42861286636753e-17,"independent_samples":[{"shots":8,"best_objective":21},{"shots":16,"best_objective":9},{"shots":32,"best_objective":4},{"shots":64,"best_objective":9},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":72,"optimal_probability":0.049475751008169803,"feasible_probability":0.6352831869018486,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.20833333333333334,"shots_for_95_percent":60,"hit_curve":[{"shots":8,"quantum":0.333645084623075,"uniform":0.10585733481633375},{"shots":16,"quantum":0.5559711267530112,"uniform":0.20050889429825008},{"shots":32,"quantum":0.8028383597230095,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9611272876032866,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9984889122309224,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999999999947862,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":5},{"shots":16,"best_objective":6},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.049475751008169803,"diagnostic_seconds":0.01723125700664241}
+{"instance":"n5-s2-r0.json","seed":2,"direct":{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":3,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":19,"reserved_end":21,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":4},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.9135550397112497,2.1235430402279185],"expected_energy":77.51841777264757,"initial_expected_energy":94.05251392591097,"history":[94.05251392591097,94.78527327516002,89.9144662948754,84.13143547193376,91.20955108585899,82.50924985598684,83.23095184550405,78.47718463136906,91.10210210218705,80.87014180458249,80.04253232743446,81.75771294225724,78.39045848889913,78.34777825226828,78.43520077588708,78.66157163448193,78.41844185647112,78.21379742563802,78.18138729217992,78.15909002386695,78.17643014783899,78.15173551884321,78.14170816747912,78.13247181033184,78.13327496099828,78.12796660151048,78.1256427458143,78.12893000226094,78.12431922522885,78.12195199799851,78.1200723162668,78.11526468966306,78.11081837537564,78.10282979134053,78.09471546223314,78.08134067417544,78.09444558003109,78.09566253927117,78.08776678154982,78.08321320957627,78.07998187175244,78.08340675405609,78.07931614538634,78.07820818086208,78.07705796883961,78.07978121086374,78.0762720679081,78.07520788765052,78.0741865343093,78.07379170887477,78.07271030209614,78.07179968768237,78.07011153874691,78.0689016255133,78.0671891607969,78.06948927727305,78.07084666861243,78.06629049397795,78.0657273830172,78.06570553973071,86.39268756965615,88.50162797627819,90.36469373033512,89.69560218857696,81.28338344627039,82.2835542499467,83.87626364827798,81.41935400598474,81.30793880764452,82.05213594822965,81.44968720671315,80.8870636096135,80.49276963429803,80.30021324555207,79.61562046097423,82.02056780999197,79.19472747447941,79.1597677132144,80.38069251736489,78.84869599447407,78.7501913226146,78.62405273977772,78.53140301165521,79.44587261185818,78.30080616505924,78.31020724395393,78.28511269095289,78.28959778512973,78.30089520474958,78.25988201267907,78.23479308654383,78.27477744520486,78.22238437890174,78.19845861709359,78.15305385025962,78.07012904499445,77.97073508993417,77.94875570066732,77.8292919404114,77.68337312761963,77.60594678343071,78.19622347687906,77.60656833194842,77.59983395242523,77.60099442633086,77.61801114409488,77.57328048923547,77.55979412899477,77.60199643504646,77.55012711040368,77.54666539290018,77.53415777904866,77.53444926564984,77.532876564934,77.5401650466963,77.54113836450472,77.52395669023706,77.53162997916995,77.51990268815379,77.51841777264757],"feasible_probability":0.32513755524007465,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.314453125,"counts":{"0010100010011":6,"0010100010101":1,"0010100011001":28,"0010100100101":15,"0010100101001":10,"0010101000011":3,"0010101000101":2,"0010101001001":39,"0010110000011":10,"0010110001001":3,"0011000010011":5,"0011000011001":1,"0011000100011":3,"0011000100101":18,"0011000101001":3,"0011001000011":2,"0011001000101":3,"0011001001001":30,"0011010000011":4,"0011010001001":13,"0100100010011":5,"0100100010101":2,"0100100011001":17,"0100100100011":3,"0100100100101":4,"0100101000011":3,"0100101000101":3,"0100101001001":22,"0100110001001":10,"0101000010011":4,"0101000010101":1,"0101000011001":10,"0101000100011":3,"0101000100101":11,"0101000101001":3,"0101001000011":12,"0101001001001":14,"0101010000011":4,"0101010000101":2,"0101010001001":50,"1000100010011":1,"1000100011001":1,"1000100100101":4,"1000101000011":10,"1000101000101":6,"1000101001001":36,"1000110000011":4,"1000110001001":2,"1001000010011":8,"1001000011001":4,"1001000100101":8,"1001000101001":6,"1001001000011":2,"1001001000101":1,"1001001001001":10,"1001010000011":1,"1001010001001":26},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.4062280960060889},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":4,"removals":[],"infeasible_task":null,"component_qubits":[12],"max_component_qubits":12,"component_to_original":[[1,2,3,4,5,6,7,8,9,10,11,12]],"components":[{"qubits":12,"penalty":45,"objective_bound":44,"offset":180,"linear":[-45,-33,-40,-45,-37,-39,-37,-45,-33,-45,-33,-37],"quadratic":[[0,1,90],[0,2,90],[1,2,90],[1,3,45],[1,5,45],[2,5,45],[3,4,90],[3,5,90],[3,6,90],[4,5,90],[4,6,90],[4,7,45],[4,11,45],[5,6,90],[6,7,45],[6,9,45],[6,11,45],[7,8,90],[7,11,45],[8,9,45],[8,11,45],[9,10,90],[9,11,90],[10,11,90]],"domains":[[0,1,2],[3,4,5,6],[7,8],[9,10,11]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":12},{"index":2,"task":"t1","resource":"r0","start":4,"cost":5},{"index":3,"task":"t2","resource":"r2","start":8,"cost":0},{"index":4,"task":"t2","resource":"r0","start":12,"cost":8},{"index":5,"task":"t2","resource":"r0","start":6,"cost":6},{"index":6,"task":"t2","resource":"r2","start":14,"cost":8},{"index":7,"task":"t3","resource":"r0","start":13,"cost":0},{"index":8,"task":"t3","resource":"r2","start":19,"cost":12},{"index":9,"task":"t4","resource":"r1","start":16,"cost":0},{"index":10,"task":"t4","resource":"r0","start":22,"cost":12},{"index":11,"task":"t4","resource":"r0","start":14,"cost":8}],"conflicts":[{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":2,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":7,"reasons":["resource","precedence"]},{"i":4,"j":11,"reasons":["resource","group"]},{"i":6,"j":7,"reasons":["precedence"]},{"i":6,"j":9,"reasons":["group"]},{"i":6,"j":11,"reasons":["group"]},{"i":7,"j":11,"reasons":["resource","precedence"]},{"i":8,"j":9,"reasons":["precedence"]},{"i":8,"j":11,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":3,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":19,"reserved_end":21,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":4},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":8,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":16,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":16,"end":19,"reserved_end":21,"changed":false}],"bits":[1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":0},"seed":2001025171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[-1.0086963446250286,3.3645891635419125],"expected_energy":42.13782412798393,"initial_expected_energy":88.73150483473438,"history":[88.73150483473438,89.99334885400532,82.88696147991529,82.57862602199373,84.70917217482852,80.36832005945622,82.267271797918,73.1210846602752,66.4950963095433,79.43033771003857,66.91817095769339,59.39574681579443,79.5514695152165,63.14706192989975,58.394679567750764,62.49218060590325,57.32415031386267,55.2267971754388,53.11271899491497,49.71242357963363,47.436020283122396,55.789684528602706,46.69144808286681,46.020636447869144,47.36198551116499,45.28240922455137,44.97572713948652,44.48615813567028,43.68867837948321,44.75446226863684,44.780725349816734,43.54352033134428,44.11723661147104,43.4331548489472,43.28789564815008,43.07128511184588,44.60906055315431,42.995727100677385,42.869319805471655,42.63007697378408,42.312370598669425,43.64877359944092,42.44615001553592,42.29618484427859,42.55139767472091,42.26597269032577,42.23024619051,42.216847641440395,42.250941490938146,42.206860688933105,42.19814401199793,42.184930743770146,42.16765079947079,42.13826858443099,42.15700846928393,42.20830273849279,42.14860168002127,42.14045893133814,42.14215478868253,42.13782412798393,81.5275524658376,85.39546687361853,74.65752490963503,66.79520898802858,83.2054448991234,54.827846997058444,92.3265819715801,83.6043496667775,74.46779386917295,56.65107620418509,65.5062779033864,52.42468325041878,52.012478084038065,50.28701764823185,49.18583149269397,47.876994643401375,46.17492268444621,46.93574320058974,48.502055097205414,47.283603636036304,46.047093724898915,49.22261147908661,45.41397843461478,45.20115906788267,44.52678708605549,44.51206422296773,44.20911551764919,43.98191128836012,43.6736682285312,43.34026786797845,42.81709772685558,49.067256628666314,44.2419292327895,43.32707910363215,42.757441210827174,42.8323807066383,42.76034675869028,42.71668991277838,42.65855993447982,42.97639743582427,42.6039603435767,42.547642560914696,42.61411626469538,42.50353617012557,42.463821146903086,42.53716164158918,42.42036892570703,42.397927752808506,42.36836887620157,42.31739469379769,42.38885975118665,42.33416987792696,42.315739286453244,42.37775605843588,42.281479768409525,42.269451954504895,42.24559049225472,42.20834698995403,42.16848901138839,42.209414379362066],"feasible_probability":0.6355756380677444,"one_hot_probability":1.0000000000000004,"sampled_feasible_fraction":0.63671875,"counts":{"001010001001":28,"001010001010":6,"001010001100":19,"001010010001":4,"001010010010":5,"001010010100":6,"001010100001":25,"001010100010":9,"001010100100":5,"001011000001":1,"001011000010":1,"001100001001":1,"001100001100":3,"001100010001":8,"001100010010":3,"001100010100":2,"001100100001":3,"001101000001":1,"001101000100":1,"010010001001":29,"010010001010":4,"010010001100":14,"010010010001":9,"010010010010":4,"010010010100":8,"010010100001":34,"010010100010":8,"010010100100":10,"010011000001":1,"010011000010":7,"010011000100":11,"010100001001":33,"010100001010":4,"010100001100":13,"010100010001":19,"010100010010":16,"010100010100":16,"010100100001":38,"010100100010":10,"010100100100":1,"010101000001":17,"010101000010":15,"010101000100":10,"100010001001":2,"100010001100":4,"100010010001":2,"100010010010":1,"100010100001":2,"100010100010":3,"100010100100":3,"100011000001":1,"100100001001":6,"100100001010":1,"100100001100":5,"100100010001":3,"100100010010":2,"100100100001":11,"100100100010":1,"100100100100":2,"100101000100":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.393684986003791}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.6355756380677444,"total_shots":512,"runtime_seconds":0.3939721670030849},"direct_metrics":{"exact_objective":4,"optimal_count":1,"combinations":72,"optimal_probability":0.021796333515817876,"feasible_probability":0.3251375552400746,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.20833333333333334,"shots_for_95_percent":136,"hit_curve":[{"shots":8,"quantum":0.1616327775271877,"uniform":0.10585733481633375},{"shots":16,"quantum":0.2971404002832221,"uniform":0.20050889429825008},{"shots":32,"quantum":0.5059883830859707,"uniform":0.3608139719037934},{"shots":64,"quantum":0.7559525223539864,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9404408286546184,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999874166989539,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.85722573273506e-17,"independent_samples":[{"shots":8,"best_objective":33},{"shots":16,"best_objective":4},{"shots":32,"best_objective":16},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":72,"optimal_probability":0.049634978680346054,"feasible_probability":0.6355756380677446,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.20833333333333334,"shots_for_95_percent":59,"hit_curve":[{"shots":8,"quantum":0.3345375601577658,"uniform":0.10585733481633375},{"shots":16,"quantum":0.5571597411592208,"uniform":0.20050889429825008},{"shots":32,"quantum":0.8038925051498317,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9615418504635912,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9985209707342352,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999999999952147,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":6.245004513516506e-17,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.049634978680346054,"diagnostic_seconds":0.018267461011419073}
+{"instance":"n5-s2-r0.json","seed":3,"direct":{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":3,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":19,"reserved_end":21,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":4},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.293287948145889,1.3547118341993356],"expected_energy":78.06368458269343,"initial_expected_energy":90.50706916469439,"history":[90.50706916469439,84.76874714841796,95.64120471420895,88.41624741512426,78.39115617509361,93.75440172672727,80.01415374211771,78.3680281373118,79.41299445733421,78.27393787962285,78.22657838285923,79.22052581278754,78.27396026932584,78.54523709408761,78.10542438594106,78.07242278659709,78.1101631501772,78.07371282361073,78.07157058560239,78.08405921076104,78.06893201487898,78.06737299782145,78.06626192791327,78.06658643297689,78.06626533999905,78.06635445531535,78.06612337175414,78.06603145827859,78.06672723540916,78.06576199680799,78.06556350504633,78.0652765546593,78.06496863261773,78.06445814452059,78.0659472762107,78.06533962410981,78.06436351954105,78.06472359027322,78.06430354639996,78.06420726846429,78.06404034079033,78.06399295269209,78.06404759020441,78.0646457494953,78.0639317426884,78.06379410711588,78.06377034292481,78.06386017994751,78.06374668078278,78.0637305065875,78.06373501978585,78.06372506005192,78.0637203544812,78.06372806505351,78.0637162106374,78.06371268239764,78.06371160666214,78.06370210413395,78.06369922962944,78.06368458269343,83.84689745442964,82.19818781114,90.07831419733951,90.77350492783314,86.84340584038695,82.08464207602765,83.76513262827382,82.1793183792432,82.242234121407,82.15378933258538,82.09820587428327,82.08866500350095,82.08462245712775,82.07305882470858,82.05039472312667,82.00573058572616,81.90535741026548,81.85016262748829,81.60234570483433,83.89477351311822,81.90062900600947,81.96427931039089,81.65397016188362,81.52615096572355,81.49643192129577,81.613173961716,81.46568363732668,81.44214670937495,81.39708680573345,81.35439609550485,81.35024240591966,81.29246965127008,81.2883835694565,81.26665713781667,81.45214112909346,81.30756017345968,81.26771204288583,81.29081619552173,81.2655940575104,81.26840240432364,81.26663330737313,81.2656157262013,81.2654572175744,81.26523656919242,81.26501473134829,81.26517059725134,81.26493091502424,81.26487341811031,81.26479631093395,81.26467811684968,81.26458796805375,81.26447454370992,81.26459130515785,81.26476704303732,81.2644909557526,81.26441665569833,81.26443590898745,81.26440847054249,81.26441127477821,81.2644067764455],"feasible_probability":0.31567530849875325,"one_hot_probability":1.0,"sampled_feasible_fraction":0.29296875,"counts":{"0010100010011":15,"0010100010101":2,"0010100011001":8,"0010100100011":11,"0010100101001":14,"0010101000011":6,"0010101000101":10,"0010110000011":7,"0010110000101":10,"0010110001001":10,"0011000010011":2,"0011000010101":4,"0011000011001":1,"0011000100101":1,"0011000101001":5,"0011001000011":4,"0011001000101":4,"0011001001001":2,"0011010000011":22,"0011010001001":7,"0100100010011":8,"0100100010101":3,"0100100011001":2,"0100100101001":8,"0100101000011":7,"0100101000101":9,"0100101001001":2,"0100110000011":18,"0100110000101":7,"0100110001001":5,"0101000010011":10,"0101000011001":10,"0101000100011":19,"0101000100101":7,"0101000101001":10,"0101001000011":21,"0101001000101":16,"0101001001001":10,"0101010000011":11,"0101010000101":8,"0101010001001":8,"1000100010011":15,"1000100010101":8,"1000100011001":18,"1000100100101":8,"1000100101001":6,"1000101000011":20,"1000101000101":9,"1000101001001":1,"1000110000011":2,"1000110000101":5,"1000110001001":1,"1001000010011":12,"1001000010101":8,"1001000011001":2,"1001000100011":2,"1001000101001":7,"1001001000011":5,"1001001000101":15,"1001001001001":4,"1001010000011":13,"1001010000101":3,"1001010001001":4},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.41045564200612716},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":4,"removals":[],"infeasible_task":null,"component_qubits":[12],"max_component_qubits":12,"component_to_original":[[1,2,3,4,5,6,7,8,9,10,11,12]],"components":[{"qubits":12,"penalty":45,"objective_bound":44,"offset":180,"linear":[-45,-33,-40,-45,-37,-39,-37,-45,-33,-45,-33,-37],"quadratic":[[0,1,90],[0,2,90],[1,2,90],[1,3,45],[1,5,45],[2,5,45],[3,4,90],[3,5,90],[3,6,90],[4,5,90],[4,6,90],[4,7,45],[4,11,45],[5,6,90],[6,7,45],[6,9,45],[6,11,45],[7,8,90],[7,11,45],[8,9,45],[8,11,45],[9,10,90],[9,11,90],[10,11,90]],"domains":[[0,1,2],[3,4,5,6],[7,8],[9,10,11]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":12},{"index":2,"task":"t1","resource":"r0","start":4,"cost":5},{"index":3,"task":"t2","resource":"r2","start":8,"cost":0},{"index":4,"task":"t2","resource":"r0","start":12,"cost":8},{"index":5,"task":"t2","resource":"r0","start":6,"cost":6},{"index":6,"task":"t2","resource":"r2","start":14,"cost":8},{"index":7,"task":"t3","resource":"r0","start":13,"cost":0},{"index":8,"task":"t3","resource":"r2","start":19,"cost":12},{"index":9,"task":"t4","resource":"r1","start":16,"cost":0},{"index":10,"task":"t4","resource":"r0","start":22,"cost":12},{"index":11,"task":"t4","resource":"r0","start":14,"cost":8}],"conflicts":[{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":2,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":7,"reasons":["resource","precedence"]},{"i":4,"j":11,"reasons":["resource","group"]},{"i":6,"j":7,"reasons":["precedence"]},{"i":6,"j":9,"reasons":["group"]},{"i":6,"j":11,"reasons":["group"]},{"i":7,"j":11,"reasons":["resource","precedence"]},{"i":8,"j":9,"reasons":["precedence"]},{"i":8,"j":11,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":3,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":19,"reserved_end":21,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":4},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":8,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":16,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":16,"end":19,"reserved_end":21,"changed":false}],"bits":[1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":0},"seed":819382448,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0107648486971332,2.9175656339535037],"expected_energy":42.13547211224307,"initial_expected_energy":78.36897700603873,"history":[78.36897700603873,72.5315132423471,79.04711482798473,83.86972535994863,83.42997725990116,73.97356868777013,72.6904077514203,73.63203185565699,72.152713372536,72.0730500260179,73.62067363655653,71.65845477548089,71.46071550482365,71.30785655005246,71.46950251479605,71.21092067734368,71.12570148575816,71.14216433175957,71.06267288100356,71.04613571535168,71.19637099105113,71.02170166102422,70.97726835808842,70.90266414157553,70.79070767417618,70.57193110087537,70.24265389527386,70.60470040454804,70.70419864915652,70.20822765974546,70.27725730097411,70.20761129865458,70.18433830068412,70.16134987750067,70.1482525350492,70.20186203036008,70.13452399515134,70.12701324886424,70.11731800999796,70.1008203457919,70.1187642122479,70.11209572162593,70.10185474748569,70.10527926006972,70.10110332556633,70.09886250898894,70.09524324745192,70.0885343013787,70.08468979790985,70.07487085305442,70.08896037270199,70.07172574739909,70.08136555243289,70.07186081652436,70.0698466656082,70.07030615206234,70.07088498642725,70.0699148742745,70.06946464954231,70.06873013348002,85.13081517856588,81.71041954678344,54.53045723322738,103.23342797416537,66.79526710075862,58.719753988727874,48.59299037384217,56.64640557369469,47.91655154118354,48.184539886401325,47.571471489274586,49.770576266754205,46.67853814574538,46.078564992179345,45.60216546290415,46.8920645550348,45.354564178140436,44.83794879563358,43.95108053699676,42.80413779789697,47.26160233289183,44.9145452826614,42.67814992554993,42.81702257174908,42.69875899480474,42.622909864972385,42.59859410110717,42.63162815195278,42.5595905081358,42.52473196750864,42.45677249154577,42.33580663047959,42.442533533672616,42.56542883328257,42.37788184326233,42.32407868098542,42.33437681608626,42.30661609348441,42.30169337822664,42.359902099203005,42.26961032075039,42.25815645649115,42.23462896494374,42.20061845109308,42.173771609499866,42.18630340123099,42.30463387500257,42.16222593598694,42.16823408415405,42.1522852253173,42.154495503891695,42.163287990585886,42.1494092789748,42.14871552710003,42.152245603018514,42.148439324792676,42.1472236127441,42.14508378956803,42.14099709774469,42.13547211224307],"feasible_probability":0.6355367896656267,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.646484375,"counts":{"001010001001":35,"001010001010":3,"001010001100":17,"001010010001":7,"001010010010":7,"001010010100":12,"001010100001":18,"001010100010":8,"001010100100":5,"001011000010":1,"001011000100":1,"001100001001":1,"001100001010":1,"001100001100":1,"001100010001":5,"001100010100":1,"001100100001":2,"001101000001":1,"001101000010":1,"010010001001":39,"010010001010":1,"010010001100":13,"010010010001":10,"010010010010":2,"010010010100":11,"010010100001":27,"010010100010":13,"010010100100":11,"010011000001":4,"010011000010":5,"010011000100":8,"010100001001":34,"010100001010":5,"010100001100":14,"010100010001":20,"010100010010":14,"010100010100":25,"010100100001":31,"010100100010":10,"010100100100":3,"010101000001":9,"010101000010":15,"010101000100":20,"100010001001":6,"100010001100":3,"100010010010":1,"100010100001":5,"100010100010":2,"100011000001":1,"100100001001":7,"100100001010":1,"100100001100":1,"100100100001":7,"100100100010":1,"100100100100":4,"100101000010":1,"100101000100":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.36626378700020723}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.6355367896656267,"total_shots":512,"runtime_seconds":0.36655331500514876},"direct_metrics":{"exact_objective":4,"optimal_count":1,"combinations":72,"optimal_probability":0.03951479695240418,"feasible_probability":0.31567530849875325,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.20833333333333334,"shots_for_95_percent":75,"hit_curve":[{"shots":8,"quantum":0.27568841914998876,"uniform":0.10585733481633375},{"shots":16,"quantum":0.47537273384655765,"uniform":0.20050889429825008},{"shots":32,"quantum":0.7247662316083652,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9242463727369399,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9942613879564893,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999999989155053,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.5102810375396984e-17,"independent_samples":[{"shots":8,"best_objective":9},{"shots":16,"best_objective":9},{"shots":32,"best_objective":4},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":72,"optimal_probability":0.0497131118447524,"feasible_probability":0.6355367896656265,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.20833333333333334,"shots_for_95_percent":59,"hit_curve":[{"shots":8,"quantum":0.3349751160536254,"uniform":0.10585733481633375},{"shots":16,"quantum":0.557741903732111,"uniform":0.20050889429825008},{"shots":32,"quantum":0.8044077762855026,"uniform":0.3608139719037934},{"shots":64,"quantum":0.961743682022418,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9985364541347982,"uniform":0.8330797244996347},{"shots":512,"quantum":0.999999999995412,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":12},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.0497131118447524,"diagnostic_seconds":0.018157230006181635}
+{"instance":"n5-s2-r0.json","seed":4,"direct":{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":3,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":19,"reserved_end":21,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":4},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.3039706085038576,1.3541509334073323],"expected_energy":78.06518450054874,"initial_expected_energy":89.02941341722521,"history":[89.02941341722521,89.45561508362502,83.8926700832406,92.51635785739357,87.62686636432151,85.78114772952192,82.28063382021288,85.63256195765514,81.92098409189865,81.81185206443094,80.91603230666578,80.80928713385948,79.85840522208946,79.37479411535011,78.43975464213614,79.22638284161803,81.181960283648,78.79125747597612,78.72922757374984,78.6045317547295,78.40266620458867,78.49055769874577,78.39480094789903,78.37107978126986,78.35056027709007,78.3544753621897,78.33374926499371,78.32197590524532,78.32244717457198,78.30145508937086,78.28783625659837,78.29268982558841,78.27040165119814,78.25852881979704,78.2674486504433,78.24164688293642,78.23390254242815,78.25536011254393,78.21674151902566,78.20157437164728,78.17364179258263,78.14606813184866,78.118844829684,78.1126337809456,78.35034619057132,78.0776213509304,78.0952783337969,78.07603747594965,78.08781582662033,78.07506826294767,78.07047669897487,78.06574606545173,78.06751603123269,78.0753211811263,78.0673166186774,78.06909521377845,78.06699070545223,78.06532845543555,78.06518450054874,78.06564090745809,93.28856319416222,88.62113227356889,90.41119299267622,87.53960288021027,87.1299753266501,97.44232019937633,82.19203869904797,85.6031430626011,86.02618600311901,83.3755300052864,81.43311514462539,83.17001831365977,81.36210077810978,81.78412764517032,81.41363709115211,81.44147780895972,81.37925199491042,81.33831054983725,81.3193083617214,81.30083025181123,81.29848998529698,81.27225553953342,81.28658675473156,81.27131135851495,81.27801491150271,81.26998113020045,81.26801345933325,81.26639080087722,81.29039051981411,81.26503027853394,81.2690854009936,81.2667811370988,81.26555009369977,81.26537923606935,81.26464896360255,81.26476907761487,81.26461780435966,81.26459858243717,81.26453555927256,81.26454505119207,81.26453692625604,81.26452072506291,81.2645172571201,81.26455022615238,81.26451457103596,81.26450215549218,81.2644848174295,81.26446963356784,81.26445527182014,81.26442953648402,81.2644288320545,81.2643927334629,81.2644178055653,81.26439123100842,81.26440571353798,81.2643895792475,81.26438843923523,81.26439204780533,81.26438727500893,81.26438687907367],"feasible_probability":0.3157068091036378,"one_hot_probability":1.0,"sampled_feasible_fraction":0.322265625,"counts":{"0010100010011":23,"0010100010101":11,"0010100011001":7,"0010100100011":13,"0010100101001":12,"0010101000011":5,"0010101000101":8,"0010110000011":4,"0010110000101":9,"0010110001001":7,"0011000010011":3,"0011000010101":4,"0011000011001":2,"0011000100011":2,"0011000100101":7,"0011000101001":1,"0011001000011":2,"0011001000101":3,"0011001001001":2,"0011010000011":16,"0011010000101":1,"0011010001001":4,"0100100010011":11,"0100100010101":8,"0100100011001":4,"0100100100011":1,"0100100101001":2,"0100101000011":1,"0100101000101":1,"0100101001001":1,"0100110000011":13,"0100110000101":7,"0100110001001":7,"0101000010011":10,"0101000011001":15,"0101000100011":26,"0101000100101":14,"0101000101001":10,"0101001000011":19,"0101001000101":12,"0101001001001":11,"0101010000011":11,"0101010000101":1,"0101010001001":8,"1000100010011":11,"1000100010101":16,"1000100011001":12,"1000100100011":2,"1000100100101":6,"1000100101001":5,"1000101000011":29,"1000101000101":14,"1000101001001":5,"1000110000011":5,"1000110000101":2,"1001000010011":13,"1001000010101":8,"1001000011001":8,"1001000100011":5,"1001000100101":1,"1001000101001":4,"1001001000011":1,"1001001000101":10,"1001001001001":2,"1001010000011":8,"1001010000101":2,"1001010001001":4},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.4289494859986007},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":4,"removals":[],"infeasible_task":null,"component_qubits":[12],"max_component_qubits":12,"component_to_original":[[1,2,3,4,5,6,7,8,9,10,11,12]],"components":[{"qubits":12,"penalty":45,"objective_bound":44,"offset":180,"linear":[-45,-33,-40,-45,-37,-39,-37,-45,-33,-45,-33,-37],"quadratic":[[0,1,90],[0,2,90],[1,2,90],[1,3,45],[1,5,45],[2,5,45],[3,4,90],[3,5,90],[3,6,90],[4,5,90],[4,6,90],[4,7,45],[4,11,45],[5,6,90],[6,7,45],[6,9,45],[6,11,45],[7,8,90],[7,11,45],[8,9,45],[8,11,45],[9,10,90],[9,11,90],[10,11,90]],"domains":[[0,1,2],[3,4,5,6],[7,8],[9,10,11]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":12},{"index":2,"task":"t1","resource":"r0","start":4,"cost":5},{"index":3,"task":"t2","resource":"r2","start":8,"cost":0},{"index":4,"task":"t2","resource":"r0","start":12,"cost":8},{"index":5,"task":"t2","resource":"r0","start":6,"cost":6},{"index":6,"task":"t2","resource":"r2","start":14,"cost":8},{"index":7,"task":"t3","resource":"r0","start":13,"cost":0},{"index":8,"task":"t3","resource":"r2","start":19,"cost":12},{"index":9,"task":"t4","resource":"r1","start":16,"cost":0},{"index":10,"task":"t4","resource":"r0","start":22,"cost":12},{"index":11,"task":"t4","resource":"r0","start":14,"cost":8}],"conflicts":[{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":2,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":7,"reasons":["resource","precedence"]},{"i":4,"j":11,"reasons":["resource","group"]},{"i":6,"j":7,"reasons":["precedence"]},{"i":6,"j":9,"reasons":["group"]},{"i":6,"j":11,"reasons":["group"]},{"i":7,"j":11,"reasons":["resource","precedence"]},{"i":8,"j":9,"reasons":["precedence"]},{"i":8,"j":11,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":3,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":19,"reserved_end":21,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":4},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":8,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":16,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":16,"end":19,"reserved_end":21,"changed":false}],"bits":[1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":0},"seed":367776961,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.0725874685086834,2.1175283594552847],"expected_energy":69.14139052750514,"initial_expected_energy":78.04112248315255,"history":[78.04112248315255,80.82597406167172,79.28108074607992,80.60428244563506,79.60443973501087,78.19302866437675,77.87928995007259,77.65086360863965,77.49442068310509,77.29434616388947,76.5919433119514,75.15841949286187,71.03097193744074,71.76911115800822,82.21489089258915,74.30566303856823,71.35229418463118,73.53048925385652,70.83527458651704,70.47066263208613,70.19028488894801,70.27971109619399,71.05575419071732,70.17628150416407,70.57913322046265,70.45322400645614,70.33840108591616,70.17097318782642,70.2023990746494,70.15809217805395,70.12602410177351,70.07737364269609,70.18130826607322,70.03731360750409,69.98953728645155,69.90530177762007,69.76625545655668,69.53978030703051,69.33136238360942,69.16527337491218,73.77267204976211,71.15445236301917,69.37750528213414,69.17485063508414,69.35273718587686,69.14146392399954,69.1693027137972,69.14152464498507,69.1437594111771,69.1414797206733,69.14155087084923,69.14164331991097,69.14139946873081,69.14145961731396,69.14139772373444,69.14141075948235,69.14139835808831,69.14139293690896,69.14139052750514,69.14139267363579,79.229481263261,79.4493068335783,83.11699521453687,91.8207856311929,79.37556828910554,80.86238985855427,79.40877986405,78.7356294776324,78.55096188151627,78.35799619233798,78.27397955738648,78.08809642142053,77.89703464767854,77.7086018123242,77.48561981936061,76.57459133798648,80.94543459365127,75.83395555682934,78.16205041391754,77.19288650570526,76.12731801177615,75.17778499580453,75.3040907442001,74.79487074691878,74.62864480755167,75.4682950055302,73.95175126162789,73.63854442822776,73.13371596507982,72.24203914378987,71.09969632959503,73.32475393690679,74.18067896642978,70.70472020284959,70.86740588780955,71.30888871623486,70.65833733596288,70.95990393807365,70.61032929524544,70.5277151057849,70.37927875097684,70.1235369844399,70.9363549848516,70.47652226574486,70.2414954484301,70.09040564427717,70.08734263281193,70.05892236978558,70.0061377838428,69.91459003526955,69.75140443149812,70.19331083331609,70.02430472603447,69.8267106373489,69.73229009591735,69.73793158204447,69.71720210230703,69.70684609500066,69.70954548707643,69.68698394210865],"feasible_probability":0.34397904179270833,"one_hot_probability":0.9999999999999996,"sampled_feasible_fraction":0.365234375,"counts":{"001010001001":11,"001010001010":1,"001010001100":30,"001010010001":1,"001010010010":14,"001010010100":3,"001010100001":5,"001010100010":3,"001010100100":32,"001011000001":8,"001011000100":4,"001100001001":2,"001100001100":1,"001100010001":1,"001100010010":17,"001100010100":4,"001100100001":2,"001100100010":1,"001100100100":28,"001101000001":8,"001101000100":15,"010010001001":4,"010010001010":1,"010010001100":21,"010010010001":2,"010010010010":2,"010010100001":5,"010010100010":5,"010010100100":22,"010011000100":9,"010100001001":2,"010100001010":2,"010100001100":7,"010100010001":3,"010100010010":22,"010100010100":1,"010100100001":11,"010100100010":3,"010100100100":6,"010101000001":8,"010101000010":1,"010101000100":56,"100010001001":2,"100010001010":1,"100010010001":1,"100010010010":4,"100010010100":2,"100010100001":7,"100010100010":3,"100010100100":47,"100011000001":8,"100100001001":5,"100100001010":1,"100100001100":14,"100100010001":1,"100100010010":9,"100100010100":2,"100100100001":2,"100100100100":5,"100101000100":14},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3959561450028559}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.34397904179270833,"total_shots":512,"runtime_seconds":0.3962252780038398},"direct_metrics":{"exact_objective":4,"optimal_count":1,"combinations":72,"optimal_probability":0.039225729490788765,"feasible_probability":0.31570680910363785,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.20833333333333334,"shots_for_95_percent":75,"hit_curve":[{"shots":8,"quantum":0.27394267156940505,"uniform":0.10585733481633375},{"shots":16,"quantum":0.47284075583222723,"uniform":0.20050889429825008},{"shots":32,"quantum":0.7221031312884625,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9227733303603225,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9940360414963642,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999999987348603,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.163336342344337e-17,"independent_samples":[{"shots":8,"best_objective":4},{"shots":16,"best_objective":4},{"shots":32,"best_objective":4},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":72,"optimal_probability":0.019072670353804617,"feasible_probability":0.3439790417927083,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.20833333333333334,"shots_for_95_percent":156,"hit_curve":[{"shots":8,"quantum":0.1427752990520848,"uniform":0.10585733481633375},{"shots":16,"quantum":0.26516581208475737,"uniform":0.20050889429825008},{"shots":32,"quantum":0.46001871627094587,"uniform":0.3608139719037934},{"shots":64,"quantum":0.7084202132223227,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9149812279426843,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999477532461628,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":9.020562075079397e-17,"independent_samples":[{"shots":8,"best_objective":17},{"shots":16,"best_objective":29},{"shots":32,"best_objective":0},{"shots":64,"best_objective":5},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.019072670353804617,"diagnostic_seconds":0.019356691991561092}
+{"instance":"n5-s2-r0.json","seed":5,"direct":{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":3,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":19,"reserved_end":21,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":4},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0436434420976086,2.921304140817635],"expected_energy":48.02791099956025,"initial_expected_energy":89.46387795942162,"history":[89.46387795942162,89.78834045632294,52.11824215912201,126.14154225350794,66.67367161276479,58.06911259288747,53.99329117506429,53.00293379182253,49.670852713082404,51.313425844533214,49.331782996774514,49.49675022492237,49.29252238409301,49.23948046506286,49.17912619011277,49.102754969334995,48.98410526246495,48.892691290082524,48.72593293075109,48.54247791634274,48.27593506678335,53.59538787694609,49.16817651011202,48.45019644598311,48.358743687569444,48.312638403223424,48.240942426924484,48.2263285278085,48.19821721858341,48.15899398061597,48.12211944873326,48.06278449615197,48.545384489067516,48.34199085061736,48.159409996972435,48.06713019161372,48.059490997300244,48.07747537402233,48.06819845431366,48.05812616621024,48.05476865930591,48.053906816140426,48.051292360427766,48.048916619381174,48.045047828873834,48.04228463021864,48.03366530533982,48.06064317571766,48.045961732570625,48.032693408651376,48.04177403710872,48.031833016683805,48.03107985809419,48.03084878852408,48.03453835500922,48.03037168192939,48.029640007769075,48.02894249739743,48.02819470595226,48.02791099956025,91.20059051698243,103.33253388526505,74.04286402188822,96.84852010307405,76.87429935246932,79.68836796638779,73.65892675811804,73.21239559590647,73.13088165309668,74.64706789392874,72.76004634873188,72.58844967120761,72.40041077803525,72.23302834290229,73.34149186167302,71.82756681890518,71.54245088347855,71.26598203945719,70.59312571520736,70.83052288063575,69.89068705498026,69.70063702870377,71.24401464088146,69.54623860737713,68.82336842738523,67.4583583176066,64.77139592525293,73.0666181579279,62.812875905785916,60.78016591785179,56.776187032632116,57.40771575784419,59.39596468603238,57.65037995564522,56.721374543144265,57.97245791643036,56.86998919329835,56.14406264575393,55.39882628371345,55.96138672578731,55.01660965153543,54.661875625139615,54.15423277542095,53.43225041137478,52.36716510947494,50.69612629209355,57.47904941695762,50.23304844862649,50.035956654709096,54.59703170138276,49.1863727288004,49.2025011516985,49.14649480675159,49.13187851317243,49.56129872903473,49.06738126276755,48.96209488469342,48.838221330569596,48.76219162026328,48.89806750390785],"feasible_probability":0.6394924845895559,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.642578125,"counts":{"0010100010011":33,"0010100010101":7,"0010100011001":15,"0010100100011":5,"0010100100101":6,"0010100101001":12,"0010101000011":20,"0010101000101":7,"0010101001001":10,"0010110000011":2,"0010110001001":1,"0011000010101":1,"0011000011001":1,"0011000100011":6,"0011000100101":2,"0011000101001":3,"0011010001001":1,"0100100010011":27,"0100100010101":1,"0100100011001":21,"0100100100011":7,"0100100100101":2,"0100100101001":8,"0100101000011":30,"0100101000101":12,"0100101001001":7,"0100110000011":2,"0100110000101":8,"0100110001001":9,"0101000010011":24,"0101000010101":7,"0101000011001":11,"0101000100011":23,"0101000100101":29,"0101000101001":17,"0101001000011":35,"0101001000101":14,"0101001001001":4,"0101010000011":11,"0101010000101":11,"0101010001001":22,"1000100010011":4,"1000100010101":1,"1000100011001":3,"1000101000011":5,"1000101000101":1,"1000101001001":1,"1000110000101":3,"1001000010011":7,"1001001000011":4,"1001001000101":1,"1001001001001":4,"1001010000011":1,"1001010000101":1,"1001010001001":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.43715839300421067},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":4,"removals":[],"infeasible_task":null,"component_qubits":[12],"max_component_qubits":12,"component_to_original":[[1,2,3,4,5,6,7,8,9,10,11,12]],"components":[{"qubits":12,"penalty":45,"objective_bound":44,"offset":180,"linear":[-45,-33,-40,-45,-37,-39,-37,-45,-33,-45,-33,-37],"quadratic":[[0,1,90],[0,2,90],[1,2,90],[1,3,45],[1,5,45],[2,5,45],[3,4,90],[3,5,90],[3,6,90],[4,5,90],[4,6,90],[4,7,45],[4,11,45],[5,6,90],[6,7,45],[6,9,45],[6,11,45],[7,8,90],[7,11,45],[8,9,45],[8,11,45],[9,10,90],[9,11,90],[10,11,90]],"domains":[[0,1,2],[3,4,5,6],[7,8],[9,10,11]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":12},{"index":2,"task":"t1","resource":"r0","start":4,"cost":5},{"index":3,"task":"t2","resource":"r2","start":8,"cost":0},{"index":4,"task":"t2","resource":"r0","start":12,"cost":8},{"index":5,"task":"t2","resource":"r0","start":6,"cost":6},{"index":6,"task":"t2","resource":"r2","start":14,"cost":8},{"index":7,"task":"t3","resource":"r0","start":13,"cost":0},{"index":8,"task":"t3","resource":"r2","start":19,"cost":12},{"index":9,"task":"t4","resource":"r1","start":16,"cost":0},{"index":10,"task":"t4","resource":"r0","start":22,"cost":12},{"index":11,"task":"t4","resource":"r0","start":14,"cost":8}],"conflicts":[{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":2,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":7,"reasons":["resource","precedence"]},{"i":4,"j":11,"reasons":["resource","group"]},{"i":6,"j":7,"reasons":["precedence"]},{"i":6,"j":9,"reasons":["group"]},{"i":6,"j":11,"reasons":["group"]},{"i":7,"j":11,"reasons":["resource","precedence"]},{"i":8,"j":9,"reasons":["precedence"]},{"i":8,"j":11,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":3,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":19,"reserved_end":21,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":4},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":8,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":16,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":16,"end":19,"reserved_end":21,"changed":false}],"bits":[1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":0},"seed":803261128,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0352672142982535,2.9194095106006603],"expected_energy":42.110513630133696,"initial_expected_energy":79.95488269753568,"history":[79.95488269753568,82.85530333730486,42.3432416457468,106.52609134487962,50.60498165011393,43.09660975847791,53.06357777987187,42.34156939552123,43.71967205731046,42.811262064425094,42.38337567099116,42.36170927320779,42.315112636134636,42.300758784872784,42.3452325573832,42.26734475247849,42.25768892751828,42.23435411035243,42.21629286372872,42.18802645361761,42.15880710512195,42.12511720594649,42.44536691397943,42.164631939619476,42.123713258961686,42.16148854566667,42.12157380605204,42.12917985534423,42.128137520653944,42.12012752685479,42.11971574883543,42.124632360720966,42.11921333832612,42.11762731378638,42.11548182535717,42.11456339203708,42.11547121637675,42.114217984139685,42.11392218128366,42.11358661512162,42.1129759276413,42.112844704511296,42.11181242735395,42.11317462855569,42.112503735462354,42.11195075676703,42.11180593256247,42.11155988605084,42.11116858193669,42.11061556181955,42.112426283648404,42.111399178594425,42.11056187749875,42.11072824098406,42.11062846104852,42.11062036899397,42.11055817537971,42.1105769220986,42.11054226825491,42.110513630133696,80.03916580513769,76.88726198006052,79.76311736299147,80.35152819899405,77.75607589582106,77.36969111813758,76.0589714681641,79.19975682095482,75.88635160333288,75.22449589927814,73.93525634337561,74.90104345969954,74.67370864508712,74.20343871018846,73.83397686170434,74.61438710327161,73.27938968186561,72.80508503305765,71.95334287544165,70.78260894105267,73.93500487198429,74.12708902972888,70.60469125229602,70.52087159575821,70.34951154368902,70.49150035904651,70.79588099367646,70.33013293309486,70.19581912095656,70.12870668439729,70.18308408886602,70.11802061259384,70.09531436249127,70.07181838826426,70.03034246474293,70.00566267414725,69.89414496817605,69.88112851684433,69.77219197668494,69.81538756351846,69.80972969579749,69.75792851783852,69.82066032202263,69.73442981046527,69.71400693283411,69.67728591101886,69.60701790002392,69.52608244088157,69.51487285890947,69.39778655231996,69.3511965968482,69.25287175892336,69.65240444507208,69.52389746492435,69.40257938158325,69.24075331886871,69.24151905010058,69.23357651645598,69.22703664289776,69.21667872782766],"feasible_probability":0.638561095059501,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.703125,"counts":{"001010001001":25,"001010001010":2,"001010001100":19,"001010010001":7,"001010010010":8,"001010010100":7,"001010100001":27,"001010100010":5,"001010100100":3,"001011000010":1,"001011000100":2,"001100001001":1,"001100010001":5,"001100010010":2,"001100010100":3,"001101000010":1,"001101000100":1,"010010001001":37,"010010001100":20,"010010010001":8,"010010010010":3,"010010010100":9,"010010100001":41,"010010100010":8,"010010100100":7,"010011000001":2,"010011000010":6,"010011000100":4,"010100001001":32,"010100001010":4,"010100001100":17,"010100010001":27,"010100010010":20,"010100010100":27,"010100100001":28,"010100100010":11,"010100100100":9,"010101000001":11,"010101000010":16,"010101000100":13,"100010001001":2,"100010001010":2,"100010001100":1,"100010010001":2,"100010100001":3,"100010100010":1,"100010100100":4,"100100001010":1,"100100001100":5,"100100010001":1,"100100100001":1,"100100100010":4,"100100100100":4,"100101000010":1,"100101000100":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.4117944350000471}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.638561095059501,"total_shots":512,"runtime_seconds":0.41207990401017014},"direct_metrics":{"exact_objective":4,"optimal_count":1,"combinations":72,"optimal_probability":0.049045297250384846,"feasible_probability":0.6394924845895559,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.20833333333333334,"shots_for_95_percent":60,"hit_curve":[{"shots":8,"quantum":0.3312271345264254,"uniform":0.10585733481633375},{"shots":16,"quantum":0.552742854406264,"uniform":0.20050889429825008},{"shots":32,"quantum":0.7999610457153437,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9599844167687012,"uniform":0.5914412214865954},{"shots":128,"quantum":0.998398753098659,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999999999934259,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.85722573273506e-17,"independent_samples":[{"shots":8,"best_objective":4},{"shots":16,"best_objective":10},{"shots":32,"best_objective":4},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":72,"optimal_probability":0.05027736753883574,"feasible_probability":0.638561095059501,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.20833333333333334,"shots_for_95_percent":59,"hit_curve":[{"shots":8,"quantum":0.3381275549380275,"uniform":0.10585733481633375},{"shots":16,"quantum":0.5619248664676861,"uniform":0.20050889429825008},{"shots":32,"quantum":0.8080901773806454,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9631706199822079,"uniform":0.5914412214865954},{"shots":128,"quantum":0.998643596767505,"uniform":0.8330797244996347},{"shots":512,"quantum":0.999999999996615,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.551115123125783e-17,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":0},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.05027736753883574,"diagnostic_seconds":0.020830278008361347}
+{"instance":"n5-s2-r0.json","seed":6,"direct":{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":3,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":19,"reserved_end":21,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":4},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.296853801204241,1.3545515661990388],"expected_energy":78.06377029232107,"initial_expected_energy":89.06865786114265,"history":[89.06865786114265,91.0086015327907,87.35389263263127,81.2282974595566,88.76529951516679,87.02862671925072,80.70782970631464,89.28264798076074,86.72514616410339,80.05574978723739,80.80285895161344,80.32157147172768,80.21832762192071,80.30028039850896,80.01712741074623,80.14526860733994,79.9869787523798,79.92957382093755,79.82382443137385,79.63851859407328,79.28767262302618,78.95158643712652,78.90607109267184,78.44544791311219,78.23518321370877,78.17950215899427,78.50020360089354,78.96528810414726,78.22765163608754,78.06625526645486,78.15462121167147,78.07233827057533,78.0686437224575,78.06810972495856,78.06772738108985,78.06656174107519,78.06630786394521,78.06627140594773,78.06605613823308,78.06581528048997,78.06639016318623,78.06561676455148,78.06544655610648,78.06512663359835,78.06473223771124,78.06444020389692,78.06408563842592,78.06410426691588,78.06440417076993,78.06405002676848,78.06468623582342,78.06389788263805,78.06387085161471,78.06381116088687,78.06377029232107,78.06382777505125,78.06377789762986,78.0637710946478,78.06378633331288,78.06377049899591,94.91998343356997,93.5497977143686,89.07485643031727,90.90897777914375,91.03367025433204,89.72918217778535,88.90744994149986,89.16749820650124,89.03774738025581,88.75286949672874,88.78839642235658,88.83961166323101,88.76493295163557,88.76321383736325,88.74083298554643,88.74571439099091,88.74491202103334,88.73385444201108,88.72413920210388,88.7259151406788,88.72022359264639,88.71326977348627,88.70289766989919,88.7132508601548,88.68979945364791,88.67536954297236,88.64976520471896,88.69613799093366,88.63426369709967,88.60552250371991,88.54705162360942,88.43692928450113,88.27341174751248,89.96662363355549,90.36004605611605,88.22440158629837,88.40127730019957,88.38748023928463,88.18999835421822,88.18726534789836,88.21163607913661,88.1887911742019,88.1772808367572,88.16462019832808,88.17405741292448,88.15833987214643,88.15262658427307,88.13975642271848,88.11496225000428,88.0602578241209,87.9514307998194,87.42955696595615,89.86880176588028,88.13556186885016,87.39629722317119,87.09927077560535,86.27835272365994,84.03341050353043,89.10821082124446,83.58090564311624],"feasible_probability":0.3156834419851293,"one_hot_probability":0.9999999999999997,"sampled_feasible_fraction":0.322265625,"counts":{"0010100010011":20,"0010100010101":12,"0010100011001":6,"0010100100011":11,"0010100101001":6,"0010101000011":5,"0010101000101":8,"0010101001001":1,"0010110000011":6,"0010110000101":11,"0010110001001":11,"0011000010011":3,"0011000010101":1,"0011000100011":2,"0011000101001":3,"0011001000011":1,"0011001000101":6,"0011001001001":3,"0011010000011":12,"0011010000101":3,"0011010001001":7,"0100100010011":3,"0100100010101":9,"0100100011001":6,"0100100100011":2,"0100100101001":4,"0100101000011":4,"0100101000101":5,"0100110000011":12,"0100110000101":6,"0100110001001":11,"0101000010011":6,"0101000011001":23,"0101000100011":20,"0101000100101":13,"0101000101001":16,"0101001000011":17,"0101001000101":7,"0101001001001":15,"0101010000011":15,"0101010000101":5,"0101010001001":6,"1000100010011":10,"1000100010101":8,"1000100011001":16,"1000100100011":1,"1000100100101":5,"1000100101001":7,"1000101000011":20,"1000101000101":13,"1000101001001":3,"1000110000011":7,"1000110000101":6,"1000110001001":1,"1001000010011":13,"1001000010101":8,"1001000011001":6,"1001000100011":4,"1001000101001":6,"1001001000011":1,"1001001000101":11,"1001001001001":5,"1001010000011":12,"1001010000101":2,"1001010001001":4},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.49221934100205544},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":4,"removals":[],"infeasible_task":null,"component_qubits":[12],"max_component_qubits":12,"component_to_original":[[1,2,3,4,5,6,7,8,9,10,11,12]],"components":[{"qubits":12,"penalty":45,"objective_bound":44,"offset":180,"linear":[-45,-33,-40,-45,-37,-39,-37,-45,-33,-45,-33,-37],"quadratic":[[0,1,90],[0,2,90],[1,2,90],[1,3,45],[1,5,45],[2,5,45],[3,4,90],[3,5,90],[3,6,90],[4,5,90],[4,6,90],[4,7,45],[4,11,45],[5,6,90],[6,7,45],[6,9,45],[6,11,45],[7,8,90],[7,11,45],[8,9,45],[8,11,45],[9,10,90],[9,11,90],[10,11,90]],"domains":[[0,1,2],[3,4,5,6],[7,8],[9,10,11]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":12},{"index":2,"task":"t1","resource":"r0","start":4,"cost":5},{"index":3,"task":"t2","resource":"r2","start":8,"cost":0},{"index":4,"task":"t2","resource":"r0","start":12,"cost":8},{"index":5,"task":"t2","resource":"r0","start":6,"cost":6},{"index":6,"task":"t2","resource":"r2","start":14,"cost":8},{"index":7,"task":"t3","resource":"r0","start":13,"cost":0},{"index":8,"task":"t3","resource":"r2","start":19,"cost":12},{"index":9,"task":"t4","resource":"r1","start":16,"cost":0},{"index":10,"task":"t4","resource":"r0","start":22,"cost":12},{"index":11,"task":"t4","resource":"r0","start":14,"cost":8}],"conflicts":[{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":2,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":7,"reasons":["resource","precedence"]},{"i":4,"j":11,"reasons":["resource","group"]},{"i":6,"j":7,"reasons":["precedence"]},{"i":6,"j":9,"reasons":["group"]},{"i":6,"j":11,"reasons":["group"]},{"i":7,"j":11,"reasons":["resource","precedence"]},{"i":8,"j":9,"reasons":["precedence"]},{"i":8,"j":11,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":3,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":19,"reserved_end":21,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":4},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":8,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":16,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":16,"end":19,"reserved_end":21,"changed":false}],"bits":[1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":0},"seed":3153149895,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0447862224450335,2.9192975522592732],"expected_energy":42.11166898759449,"initial_expected_energy":77.66952269067991,"history":[77.66952269067991,72.48395172785567,70.54087210998676,62.19148933650502,80.76847122353614,100.53618955227685,84.84742042613628,62.05000656307782,77.03173048029815,64.39643857186006,56.49154672164154,55.0949068180567,53.00466426804126,54.467738825281856,50.90262576412879,52.20323621120286,50.25813846688398,50.29508252385665,49.94881875747739,49.74137935471459,49.75739841054977,49.672499115946344,49.54442546442778,49.32499160743389,49.09678697025513,49.845723579213406,48.791510734347526,48.52086123365092,48.035355499598005,47.10387832791439,46.16858846154231,45.638269178954545,44.33547281019857,42.218235615091196,45.10790588672492,62.568026768225096,42.124810613643156,46.507495812117256,42.34741554921187,43.3425845712451,42.34495136003079,42.12182282520206,42.24274898462276,42.116390940473636,42.13987739384209,42.11975799523431,42.11776323696178,42.11574846957713,42.11469072125708,42.113840829829115,42.11452975247916,42.11364463388275,42.113304457845544,42.112708281213244,42.11174253344523,42.11519112117465,42.114961688354796,42.1120426246311,42.11166898759449,42.111908795914054,88.38029020528651,85.93890350632951,83.52773011739896,72.67891173795563,82.32272386085336,84.99912623251961,80.03930746457891,78.78086417515352,75.17303685346977,73.19439400916528,72.10934690273267,71.74763571733192,72.5393876170487,71.52808840877347,71.34191786686286,71.54422445344996,71.22745750058334,71.03429693021802,70.69732094072668,70.43212659463505,71.13298173454146,71.70461008732804,70.3742743504453,70.20050736207352,70.27105440636248,70.23763783453776,70.20586200888302,70.1867854502024,70.16936325680322,70.14753558491168,70.13212242850621,70.16740076434758,70.12168719337338,70.11527390321046,70.12731965230404,70.1107100255021,70.10657777557944,70.09880865205682,70.08735263310263,70.07916569180287,70.06883422844774,70.05998282298405,70.15403307595122,70.08524867626426,70.06599273891713,70.05985008454724,70.06174873565305,70.05985663950139,70.05983953898087,70.06003408002906,70.05979573349767,70.05971811174481,70.05972660605889,70.05973306079412,70.05971921188167,70.05972055246355,70.05971420727789,70.05971030599142,70.0597204754807,70.05970551683464],"feasible_probability":0.6393816304566123,"one_hot_probability":1.0,"sampled_feasible_fraction":0.6171875,"counts":{"001010001001":30,"001010001010":3,"001010001100":21,"001010010001":10,"001010010010":5,"001010010100":10,"001010100001":19,"001010100010":4,"001010100100":6,"001011000010":1,"001011000100":2,"001100001001":4,"001100010001":3,"001100010010":5,"001100010100":6,"001101000010":1,"010010001001":24,"010010001010":6,"010010001100":24,"010010010001":12,"010010010010":2,"010010010100":7,"010010100001":22,"010010100010":11,"010010100100":5,"010011000001":4,"010011000010":4,"010011000100":2,"010100001001":24,"010100001010":9,"010100001100":19,"010100010001":16,"010100010010":18,"010100010100":24,"010100100001":29,"010100100010":8,"010100100100":4,"010101000001":13,"010101000010":20,"010101000100":13,"100010001001":7,"100010001100":4,"100010010001":1,"100010010010":1,"100010100001":6,"100010100010":1,"100010100100":4,"100100001001":6,"100100001010":2,"100100001100":6,"100100100001":11,"100100100010":4,"100100100100":5,"100101000001":2,"100101000010":1,"100101000100":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.414978560002055}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.6393816304566123,"total_shots":512,"runtime_seconds":0.41526856400014367},"direct_metrics":{"exact_objective":4,"optimal_count":1,"combinations":72,"optimal_probability":0.03941687716762636,"feasible_probability":0.3156834419851292,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.20833333333333334,"shots_for_95_percent":75,"hit_curve":[{"shots":8,"quantum":0.27509746994039286,"uniform":0.10585733481633375},{"shots":16,"quantum":0.47451632191318033,"uniform":0.20050889429825008},{"shots":32,"quantum":0.7238669040643477,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9237505133289918,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9941860157824077,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999999988573969,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.163336342344337e-17,"independent_samples":[{"shots":8,"best_objective":4},{"shots":16,"best_objective":9},{"shots":32,"best_objective":9},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":72,"optimal_probability":0.0505100856845742,"feasible_probability":0.6393816304566122,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.20833333333333334,"shots_for_95_percent":58,"hit_curve":[{"shots":8,"quantum":0.33942391399365474,"uniform":0.10585733481633375},{"shots":16,"quantum":0.5636392345965375,"uniform":0.20050889429825008},{"shots":32,"quantum":0.8095892824165044,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9637437586293383,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9986854849616723,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999999999970142,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":6.245004513516506e-17,"independent_samples":[{"shots":8,"best_objective":12},{"shots":16,"best_objective":6},{"shots":32,"best_objective":0},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.0505100856845742,"diagnostic_seconds":0.019204326992621645}
+{"instance":"n5-s2-r0.json","seed":7,"direct":{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":3,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":19,"reserved_end":21,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":4},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0447036765585473,2.9197451978305144],"expected_energy":48.02759121256284,"initial_expected_energy":95.22977465819895,"history":[95.22977465819895,90.53746435407417,90.18918382113505,90.52202558136227,89.4610148214058,80.69032010822582,87.29253837205314,85.52118639394871,84.57264366602301,89.16781524871762,80.36490460234356,80.27376598757401,79.49605290782067,78.40123186688591,78.59288332169055,81.26801248704788,78.54418783235826,78.87378802305346,78.50735233038459,78.37178702734028,78.45730935344811,78.35964831625306,78.33875625398238,78.30609455671737,78.35701779840733,78.27842399290823,78.25046960744515,78.2739891265156,78.22937904488472,78.20433763916385,78.20118817710527,78.30193899016675,78.1945676538742,78.16219712714741,78.14176006559312,78.131042769494,78.1219739564431,78.11493552644569,78.12207005538868,78.11052947590277,78.10659346190086,78.10607537348668,78.10016675334171,78.09291952545652,78.0882819208957,78.10083760151402,78.08507480261324,78.08283492175664,78.08537688816095,78.08151897297746,78.08022830886395,78.07839368962766,78.07608331217342,78.07420695959874,78.07894793067472,78.07340790266797,78.07138729563302,78.06813740131132,78.06533947377788,78.07921786334347,81.0229424197961,90.50683790988239,103.7283656264271,83.47173871382834,61.08191086206696,74.72577488062149,71.28728846589757,66.44506944096047,55.87956168527289,52.687990064248396,58.55327545887401,54.49837467720408,52.12100292216445,53.78186645403057,52.075566519844,51.69271488777947,51.16946233381134,50.820943271873986,50.403285449149095,50.12730909817919,50.98012468083536,49.898056485553525,49.77113671961729,49.57777099198249,49.26152915616289,48.865064829257896,48.624319268344735,48.139129051200044,49.361207667868555,50.19893779824453,48.093340115375675,48.54737470230708,48.23802575963509,48.09494445761946,48.08809282642205,48.08534080713683,48.138373706645915,48.07135060342919,48.06568991181512,48.06143314721018,48.067386643985564,48.05856844249163,48.05623727868151,48.059405028052,48.054373727609075,48.051842807431896,48.04712603063608,48.04011197025967,48.07043333953007,48.068480074823704,48.0389244610816,48.037170799789195,48.03400053475203,48.02988220249718,48.052423698881974,48.02869905060314,48.028736854076655,48.02920763184383,48.02795934676296,48.02759121256284],"feasible_probability":0.6392059614626378,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.658203125,"counts":{"0010100010011":24,"0010100010101":1,"0010100011001":14,"0010100100011":7,"0010100100101":8,"0010100101001":7,"0010101000011":27,"0010101000101":10,"0010101001001":8,"0010110000011":1,"0010110001001":1,"0011000010011":1,"0011000010101":3,"0011000011001":1,"0011000100011":10,"0011000100101":2,"0011000101001":2,"0011001000011":1,"0011010000101":1,"0100100010011":28,"0100100010101":2,"0100100011001":18,"0100100100011":5,"0100100100101":2,"0100100101001":2,"0100101000011":26,"0100101000101":10,"0100101001001":5,"0100110000101":5,"0100110001001":10,"0101000010011":21,"0101000010101":5,"0101000011001":11,"0101000100011":28,"0101000100101":20,"0101000101001":26,"0101001000011":40,"0101001000101":12,"0101001001001":2,"0101010000011":18,"0101010000101":20,"0101010001001":16,"1000100010011":7,"1000100010101":1,"1000100011001":1,"1000100100011":3,"1000100100101":3,"1000101000011":2,"1000101000101":1,"1000101001001":3,"1000110000011":2,"1000110000101":1,"1001000010011":8,"1001000010101":1,"1001000011001":4,"1001001000011":7,"1001001000101":2,"1001001001001":3,"1001010001001":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.41514050200930797},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":4,"removals":[],"infeasible_task":null,"component_qubits":[12],"max_component_qubits":12,"component_to_original":[[1,2,3,4,5,6,7,8,9,10,11,12]],"components":[{"qubits":12,"penalty":45,"objective_bound":44,"offset":180,"linear":[-45,-33,-40,-45,-37,-39,-37,-45,-33,-45,-33,-37],"quadratic":[[0,1,90],[0,2,90],[1,2,90],[1,3,45],[1,5,45],[2,5,45],[3,4,90],[3,5,90],[3,6,90],[4,5,90],[4,6,90],[4,7,45],[4,11,45],[5,6,90],[6,7,45],[6,9,45],[6,11,45],[7,8,90],[7,11,45],[8,9,45],[8,11,45],[9,10,90],[9,11,90],[10,11,90]],"domains":[[0,1,2],[3,4,5,6],[7,8],[9,10,11]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":12},{"index":2,"task":"t1","resource":"r0","start":4,"cost":5},{"index":3,"task":"t2","resource":"r2","start":8,"cost":0},{"index":4,"task":"t2","resource":"r0","start":12,"cost":8},{"index":5,"task":"t2","resource":"r0","start":6,"cost":6},{"index":6,"task":"t2","resource":"r2","start":14,"cost":8},{"index":7,"task":"t3","resource":"r0","start":13,"cost":0},{"index":8,"task":"t3","resource":"r2","start":19,"cost":12},{"index":9,"task":"t4","resource":"r1","start":16,"cost":0},{"index":10,"task":"t4","resource":"r0","start":22,"cost":12},{"index":11,"task":"t4","resource":"r0","start":14,"cost":8}],"conflicts":[{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":2,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":7,"reasons":["resource","precedence"]},{"i":4,"j":11,"reasons":["resource","group"]},{"i":6,"j":7,"reasons":["precedence"]},{"i":6,"j":9,"reasons":["group"]},{"i":6,"j":11,"reasons":["group"]},{"i":7,"j":11,"reasons":["resource","precedence"]},{"i":8,"j":9,"reasons":["precedence"]},{"i":8,"j":11,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":3,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":19,"reserved_end":21,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":4},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":8,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":16,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":16,"end":19,"reserved_end":21,"changed":false}],"bits":[1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":0},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.273599250931067,1.3542748092839],"expected_energy":70.06429277671907,"initial_expected_energy":77.75712695442802,"history":[77.75712695442802,72.28548160187502,78.52953714388921,83.38537468509165,83.99175222742237,73.1660087584256,72.20766755261869,73.8101650741384,71.51851999377487,71.83099820500843,71.39169526594067,71.49968090502816,71.36959166340402,71.3234409746635,71.24114745213238,71.21857828361944,71.0441096413849,70.90630368893548,70.6624022946094,70.86048510073064,70.87572858295515,70.68983659610326,70.69134697196013,70.63063866210203,70.64558279023623,70.64626497514833,70.60493435539472,70.57644106263595,70.62345854961622,70.56257548551245,70.53905721055412,70.51439543855912,70.47696705354122,70.4034918861093,70.32031105835685,70.19686806917451,71.64854947111687,70.44873367705623,70.32744182545606,70.17960376195019,70.18025042202594,70.16873489604788,70.15891424200599,70.14415800746418,70.18308992339654,70.12455703290067,70.12780629550264,70.13843079705187,70.12095289181212,70.12028088840263,70.12648778949973,70.11990913253044,70.11721302033455,70.11271369530802,70.10444535735,70.09917428561401,70.08482166628542,70.09302127263351,70.08243148661201,70.0951425650051,78.03263020953123,72.14391233916497,79.61213345023964,84.27461177125826,83.12868562946699,74.00156028047232,72.31353690253673,73.17872683661477,71.8976886188876,71.59065263095081,71.82794649243652,71.32590477942426,71.32109107344553,72.86011621517662,70.92367014155846,70.7890144516278,70.69352921884109,70.92622887764139,70.6096409438048,70.55945064573623,70.49434543327229,70.38094981219793,70.36301294481548,70.18683350142118,70.57343008978177,70.33636169032104,70.1708831934724,70.20942870117543,70.17017608563725,70.15759128480404,70.13575052687939,70.10111272210754,70.19632852856026,70.21433496130604,70.10166638152897,70.09042061313778,70.08552853014622,70.14108118612033,70.07502419627221,70.07517601153343,70.07411106516085,70.07567298139534,70.07754960479937,70.07472666262171,70.07251086221362,70.07157556830245,70.06947756259731,70.0677651604679,70.0690988673536,70.0674686214005,70.06903419643719,70.06745327186705,70.06695558987812,70.06621273926774,70.0650398133306,70.06517343762427,70.06469399108157,70.06467019288893,70.06512268404728,70.06429277671907],"feasible_probability":0.31534413295432717,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.298828125,"counts":{"001010001001":16,"001010001010":6,"001010001100":8,"001010010001":20,"001010010010":1,"001010010100":11,"001010100001":8,"001010100010":9,"001010100100":1,"001011000001":6,"001011000010":16,"001011000100":8,"001100001001":3,"001100001010":5,"001100001100":2,"001100010010":1,"001100010100":4,"001100100001":1,"001100100010":8,"001100100100":3,"001101000001":10,"001101000010":1,"001101000100":1,"010010001001":9,"010010001010":7,"010010001100":2,"010010010001":2,"010010010010":1,"010010010100":5,"010010100001":3,"010010100010":7,"010011000001":11,"010011000010":13,"010011000100":5,"010100001001":12,"010100001010":1,"010100001100":7,"010100010001":20,"010100010010":9,"010100010100":12,"010100100001":23,"010100100010":12,"010100100100":12,"010101000001":11,"010101000010":6,"010101000100":7,"100010001001":10,"100010001010":13,"100010001100":9,"100010010001":2,"100010010010":5,"100010010100":2,"100010100001":25,"100010100010":14,"100010100100":1,"100011000001":5,"100011000010":4,"100011000100":2,"100100001001":12,"100100001010":3,"100100001100":10,"100100010001":5,"100100010100":8,"100100100001":3,"100100100010":8,"100100100100":7,"100101000001":14,"100101000010":1,"100101000100":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.32628242000646424}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.31534413295432717,"total_shots":512,"runtime_seconds":0.32653615801245905},"direct_metrics":{"exact_objective":4,"optimal_count":1,"combinations":72,"optimal_probability":0.04910718761669027,"feasible_probability":0.6392059614626379,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.20833333333333334,"shots_for_95_percent":60,"hit_curve":[{"shots":8,"quantum":0.3315752576951616,"uniform":0.10585733481633375},{"shots":16,"quantum":0.5532083638747104,"uniform":0.20050889429825008},{"shots":32,"quantum":0.8003772338884868,"uniform":0.3608139719037934},{"shots":64,"quantum":0.960150751249988,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9984120373740597,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999999999936414,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.551115123125783e-17,"independent_samples":[{"shots":8,"best_objective":16},{"shots":16,"best_objective":4},{"shots":32,"best_objective":4},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":72,"optimal_probability":0.0404322063234911,"feasible_probability":0.3153441329543272,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.20833333333333334,"shots_for_95_percent":73,"hit_curve":[{"shots":8,"quantum":0.2812045733282131,"uniform":0.10585733481633375},{"shots":16,"quantum":0.48333313459572375,"uniform":0.20050889429825008},{"shots":32,"quantum":0.7330553501933195,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9287405539395888,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9949220913471634,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999999993351257,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.8163916471489756e-17,"independent_samples":[{"shots":8,"best_objective":0},{"shots":16,"best_objective":12},{"shots":32,"best_objective":6},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.0404322063234911,"diagnostic_seconds":0.017392945010215044}
+{"instance":"n5-s2-r0.json","seed":8,"direct":{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":3,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":19,"reserved_end":21,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":4},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.0787537565085417,2.9211129769494617],"expected_energy":48.09168023336961,"initial_expected_energy":98.9207269351702,"history":[98.9207269351702,94.35435422733326,80.94330431586778,86.05382461736394,85.31132218164115,78.08921830115196,84.40820154756344,78.5743615020244,81.93932136635807,78.18161123939565,78.88231044598744,78.15071826620601,78.17833445026736,78.08731160156046,78.07614122219586,78.07743116995908,78.07786485376556,78.07615135614745,78.07642812493678,78.07562956223914,78.0748536981581,78.07458556825158,78.0775029291384,78.07353540109497,78.07190121250441,78.06968115824131,78.06809893618659,78.06601948001621,78.06390319788127,78.07951724990302,78.06819131304428,78.06498366494151,78.06384621421748,78.0641647215823,78.06385289209857,78.06383916459939,78.06386822296818,78.06383036648339,78.06381742980054,78.06380534405244,78.06379990424692,78.06378794028092,78.06377710461591,78.06375717372809,78.06373942752116,78.06371185173566,78.06372253063509,78.06374844891211,78.06371238876528,78.06370334825543,78.06370057656568,78.0636945163265,78.06368966746982,78.06368297090847,78.06367585032838,78.06367024183388,78.06376876922701,78.0636731173118,78.06367840789613,78.06367179733779,84.07612731786622,84.35596799204248,92.01934786901072,86.97459085986729,81.60918576219436,75.12962936089762,86.82839165708992,83.23953444628587,58.292718930495994,67.8309197353868,58.12304674940317,74.7499193732115,55.53669934025424,52.316366976915035,52.895971356032845,51.753727175613484,51.66934013240506,51.25672495748277,50.944208293116866,50.46061595361549,50.07461053922599,51.12980104963992,50.07906212873751,49.97741667582956,49.9335216699255,50.2370861019223,49.86408207628036,49.73495455539339,49.63014101520147,49.582578557494344,49.451613211137605,49.3513650743588,49.52315229583941,49.24665957752928,49.153812222450114,49.33934990253424,49.069723892787124,48.975162971617664,48.91689788501816,49.58554051642953,48.73883899805089,48.67113561930022,48.58702375932307,48.48926874109394,48.72384965913403,48.39706555921714,48.501434704926915,48.36273351707384,48.35381782279815,48.314618233667254,48.27152875762418,48.21077163996159,48.14113259842981,48.17248781867278,48.24640027756833,48.14337829311748,48.16434219074315,48.11499141997419,48.11410548927418,48.09168023336961],"feasible_probability":0.6419420712197104,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.607421875,"counts":{"0010100010011":21,"0010100010101":1,"0010100011001":11,"0010100100011":12,"0010100100101":12,"0010100101001":9,"0010101000011":19,"0010101000101":8,"0010101001001":8,"0010110000011":2,"0010110000101":1,"0011000010101":1,"0011000011001":1,"0011000100011":4,"0011000100101":2,"0011000101001":1,"0011001000011":1,"0011001001001":1,"0011010000011":1,"0011010000101":1,"0100100010011":30,"0100100010101":3,"0100100011001":24,"0100100100011":7,"0100100100101":3,"0100100101001":9,"0100101000011":29,"0100101000101":11,"0100101001001":5,"0100110000011":1,"0100110000101":7,"0100110001001":8,"0101000010011":30,"0101000010101":5,"0101000011001":11,"0101000100011":30,"0101000100101":17,"0101000101001":17,"0101001000011":25,"0101001000101":14,"0101001001001":2,"0101010000011":19,"0101010000101":14,"0101010001001":14,"1000100010011":2,"1000100011001":3,"1000101000011":5,"1000101000101":2,"1000101001001":5,"1000110000011":1,"1001000010011":5,"1001000010101":2,"1001000011001":4,"1001000100011":2,"1001000100101":5,"1001001000011":9,"1001001000101":6,"1001001001001":5,"1001010000011":1,"1001010000101":1,"1001010001001":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.37053798700799234},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":4,"removals":[],"infeasible_task":null,"component_qubits":[12],"max_component_qubits":12,"component_to_original":[[1,2,3,4,5,6,7,8,9,10,11,12]],"components":[{"qubits":12,"penalty":45,"objective_bound":44,"offset":180,"linear":[-45,-33,-40,-45,-37,-39,-37,-45,-33,-45,-33,-37],"quadratic":[[0,1,90],[0,2,90],[1,2,90],[1,3,45],[1,5,45],[2,5,45],[3,4,90],[3,5,90],[3,6,90],[4,5,90],[4,6,90],[4,7,45],[4,11,45],[5,6,90],[6,7,45],[6,9,45],[6,11,45],[7,8,90],[7,11,45],[8,9,45],[8,11,45],[9,10,90],[9,11,90],[10,11,90]],"domains":[[0,1,2],[3,4,5,6],[7,8],[9,10,11]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":12},{"index":2,"task":"t1","resource":"r0","start":4,"cost":5},{"index":3,"task":"t2","resource":"r2","start":8,"cost":0},{"index":4,"task":"t2","resource":"r0","start":12,"cost":8},{"index":5,"task":"t2","resource":"r0","start":6,"cost":6},{"index":6,"task":"t2","resource":"r2","start":14,"cost":8},{"index":7,"task":"t3","resource":"r0","start":13,"cost":0},{"index":8,"task":"t3","resource":"r2","start":19,"cost":12},{"index":9,"task":"t4","resource":"r1","start":16,"cost":0},{"index":10,"task":"t4","resource":"r0","start":22,"cost":12},{"index":11,"task":"t4","resource":"r0","start":14,"cost":8}],"conflicts":[{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":2,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":7,"reasons":["resource","precedence"]},{"i":4,"j":11,"reasons":["resource","group"]},{"i":6,"j":7,"reasons":["precedence"]},{"i":6,"j":9,"reasons":["group"]},{"i":6,"j":11,"reasons":["group"]},{"i":7,"j":11,"reasons":["resource","precedence"]},{"i":8,"j":9,"reasons":["precedence"]},{"i":8,"j":11,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":3,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":19,"reserved_end":21,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":4},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":8,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":16,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":16,"end":19,"reserved_end":21,"changed":false}],"bits":[1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":0},"seed":3257320810,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.0099026440796806,2.1118043796564114],"expected_energy":69.17953560939539,"initial_expected_energy":112.93997568141117,"history":[112.93997568141117,107.3128849633584,76.3545252326908,83.74473175900334,79.45611486851811,77.53325832206801,79.58454483717608,76.52680730481272,76.80496320110441,76.42059566752948,76.30975322572354,76.3731265564909,76.29809306919599,76.28009783539791,76.2569266586448,76.21109192782079,76.12314119736199,76.1056957435895,75.90105560715483,76.03248456937791,75.97783677550862,75.93503404304869,75.87123267995567,75.92980440148109,75.84504619747435,75.8209964269632,75.78331371740349,75.81496542741391,75.74186294461003,75.75915545648257,75.75506478418902,75.7215749724285,75.70753321267254,75.80059209551877,75.67375807976288,75.64460253211108,75.59450262556987,75.49429904693109,75.35698262895563,75.25615314948749,75.10971804868637,74.93726186709667,78.2415471719054,74.40575930860318,74.79590012248894,74.35018080929389,74.49377796312274,74.30737969625793,74.24450358985348,74.11487981882541,73.85561763031598,73.36116340611008,72.45399434269466,70.08781303755363,87.56113544389841,92.26609151580017,80.02327056747689,69.85433178246143,69.9306598140167,69.92416827947525,78.34823088348168,76.00554619976643,72.38443784248969,83.66654105501055,71.35794891806978,70.24171737039995,81.69701032692353,71.49769328411047,69.98088580843488,69.92084684942398,69.71810584501037,70.48606245678518,69.59102326238146,69.55605596611402,69.88115228655816,69.4984775878688,69.4905343147041,69.44478045328695,69.4211323500108,69.35431599175172,69.62315652727062,69.41778097996051,69.4023079616486,69.36353494622628,69.34320627387541,69.33325705596478,69.33444845021415,69.3286400055149,69.32558429573773,69.32630226265204,69.32279676989934,69.32037286361798,69.31696700810923,69.31884139416623,69.315828546585,69.31321597437045,69.30809791867017,69.29818446729624,69.28258378079477,69.26986350849093,69.22860327913942,69.37828334697248,69.29373670905483,69.25910775110408,69.23385774855207,69.22590039479866,69.21932716183089,69.2146742769742,69.22236075546887,69.2124511560632,69.20901230107667,69.2062727222147,69.21128514777253,69.20407664034228,69.20101357926427,69.19509510926333,69.18459421371459,69.17953560939539,69.19850753194231,69.24275469639127],"feasible_probability":0.3367488002859615,"one_hot_probability":1.0,"sampled_feasible_fraction":0.34375,"counts":{"001010001001":12,"001010001010":1,"001010001100":35,"001010010001":2,"001010010010":12,"001010010100":9,"001010100001":3,"001010100010":4,"001010100100":35,"001011000001":3,"001011000100":1,"001100001001":5,"001100001100":3,"001100010001":3,"001100010010":17,"001100010100":6,"001100100001":7,"001100100010":4,"001100100100":28,"001101000001":5,"001101000100":20,"010010001001":3,"010010001010":2,"010010001100":21,"010010010010":4,"010010100001":6,"010010100010":2,"010010100100":25,"010011000001":2,"010011000010":1,"010011000100":5,"010100001001":5,"010100001100":8,"010100010001":1,"010100010010":17,"010100010100":2,"010100100001":7,"010100100010":3,"010100100100":5,"010101000001":6,"010101000100":50,"100010001001":3,"100010010001":1,"100010010010":3,"100010100001":2,"100010100010":3,"100010100100":35,"100011000001":8,"100011000010":1,"100100001001":6,"100100001100":6,"100100010001":3,"100100010010":8,"100100010100":3,"100100100001":3,"100100100010":3,"100100100100":13,"100101000100":21},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.32186237299174536}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.3367488002859615,"total_shots":512,"runtime_seconds":0.3220979920006357},"direct_metrics":{"exact_objective":4,"optimal_count":1,"combinations":72,"optimal_probability":0.0498307743529569,"feasible_probability":0.6419420712197103,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.20833333333333334,"shots_for_95_percent":59,"hit_curve":[{"shots":8,"quantum":0.3356335664248917,"uniform":0.10585733481633375},{"shots":16,"quantum":0.5586172419386912,"uniform":0.20050889429825008},{"shots":32,"quantum":0.8051812608861922,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9620456588901061,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9985594679909138,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999999999956938,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.551115123125783e-17,"independent_samples":[{"shots":8,"best_objective":4},{"shots":16,"best_objective":9},{"shots":32,"best_objective":4},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":72,"optimal_probability":0.01883319904472401,"feasible_probability":0.33674880028596155,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.20833333333333334,"shots_for_95_percent":158,"hit_curve":[{"shots":8,"quantum":0.14109969106693182,"uniform":0.10585733481633375},{"shots":16,"quantum":0.2622902593146801,"uniform":0.20050889429825008},{"shots":32,"quantum":0.455784338497998,"uniform":0.3608139719037934},{"shots":64,"quantum":0.7038293137759384,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9122829246215685,"uniform":0.8330797244996347},{"shots":512,"quantum":0.999940797973523,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":6.938893903907228e-17,"independent_samples":[{"shots":8,"best_objective":5},{"shots":16,"best_objective":5},{"shots":32,"best_objective":17},{"shots":64,"best_objective":0},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.01883319904472401,"diagnostic_seconds":0.01636939799936954}
+{"instance":"n5-s2-r0.json","seed":9,"direct":{"status":"feasible","best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":3,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":19,"reserved_end":21,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":4},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.9896866160752027,2.115584821326429],"expected_energy":77.44047092533486,"initial_expected_energy":92.53729372082844,"history":[92.53729372082844,87.78440416711427,85.53436237167544,77.82972841420991,91.59026668293463,91.9120413472929,78.17529703796464,78.73184542033499,81.95031103625898,77.9258598159125,78.40021652205988,78.41470704528123,77.93377206294275,77.8440601092611,77.81632405229799,77.81677211917292,77.82429494801777,77.80235988052436,77.7822056215607,77.84427187380555,77.75836834604132,77.74052628972353,77.78223252834701,77.72257152217136,77.71049838132654,77.69696100649524,77.67345914349819,77.65657373262862,77.61686809760944,77.69580137430896,77.66623667945198,77.60372194833482,77.5989467512974,77.58041318362385,77.57496719928957,77.54988938816683,77.53324291966616,77.51668059153087,77.48700063125901,77.55147038525234,77.58080008170674,77.51349075730883,77.48365364626116,77.48928024652895,77.48147626249812,77.48903488700086,77.47729575827537,77.47757700598859,77.47685702029625,77.47519871381975,77.47247429021789,77.46865785836455,77.48320281125397,77.46542579081998,77.46342765994208,77.46058056260196,77.45560724387985,77.44674177322327,77.44047092533486,77.46577171185957,89.31985595492328,88.90009618709846,88.79412278997023,93.03009995283244,84.87965663627341,78.86398005958037,86.81537900330355,92.68951759113187,85.17797315357004,80.35336385059638,81.06492706919472,78.74910636038034,78.36946688558997,79.11224212248823,78.2848893506021,78.37967822253165,78.28374581711503,78.25853214766178,78.24155901899411,78.22510954142797,78.21190268800422,78.18265576920916,78.13407142395982,78.33895481840241,78.22944360733389,78.14847358913853,78.12965881212293,78.13342412570995,78.12267631602461,78.12109584575227,78.14309094251844,78.10887781072245,78.10434918970446,78.09583608471306,78.08376753193745,78.08720713659284,78.11007347247181,78.08327238827374,78.07654013497978,78.0722656893151,78.06933394304109,78.06516425966409,78.06919400571877,78.10653975203334,78.06532803872935,78.06583106976245,78.06940410849342,78.06400115413581,78.06372965526836,78.06397980151004,78.06376844806293,78.06371470054148,78.06379448578156,78.06369757221137,78.06368849450345,78.0637084757339,78.06368409008202,78.06368130624483,78.06367876650768,78.06368384862222],"feasible_probability":0.33143295994088307,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.31640625,"counts":{"0010100010011":3,"0010100010101":3,"0010100011001":35,"0010100100011":2,"0010100100101":15,"0010100101001":5,"0010101000011":7,"0010101000101":2,"0010101001001":33,"0010110000011":2,"0010110000101":1,"0010110001001":6,"0011000010011":5,"0011000011001":4,"0011000100011":4,"0011000100101":20,"0011000101001":3,"0011001000011":6,"0011001000101":2,"0011001001001":30,"0011010000011":5,"0011010001001":21,"0100100010011":9,"0100100010101":1,"0100100011001":14,"0100100100011":1,"0100100100101":2,"0100101000011":2,"0100101000101":3,"0100101001001":22,"0100110000011":2,"0100110001001":9,"0101000010011":5,"0101000011001":6,"0101000100011":2,"0101000100101":17,"0101000101001":2,"0101001000011":6,"0101001000101":3,"0101001001001":6,"0101010000011":11,"0101010000101":3,"0101010001001":40,"1000100010101":1,"1000100100011":1,"1000100100101":6,"1000100101001":1,"1000101000011":7,"1000101000101":5,"1000101001001":42,"1000110000011":6,"1001000010011":11,"1001000010101":2,"1001000011001":5,"1001000100101":8,"1001000101001":2,"1001001000011":1,"1001001000101":1,"1001001001001":6,"1001010000011":2,"1001010001001":25},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.37521917700360063},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":4,"removals":[],"infeasible_task":null,"component_qubits":[12],"max_component_qubits":12,"component_to_original":[[1,2,3,4,5,6,7,8,9,10,11,12]],"components":[{"qubits":12,"penalty":45,"objective_bound":44,"offset":180,"linear":[-45,-33,-40,-45,-37,-39,-37,-45,-33,-45,-33,-37],"quadratic":[[0,1,90],[0,2,90],[1,2,90],[1,3,45],[1,5,45],[2,5,45],[3,4,90],[3,5,90],[3,6,90],[4,5,90],[4,6,90],[4,7,45],[4,11,45],[5,6,90],[6,7,45],[6,9,45],[6,11,45],[7,8,90],[7,11,45],[8,9,45],[8,11,45],[9,10,90],[9,11,90],[10,11,90]],"domains":[[0,1,2],[3,4,5,6],[7,8],[9,10,11]],"pruned":[],"variables":[{"index":0,"task":"t1","resource":"r1","start":3,"cost":0},{"index":1,"task":"t1","resource":"r1","start":9,"cost":12},{"index":2,"task":"t1","resource":"r0","start":4,"cost":5},{"index":3,"task":"t2","resource":"r2","start":8,"cost":0},{"index":4,"task":"t2","resource":"r0","start":12,"cost":8},{"index":5,"task":"t2","resource":"r0","start":6,"cost":6},{"index":6,"task":"t2","resource":"r2","start":14,"cost":8},{"index":7,"task":"t3","resource":"r0","start":13,"cost":0},{"index":8,"task":"t3","resource":"r2","start":19,"cost":12},{"index":9,"task":"t4","resource":"r1","start":16,"cost":0},{"index":10,"task":"t4","resource":"r0","start":22,"cost":12},{"index":11,"task":"t4","resource":"r0","start":14,"cost":8}],"conflicts":[{"i":1,"j":3,"reasons":["precedence"]},{"i":1,"j":5,"reasons":["precedence"]},{"i":2,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":7,"reasons":["resource","precedence"]},{"i":4,"j":11,"reasons":["resource","group"]},{"i":6,"j":7,"reasons":["precedence"]},{"i":6,"j":9,"reasons":["group"]},{"i":6,"j":11,"reasons":["group"]},{"i":7,"j":11,"reasons":["resource","precedence"]},{"i":8,"j":9,"reasons":["precedence"]},{"i":8,"j":11,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":4,"raw_cost":4,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":1,"end":3,"reserved_end":5,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":8,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":16,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":16,"end":19,"reserved_end":21,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":4},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t1","group":"g1","resource":"r1","start":3,"end":6,"reserved_end":8,"changed":false},{"variable":3,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":13,"changed":false},{"variable":7,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":16,"changed":false},{"variable":9,"task":"t4","group":"g0","resource":"r1","start":16,"end":19,"reserved_end":21,"changed":false}],"bits":[1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":0},"seed":747784396,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.123790837344906,2.1043088499803058],"expected_energy":69.19368399420449,"initial_expected_energy":72.85731304255035,"history":[72.85731304255035,73.64047344558483,75.35743061693944,86.49132780723056,85.95295153118161,70.72421218680432,75.78126801765283,70.83236102642768,70.58156808035983,70.74344564916989,70.89174054821902,70.62622760957343,70.46903171686165,70.44375238127905,70.38877290514952,70.3523616719186,70.42453068603659,70.34078561931238,70.32232103518737,70.30439564988185,70.2951062925577,70.25356065014074,70.22770728373791,70.19718156489282,70.14721278969255,70.27750205107743,70.23281089951932,70.15644100823167,70.1429366037918,70.15774182133305,70.13136730601347,70.12296083201741,70.10564217464035,70.07903762450437,70.27889014088555,70.18066033008789,70.09792786382062,70.0768938686626,70.0853610225825,70.07579989859971,70.08976534952004,70.07255693120493,70.0708169558862,70.06889250837492,70.0660498673082,70.0733085804761,70.07426270575242,70.06516855663658,70.06541243015403,70.06468217120943,70.06443036530398,70.0653297445031,70.06422234766926,70.06383353180418,70.063257609051,70.06336089111844,70.06304310861464,70.06285401813992,70.0625642044554,70.06317554022908,77.773618789408,75.78337885934705,82.097119928219,76.6729228389301,72.88285798704904,79.83740804472875,72.65792599781022,77.0083599772037,72.62219144027725,71.62040553056525,71.3806726607695,71.1112768849509,71.18127064566329,71.05351968049095,71.27234032967087,71.01456374659901,70.9474024397236,70.82639317639334,70.68256498910415,70.52166182856503,70.57240777310058,70.85161178323085,70.43688413796295,70.41663057156042,70.4935732851548,70.40423022618488,70.38190324453282,70.34056049740485,70.27382488617808,70.53465147639237,70.21649221670005,70.16380906247724,70.24125885822062,70.109007152148,70.07651893770058,70.0357654271034,69.96092434684324,69.93548205242135,69.78740041041831,70.1631804346436,69.72677794966356,69.70393204182507,69.93295764117714,69.64942606198363,69.62745772501596,69.59816645063391,69.55260400188317,69.8901327461639,69.54451742843736,69.50904168954334,69.44310222641573,69.35116930227672,69.33100895132478,69.32678810088849,69.24208824236149,69.21997327335762,69.19368399420449,69.22563281223707,69.40098772492765,69.20564366639402],"feasible_probability":0.34589750260056923,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.349609375,"counts":{"001010001001":6,"001010001010":4,"001010001100":41,"001010010010":16,"001010010100":6,"001010100001":4,"001010100010":2,"001010100100":30,"001011000001":10,"001011000010":2,"001011000100":3,"001100001001":1,"001100001100":6,"001100010010":16,"001100010100":6,"001100100001":4,"001100100010":1,"001100100100":25,"001101000001":13,"001101000100":12,"010010001001":6,"010010001010":1,"010010001100":24,"010010010001":1,"010010100001":4,"010010100010":3,"010010100100":17,"010011000001":1,"010011000010":1,"010011000100":9,"010100001001":3,"010100001010":1,"010100001100":8,"010100010001":4,"010100010010":16,"010100010100":3,"010100100001":13,"010100100010":2,"010100100100":1,"010101000001":6,"010101000010":1,"010101000100":40,"100010001001":1,"100010001010":1,"100010001100":1,"100010010001":2,"100010010010":7,"100010010100":2,"100010100001":5,"100010100010":6,"100010100100":38,"100011000001":7,"100011000010":2,"100011000100":3,"100100001001":10,"100100001010":1,"100100001100":6,"100100010001":2,"100100010010":4,"100100010100":5,"100100100001":1,"100100100010":1,"100100100100":9,"100101000001":1,"100101000100":24},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3472582800022792}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.34589750260056923,"total_shots":512,"runtime_seconds":0.34757664799690247},"direct_metrics":{"exact_objective":4,"optimal_count":1,"combinations":72,"optimal_probability":0.020385645151303897,"feasible_probability":0.33143295994088307,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.20833333333333334,"shots_for_95_percent":146,"hit_curve":[{"shots":8,"quantum":0.1519115986974303,"uniform":0.10585733481633375},{"shots":16,"quantum":0.2807460635760515,"uniform":0.20050889429825008},{"shots":32,"quantum":0.4826737749386546,"uniform":0.3608139719037934},{"shots":64,"quantum":0.7323735768637782,"uniform":0.5914412214865954},{"shots":128,"quantum":0.928376097639312,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999736832704248,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":7.632783294297951e-17,"independent_samples":[{"shots":8,"best_objective":36},{"shots":16,"best_objective":4},{"shots":32,"best_objective":9},{"shots":64,"best_objective":4},{"shots":128,"best_objective":4},{"shots":512,"best_objective":4}]},"component_metrics":[{"exact_objective":0,"optimal_count":1,"combinations":72,"optimal_probability":0.017055076964774228,"feasible_probability":0.34589750260056923,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.20833333333333334,"shots_for_95_percent":175,"hit_curve":[{"shots":8,"quantum":0.12856806579782526,"uniform":0.10585733481633375},{"shots":16,"quantum":0.2406063840526566,"uniform":0.20050889429825008},{"shots":32,"quantum":0.4233213360584187,"uniform":0.3608139719037934},{"shots":64,"quantum":0.6674417185545528,"uniform":0.5914412214865954},{"shots":128,"quantum":0.8894049894420507,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9998503963678483,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.163336342344337e-17,"independent_samples":[{"shots":8,"best_objective":17},{"shots":16,"best_objective":5},{"shots":32,"best_objective":5},{"shots":64,"best_objective":5},{"shots":128,"best_objective":0},{"shots":512,"best_objective":0}]}],"reduced_single_joint_draw_p_opt":0.017055076964774228,"diagnostic_seconds":0.016507212989381514}
+{"instance":"n5-s2-r1.json","seed":0,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":6,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["precedence"]}],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":4,"end":5,"reserved_end":6,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":12,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":17,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":17,"end":18,"reserved_end":20,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":43},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.9578544589531304,1.059127345232196],"expected_energy":71.73379282523632,"initial_expected_energy":75.15858506116463,"history":[75.15858506116463,74.02469307778,85.01710159610334,93.81539246601074,78.95947713514786,79.09083340762652,73.90948693627158,73.09247072794253,73.2386657491895,73.08988030557373,73.23344599290672,73.08932483105887,73.04758361725482,72.9929074446073,72.9656551358747,72.97586727936925,72.95797554237265,72.95665297484493,72.97738832779945,72.94274928839272,72.93461899360776,72.92533543693575,72.91054314850234,72.92185462420044,72.89963834595576,72.93495276491538,72.88777130299985,72.87728214792904,72.85914887624365,72.84637537002635,72.79794303206586,72.85005864348851,72.78394176445866,72.82376171816503,72.77128311285998,72.75979438897274,72.7400966890356,72.73121133227157,72.66914402540195,72.71643133655508,72.65734670775414,72.70285745513706,72.64248118710893,72.62888641087484,72.60235588647015,72.54840805156309,72.43529579778115,72.33831816027612,72.37778761171242,72.41541550745968,72.33366446250199,72.49173672681536,72.33502677785485,72.29208575072185,72.27311728353715,72.23796186554964,72.20448858134401,72.13512985325829,71.99452807417143,71.73379282523632,101.4584120779204,95.00786587074982,79.36201028064487,81.26236589549009,77.7154010812548,79.06343953314921,77.07497637459801,75.92053453600057,75.0071687249725,74.7592413413924,76.48647173083685,74.63848805562738,74.73416007186103,75.05098870370885,74.57230693984339,74.70274023029424,74.55069641169328,74.5184292405086,74.53506126038593,74.50929060808585,74.4951299038725,74.48794465717857,74.52941124900391,74.48791010387407,74.46921325773468,74.43917937701036,74.3811551561074,74.34049081106215,74.23720797006416,74.38047192370152,74.19555777008253,74.29882845938133,74.18967941679485,74.16131029416262,74.1441963984361,74.11989525520035,74.09708125329946,74.08776384522398,74.02539303077077,74.03960804300998,74.01642043895575,74.05058879502218,74.00232664436334,73.99009810010236,73.96761721811625,73.92354383695667,73.85427028640197,74.13074989990865,74.23529709862287,73.83163100262419,73.84518121574203,73.82629937231151,73.87190664690115,73.80776336422065,73.79585209566133,73.78742129601386,73.79352694149924,73.78287107402332,73.7796354427365,73.78125814667531],"feasible_probability":0.0,"one_hot_probability":0.9999999999999997,"sampled_feasible_fraction":0.0,"counts":{"0010100010011":3,"0010100010101":1,"0010100011001":1,"0010100100011":25,"0010100100101":5,"0010100101001":12,"0010101000011":3,"0010101001001":2,"0010110000011":49,"0010110000101":11,"0010110001001":39,"0011000010011":32,"0011000010101":9,"0011000011001":17,"0011000100011":24,"0011000101001":10,"0011001000011":7,"0011001000101":1,"0011001001001":5,"0011010000011":11,"0011010000101":1,"0011010001001":5,"0100100010011":8,"0100100010101":6,"0100100011001":6,"0100100100011":30,"0100100100101":1,"0100100101001":11,"0100101000011":12,"0100101000101":1,"0100101001001":5,"0100110000011":2,"0100110000101":1,"0100110001001":1,"0101000010011":17,"0101000010101":1,"0101000011001":8,"0101000100011":3,"0101000100101":2,"0101000101001":5,"0101001000011":12,"0101001000101":1,"0101001001001":1,"0101010000011":1,"0101010001001":2,"1000100011001":1,"1000100100011":5,"1000100100101":1,"1000100101001":5,"1000101000011":7,"1000101000101":1,"1000101001001":1,"1000110000011":26,"1000110000101":2,"1000110001001":20,"1001000010011":5,"1001000010101":1,"1001000011001":2,"1001000100011":15,"1001000100101":3,"1001000101001":7},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3767576620011823},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0,2],"fixed_cost":16,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":2,"reasons":["precedence"]},{"variable":5,"forced_by":2,"reasons":["precedence"]},{"variable":6,"forced_by":2,"reasons":["resource"]},{"variable":7,"forced_by":2,"reasons":["precedence"]}],"infeasible_task":"t2","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.518999776337296e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":72,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.85722573273506e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.009366308004246093}
+{"instance":"n5-s2-r1.json","seed":1,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":6,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["precedence"]}],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":4,"end":5,"reserved_end":6,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":12,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":17,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":17,"end":18,"reserved_end":20,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":43},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.110764659258773,1.0684748635201669],"expected_energy":73.60516804179528,"initial_expected_energy":93.98575656278916,"history":[93.98575656278916,92.55956451968746,75.12123200234329,82.76061241204971,76.1293499204414,76.59906452284511,75.01375206443777,75.30879338942044,75.43117885934733,74.53912301154864,74.64355632811346,74.60061408624064,74.56717027083495,74.49537426286429,74.46201712075866,74.38512411147735,74.24253504962356,74.46454440945114,74.56516079764572,74.29421009166867,74.22821407449986,74.24401263991184,74.22419266072646,74.21094557872696,74.18670935639078,74.1760064593314,74.11006466276342,74.11153646539103,74.09918117904323,74.10784402131578,74.1076676747029,74.08644493193533,74.08063462570696,74.12131459551397,74.0659790794681,74.05255010672775,74.02791609005489,73.98218471340098,73.90806358395587,73.90182642224802,73.72842443659829,74.72252706978792,73.91528530392236,73.71348730986293,73.83136210866836,73.69835989186001,73.69357430740351,73.741810421796,73.68017863135815,73.67186660954481,73.66470373365668,73.6726538713431,73.65890101893375,73.6508081820884,73.63482703724259,73.60516804179528,73.67305137231446,73.63188716493158,73.62230183262615,73.61133279394366,81.4719256698332,77.07848441215936,81.26935274521655,88.34390885895625,80.21910501139989,78.20884415688133,76.47117154163345,75.52601986395483,75.27858616907515,75.5773897186268,75.5977536554847,75.36435488506523,75.24075303637197,75.17046184754768,75.07938008247031,74.98847606132361,74.90090697697809,74.72363537154928,74.44438985102397,77.0663319964683,76.2369508607058,74.50018601132919,74.43018522839562,74.60242033281622,74.36652018301905,74.3368776701493,74.30109210391646,74.27338803480181,74.20982372723122,74.12344137482354,74.73073537188242,74.06939758455417,74.09050414485182,74.08963967266939,74.04869654339788,74.08438529789595,74.03935593810888,74.0255806805392,74.02711744443772,74.01277410122506,74.00074134516316,73.97795368700437,73.933550762155,73.87177612898526,73.86623675140937,73.77855141065396,73.77773046942423,73.69310102002352,73.77789233929579,73.7782894595639,73.7036154103569,73.6944662162073,73.68664694137149,73.68148655902465,73.68014618565095,73.73928852084335,73.6622920727849,73.65169190234778,73.64523324971653,73.65446382348463],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"0010100010011":28,"0010100010101":2,"0010100011001":18,"0010100100011":32,"0010100100101":8,"0010100101001":21,"0010101000011":13,"0010101000101":4,"0010101001001":6,"0010110000011":21,"0010110000101":7,"0010110001001":2,"0011000010011":14,"0011000011001":5,"0011000100011":30,"0011000100101":5,"0011000101001":14,"0011001000011":10,"0011001000101":4,"0011001001001":4,"0011010000011":4,"0011010001001":7,"0100100010011":3,"0100100010101":1,"0100100011001":3,"0100100100011":7,"0100100101001":4,"0100101000011":9,"0100101000101":2,"0100101001001":5,"0100110000011":11,"0100110000101":2,"0100110001001":7,"0101000010011":21,"0101000010101":4,"0101000011001":22,"0101000100011":4,"0101000100101":1,"0101000101001":1,"0101001000011":13,"0101001000101":3,"0101001001001":3,"0101010000011":16,"0101010000101":2,"0101010001001":5,"1000100010011":4,"1000100011001":3,"1000100100011":7,"1000100100101":1,"1000100101001":4,"1000101001001":1,"1000110000011":19,"1000110000101":7,"1000110001001":16,"1001000100011":15,"1001000100101":2,"1001000101001":4,"1001001000011":4,"1001001001001":1,"1001010000011":4,"1001010000101":1,"1001010001001":11},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3681453280005371},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0,2],"fixed_cost":16,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":2,"reasons":["precedence"]},{"variable":5,"forced_by":2,"reasons":["precedence"]},{"variable":6,"forced_by":2,"reasons":["resource"]},{"variable":7,"forced_by":2,"reasons":["precedence"]}],"infeasible_task":"t2","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":8.916600199881941e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":72,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.249000902703301e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.009702099996502511}
+{"instance":"n5-s2-r1.json","seed":2,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":6,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["precedence"]}],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":4,"end":5,"reserved_end":6,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":12,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":17,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":17,"end":18,"reserved_end":20,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":43},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.121155993301989,2.894547199403595],"expected_energy":64.23311688138409,"initial_expected_energy":94.21477832947994,"history":[94.21477832947994,94.02705117698954,75.09045516252593,85.39472382324014,78.50967507327029,77.58782968923349,73.2133130351054,76.4248860094619,73.16982817814328,74.11587176471946,73.2220627348818,73.30267132805122,73.08621189651114,73.06362718187219,73.04533133675294,73.0702031839918,73.03683069280603,73.030602851747,73.03851772228744,73.02602800034312,73.02161277504328,73.01273623174525,72.99596670824623,72.97575306257092,72.92745443115452,72.97103687075094,72.98288952403169,72.91913755783678,72.94430469553274,72.91641918702551,72.90692750761994,72.88948176138261,72.88905426090085,72.84498407815185,72.84917709692456,72.8461717481719,72.85314178713905,72.8341039669278,72.8306488781281,72.84538856815615,72.82444774077831,72.81858991877729,72.8072921633175,72.78530147197709,72.73991005897368,72.64902358629486,72.45787735148414,72.09727908160517,70.38295470656422,95.45130027838789,82.18095021557596,71.102953190579,73.50199990257563,70.98427146426391,70.26235740286128,70.47698476576983,70.17465286091834,70.08119893967982,70.08414530523467,70.00189412030181,84.82118396753785,88.22339174308594,81.99467818347253,70.16008090005785,82.75033163907707,88.5988416015937,76.38370620424656,67.94370865303438,64.51268395766886,66.02328226462443,64.54993615067255,65.23702222111766,64.46468258670461,64.28040411915725,64.69902980080899,65.17335378264941,64.30404935680887,64.28429732679778,64.338168875403,64.26462558838568,64.26094770308511,64.26920093972468,64.25616920809249,64.25693310004155,64.25354031617621,64.25344613131146,64.25526490538259,64.25355325043957,64.25276808045308,64.25162093734605,64.25104018532004,64.24906995013887,64.24729872993693,64.24452649747242,64.24441864151824,64.23902454510716,64.2399512651612,64.2426039451427,64.23994181035764,64.23842128307656,64.23982807478598,64.23845858375108,64.23792737961088,64.23762055919127,64.23816352401339,64.237361626746,64.23712333668284,64.23667684009223,64.23594254306363,64.23502682908952,64.23392667424825,64.23429833033781,64.23885973723804,64.23383652459474,64.23379547883147,64.23361516254589,64.23327900312201,64.23311688138409,64.2362521415495,64.23413216342256],"feasible_probability":0.0,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.0,"counts":{"0010100010011":13,"0010100010101":15,"0010100011001":10,"0010100100011":22,"0010100100101":25,"0010100101001":8,"0010101000011":3,"0010101000101":1,"0010110000011":14,"0010110000101":18,"0010110001001":8,"0011000010011":15,"0011000010101":11,"0011000011001":3,"0011000100011":1,"0011000100101":1,"0011001000011":1,"0011010000011":11,"0011010000101":15,"0011010001001":12,"0100100010011":15,"0100100010101":20,"0100100011001":11,"0100100100011":17,"0100100100101":18,"0100100101001":15,"0100101000011":1,"0100101000101":1,"0100110000011":8,"0100110000101":6,"0100110001001":6,"0101000010011":19,"0101000010101":16,"0101000011001":11,"0101000100011":4,"0101000100101":5,"0101000101001":5,"0101001000101":1,"0101001001001":1,"0101010000011":22,"0101010000101":15,"0101010001001":14,"1000100100011":2,"1000100100101":1,"1000100101001":3,"1000101000011":3,"1000101001001":2,"1000110000011":1,"1001000010011":13,"1001000010101":13,"1001000011001":10,"1001000100011":3,"1001000100101":5,"1001001000011":3,"1001010000011":6,"1001010000101":6,"1001010001001":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3926307369983988},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0,2],"fixed_cost":16,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":2,"reasons":["precedence"]},{"variable":5,"forced_by":2,"reasons":["precedence"]},{"variable":6,"forced_by":2,"reasons":["resource"]},{"variable":7,"forced_by":2,"reasons":["precedence"]}],"infeasible_task":"t2","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":5.309900734573603e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":72,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.551115123125783e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.010058237996418029}
+{"instance":"n5-s2-r1.json","seed":3,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":6,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["precedence"]}],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":4,"end":5,"reserved_end":6,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":12,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":17,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":17,"end":18,"reserved_end":20,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":43},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.578821533799873,2.6179678987503254],"expected_energy":71.12310121663647,"initial_expected_energy":83.4685387381897,"history":[83.4685387381897,76.92937042192288,87.89402103134046,84.13942597371073,78.58388431351095,76.69110455747732,78.59457050385302,76.47204813183691,76.20571382913755,75.99353559754732,76.08615957857131,75.89484011220658,75.89275927155019,75.96893882540583,75.89711051007045,75.86349079406568,75.8114428489596,75.75650747733566,75.6692509478924,75.58616304368499,75.42129637692078,75.10567924072177,75.1578807811025,75.54429113598337,75.04491921244994,75.29502618422764,74.98914289441574,74.92376758744653,74.83329801930297,75.19823193863088,74.74496163801014,74.70698920627459,74.63214652104568,74.50992864617218,74.27931065081472,73.92144861184661,79.15265797735009,78.15057135975432,74.5508364529819,73.90441313824043,74.43782914351668,73.85403382378182,73.8453756374192,73.81894728406265,73.77340976606715,73.6985314621347,73.76972984834963,73.94915270055115,73.68355362067172,73.7815560166611,73.67997514307113,73.66519635521043,73.64465809982795,73.76166944440604,73.62454389116907,73.62541693248284,73.63352898219112,73.62187749690327,73.62059375914528,73.62268130146302,94.57014722113547,95.16342265706446,78.9047612691651,79.35371849822815,79.90971172922518,82.27814680751638,74.30687097421472,73.37663123295529,73.67889516839702,73.62180709470327,73.28510711819914,73.67278149576916,73.18243532794978,73.35714824698266,73.12400388384329,73.12928786050414,73.14224096108843,73.10568226300303,73.11538194142855,73.11285520627067,73.09429025003459,73.08388862721785,73.11495618836427,73.06934058275145,73.05553178696121,73.02856050496334,72.97513924765636,72.86645980964683,72.74083307320804,72.66043073860739,72.47663811179021,71.80882611988697,75.21485876443731,76.16460057725627,72.10548925765222,71.76112891990084,72.21375349837795,71.68402850620161,71.60692900554622,71.56384154928475,71.66625981040285,71.5364967401871,71.51350125263426,71.55008146534641,71.49474775139615,71.46880988189437,71.41898552849291,71.34418417222676,71.97483121004073,71.40155029627444,71.33437523336092,71.48444934681042,71.2902440407117,71.27336921946807,71.24991365479795,71.23089695353485,71.1921180637867,71.12310121663647,71.58388804609837,71.24960683923534],"feasible_probability":0.0,"one_hot_probability":1.0000000000000004,"sampled_feasible_fraction":0.0,"counts":{"0010100010011":5,"0010100010101":1,"0010100100011":21,"0010100100101":11,"0010101000011":16,"0010101000101":15,"0010110000011":47,"0010110000101":31,"0011000010011":28,"0011000010101":25,"0011000100011":1,"0011000100101":1,"0011001000011":12,"0011001000101":20,"0011010000011":14,"0011010000101":16,"0100100010011":1,"0100100010101":2,"0100100100011":11,"0100100100101":17,"0100101000011":11,"0100101000101":5,"0100110000011":26,"0100110000101":11,"0101000010011":7,"0101000010101":3,"0101000100011":4,"0101000100101":6,"0101010000011":30,"0101010000101":9,"1000100010011":5,"1000100010101":4,"1000100100011":13,"1000100100101":7,"1000101000011":1,"1000101000101":4,"1000110000011":11,"1000110000101":10,"1001000010011":15,"1001000010101":11,"1001000100011":2,"1001000100101":1,"1001001000011":10,"1001001000101":4,"1001010000011":4,"1001010000101":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.40486334399611223},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0,2],"fixed_cost":16,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":2,"reasons":["precedence"]},{"variable":5,"forced_by":2,"reasons":["precedence"]},{"variable":6,"forced_by":2,"reasons":["resource"]},{"variable":7,"forced_by":2,"reasons":["precedence"]}],"infeasible_task":"t2","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.8909991164691746e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":72,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.551115123125783e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.00957434400334023}
+{"instance":"n5-s2-r1.json","seed":4,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":6,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["precedence"]}],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":4,"end":5,"reserved_end":6,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":12,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":17,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":17,"end":18,"reserved_end":20,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":43},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.863079555465523,2.607469813919818],"expected_energy":70.7113315551251,"initial_expected_energy":84.59417578307925,"history":[84.59417578307925,84.90039996833244,77.4303586772121,90.66014136721583,74.81054750273583,75.92674585166911,76.63913325100026,74.99341405493495,74.73688652241464,75.05616229691763,74.69692021023175,74.6186812825044,74.46723303231337,74.22252511429531,78.46295428805271,75.0759879522473,74.86647504698183,74.17492069830814,74.12879858714142,74.11607576035391,74.36465832789631,74.05790861440508,74.03750213828437,74.01168042920932,73.98571618861118,74.09938861460547,73.94259055678367,73.93396356772304,73.90116163810971,73.86069498480141,73.80463824336705,73.7852992250904,73.79472976864439,73.96917859244054,73.82276192705068,73.72597402256001,73.704906630886,73.74840367064782,73.6954316373032,73.68738567187535,73.67133539392245,73.64034171437739,73.64366659886932,73.66737240348324,73.63584706264253,73.67077832081162,73.62591604499008,73.62042282081686,73.61203469957513,73.59625871677714,73.56565093718478,73.50690748898568,73.40954409003108,74.34550493746598,74.96240970434137,73.55129969188674,73.40479824048202,73.58051375712631,73.37461350857168,73.37941035358311,73.28569642818067,71.54331979417964,83.27690074877961,100.18037585701134,76.9794305508949,76.659135035807,71.40130546842184,70.98793382562589,71.40884882488274,71.03725992802082,71.00064728083174,70.98459013085599,70.9718989144101,70.95354615169573,70.93220242743192,70.90923192509315,70.89924762498988,71.06889043482884,70.870913620456,70.8767209394618,70.868679679538,70.87298079927865,70.87327217852895,70.86441359909503,70.87303723344449,70.86085353924031,70.85757078473847,70.8522647870221,70.84108772834065,70.82209761418561,71.02601365629225,70.84843163219745,70.81964924068312,70.86836333138756,70.80856566230736,70.80582621838204,70.79929647328187,70.79340141314835,70.7835976742363,70.77730548349392,70.75361371508792,70.94716301613688,70.7890157170718,70.79000550325982,70.74923554396932,70.74481349361055,70.74187642905665,70.75185315977433,70.73870169074269,70.73659321081063,70.73408100750653,70.7291883106732,70.72085622431328,70.7447315656832,70.75123125650451,70.71794808291942,70.71486929963694,70.71784342795613,70.71163050543565,70.7113315551251],"feasible_probability":0.0,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.0,"counts":{"0010100010011":4,"0010100010101":4,"0010100100011":29,"0010100100101":16,"0010101000011":17,"0010101000101":14,"0010110000011":28,"0010110000101":34,"0011000010011":32,"0011000010101":16,"0011000011001":1,"0011000100011":7,"0011000100101":2,"0011001000011":17,"0011001000101":16,"0011010000011":23,"0011010000101":8,"0100100010011":6,"0100100010101":3,"0100100100011":7,"0100100100101":6,"0100101000011":8,"0100101000101":8,"0100110000011":38,"0100110000101":28,"0101000010011":9,"0101000010101":8,"0101000100011":6,"0101000100101":4,"0101010000011":20,"0101010000101":12,"1000100010011":2,"1000100010101":3,"1000100100011":13,"1000100100101":7,"1000101000011":5,"1000110000011":5,"1000110000101":4,"1001000010011":12,"1001000010101":12,"1001000100011":2,"1001001000011":3,"1001001000101":3,"1001010000011":7,"1001010000101":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3926858810009435},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0,2],"fixed_cost":16,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":2,"reasons":["precedence"]},{"variable":5,"forced_by":2,"reasons":["precedence"]},{"variable":6,"forced_by":2,"reasons":["resource"]},{"variable":7,"forced_by":2,"reasons":["precedence"]}],"infeasible_task":"t2","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.704098682850599e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":72,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.85722573273506e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.009336230999906547}
+{"instance":"n5-s2-r1.json","seed":5,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":6,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["precedence"]}],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":4,"end":5,"reserved_end":6,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":12,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":17,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":17,"end":18,"reserved_end":20,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":43},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.1434074300355455,2.8940781788487833],"expected_energy":64.24021731954606,"initial_expected_energy":82.99729474714746,"history":[82.99729474714746,82.90672021475027,68.48443219342688,109.50838821691954,70.47237734385818,67.92983379457138,67.10451121382671,68.91567689423279,66.59072215680487,66.27453991471037,65.84495379517068,65.15858842525114,66.78076753241339,66.56892520800123,65.26033539358951,65.08081336142537,65.51177594570429,65.24386187431392,65.05166688840107,64.9740161252961,64.93299016853324,64.78207685608746,64.68069396279265,64.57395060787111,64.40937341070344,66.25363944191542,64.74263821373977,64.38296048194782,64.60064942146354,64.3614066757304,64.34523435165023,64.39474460817227,64.32887555978387,64.31858200584706,64.30939701741454,64.31052513681678,64.30404456088412,64.30600653049397,64.30986659660806,64.29692797574293,64.29756277096978,64.30180173997553,64.29731609931537,64.29466747163552,64.29036255095129,64.28228240068282,64.27703220806812,64.26175187769219,64.2654519702537,64.26004578365783,64.27249414648796,64.25815785544904,64.25501777209745,64.24982975869513,64.24231547584434,64.24783191639413,64.24791873930533,64.24350151524068,64.24180769900586,64.24021731954606,84.82023554870105,91.28125381129655,84.24039322881048,81.31190106534986,81.13030711309365,87.61835039541491,64.53116503869208,83.38124286483654,70.12028028806284,87.16765137604779,64.94053278872258,66.6328937087075,65.46884614355034,64.62035560153828,64.57314056176884,64.61066620258731,64.43398642745402,64.41953965459298,64.47365888169915,64.42366246109098,64.4027535757563,64.39275594974784,64.4406188260028,64.3743756029264,64.37022001177145,64.35705977434664,64.34547319152189,64.33208354504403,64.30966031222907,64.30535907595898,64.3648960528143,64.29013538404706,64.28245833860485,64.27576628623999,64.28389181590951,64.27201331474994,64.26523683338957,64.25383946166767,64.25854617483031,64.2623948259242,64.25789534789321,64.25710882219049,64.25341993605977,64.25198449930693,64.25049760668672,64.25200046566754,64.24927524969186,64.24871349093067,64.24992400363024,64.24848732427597,64.24803161849685,64.2471543025539,64.24550598976677,64.24302428483848,64.24311395692939,64.24513450908917,64.24216318676852,64.24202628571763,64.24287597242348,64.24211935249457],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"0010100010011":28,"0010100010101":26,"0010100011001":10,"0010100100011":14,"0010100100101":16,"0010100101001":15,"0010101000011":1,"0010101000101":1,"0010101001001":2,"0010110000011":21,"0010110000101":7,"0010110001001":7,"0011000010011":3,"0011000010101":10,"0011000011001":6,"0011000100011":4,"0011000100101":1,"0011000101001":1,"0011001000101":1,"0011001001001":1,"0011010000011":14,"0011010000101":7,"0011010001001":10,"0100100010011":19,"0100100010101":17,"0100100011001":10,"0100100100011":25,"0100100100101":15,"0100100101001":11,"0100101000101":1,"0100101001001":2,"0100110000011":9,"0100110000101":9,"0100110001001":5,"0101000010011":18,"0101000010101":14,"0101000011001":11,"0101000100011":2,"0101000100101":5,"0101000101001":2,"0101001000011":3,"0101001000101":3,"0101001001001":1,"0101010000011":21,"0101010000101":20,"0101010001001":11,"1000101000011":1,"1000101000101":3,"1000101001001":3,"1001000010011":18,"1001000010101":15,"1001000011001":5,"1001000100011":1,"1001000100101":2,"1001000101001":4,"1001001000011":3,"1001001000101":1,"1001001001001":1,"1001010000011":3,"1001010000101":8,"1001010001001":4},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.37662398400425445},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0,2],"fixed_cost":16,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":2,"reasons":["precedence"]},{"variable":5,"forced_by":2,"reasons":["precedence"]},{"variable":6,"forced_by":2,"reasons":["resource"]},{"variable":7,"forced_by":2,"reasons":["precedence"]}],"infeasible_task":"t2","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":5.1647002692334354e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":72,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.469446951953614e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.0091063470026711}
+{"instance":"n5-s2-r1.json","seed":6,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":6,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["precedence"]}],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":4,"end":5,"reserved_end":6,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":12,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":17,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":17,"end":18,"reserved_end":20,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":43},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.7868781524447948,1.0667100064366075],"expected_energy":72.31062658852855,"initial_expected_energy":89.12211757594879,"history":[89.12211757594879,89.90463067750385,75.16108411660456,85.82004047681195,78.35093425564298,75.49918393183964,75.78669040307807,75.31525748013603,75.2076420689568,75.25045026992785,75.18971109179587,75.10499705456007,75.02590495388846,74.93086166463723,74.75345220898177,74.42910356959433,77.1006232365198,75.58492821771416,74.78549500470191,74.39086570918411,74.46086596630012,74.37526256799366,74.33249699351057,74.27439177413054,74.2012333201925,74.0830647971847,73.97304427707846,74.20375227266867,74.81813021879873,73.8441519601013,73.88718085428782,73.83724674000429,73.88625171686074,73.83169373261349,73.82193978186666,73.8045010444157,73.82844568748567,73.7981609991648,73.7760659031133,73.73987567581861,73.67172375881293,73.7884907912431,73.87906228998101,73.65998269121957,73.78254729884705,73.64678776360664,73.64248550439726,73.69252671996061,73.62899845758734,73.62133768671025,73.6147342772928,73.62380594878647,73.60910257161432,73.60160618682607,73.58741326636218,73.57145914695893,73.55553687188524,73.56675720031924,73.60193109700809,73.55366192644931,92.65097480446913,90.88717528291811,83.41311323156152,80.47394534999256,82.56510130574587,85.79453991518102,73.58130708877115,93.28777088896969,76.59190841723583,74.6796910993604,73.12985154253522,75.8308933723136,73.05232417444134,73.4915022186642,73.26994329289414,73.15381538476692,73.05405950084005,73.04649334504026,73.04879147830003,73.05136685772705,73.04034839964588,73.04103591810839,73.0454777591224,73.04063920423934,73.03799344895997,73.03352299251122,73.02492480204876,73.0178437002421,72.99669000620875,72.99096722345584,72.96746551295534,72.96888670429531,72.96957385201445,72.96248722510828,72.96426619454479,72.96548795235437,72.95763238621473,72.95267770958381,72.96234030064542,72.94743424355802,72.94244302126769,72.93259871651038,72.91277972312423,72.87247480837874,72.80348815179403,72.84448192897625,73.19194485782614,72.79297855877613,72.76921301265945,72.71471157812786,72.60230654473379,72.43210555115095,72.68709992243365,74.13147498038441,72.44069459814833,72.42322592446453,72.46809185275838,72.38585092972201,72.33672549975765,72.31062658852855],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"0010100010011":6,"0010100010101":3,"0010100011001":1,"0010100100011":28,"0010100100101":4,"0010100101001":9,"0010101000011":3,"0010101001001":2,"0010110000011":52,"0010110000101":10,"0010110001001":29,"0011000010011":28,"0011000010101":7,"0011000011001":20,"0011000100011":21,"0011000100101":6,"0011000101001":17,"0011001000011":8,"0011001000101":2,"0011001001001":4,"0011010000011":7,"0011010000101":2,"0011010001001":3,"0100100010011":6,"0100100010101":2,"0100100011001":5,"0100100100011":18,"0100100100101":6,"0100100101001":14,"0100101000011":14,"0100101000101":5,"0100101001001":6,"0100110000011":3,"0100110001001":1,"0101000010011":15,"0101000010101":5,"0101000011001":7,"0101000100011":3,"0101000101001":3,"0101001000011":15,"0101001000101":2,"0101001001001":5,"0101010000011":2,"0101010001001":1,"1000100010011":1,"1000100100011":4,"1000100100101":1,"1000100101001":1,"1000101000011":7,"1000101000101":1,"1000101001001":6,"1000110000011":36,"1000110000101":4,"1000110001001":11,"1001000010011":4,"1001000011001":3,"1001000100011":13,"1001000100101":2,"1001000101001":5,"1001001000011":2,"1001010000011":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.36359458600054495},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0,2],"fixed_cost":16,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":2,"reasons":["precedence"]},{"variable":5,"forced_by":2,"reasons":["precedence"]},{"variable":6,"forced_by":2,"reasons":["resource"]},{"variable":7,"forced_by":2,"reasons":["precedence"]}],"infeasible_task":"t2","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.8008994781412184e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":72,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.942890293094024e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.013715799999772571}
+{"instance":"n5-s2-r1.json","seed":7,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":6,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["precedence"]}],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":4,"end":5,"reserved_end":6,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":12,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":17,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":17,"end":18,"reserved_end":20,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":43},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.1257810906734662,2.894034494450925],"expected_energy":64.23351246956457,"initial_expected_energy":90.44149581935483,"history":[90.44149581935483,86.98913664567114,88.33201870710775,83.35615845108649,78.96686944724769,107.04850122548365,80.50970353050273,70.44157593757237,92.46077536175584,81.8030614114355,70.34593509027265,72.59281129618736,70.3127319197038,69.57897550958143,70.57122946405958,69.51729681437838,69.62291095277266,69.51259453208577,69.49435242445342,69.48509154744747,69.50594269033967,69.47705729802229,69.46938758577829,69.45422888761667,69.42372383152022,69.36104653639345,69.27236262254857,69.23182055525353,68.99569258290276,69.58894748906305,69.64259772383025,69.0622085182598,68.9828649589699,69.03818640731524,68.96471304607101,68.94929116955781,68.97101872865535,68.93454841359478,68.91608770965826,68.8795449558758,68.81079788992723,68.98576022981996,68.83065145066966,68.84560241644607,68.77606555450855,68.75192317723315,68.8185588562169,68.72665212603044,68.70871103496944,68.6888155025675,68.65217008465348,68.67417835024725,68.63364375309588,68.70366327830212,68.62229306323448,68.60415945818848,68.5852509829156,68.5741726622537,68.51969353498231,68.49773153502134,69.59739929888596,73.0086457494943,93.13061921559057,88.10213937785538,71.61451504860617,71.24079475239654,69.90225882665811,69.18502688348225,68.73382635342827,68.55774930729623,67.31446620670624,66.97831060888198,65.9160368874362,68.1008821712806,66.8244996509475,65.740520837073,66.09329840295372,65.61194997769174,66.0941022783688,65.39317511198558,65.24285202462595,65.0894161100781,64.88110742206186,64.73232667370996,64.54700303137932,64.52344583407326,65.59778347819604,64.541265469723,64.27902108509126,64.29524702604203,64.29450791108142,64.29239250549769,64.25931513802146,64.2502736073109,64.24425392857187,64.27272264921803,64.24001874908319,64.24264080376506,64.24524568991981,64.2397756635604,64.24094323895127,64.23984692240404,64.23937615177967,64.2388135818203,64.23972804122654,64.23830995745443,64.2378413857096,64.23692741671826,64.23605579531967,64.23539996789275,64.23497958010114,64.24096935753268,64.23374309029457,64.23420914342643,64.23368793756953,64.23410293520396,64.23359967603804,64.23355588020274,64.23369256077707,64.23351246956457],"feasible_probability":0.0,"one_hot_probability":0.9999999999999996,"sampled_feasible_fraction":0.0,"counts":{"0010100010011":19,"0010100010101":12,"0010100011001":9,"0010100100011":18,"0010100100101":19,"0010100101001":10,"0010101000011":3,"0010101000101":2,"0010101001001":1,"0010110000011":15,"0010110000101":4,"0010110001001":7,"0011000010011":11,"0011000010101":17,"0011000011001":7,"0011000100011":8,"0011000100101":1,"0011000101001":1,"0011001000011":2,"0011001000101":1,"0011001001001":1,"0011010000011":13,"0011010000101":16,"0011010001001":7,"0100100010011":30,"0100100010101":23,"0100100011001":4,"0100100100011":18,"0100100100101":19,"0100100101001":6,"0100110000011":8,"0100110000101":12,"0100110001001":6,"0101000010011":22,"0101000010101":8,"0101000011001":14,"0101000100011":7,"0101000100101":1,"0101000101001":2,"0101001000011":5,"0101001000101":2,"0101010000011":27,"0101010000101":19,"0101010001001":12,"1000100100101":2,"1000100101001":1,"1000101000011":2,"1000101000101":4,"1000101001001":1,"1001000010011":9,"1001000010101":8,"1001000011001":3,"1001000100011":4,"1001000100101":3,"1001000101001":2,"1001001000011":5,"1001001000101":4,"1001001001001":1,"1001010000011":7,"1001010000101":4,"1001010001001":3},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3939209030068014},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0,2],"fixed_cost":16,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":2,"reasons":["precedence"]},{"variable":5,"forced_by":2,"reasons":["precedence"]},{"variable":6,"forced_by":2,"reasons":["resource"]},{"variable":7,"forced_by":2,"reasons":["precedence"]}],"infeasible_task":"t2","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.7061999794095755e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":72,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.469446951953614e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.009284236992243677}
+{"instance":"n5-s2-r1.json","seed":8,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":6,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["precedence"]}],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":4,"end":5,"reserved_end":6,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":12,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":17,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":17,"end":18,"reserved_end":20,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":43},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.1272916903510022,2.893641392879153],"expected_energy":64.23380212130044,"initial_expected_energy":84.78641985596427,"history":[84.78641985596427,80.99506538255599,79.8027449126732,84.68880456866277,82.05890917098208,80.41445537065819,80.45617823292909,78.68961194875051,77.26414485424618,77.23817929697215,76.92718777032732,76.67022122931458,76.39011766055737,77.82335834524375,75.93695235614527,75.80951761000154,75.58045594673534,75.38272919210056,75.34490460238256,74.9316048169728,75.56739592996863,75.19448111398417,74.8359885335638,75.11607201411093,74.80125895846444,74.6950813473194,74.61980639896551,74.43179711121677,74.73843443213879,74.62661102851139,74.49843948231111,74.45576157242687,74.4135069945723,74.46410355001272,74.40540909875787,74.39058868528778,74.3636620380192,74.32731175321493,74.38816365481179,74.30639982519733,74.28653097963118,74.31541727768598,74.2797223988899,74.26705531833129,74.25667402167409,74.22464391159149,74.18546231684783,74.12807537967802,74.04744567705959,74.0014442375394,73.96769346736643,73.81312407062197,73.98974920717936,75.62159870224637,73.70946172717707,73.65502259886087,73.68506270271419,73.68902477125914,73.61231059828549,73.60841415515137,86.72185345136688,89.13746800417508,78.96132756723688,65.01090568009982,84.09702858879594,67.36479342949562,88.18965113569575,65.56425115046984,65.11532860060916,66.04156474102041,64.52292550910681,65.01789088359774,64.43728350203313,64.52444598637929,64.42085640837615,64.45074825757578,64.41671134536954,64.40268490186556,64.38016018830055,64.46002929064595,64.36593346322611,64.34242300796868,64.30311508941556,64.34112234244208,64.33434913364633,64.319576188006,64.31442116520915,64.29441414619374,64.30006114520542,64.28619518562554,64.28199361456073,64.27350791485364,64.26610447955309,64.25452484726655,64.25350551275355,64.24420241088711,64.24407044259247,64.23946022906793,64.2377698294824,64.23882422115499,64.2485863085942,64.24041434183616,64.2358550711788,64.2366042549087,64.23882097156078,64.23516533090385,64.23523065500333,64.23524213625086,64.2350415994331,64.2348524589686,64.23496195294008,64.23456278955844,64.23445315262113,64.23502462880947,64.23428588496982,64.23416324588779,64.23395677520418,64.2343853572582,64.23394479249758,64.23380212130044],"feasible_probability":0.0,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.0,"counts":{"0010100010011":16,"0010100010101":12,"0010100011001":6,"0010100100011":25,"0010100100101":24,"0010100101001":11,"0010101000011":1,"0010101000101":1,"0010101001001":1,"0010110000011":18,"0010110000101":12,"0010110001001":2,"0011000010011":6,"0011000010101":13,"0011000011001":7,"0011000100011":3,"0011000100101":1,"0011001000011":1,"0011001000101":1,"0011001001001":3,"0011010000011":18,"0011010000101":16,"0011010001001":8,"0100100010011":14,"0100100010101":18,"0100100011001":13,"0100100100011":16,"0100100100101":10,"0100100101001":10,"0100101000011":2,"0100110000011":11,"0100110000101":3,"0100110001001":5,"0101000010011":23,"0101000010101":16,"0101000011001":11,"0101000100011":3,"0101000100101":6,"0101000101001":2,"0101001000101":3,"0101001001001":1,"0101010000011":23,"0101010000101":28,"0101010001001":9,"1000100010101":1,"1000100011001":1,"1000100100011":2,"1000100100101":1,"1000101000011":3,"1000101000101":1,"1001000010011":12,"1001000010101":10,"1001000011001":10,"1001000100011":6,"1001000100101":3,"1001000101001":2,"1001001000011":4,"1001001000101":3,"1001001001001":2,"1001010000011":6,"1001010000101":11,"1001010001001":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3741558659967268},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0,2],"fixed_cost":16,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":2,"reasons":["precedence"]},{"variable":5,"forced_by":2,"reasons":["precedence"]},{"variable":6,"forced_by":2,"reasons":["resource"]},{"variable":7,"forced_by":2,"reasons":["precedence"]}],"infeasible_task":"t2","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":5.093400250189006e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":72,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":3.469446951953614e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.009080465009901673}
+{"instance":"n5-s2-r1.json","seed":9,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":6,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["precedence"]}],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r2","start":4,"end":5,"reserved_end":6,"changed":true},{"variable":1,"task":"t1","group":"g1","resource":"r1","start":4,"end":5,"reserved_end":7,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":8,"end":11,"reserved_end":12,"changed":false},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":13,"end":15,"reserved_end":17,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":17,"end":18,"reserved_end":20,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":43},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[3.5059328800097616,1.065020708490792],"expected_energy":73.00120687481756,"initial_expected_energy":93.61248126753787,"history":[93.61248126753787,88.4610054031315,85.3451884839961,89.22709746194762,88.5997907378426,86.80742589237019,84.67378803597447,83.27986130465847,81.47392378678188,81.24243548960835,82.90395626030241,80.7609988895533,80.46368896166567,80.24947990002934,80.35320187236974,80.27822997764264,80.2725514101019,80.23229801907803,80.28497723970834,80.22196215224338,80.20298297117628,80.18467698198526,80.16418715715155,80.12947611535316,80.09825658158931,80.04393642292982,79.97110114833269,79.91867068677821,79.86003429906356,79.87545535695327,80.1419063035991,79.92907059296958,79.85745712584209,79.87971523422019,79.8578001472271,79.85780171889675,79.85785803653016,79.85700003169761,79.85711752126909,79.85711933842978,79.85679836325758,79.8565153088077,79.85687155697664,79.856107422355,79.85571196299449,79.8554000791041,79.85450243848405,79.85424529343963,79.853471602102,79.85327444305909,79.85264373913697,79.8526812180493,79.85257104014693,79.85286577029973,79.85264937524107,79.85245806952594,79.85250772137286,79.8523464718491,79.8522468874542,79.85214195379038,82.52718838659311,82.20596787908656,81.80572953212916,82.93399780863092,81.46313819920765,81.75972252544943,79.67671561481,75.69813632249799,76.35388885153232,74.40412118811285,73.73870419011578,74.64708676138699,73.59416230768717,73.84924764985635,73.67275846155314,73.75097246895162,73.58326667124908,73.59122238613675,73.58765234855345,73.57561154223748,73.5723652318733,73.58566126556742,73.5636421212665,73.5568838170929,73.54140625749645,73.51151158283594,73.4557301187622,73.45285729044981,73.36828877092628,73.84933701726702,73.33689731376731,73.33316960059643,73.32587573237593,73.33057587833088,73.338341348441,73.30773725247172,73.30009754108681,73.32756582415715,73.29288585581452,73.28864136251408,73.29904924657072,73.2797388505291,73.27606635250652,73.26819047171307,73.26144821665318,73.24668513732637,73.21835597331317,73.15744459027974,73.1423618187526,73.54324040197208,73.85233593849195,73.14797168488444,73.02400340903367,73.06843214009032,73.04142896080162,73.02936822499342,73.01514623965599,73.00789636127021,73.02321436927335,73.00120687481756],"feasible_probability":0.0,"one_hot_probability":0.9999999999999998,"sampled_feasible_fraction":0.0,"counts":{"0010100010011":4,"0010100010101":3,"0010100011001":9,"0010100100011":35,"0010100100101":5,"0010100101001":21,"0010101000011":4,"0010101001001":2,"0010110000011":36,"0010110000101":11,"0010110001001":19,"0011000010011":20,"0011000010101":6,"0011000011001":12,"0011000100011":38,"0011000100101":7,"0011000101001":18,"0011001000011":7,"0011001000101":4,"0011010000011":7,"0011010000101":1,"0011010001001":4,"0100100010011":5,"0100100011001":2,"0100100100011":19,"0100100100101":2,"0100100101001":14,"0100101000011":8,"0100101001001":9,"0100110000011":3,"0100110001001":2,"0101000010011":20,"0101000010101":5,"0101000011001":4,"0101000100011":5,"0101001000011":11,"0101001000101":2,"0101001001001":4,"0101010000011":9,"0101010001001":3,"1000100010011":2,"1000100010101":1,"1000100011001":4,"1000100100011":3,"1000100100101":1,"1000101000011":3,"1000101000101":1,"1000101001001":1,"1000110000011":28,"1000110000101":7,"1000110001001":20,"1001000011001":1,"1001000100011":19,"1001000100101":5,"1001000101001":8,"1001001000011":1,"1001001001001":1,"1001010000011":2,"1001010001001":4},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.38243440599762835},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0,2],"fixed_cost":16,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["resource","precedence"]},{"variable":4,"forced_by":2,"reasons":["precedence"]},{"variable":5,"forced_by":2,"reasons":["precedence"]},{"variable":6,"forced_by":2,"reasons":["resource"]},{"variable":7,"forced_by":2,"reasons":["precedence"]}],"infeasible_task":"t2","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.974700277671218e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":72,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.551115123125783e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.009430757010704838}
+{"instance":"n5-s2-r2.json","seed":0,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":8,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["precedence"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":2,"end":3,"reserved_end":4,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":8,"reserved_end":9,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":10,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":47},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.408917922360291,1.1206000742698237],"expected_energy":134.9132460669884,"initial_expected_energy":147.58610358943073,"history":[147.58610358943073,145.17517763548204,149.84824057971332,161.10024351752486,143.29378574943397,147.93935595916693,144.00532191334764,143.57497074438348,143.09712187828762,142.89368930841147,143.07145317385016,142.68333768525036,142.606805018516,142.31916790446297,141.99343912804682,141.29097040676388,140.47754482260723,138.54559407073282,154.48548978396437,142.16431241387556,140.77893803617397,138.37395845684537,138.61981215715892,138.4653225291645,138.5757086285038,138.38993246505692,138.28937859893495,138.12956017916918,137.82948874337546,137.56948353663412,137.70344521153933,138.37272208176142,137.71061778762532,137.35444797333776,137.29104725065753,137.54727432336628,137.22853268865137,137.1800468056101,137.09671340975922,137.00885074320516,136.95422224482644,136.82518067757803,136.9242887388642,137.6170961594931,136.82983497755487,136.83205037044254,136.82814593553556,136.83853430088107,136.8066608312755,136.79878253195446,136.79656603115242,136.80898025907427,136.79322421481973,136.79086776326199,136.78864456891154,136.78658933480898,136.7821777910287,136.78209370672258,136.77856421612623,136.7773257272754,150.18687165731933,157.00328144198437,149.21785928284928,142.01283333236364,146.53194345060197,149.20458250243064,144.0069085601129,145.37913350322285,138.1603815944194,139.16427431164215,138.532011569657,137.90692022963282,139.14498643716746,136.98751301202654,136.51437812896685,135.93748548700066,135.5154054438618,135.3515393081574,135.0283648517768,135.02982642288032,135.51820854054495,135.02401268340216,134.96744187007982,134.92449424558936,134.9157231830669,135.03236682700765,134.9422999714843,134.9217443189695,134.91715325671703,134.9160097851491,134.915929494031,134.91525800240288,134.91526171179703,134.9153847171036,134.91503776498476,134.91472888818183,134.91488686517795,134.9152583852096,134.91476225484527,134.91451536382706,134.91415881373302,134.91365116121898,134.9134832647427,134.91327738526752,134.9134101679052,134.91359341809124,134.91327318714102,134.91325782441658,134.91333961713025,134.9132501560691,134.91325309980346,134.91324867640162,134.91324703210915,134.91324762486647,134.9132464332988,134.9132460669884,134.9132466854102,134.91324617211833,134.91324608888416,134.9132460895975],"feasible_probability":0.0,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.0,"counts":{"0010100010011":26,"0010100010101":6,"0010100011001":37,"0010100100011":18,"0010100100101":2,"0010100101001":34,"0010101000011":5,"0010101000101":1,"0010101001001":14,"0010110000011":2,"0010110000101":1,"0010110001001":17,"0011000011001":3,"0011000100011":4,"0011000100101":1,"0011000101001":8,"0011001000011":11,"0011001000101":1,"0011001001001":10,"0011010000011":1,"0011010001001":2,"0100100010011":9,"0100100010101":1,"0100100011001":11,"0100100100011":12,"0100100100101":3,"0100100101001":17,"0100101000011":5,"0100101000101":2,"0100101001001":12,"0100110000011":3,"0100110000101":2,"0100110001001":4,"0101000010011":5,"0101000011001":8,"0101000100011":22,"0101000100101":6,"0101000101001":48,"0101001000011":14,"0101001000101":4,"0101001001001":19,"0101010000011":1,"0101010001001":3,"1000100010011":17,"1000100010101":5,"1000100011001":20,"1000100100011":7,"1000100100101":1,"1000100101001":8,"1000101001001":2,"1000110000011":2,"1000110000101":1,"1000110001001":6,"1001000011001":1,"1001000100011":8,"1001000100101":2,"1001000101001":7,"1001001000011":1,"1001001001001":1,"1001010000011":3,"1001010001001":5},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.41187214499223046},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["resource"]},{"variable":12,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.820899630431086e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":72,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":9.71445146547012e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.01038439899275545}
+{"instance":"n5-s2-r2.json","seed":1,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":8,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["precedence"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":2,"end":3,"reserved_end":4,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":8,"reserved_end":9,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":10,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":47},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4089818265564273,1.1206116550939542],"expected_energy":134.91324600422686,"initial_expected_energy":153.87671097441665,"history":[153.87671097441665,155.67206042597806,144.86936352039726,152.27879919997517,145.69593120823993,146.0561789159721,144.6855629433139,145.7061187599931,144.73093430126687,143.84197500858596,143.1306849657982,145.64408520816613,142.259012359167,141.42327783275664,139.75519451811516,136.94136348607222,136.90241528195983,137.60361046649467,137.79695797729534,136.18740089544033,136.94931669767473,135.1160013950388,134.96527909212597,135.0117493441703,135.71911953238586,134.92750248591562,134.9831334707642,134.93188004157676,134.91628631477846,134.9147026907423,134.91458322534723,134.92417766520768,134.9132594152498,134.91416888733818,134.91327266181463,134.91362807043532,134.91326552122274,134.913294082371,134.91326259262974,134.91326507303518,134.91325237386818,134.91325132667583,134.91325567633956,134.91324990749996,134.9132492092876,134.91325155998425,134.91324765842785,134.91324729891465,134.91324648351792,134.91324621934885,134.91324627250444,134.91324692983397,134.91324626791018,134.91324636771432,134.91324618064178,134.91324611139,134.91324606741773,134.91324607565093,143.6069126044759,147.56981576098386,151.49026667973908,159.7042391428993,143.67677377224953,143.18590054832669,142.82056261411725,145.6766138917684,141.79557924140641,140.11131980352923,139.40948471376421,141.32137988602508,139.40831360185973,138.51529517665384,137.20803232362678,135.3023949267183,135.92003703137834,137.64990805887913,135.52602010631415,135.2795863513399,135.07634327872736,135.04135517243677,135.9870309948286,135.0250695238663,135.3447506999232,135.05677513509792,135.08900866783534,134.9412560174182,134.91704012930091,134.93566528347174,134.91565938177501,134.92187915299687,134.91660916705268,134.91677446237074,134.9160958331874,134.91495644112757,134.9144397986263,134.9139510143548,134.9134176473013,134.91340710561087,134.91411632410188,134.91342915468704,134.9132822195867,134.91324973606618,134.9132474367333,134.91329997884114,134.91325634452147,134.91325193747105,134.9132478227853,134.9132470792924,134.91324645804164,134.9132463418097,134.91324835118508,134.91324648055064,134.91324619942404,134.9132466588894,134.91324645599238,134.9132463034522,134.9132460502039,134.91324600422686],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"0010100010011":34,"0010100010101":3,"0010100011001":46,"0010100100011":22,"0010100100101":2,"0010100101001":13,"0010101000011":11,"0010101000101":1,"0010101001001":6,"0010110000011":11,"0010110000101":1,"0010110001001":6,"0011000010101":1,"0011000011001":2,"0011000100011":6,"0011000100101":1,"0011000101001":7,"0011001000011":13,"0011001001001":7,"0011010001001":1,"0100100010011":13,"0100100010101":1,"0100100011001":13,"0100100100011":7,"0100100100101":3,"0100100101001":16,"0100101000011":9,"0100101000101":1,"0100101001001":7,"0100110000011":3,"0100110000101":1,"0100110001001":1,"0101000010011":6,"0101000011001":11,"0101000100011":29,"0101000100101":7,"0101000101001":43,"0101001000011":19,"0101001000101":1,"0101001001001":19,"0101010000011":5,"0101010001001":8,"1000100010011":14,"1000100010101":2,"1000100011001":16,"1000100100011":8,"1000100100101":2,"1000100101001":7,"1000101001001":2,"1000110000011":5,"1000110000101":1,"1000110001001":10,"1001000010011":1,"1001000100011":7,"1001000101001":9,"1001001000011":2,"1001010000011":5,"1001010001001":4},"circuit_evaluations":118,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":58},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.40364874000079},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["resource"]},{"variable":12,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.573700425680727e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":72,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":7.632783294297951e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.009144409996224567}
+{"instance":"n5-s2-r2.json","seed":2,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":8,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["precedence"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":2,"end":3,"reserved_end":4,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":8,"reserved_end":9,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":10,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":47},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.368233873715596,1.0784550998220621],"expected_energy":137.4576964796751,"initial_expected_energy":158.67810678307464,"history":[158.67810678307464,160.53250510333768,148.34185930893813,150.85547459849616,150.42531734294587,149.72740350578997,146.21653225269677,147.062030868977,146.2830151917593,146.52910273052163,145.77069340553106,145.69770872624062,146.21458948017155,145.31232033310198,144.66155641590768,143.65744538974315,145.9175716856513,145.71494386294222,144.0576853654277,143.63314621893204,144.05578109102237,143.35685165445705,143.19652857373984,142.98857237851388,142.55973387884904,141.45129554609605,152.57326144404308,144.10726220709174,142.03686648277687,141.310933362399,141.45595463245456,141.06581183548246,141.09490574014998,141.27950099999867,141.08113169478685,140.97155366088052,140.795007732126,140.4442302915666,139.90009364951865,141.6151752590142,141.71536586071917,139.6779868656523,139.44397173539596,139.19727088905893,139.54438381035698,138.97878535897604,138.8517932159098,138.66491433667113,138.32239733646267,137.72536790276854,139.7597420616199,139.60725674978707,137.99521908062786,137.67618999398263,137.8543352423016,137.61368241261175,137.5615904905,137.65316839836458,137.51601138969187,137.4576964796751,145.16046738186657,152.57170415938344,153.4821202880633,152.73982701534618,144.09775127332006,146.98768393403196,144.49887874954283,146.45887335735296,143.36782420497167,142.4723525536621,142.38733620269196,142.577829476577,142.4318253533937,142.42182470592178,142.34943199401692,142.34592913080957,142.33620305081683,142.32997974037323,142.3262195391258,142.3264099251951,142.32660445604586,142.32796792787815,142.32635794588893,142.32550031769526,142.32427770370214,142.32394607330528,142.32263598902892,142.32631648335607,142.32229773142762,142.32231114198171,142.32238010923913,142.3221928742248,142.3221682890779,142.32223445569704,142.32213641645285,142.32214438010934,142.32212518889767,142.32213547393638,142.32212869692108,142.32212117948552,142.32212582541683,142.32211773783752,142.32211457205983,142.32210954975181,142.32210282279462,142.32209580919562,142.32209363497583,142.32210196625988,142.32209877836445,142.32209350391446,142.3220934439962,142.3220937302479,142.32209357059793,142.32209348331483,142.32209350085753,142.3220933530493,142.32209327010332,142.32209331090075,142.322093261968,142.32209325859463],"feasible_probability":0.0,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.0,"counts":{"0010100010011":4,"0010100011001":6,"0010100100011":49,"0010100100101":9,"0010100101001":24,"0010101000011":43,"0010101000101":14,"0010101001001":37,"0010110000011":6,"0011000010011":10,"0011000010101":1,"0011000011001":5,"0011000100011":12,"0011000100101":2,"0011000101001":6,"0011001000011":1,"0011001001001":1,"0011010000011":7,"0011010001001":6,"0100100010011":11,"0100100010101":1,"0100100011001":10,"0100100100011":19,"0100100100101":7,"0100100101001":19,"0100101000011":23,"0100101000101":2,"0100101001001":22,"0100110000011":1,"0100110001001":3,"0101000010011":6,"0101000010101":1,"0101000011001":4,"0101000100011":5,"0101000100101":1,"0101000101001":4,"0101001000011":18,"0101001000101":4,"0101001001001":16,"0101010001001":2,"1000100010011":14,"1000100010101":2,"1000100011001":6,"1000100100011":3,"1000100100101":1,"1000100101001":3,"1000101000011":2,"1000101001001":9,"1000110000011":3,"1000110001001":5,"1001000010011":8,"1001000010101":3,"1001000011001":3,"1001000100011":3,"1001000100101":1,"1001000101001":5,"1001001000011":7,"1001001000101":3,"1001001001001":8,"1001010000011":1},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.41127545401104726},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["resource"]},{"variable":12,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.882100620307028e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":72,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":9.020562075079397e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.010508642008062452}
+{"instance":"n5-s2-r2.json","seed":3,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":8,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["precedence"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":2,"end":3,"reserved_end":4,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":8,"reserved_end":9,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":10,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":47},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4089215132211756,1.1206140179240056],"expected_energy":134.91324605365702,"initial_expected_energy":137.79640718403675,"history":[137.79640718403675,145.5891351245984,153.8032628552294,156.64070126976355,147.6040756525403,137.09458323454004,135.985704836478,136.59449950246733,135.3116764050739,135.60729288848788,135.49306933745783,135.35791753603212,135.55366490387973,135.25492898534102,135.25271724895754,135.29093100877006,135.2565684113962,135.21791402475097,135.16275814141687,135.18451979838113,135.1219840022642,135.10043727324404,135.14219966731554,135.08670997804452,135.06163287602953,135.02205179402281,134.96270542562215,134.98120774071234,134.95930567521677,134.98029083940645,134.94493060487233,134.9345272356951,134.9219574633343,134.91952167447528,134.91441581718018,134.9241088549231,134.9214483359616,134.91357588799679,134.91455386742666,134.91335223053775,134.9133024366971,134.91332716513875,134.91335763528025,134.9132589727465,134.9133145173301,134.91325105727714,134.91325395259688,134.91325017672523,134.9132498569079,134.91324833667417,134.91324725621246,134.91324649056207,134.9132472246483,134.91324824772306,134.91324660207763,134.91324610488596,134.91324611333988,134.91324610216182,134.91324622603707,134.91324605365702,155.23740675196922,155.48497946002755,151.20455017685563,150.38404013599546,150.68642974027466,159.13964840854095,150.3348707548851,149.21215923008538,146.7705640460081,145.78351591694036,155.17489400007233,141.05153280526486,153.11411901034606,144.71813085065398,141.47138537575083,144.0592283593871,140.66965016186555,140.57143172947056,140.89729117608843,140.52216497232502,141.41256748928708,140.3353658851867,140.3456500388117,140.3321848462779,140.3843672408122,140.32272401210156,140.3090460909636,140.29836184251997,140.28651420876116,140.2791655909634,140.28748190148224,140.28200909544225,140.27914528121562,140.28028999090458,140.2792134697114,140.27876368633727,140.2782248522825,140.2786897086597,140.2778370126973,140.27756442283464,140.27765112159398,140.27741316151065,140.27733675650913,140.27743013353194,140.27721239184044,140.2771020830019,140.27694572279984,140.2767902531114,140.27668580340568,140.27676872283814,140.2766960130698,140.2767064911017,140.27668867909216,140.27667606808376,140.27666039523123,140.27669735891848,140.2766523721257,140.27663835713835,140.27662081624007,140.27664285026032],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"0010100010011":22,"0010100011001":30,"0010100100011":13,"0010100100101":4,"0010100101001":35,"0010101000011":8,"0010101000101":1,"0010101001001":6,"0010110000011":7,"0010110000101":2,"0010110001001":5,"0011000010011":2,"0011000010101":1,"0011000011001":3,"0011000100011":5,"0011000100101":1,"0011000101001":9,"0011001000011":5,"0011001000101":4,"0011001001001":11,"0011010001001":2,"0100100010011":9,"0100100010101":2,"0100100011001":9,"0100100100011":9,"0100100100101":4,"0100100101001":20,"0100101000011":14,"0100101000101":2,"0100101001001":10,"0100110000011":3,"0100110001001":3,"0101000010011":6,"0101000011001":7,"0101000100011":23,"0101000100101":5,"0101000101001":55,"0101001000011":15,"0101001000101":4,"0101001001001":27,"0101010000011":3,"0101010001001":6,"1000100010011":13,"1000100010101":2,"1000100011001":25,"1000100100011":11,"1000100100101":1,"1000100101001":8,"1000101000011":1,"1000101001001":1,"1000110000011":7,"1000110000101":1,"1000110001001":7,"1001000010011":2,"1001000100011":7,"1001000101001":5,"1001001000011":1,"1001001001001":3,"1001010000011":2,"1001010000101":1,"1001010001001":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.45856798900058493},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["resource"]},{"variable":12,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":6.70589943183586e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":72,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.85722573273506e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.011472334008431062}
+{"instance":"n5-s2-r2.json","seed":4,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":8,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["precedence"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":2,"end":3,"reserved_end":4,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":8,"reserved_end":9,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":10,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":47},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.589158788350419,1.0898921402384951],"expected_energy":136.80267799822644,"initial_expected_energy":153.59700357327299,"history":[153.59700357327299,154.06550351064533,147.01283333982244,153.69902556281397,147.01629174291128,146.29987102211334,146.25470550298934,145.8934468565286,145.149740471724,144.19899911088723,143.24347768886201,143.07773110924572,140.9383376380245,147.4097227619287,140.51571822997298,141.2445546294767,140.4125960328688,139.91412961073982,139.90259348508516,139.20170720300027,139.0745938305399,138.44128231632266,138.01101397602588,137.33327610547227,137.84102273129355,139.2665840092857,137.22901568631943,137.81994777138135,137.52452950903188,137.33767355698188,137.2561547775745,137.21936818755054,137.207177057766,137.21482434486956,137.188275621691,137.17410548886235,137.1901409097232,137.15778082434144,137.14007261217802,137.1071132885929,137.09494311108335,137.01464098145829,137.03714750558464,137.0063790768902,137.0619954314202,136.988639670334,136.97384483091233,136.94854259680133,136.90297029810958,136.87866390368458,136.90276272202163,137.07499904213006,136.89678627779273,136.83787821021437,136.83227606059128,136.86520701779463,136.82249706432916,136.81480610630229,136.80267799822644,136.82521757977165,147.14073907824113,144.1962319363783,152.24015800180027,154.24533759109988,141.8889037002193,149.28797130870106,143.68161102687336,140.73844708317895,141.18402011135356,141.65762404928606,140.68740310611133,140.57498125084578,141.42653454471397,140.4273440674809,140.34649461899642,140.39184661842657,140.3374670317761,140.31887790399642,140.35048094085795,140.30896505820704,140.30115381603935,140.3007730818837,140.2923947670265,140.2853969905302,140.27823280075344,140.27673680405644,140.29572253656903,140.28042151322538,140.27820824050087,140.27678301843514,140.27676807123643,140.27678905374339,140.27668200285444,140.2766700456121,140.27676438798156,140.27664702266995,140.27663538200648,140.27662606053892,140.27662567215884,140.2766199323811,140.27661987810538,140.2766165597926,140.2766172076643,140.2766206982539,140.276617140449,140.2766160506456,140.27661607912077,140.27661649975417,140.27661596604528,140.27661598285295,140.2766159958955,140.276615918387,140.27661586660992,140.27661598623664,140.27661580593647,140.2766157605015,140.2766156877942,140.27661579588786,140.27661569958354,140.27661567495497],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"0010100010011":8,"0010100010101":2,"0010100011001":4,"0010100100011":47,"0010100100101":13,"0010100101001":45,"0010101000011":52,"0010101000101":8,"0010101001001":40,"0010110000011":5,"0010110000101":1,"0010110001001":4,"0011000010011":13,"0011000010101":1,"0011000011001":1,"0011000100011":5,"0011000100101":1,"0011000101001":6,"0011001000011":2,"0011001001001":1,"0011010000011":3,"0011010000101":2,"0011010001001":1,"0100100010011":9,"0100100010101":2,"0100100011001":6,"0100100100011":27,"0100100100101":2,"0100100101001":16,"0100101000011":25,"0100101000101":7,"0100101001001":28,"0100110000011":3,"0100110001001":1,"0101000010011":11,"0101000010101":2,"0101000011001":9,"0101000100011":5,"0101000101001":1,"0101001000011":14,"0101001001001":11,"0101010000011":2,"1000100010011":7,"1000100010101":2,"1000100011001":6,"1000100100011":3,"1000100101001":1,"1000101000011":1,"1000101001001":3,"1000110000011":3,"1000110001001":2,"1001000010011":6,"1001000010101":2,"1001000011001":3,"1001000100011":4,"1001000101001":1,"1001001000011":9,"1001001000101":2,"1001001001001":9,"1001010000011":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.4630272119975416},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["resource"]},{"variable":12,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":5.753099685534835e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":72,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":9.71445146547012e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.010616507002850994}
+{"instance":"n5-s2-r2.json","seed":5,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":8,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["precedence"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":2,"end":3,"reserved_end":4,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":8,"reserved_end":9,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":10,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":47},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[-0.5636508448343226,0.34948863237188404],"expected_energy":112.3015818661849,"initial_expected_energy":153.0026322786929,"history":[153.0026322786929,153.2818290481662,135.5828607267256,175.19769733756152,128.16551411325386,118.7023615402945,116.82666148728323,134.11299825103515,119.3637625249192,116.76591934191238,114.40213440333122,112.65070231045597,112.78255859335641,114.11642158839112,112.53236648099625,112.87659669798717,112.49010940918738,112.43143660195906,112.37408164949485,112.3792247114484,112.35470841199157,112.34994610187525,112.3758774046438,112.33191113926749,112.318723558403,112.30844609609429,112.3095711383982,112.3172025029172,112.30815170802798,112.31010555306703,112.30784643363748,112.30698958079357,112.30568033918634,112.30503330756943,112.30322597161576,112.30215604457577,112.30302172550029,112.30214938434352,112.30183817799065,112.3016719170007,112.30214266658116,112.3016172926128,112.30160975136813,112.30178654904228,112.30158308681122,112.30159374197275,112.3015834828292,112.3015907630832,112.30158254903685,112.30158566125286,112.3015821161026,112.30158211508012,112.30158189719525,112.30158188395569,112.30158188440917,112.3015819700209,155.09340006103676,165.92855308912104,138.98788891885388,167.98025861453698,149.92552222676923,140.64525448032825,133.30029548533662,127.48771643718413,150.44452064733508,118.87522833433677,114.97500312014692,112.63794026038995,113.7218745308366,113.52153399759328,112.96840816767735,113.01291756460596,112.90247212088853,112.69191174268019,112.52496729805969,112.49735828657624,112.40642543997205,112.35023005994648,112.32667619222448,112.30627625720751,112.30703858461348,112.32413704301946,112.30862413926565,112.30437769759277,112.30437038478136,112.32227758132962,112.30170011627206,112.30322487455031,112.30183953226125,112.3023298941552,112.30166372081256,112.30162867475367,112.30179071156455,112.30159901825142,112.3015860200883,112.30159352063308,112.30158544789249,112.30159566029376,112.30158331521541,112.30158282490545,112.30158205174416,112.30158251296405,112.30158281285709,112.30158205315622,112.30158192247146,112.30158195798253,112.30158191201014,112.30158199780388,112.30158187798956,112.30158187769503,112.3015818661849,112.30158190482332],"feasible_probability":0.0,"one_hot_probability":1.0000000000000004,"sampled_feasible_fraction":0.0,"counts":{"0010100010011":28,"0010100010101":25,"0010100011001":4,"0010100100011":14,"0010100100101":9,"0010100101001":2,"0010101000011":10,"0010101000101":14,"0010101001001":5,"0010110000011":6,"0010110000101":9,"0010110001001":2,"0011000010011":7,"0011000010101":14,"0011000011001":3,"0011000100011":5,"0011000100101":7,"0011000101001":4,"0011001000011":7,"0011001000101":5,"0011001001001":4,"0011010000011":4,"0011010000101":2,"0100100010011":33,"0100100010101":45,"0100100011001":7,"0100100100011":10,"0100100100101":11,"0100100101001":1,"0100101000011":8,"0100101000101":9,"0100101001001":2,"0100110000011":5,"0100110000101":10,"0100110001001":2,"0101000010011":16,"0101000010101":28,"0101000011001":6,"0101000100011":13,"0101000100101":17,"0101000101001":2,"0101001000011":26,"0101001000101":21,"0101001001001":8,"0101010000011":7,"0101010000101":10,"0101010001001":2,"1000100100011":1,"1000101000011":3,"1000101000101":5,"1000110000101":2,"1001000010101":3,"1001000011001":2,"1001001000011":3,"1001001000101":2,"1001001001001":2},"circuit_evaluations":112,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":56},{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":56}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.4142364809958963},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["resource"]},{"variable":12,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.849999095313251e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":72,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.0816681711721685e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.010293920000549406}
+{"instance":"n5-s2-r2.json","seed":6,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":8,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["precedence"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":2,"end":3,"reserved_end":4,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":8,"reserved_end":9,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":10,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":47},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.409170817239598,1.1206292688204824],"expected_energy":134.91324730622222,"initial_expected_energy":154.7906775934652,"history":[154.7906775934652,157.14506909725338,146.96190719938318,153.23950144855428,146.63101025997855,149.8272813669983,146.6577237857386,145.8883120409099,145.58686241801274,146.05257218236397,145.12078178350606,144.17853244181663,142.32807666839904,146.51885472862728,140.96512055683732,140.31181581653306,142.50272245470808,138.73537441761823,137.76570217013344,137.13168210485992,137.6962260124742,136.8123801922629,136.66666734221465,136.3404648383461,135.81851786204913,135.12389330560381,135.65699280646518,135.6077342086251,135.22790750903286,135.09791405680767,135.04652601819862,135.03429635286147,134.98510285213962,134.9574618033614,134.93417787751474,134.91956498350459,134.92226365751685,134.9231055045958,134.92250677368037,134.91927915452592,134.92707308566173,134.9168158216009,134.91507303444502,134.9134301321641,134.91666914319003,134.91336041265583,134.91482131320655,134.91328751362295,134.9132883773342,134.9133382662851,134.91325609281438,134.91331860834097,134.91326318436938,134.9132538758077,134.91325065103075,134.91325296446183,134.9132495514346,134.91325102792757,134.913248327798,134.91324730622222,157.60964429093474,158.75943519121836,152.85273866299713,148.5055607871858,152.66893058404418,149.67450791571122,152.01913991394713,148.09418117733367,146.9485611677839,148.00117600446316,146.9066307410627,147.05657914980944,147.0817809514063,146.93331016861475,146.89849728764926,146.90057817486905,146.89676488086178,146.8888854091344,146.87151572206488,146.82975683339572,146.76131879444645,146.4639432147643,146.34254488371414,145.0701957014992,145.67907562442235,146.12674428053333,144.89251779384966,145.4424952012613,144.6976662575817,144.49788641148507,144.3101612792721,143.88214887654863,143.75430373831617,143.3398690179888,143.3396546123866,143.05484900609383,142.77713882220127,142.500952474751,142.84007450477162,142.30674440872662,142.03426083076081,141.94824541951544,145.81961253429802,140.7487002501785,140.53732496806185,140.0228218587998,139.4317477992098,146.6137598777512,138.53867965412232,139.40359134543212,138.39025171924797,138.62416033267044,138.38273701329365,138.23792171550025,138.0378872223684,137.784992857486,137.44863903214392,137.61007807754132,137.8486348257826,137.47604296979495],"feasible_probability":0.0,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.0,"counts":{"0010100010011":27,"0010100010101":8,"0010100011001":38,"0010100100011":14,"0010100100101":6,"0010100101001":33,"0010101000011":6,"0010101000101":1,"0010101001001":7,"0010110000011":8,"0010110000101":1,"0010110001001":8,"0011000100011":4,"0011000100101":1,"0011000101001":9,"0011001000011":7,"0011001000101":1,"0011001001001":10,"0011010000011":2,"0011010001001":1,"0100100010011":17,"0100100010101":1,"0100100011001":18,"0100100100011":9,"0100100100101":1,"0100100101001":21,"0100101000011":8,"0100101001001":11,"0100110000011":2,"0100110000101":1,"0100110001001":1,"0101000010011":7,"0101000011001":5,"0101000100011":28,"0101000100101":6,"0101000101001":32,"0101001000011":12,"0101001000101":2,"0101001001001":25,"0101010000011":1,"0101010001001":4,"1000100010011":10,"1000100010101":4,"1000100011001":21,"1000100100011":13,"1000100100101":2,"1000100101001":15,"1000101000011":1,"1000101001001":1,"1000110000011":8,"1000110000101":1,"1000110001001":7,"1001000010011":4,"1001000011001":2,"1001000100011":3,"1001000101001":9,"1001001000101":1,"1001010000011":4,"1001010001001":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.4219768470065901},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["resource"]},{"variable":12,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":5.086499731987715e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":72,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.85722573273506e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.009884170998702757}
+{"instance":"n5-s2-r2.json","seed":7,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":8,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["precedence"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":2,"end":3,"reserved_end":4,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":8,"reserved_end":9,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":10,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":47},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.5636422603388658,2.7921047299335586],"expected_energy":112.30158186882167,"initial_expected_energy":154.7108856066959,"history":[154.7108856066959,157.5182753431337,154.62780919043996,156.2096611752237,154.98526209399,154.5761025722975,154.22111044362816,155.97234214364238,150.81511746481573,146.19701347257595,149.66707643279983,146.79094565601287,146.24468566171976,145.912059930816,145.30186527505776,143.20604247246166,143.1459885013939,136.1602183817878,146.15810537849774,144.85427433586682,135.61725743475387,136.2734307107299,135.9599296484711,135.32704066256295,135.6608877850809,135.56320503792082,135.32258190907447,135.2430612586343,135.18693879062457,135.31163254596333,135.13095879689436,135.0739312144441,135.0059932239505,134.96632308241607,134.9282663186852,134.9867208260984,134.91874855073922,134.9282197946945,134.92407794478248,134.91519800564214,134.9208881337354,134.91413595941404,134.9221719867332,134.91344876005348,134.91403584912035,134.9136545715789,134.91348013486166,134.91345888685643,134.91336302355825,134.91336107688267,134.91344886151603,134.9133011070283,134.91326679076957,134.91325263083266,134.91326023743977,134.9132695736777,134.913255491832,134.9132495491596,134.91324832952085,134.91325426851444,151.02810021886947,151.76765551198304,151.68371884323645,153.96100894053103,152.86868998077796,150.28341810939332,147.59264454920083,130.3399632123016,147.94006089285045,154.04730956172364,118.77004726655758,132.82116122191744,126.42729658895013,117.39228490528606,115.67159040007789,114.66934704066027,116.19905912681648,114.10182274177087,113.60911730915936,113.18262391356788,112.54289258411141,112.41742647584807,113.83272536748868,112.3126615583411,112.49663868196136,112.36077475705271,112.32152207514021,112.30539906592963,112.30265374319619,112.31270956417649,112.30546669299304,112.30198729714543,112.30409597888612,112.30186319421557,112.30265789300708,112.30174499063762,112.30161688799683,112.30159014692032,112.30171286352774,112.30158420594216,112.3015828692194,112.3015902470123,112.30158218361397,112.30158444982229,112.3015821734494,112.30158521845183,112.3015819273214,112.3015825293823,112.30158196002179,112.30158192607986,112.3015818881614,112.30158186882167,112.3015819689491,112.3015818953875],"feasible_probability":0.0,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.0,"counts":{"0010100010011":20,"0010100010101":32,"0010100011001":8,"0010100100011":10,"0010100100101":9,"0010100101001":3,"0010101000011":9,"0010101000101":9,"0010101001001":3,"0010110000011":1,"0010110000101":13,"0010110001001":1,"0011000010011":13,"0011000010101":7,"0011000011001":1,"0011000100011":4,"0011000100101":6,"0011000101001":1,"0011001000011":7,"0011001000101":6,"0011010000011":5,"0011010000101":3,"0011010001001":4,"0100100010011":31,"0100100010101":53,"0100100011001":9,"0100100100011":10,"0100100100101":8,"0100100101001":4,"0100101000011":10,"0100101000101":12,"0100101001001":3,"0100110000011":10,"0100110000101":6,"0100110001001":5,"0101000010011":28,"0101000010101":24,"0101000011001":9,"0101000100011":9,"0101000100101":15,"0101000101001":2,"0101001000011":18,"0101001000101":27,"0101001001001":8,"0101010000011":8,"0101010000101":3,"0101010001001":1,"1000100010011":1,"1000100100101":3,"1000100101001":2,"1000101000101":1,"1000110000011":1,"1001000010011":2,"1001000010101":6,"1001001000011":2,"1001001000101":6},"circuit_evaluations":114,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":54}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.38063555701228324},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["resource"]},{"variable":12,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":5.189199873711914e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":72,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.5102810375396984e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.009565027998178266}
+{"instance":"n5-s2-r2.json","seed":8,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":8,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["precedence"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":2,"end":3,"reserved_end":4,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":8,"reserved_end":9,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":10,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":47},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4089710069819006,1.120606105436517],"expected_energy":134.91324599773546,"initial_expected_energy":141.59878889327564,"history":[141.59878889327564,146.68545997512194,148.90455896353376,170.3943188227444,137.40072962079978,146.68882897613202,138.9985328741654,136.80211573479437,136.04828815609125,138.72347751454865,135.24256687976464,135.20728704346288,134.94437530738412,134.94575042377622,135.08879672060613,134.9608073611984,134.9443086958238,134.93585815645355,134.92892960717205,134.9213958409725,134.94100052802617,134.91480516207486,134.91591614671964,134.91748169269746,134.91571880357657,134.91516613158467,134.9144924660605,134.91507169279677,134.91439682455734,134.91423214307423,134.91407790022944,134.91375427257756,134.91358154806656,134.91342515725844,134.91330818208553,134.91336617999866,134.91330757456274,134.9133810487648,134.91326458166947,134.91324995466803,134.913255807179,134.91330448842822,134.91325360930756,134.91325266014877,134.91324710287387,134.9132461347807,134.9132494795406,134.91324649867852,134.9132463255915,134.91324621511203,134.9132460518081,134.91324610416842,134.9132460280724,134.91324601698656,134.91324600247003,134.91324599773546,134.91324603037648,143.9681530753235,152.1780427581633,153.96857434176033,152.88723061262658,145.92657546718516,144.0723345367852,148.17376752632975,142.8761874256934,142.4874390470921,142.85216903478428,142.4468246270925,142.39250486680655,142.60545936701362,142.551492665627,142.42551752962788,142.33572505907452,142.33131662154622,142.33160785959467,142.33585854362295,142.32762591861479,142.33136269448462,142.32943972184165,142.32749551297474,142.3266854016538,142.32537253769817,142.3270085152384,142.32484658914947,142.32366336329576,142.32232639756222,142.324019159757,142.32322263893417,142.32225125142392,142.32255155403175,142.32224278057998,142.32219215596496,142.3221280240631,142.32231078407455,142.32212282300355,142.32210169576535,142.3220951211506,142.32214652352886,142.3221188229657,142.32211246717716,142.3220946280897,142.32209361250798,142.32209730605388,142.3220934094508,142.3220947220928,142.32209351670684,142.32209363609815,142.32209349908942,142.3220932834606,142.32209326012628,142.3220932790492,142.32209327259721],"feasible_probability":0.0,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.0,"counts":{"0010100010011":22,"0010100010101":2,"0010100011001":33,"0010100100011":26,"0010100100101":4,"0010100101001":26,"0010101000011":7,"0010101000101":1,"0010101001001":6,"0010110000011":8,"0010110000101":1,"0010110001001":8,"0011000010011":3,"0011000011001":3,"0011000100011":5,"0011000100101":1,"0011000101001":11,"0011001000011":8,"0011001000101":2,"0011001001001":12,"0011010000011":2,"0011010001001":2,"0100100010011":12,"0100100010101":2,"0100100011001":17,"0100100100011":9,"0100100100101":1,"0100100101001":22,"0100101000011":11,"0100101001001":10,"0100110000011":1,"0100110001001":3,"0101000010011":3,"0101000010101":1,"0101000011001":11,"0101000100011":22,"0101000100101":3,"0101000101001":51,"0101001000011":18,"0101001000101":1,"0101001001001":21,"0101010000011":1,"0101010001001":4,"1000100010011":17,"1000100011001":22,"1000100100011":7,"1000100100101":1,"1000100101001":11,"1000110000011":6,"1000110000101":2,"1000110001001":7,"1001000010011":1,"1001000010101":1,"1001000100011":5,"1001000101001":5,"1001001000011":1,"1001001001001":2,"1001010000011":4,"1001010001001":3},"circuit_evaluations":112,"optimizer_runs":[{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":57},{"success":true,"message":"Return from COBYLA because the trust region radius reaches its lower bound.","evaluations":55}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.37498416399466805},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["resource"]},{"variable":12,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":5.129099008627236e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":72,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.551115123125783e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.010846946999663487}
+{"instance":"n5-s2-r2.json","seed":9,"direct":{"status":"no_feasible_sample","best":{"feasible":false,"objective":null,"raw_cost":8,"violation_count":1,"violations":[{"kind":"conflict","tasks":["t0","t1"],"variables":[0,1],"reasons":["precedence"]}],"schedule":[{"variable":1,"task":"t1","group":"g1","resource":"r1","start":2,"end":3,"reserved_end":4,"changed":false},{"variable":4,"task":"t2","group":"g0","resource":"r2","start":5,"end":6,"reserved_end":6,"changed":false},{"variable":0,"task":"t0","group":"g0","resource":"r1","start":6,"end":8,"reserved_end":9,"changed":true},{"variable":8,"task":"t3","group":"g1","resource":"r0","start":6,"end":9,"reserved_end":9,"changed":false},{"variable":10,"task":"t4","group":"g0","resource":"r1","start":10,"end":11,"reserved_end":12,"changed":false}],"bits":[1,1,0,0,1,0,0,0,1,0,1,0,0],"qubo_energy":47},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.590967549285424,1.0844884293282635],"expected_energy":136.8051923011519,"initial_expected_energy":151.72976795065134,"history":[151.72976795065134,147.2864013011171,144.16893303976042,147.1701054298683,143.71378482481015,145.3272783019507,146.88766932427586,143.52601132244902,143.8394211811401,143.1122749737588,143.45719158529528,142.94116992438563,142.95491804449387,142.90308033020557,142.84367801726466,142.80071679313482,143.08220323832603,142.7490123830609,142.66387735586898,142.55086145370328,142.45576775606364,142.510863469953,142.47700186552404,142.44138763065266,142.4882152830889,142.4308628204449,142.4129063039711,142.38639275707112,142.34925129332066,142.397622357687,142.34768482127762,142.33870979550127,142.32782911067136,142.3230383913725,142.34050722590456,142.32525905359168,142.323829189715,142.32329264594102,142.32289434700903,142.32337746097232,142.3228240047627,142.32271427169465,142.3225955252518,142.32299041281928,142.32246410682936,142.32237895234513,142.3223060429022,142.3222852046815,142.32215350726693,142.3221949899361,142.32215911735423,142.32219380125392,142.32214682303717,142.3221587116039,142.32214137868394,142.32213382533553,142.32213454471992,142.322129714341,142.3221258908656,142.32211906690767,152.2501495727059,151.93431624836796,145.133680431516,155.5174780589873,143.16166602204652,142.9364441331333,141.7887536840858,146.19470617242115,142.81289285739396,141.63661151690863,141.65484317729658,141.41913406346544,141.30929961793566,141.85919734433105,140.85979734850196,140.667512557657,140.2593830909694,139.50712179714264,138.09321249997265,138.14048543171134,143.6481101241172,139.7559310309406,137.96488610542886,138.61680205955554,137.99210136590932,138.07053582386692,137.95605031697687,138.05079748386987,137.9330039229768,137.8909118630932,137.82158478032142,137.7278648626735,137.61837384435458,137.42347833850644,137.1838967734525,137.57480108110803,137.82757292286345,137.1326313567753,137.07697930190088,137.0618317991829,137.27596448632227,137.010260004629,136.98891081001398,136.9655829927136,136.95655954991315,136.9014952742179,136.97195590767643,136.88987475730912,136.93100858003953,136.87828626133273,136.86868991587454,136.85638506351285,136.8408507935971,136.83660365909256,136.89064298449165,136.82402023337443,136.81935159973278,136.8132233453248,136.8051923011519,136.84365509745166],"feasible_probability":0.0,"one_hot_probability":1.0,"sampled_feasible_fraction":0.0,"counts":{"0010100010011":1,"0010100010101":1,"0010100011001":8,"0010100100011":47,"0010100100101":5,"0010100101001":34,"0010101000011":51,"0010101000101":8,"0010101001001":37,"0010110000011":1,"0010110000101":1,"0010110001001":3,"0011000010011":8,"0011000011001":8,"0011000100011":13,"0011000100101":2,"0011000101001":5,"0011001000011":6,"0011001001001":2,"0011010000011":3,"0011010000101":1,"0011010001001":5,"0100100010011":11,"0100100010101":2,"0100100011001":15,"0100100100011":23,"0100100100101":6,"0100100101001":12,"0100101000011":33,"0100101000101":5,"0100101001001":31,"0100110000011":5,"0100110001001":2,"0101000010011":9,"0101000010101":1,"0101000011001":12,"0101000100011":9,"0101000101001":2,"0101001000011":7,"0101001001001":6,"0101010000011":1,"1000100010011":5,"1000100011001":8,"1000100100011":5,"1000100101001":4,"1000101000011":3,"1000101001001":6,"1000110000011":3,"1000110001001":7,"1001000010011":4,"1001000011001":3,"1001000100011":1,"1001000101001":4,"1001001000011":12,"1001001001001":3,"1001010001001":2},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.41894297298858874},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0],"fixed_cost":8,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":3,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":6,"forced_by":0,"reasons":["group"]},{"variable":7,"forced_by":0,"reasons":["resource"]},{"variable":12,"forced_by":0,"reasons":["resource","group"]}],"infeasible_task":"t1","component_qubits":[],"max_component_qubits":0,"component_to_original":[],"components":[]},"best":null,"components":[],"circuit_evaluations":0,"status":"infeasible_propagation","runtime_seconds":4.6702989493496716e-05},"direct_metrics":{"exact_objective":null,"optimal_count":0,"combinations":72,"optimal_probability":0.0,"feasible_probability":0.0,"uniform_optimal_probability":0.0,"uniform_feasible_probability":0.0,"shots_for_95_percent":null,"hit_curve":[{"shots":8,"quantum":0.0,"uniform":0.0},{"shots":16,"quantum":0.0,"uniform":0.0},{"shots":32,"quantum":0.0,"uniform":0.0},{"shots":64,"quantum":0.0,"uniform":0.0},{"shots":128,"quantum":0.0,"uniform":0.0},{"shots":512,"quantum":0.0,"uniform":0.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":null},{"shots":64,"best_objective":null},{"shots":128,"best_objective":null},{"shots":512,"best_objective":null}]},"component_metrics":[],"reduced_single_joint_draw_p_opt":null,"diagnostic_seconds":0.011051420995499939}
+{"instance":"n5-s2-r3.json","seed":0,"direct":{"status":"feasible","best":{"feasible":true,"objective":44,"raw_cost":44,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r2","start":11,"end":12,"reserved_end":12,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":12,"end":15,"reserved_end":15,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r0","start":18,"end":19,"reserved_end":21,"changed":true},{"variable":12,"task":"t4","group":"g0","resource":"r2","start":20,"end":21,"reserved_end":21,"changed":true}],"bits":[1,0,0,1,0,0,1,0,0,1,0,0,1],"qubo_energy":44},"seed":0,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[4.98182380219372,0.2803712409092713],"expected_energy":82.00162378612923,"initial_expected_energy":125.31599316797127,"history":[125.31599316797127,121.91732201035748,119.54803158975562,116.06874295606843,121.25455217302915,119.99795992937085,118.87895250375166,115.49446537188763,116.14305738487262,115.61575717884159,115.60677985912835,115.4710941558753,115.71638812137411,115.45224510001819,115.37630812731592,115.32655856688254,115.35663476883477,115.30760019039535,115.28956174135477,115.2559780075695,115.21078293128546,115.13537096691576,115.0875862658476,115.01744136593508,114.91768045498398,114.80352611060943,114.67679766898317,115.8672612800389,114.55139943492814,114.655666244542,114.59156343740884,114.54086928110279,114.61925942778917,114.52531466711068,114.49781670735473,114.44626299439147,114.35221965791725,114.30133308791946,114.252899051779,114.30987649120202,114.3511785503934,114.11617859578237,114.06775590529011,114.12645884063946,114.06140569053083,114.03783760936838,113.99440079805336,113.91491075137422,114.55196756656916,113.93115659664413,113.90311178459173,113.92596637307254,113.88511472834503,113.85735155323918,113.81837192714727,113.88596887078299,113.79400353435153,113.7694779632213,113.7330819460492,113.6494338139271,140.13110662650874,122.73406884210863,121.20129823845531,122.09459703099151,127.93315201818606,117.19104585621696,121.59791922876771,117.21154856353658,121.20649536999622,117.02712060338845,117.35528313391417,117.12457240729199,117.01369778709271,117.03874452341245,117.01292219174931,117.00227893356384,116.98436241721902,116.94233411409823,116.86115067875744,116.66512824170863,116.42197330737902,114.66645704206758,117.22012424667369,111.928761719553,109.51017779930137,117.35126600676223,107.04841341016463,104.63565190132158,99.4855602446205,95.02159711682859,138.1151976430047,117.68597729324526,86.64764337891025,116.22206850465025,85.90024526380418,96.62120177866201,85.06312668117408,85.63544407999701,86.61759448715011,85.02911724505864,84.63763726494827,84.4969829838005,84.90118591529995,84.41471214963487,84.26072669350978,83.9726548017461,83.47528516281008,83.22738817453464,82.95655840024679,83.54768407026233,83.36291169942831,82.41524584355476,82.313517313414,82.48728136224074,82.28605868350391,82.42931917829694,82.2325833476016,82.19095503519344,82.12687741222538,82.00162378612923],"feasible_probability":0.19917129805185074,"one_hot_probability":1.0,"sampled_feasible_fraction":0.1953125,"counts":{"0010100010011":8,"0010100010101":10,"0010100011001":14,"0010100100011":2,"0010100100101":1,"0010101000011":1,"0010101001001":7,"0010110001001":3,"0011000010011":7,"0011000010101":3,"0011000011001":13,"0011000100101":1,"0011001000011":6,"0011001000101":5,"0011001001001":36,"0011010000101":1,"0011010001001":5,"0100100010011":8,"0100100010101":8,"0100100011001":14,"0100100100011":2,"0100100100101":2,"0100100101001":1,"0100101000011":2,"0100101001001":13,"0100110000101":2,"0100110001001":2,"0101000010101":1,"0101000011001":6,"0101001000011":2,"0101001000101":3,"0101001001001":23,"0101010000011":2,"0101010001001":4,"1000100010011":8,"1000100010101":6,"1000100011001":21,"1000100100011":1,"1000100101001":2,"1000101001001":5,"1000110000011":1,"1000110001001":4,"1001000010011":29,"1001000010101":24,"1001000011001":48,"1001000100011":1,"1001000100101":9,"1001000101001":1,"1001001000011":22,"1001001000101":5,"1001001001001":60,"1001010000011":5,"1001010000101":2,"1001010001001":40},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3938262349984143},"reduced":{"seed":0,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0,3],"fixed_cost":19,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":4,"forced_by":3,"reasons":["resource","precedence"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[6,7,8,9,10,11,12]],"components":[{"qubits":7,"penalty":28,"objective_bound":27,"offset":84,"linear":[-23,-21,-28,-18,-28,-25,-18],"quadratic":[[0,1,56],[0,2,28],[1,2,28],[1,4,28],[1,5,28],[2,3,56],[3,4,28],[3,5,28],[4,5,56],[4,6,56],[5,6,56]],"domains":[[0,1],[2,3],[4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":12,"cost":5},{"index":1,"task":"t2","resource":"r2","start":14,"cost":7},{"index":2,"task":"t3","resource":"r0","start":13,"cost":0},{"index":3,"task":"t3","resource":"r0","start":18,"cost":10},{"index":4,"task":"t4","resource":"r1","start":16,"cost":0},{"index":5,"task":"t4","resource":"r2","start":16,"cost":3},{"index":6,"task":"t4","resource":"r2","start":20,"cost":10}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":4,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource","group"]},{"i":3,"j":4,"reasons":["precedence"]},{"i":3,"j":5,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":44,"raw_cost":44,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r2","start":11,"end":12,"reserved_end":12,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":12,"end":15,"reserved_end":15,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r0","start":18,"end":19,"reserved_end":21,"changed":true},{"variable":12,"task":"t4","group":"g0","resource":"r2","start":20,"end":21,"reserved_end":21,"changed":true}],"bits":[1,0,0,1,0,0,1,0,0,1,0,0,1],"qubo_energy":44},"components":[{"status":"feasible","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":12,"end":15,"reserved_end":15,"changed":true},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":18,"end":19,"reserved_end":21,"changed":true},{"variable":6,"task":"t4","group":"g0","resource":"r2","start":20,"end":21,"reserved_end":21,"changed":true}],"bits":[1,0,0,1,0,0,1],"qubo_energy":25},"seed":3757552657,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.6087796800107286,1.1936488019333444],"expected_energy":39.258500846429605,"initial_expected_energy":57.20131339709667,"history":[57.20131339709667,52.053413123567054,47.96708317521557,47.76093472131844,47.31905858944914,47.874300468444815,43.426642140281444,40.47001738601378,39.369587964486726,47.790331034406236,44.80334897660341,39.42153785156559,39.71983672109404,39.54364229030042,39.2685720662699,39.485664377378775,39.26811514326273,39.279794039748374,39.26974299952493,39.266502006944414,39.26589405958175,39.26935953131363,39.265116213823774,39.264688083313196,39.26412542603779,39.263101027871244,39.26179425890427,39.262585349983304,39.26408845664168,39.26218611583494,39.261370150782106,39.26113765480096,39.26191320818535,39.26092845674068,39.26078264705635,39.26060836177538,39.26028438075833,39.25983897878108,39.25974369396805,39.259032716260855,39.261028972356975,39.260417569541495,39.259377033660996,39.25898430455033,39.25907669734429,39.25898046977118,39.25894192509982,39.258873645576244,39.25874345128588,39.25862105748064,39.25880883701591,39.25914525176254,39.258582973462126,39.258511216733986,39.258515578684005,39.25853440700342,39.258506661014046,39.25850922021969,39.258509990142045,39.258500846429605,53.86927373197713,54.052418422150375,40.463443986213065,48.66847602425623,41.45182365247108,40.586611639195674,40.944950150878476,40.514018544688895,40.624655232750015,40.5244650194184,40.45572294498578,40.426449807998104,40.387706477809715,40.48988913212689,40.35424456303538,40.32607169474871,40.26885298496171,40.17520540519875,40.26969818845701,40.367635956693505,40.13508271301927,40.09671670217594,40.118924690352316,40.06696347689166,40.06005831272004,40.09388799618024,40.05420934202954,40.04318900028417,40.0217271514684,39.98011382264134,39.90105003834194,39.797466283211975,39.78397871962765,39.64220457926594,39.603734874228735,39.47298256939802,40.222658270456314,39.71549563871591,39.64467012268018,39.454885142414405,39.44686967618876,39.43861328058593,39.43656129216173,39.464584059336254,39.4268034952094,39.419592798895906,39.410631498169664,39.400670244240516,39.38476029681409,39.366901007309046,39.32750408971243,39.448761972188336,39.406878205280336,39.356703827586486,39.33194298632024,39.32771757817291,39.324773014179996,39.322334068676255,39.318974042296084,39.32636591040656],"feasible_probability":0.15454260823691085,"one_hot_probability":1.0,"sampled_feasible_fraction":0.15234375,"counts":{"0010101":158,"0010110":2,"0011001":43,"0100101":70,"0100110":1,"0101001":89,"0101010":21,"1000101":46,"1000110":4,"1001001":49,"1001010":29},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11612113799492363}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.15454260823691085,"total_shots":512,"runtime_seconds":0.11631750498781912},"direct_metrics":{"exact_objective":44,"optimal_count":1,"combinations":72,"optimal_probability":0.12705463368762418,"feasible_probability":0.19917129805185074,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.027777777777777776,"shots_for_95_percent":23,"hit_curve":[{"shots":8,"quantum":0.6627930537101732,"uniform":0.10585733481633375},{"shots":16,"quantum":0.8862914753738899,"uniform":0.20050889429825008},{"shots":32,"quantum":0.9870703714273533,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9998328247049734,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9999999720524207,"uniform":0.8330797244996347},{"shots":512,"quantum":1.0,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.498001805406602e-16,"independent_samples":[{"shots":8,"best_objective":46},{"shots":16,"best_objective":46},{"shots":32,"best_objective":44},{"shots":64,"best_objective":44},{"shots":128,"best_objective":44},{"shots":512,"best_objective":44}]},"component_metrics":[{"exact_objective":25,"optimal_count":1,"combinations":12,"optimal_probability":0.08153126354446177,"feasible_probability":0.15454260823691085,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":36,"hit_curve":[{"shots":8,"quantum":0.49357513108551765,"uniform":0.5014697532613109},{"shots":16,"quantum":0.7435338521449494,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9342251150043913,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9956736645038144,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999812828211745,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":27},{"shots":32,"best_objective":27},{"shots":64,"best_objective":25},{"shots":128,"best_objective":25},{"shots":512,"best_objective":25}]}],"reduced_single_joint_draw_p_opt":0.08153126354446177,"diagnostic_seconds":0.01090549300715793}
+{"instance":"n5-s2-r3.json","seed":1,"direct":{"status":"feasible","best":{"feasible":true,"objective":44,"raw_cost":44,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r2","start":11,"end":12,"reserved_end":12,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":12,"end":15,"reserved_end":15,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r0","start":18,"end":19,"reserved_end":21,"changed":true},{"variable":12,"task":"t4","group":"g0","resource":"r2","start":20,"end":21,"reserved_end":21,"changed":true}],"bits":[1,0,0,1,0,0,1,0,0,1,0,0,1],"qubo_energy":44},"seed":1,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[5.085642921402814,0.2730442146896633],"expected_energy":81.67087983129522,"initial_expected_energy":132.42925119512196,"history":[132.42925119512196,122.56897620826508,127.36265329858053,112.90623390145713,127.65304506662238,116.40868856044195,110.79748802656951,107.15860722970876,104.81645853430837,90.09004753259832,133.96639145699876,117.84504513120164,87.79887046823221,111.8611157722236,89.87829729670796,88.54698715668003,88.50939371679205,87.33479879181843,88.95778633155157,86.81446029539309,86.36509716574986,85.69689445471269,89.56616632897588,85.22950107662199,84.73718951267463,85.42801792197832,84.21147199249599,84.01059142926388,83.63791653584684,83.02781160373614,82.50307643020794,83.50300720456718,84.78312104580054,82.0879306885734,82.13010306816517,82.11378528473698,82.14264849751919,82.05661679941983,82.02732800414611,82.00917499214948,81.93981128944662,81.91006138702845,81.85574468683174,81.80886982372795,81.7709799574676,81.7405649283883,81.94247811381578,81.69257574457603,81.73896847409355,81.68890808715773,81.7046493558085,81.68979242005426,81.69258823428302,81.68982169009793,81.68709097657333,81.68438486324098,81.68122119835039,81.67654679845357,81.67087983129522,81.70145815149178,119.45552173511639,125.54006181392234,119.05465176434765,118.18855541553413,105.66594858841103,92.45713369063984,153.11677107510394,89.73572092436996,142.2140553965504,113.3532136397796,98.75622600193628,90.65215197425813,99.50628697552409,88.33593493748239,86.6236195921733,86.17762532676606,88.10723703223704,85.68200964196801,85.30136337118948,84.64963643062603,84.43155616700717,84.21107594646924,85.51479875384658,86.49146737924227,84.6721044748081,83.3783606963624,83.27265354568937,83.2337673959799,83.49905549832313,83.2220074919629,83.15213481776053,83.1029215773876,83.071117268495,83.04654011856164,83.02411955655295,83.02080364044289,82.99139336674915,82.97139341429121,82.95120383487567,82.92507848328965,82.89684901240605,82.88362837751825,83.00109396735495,82.85953968373329,82.8545322924543,82.84035605178025,82.82116173019203,82.81071630073268,82.8036512974813,82.79350719539941,82.8006078999914,82.85872769662015,82.79278816004656,82.8013161637883,82.81011505192915,82.79372476038652,82.79410901635259,82.79243523949116,82.7923282470096,82.79227969163881],"feasible_probability":0.20993318125550925,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.22265625,"counts":{"0010100010011":10,"0010100010101":5,"0010100011001":19,"0010100100011":3,"0010100100101":2,"0010100101001":1,"0010101000011":4,"0010101000101":1,"0010101001001":8,"0010110000101":1,"0011000010011":5,"0011000010101":3,"0011000011001":7,"0011000100011":1,"0011000100101":2,"0011000101001":1,"0011001000011":10,"0011001000101":7,"0011001001001":39,"0011010000101":1,"0011010001001":4,"0100100010011":9,"0100100010101":7,"0100100011001":14,"0100100100011":1,"0100100100101":2,"0100101000011":4,"0100101000101":1,"0100101001001":7,"0100110000101":1,"0101000010011":1,"0101000010101":1,"0101000011001":5,"0101000100101":2,"0101000101001":1,"0101001000011":5,"0101001000101":3,"0101001001001":16,"0101010000101":1,"1000100010011":2,"1000100010101":7,"1000100011001":14,"1000100100011":4,"1000100101001":2,"1000101001001":3,"1000110000011":1,"1000110001001":1,"1001000010011":29,"1001000010101":30,"1001000011001":42,"1001000100011":4,"1001000100101":4,"1001000101001":3,"1001001000011":26,"1001001000101":3,"1001001001001":75,"1001010000011":5,"1001010000101":3,"1001010001001":39},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.39643131899356376},"reduced":{"seed":1,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0,3],"fixed_cost":19,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":4,"forced_by":3,"reasons":["resource","precedence"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[6,7,8,9,10,11,12]],"components":[{"qubits":7,"penalty":28,"objective_bound":27,"offset":84,"linear":[-23,-21,-28,-18,-28,-25,-18],"quadratic":[[0,1,56],[0,2,28],[1,2,28],[1,4,28],[1,5,28],[2,3,56],[3,4,28],[3,5,28],[4,5,56],[4,6,56],[5,6,56]],"domains":[[0,1],[2,3],[4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":12,"cost":5},{"index":1,"task":"t2","resource":"r2","start":14,"cost":7},{"index":2,"task":"t3","resource":"r0","start":13,"cost":0},{"index":3,"task":"t3","resource":"r0","start":18,"cost":10},{"index":4,"task":"t4","resource":"r1","start":16,"cost":0},{"index":5,"task":"t4","resource":"r2","start":16,"cost":3},{"index":6,"task":"t4","resource":"r2","start":20,"cost":10}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":4,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource","group"]},{"i":3,"j":4,"reasons":["precedence"]},{"i":3,"j":5,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":44,"raw_cost":44,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r2","start":11,"end":12,"reserved_end":12,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":12,"end":15,"reserved_end":15,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r0","start":18,"end":19,"reserved_end":21,"changed":true},{"variable":12,"task":"t4","group":"g0","resource":"r2","start":20,"end":21,"reserved_end":21,"changed":true}],"bits":[1,0,0,1,0,0,1,0,0,1,0,0,1],"qubo_energy":44},"components":[{"status":"feasible","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":12,"end":15,"reserved_end":15,"changed":true},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":18,"end":19,"reserved_end":21,"changed":true},{"variable":6,"task":"t4","group":"g0","resource":"r2","start":20,"end":21,"reserved_end":21,"changed":true}],"bits":[1,0,0,1,0,0,1],"qubo_energy":25},"seed":1641411168,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.6002591012861145,1.192697981274733],"expected_energy":39.25826311486958,"initial_expected_energy":48.56863548092434,"history":[48.56863548092434,52.801500473379384,48.61829764358944,44.40302585458056,39.962836310715495,61.46006001199581,48.45566474071562,45.990308036731705,39.71476034867773,39.37506279056647,40.470859825562215,39.3719960061179,39.813155480346204,39.263181744904614,39.48451516403826,39.26112169149387,39.26119370077693,39.262539944859704,39.259250265245186,39.25861818615226,39.258395050427836,39.25995642727418,39.25872204074713,39.25837695817979,39.25852052523637,39.25837097451267,39.2583627227592,39.25839306123664,39.2583539206317,39.25834759630718,39.25834077389699,39.25832838231671,39.25831298005348,39.258314357599616,39.25832232286444,39.25831981419301,39.25830465387218,39.25830549418129,39.258303365572516,39.25830116890497,39.25829769824521,39.2583010189248,39.25829335386608,39.25829122192552,39.25830150666078,39.258288191948225,39.25828605103318,39.25828401813541,39.258282337451746,39.258277606489024,39.258276092659045,39.25827167329349,39.258271321587934,39.25826470327681,39.25826821900133,39.25826815571548,39.25826576517766,39.258263965561504,39.258266028776184,39.25826311486958,53.6646717643053,58.7967015684785,51.37943156541978,45.56035625412628,49.949731379998546,44.43737517266695,42.108044769332054,39.272197006828435,54.313631288730974,51.573145918357675,42.64376436302854,39.345362227675224,40.3553401929345,39.26462190359604,39.34816341087495,39.26365733386144,39.282184046405746,39.2635961862865,39.26198095400614,39.26353111828912,39.262413984403494,39.261988535366875,39.261776884158394,39.26138977528836,39.26078803909995,39.26340665020716,39.263166029817306,39.26059467707883,39.260380523843494,39.26055656413445,39.26017360477343,39.260183766388295,39.260201106146795,39.26012338743172,39.26003281827255,39.2599099022716,39.260239087279906,39.25975004720121,39.25967103292922,39.25957051484558,39.25940609494616,39.2601513743051,39.25939519280542,39.25926835208257,39.259070118121805,39.258827686770005,39.25887278598995,39.25909872290316,39.25888761699679,39.25878760934536,39.25873585351835,39.25874882876058,39.258707345317475,39.258708226956806,39.258721322685574,39.258684941300544,39.258662238214605,39.25879131172852,39.258621703940626,39.258600501759005],"feasible_probability":0.15477581412282715,"one_hot_probability":1.0,"sampled_feasible_fraction":0.16015625,"counts":{"0010101":171,"0010110":3,"0011001":43,"0100101":45,"0100110":8,"0101001":85,"0101010":28,"1000101":42,"1000110":5,"1001001":42,"1001010":40},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12646060000406578}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.15477581412282715,"total_shots":512,"runtime_seconds":0.12669286598975305},"direct_metrics":{"exact_objective":44,"optimal_count":1,"combinations":72,"optimal_probability":0.1322106663464379,"feasible_probability":0.20993318125550925,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.027777777777777776,"shots_for_95_percent":22,"hit_curve":[{"shots":8,"quantum":0.6784011686495666,"uniform":0.10585733481633375},{"shots":16,"quantum":0.8965741916740355,"uniform":0.20050889429825008},{"shots":32,"quantum":0.9893031021721208,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9998855763768599,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9999999869072345,"uniform":0.8330797244996347},{"shots":512,"quantum":1.0,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":4.718447854656915e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":44},{"shots":32,"best_objective":44},{"shots":64,"best_objective":44},{"shots":128,"best_objective":44},{"shots":512,"best_objective":44}]},"component_metrics":[{"exact_objective":25,"optimal_count":1,"combinations":12,"optimal_probability":0.0821647673309223,"feasible_probability":0.15477581412282715,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":35,"hit_curve":[{"shots":8,"quantum":0.49636280264760674,"uniform":0.5014697532613109},{"shots":16,"quantum":0.7463495734430265,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9356614611074654,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9958605524131738,"uniform":0.9961846700381721},{"shots":128,"quantum":0.999982864973676,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":5.551115123125783e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":25},{"shots":32,"best_objective":25},{"shots":64,"best_objective":25},{"shots":128,"best_objective":25},{"shots":512,"best_objective":25}]}],"reduced_single_joint_draw_p_opt":0.0821647673309223,"diagnostic_seconds":0.011960240997723304}
+{"instance":"n5-s2-r3.json","seed":2,"direct":{"status":"feasible","best":{"feasible":true,"objective":44,"raw_cost":44,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r2","start":11,"end":12,"reserved_end":12,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":12,"end":15,"reserved_end":15,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r0","start":18,"end":19,"reserved_end":21,"changed":true},{"variable":12,"task":"t4","group":"g0","resource":"r2","start":20,"end":21,"reserved_end":21,"changed":true}],"bits":[1,0,0,1,0,0,1,0,0,1,0,0,1],"qubo_energy":44},"seed":2,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[5.025607341193353,0.2774629385302553],"expected_energy":81.79060947694413,"initial_expected_energy":118.47374545888908,"history":[118.47374545888908,108.72075875516039,121.62842061974536,114.61197140817617,113.44320197262894,110.45194734527706,108.23187562727878,107.2401334560991,105.85944135759411,104.31753414581911,102.74188221448767,99.94584434309691,100.66428664261568,106.17640636389666,99.05353985615942,97.59646074564961,94.97890635167415,106.94823194311164,95.16589535507855,94.8281955379524,100.07675455658938,92.17106168735445,90.74365794370335,90.0782960347876,91.51693150732116,89.53948640404077,89.03327824883017,88.07077050136559,86.83434203039934,85.61834553218827,85.43905885890976,95.53693813240724,83.59536147456308,83.80931982733439,83.50550443609282,83.80435734658016,83.40096448070577,83.23959748609619,82.99157853250519,83.24628979067475,82.8796585567402,82.75631945925959,82.60148039315843,82.89762881523183,82.4675835305782,82.53610382431788,82.45137733206909,82.40890273968157,82.36749496727879,82.30615470364472,82.18364025764801,82.04817045933598,81.87891753147517,82.37864969714883,81.85606831460733,81.93160406025129,81.8791148541432,81.81439964471642,81.79060947694413,81.80454407886387,94.02749906585161,99.7836000036564,118.68096140965034,116.38266138757679,94.26692647101427,94.75548769781709,93.84635231778996,98.37700756910982,92.5401395677543,90.42692689220752,89.61930678464569,90.80033321901148,89.324958487375,89.1766634494314,88.85958077241264,88.59099749416828,88.1050798181403,88.92446211429663,88.52413930014396,88.3436203079091,88.18575992379678,88.02989174742237,88.15012016653785,88.00899025857082,87.97164357479602,87.94010633014852,87.84533107718858,87.73148987402712,87.57115978792314,87.34213720049034,87.46489312789137,88.07951117028344,87.30321956929099,87.22829124203132,87.38700164037785,87.1662213159076,87.13783798811919,87.0792756241597,87.0178963207416,86.92760227171107,86.9579535333308,87.16795889757059,86.90930523264646,86.87031165052929,86.8491360546105,86.81122930907154,86.80083102480847,86.76248810860281,86.76928009306874,86.75612144872329,86.77495416824246,86.74020931824869,86.72718077407094,86.70194181850279,86.65542775902065,86.67961151720996,86.80978264837772,86.69100027544866,86.65076654972844,86.66257770924054],"feasible_probability":0.20420623792801385,"one_hot_probability":1.0,"sampled_feasible_fraction":0.22265625,"counts":{"0010100010011":3,"0010100010101":6,"0010100011001":14,"0010100100011":3,"0010100100101":3,"0010101000011":4,"0010101001001":3,"0010110000101":2,"0011000010011":8,"0011000010101":7,"0011000011001":7,"0011000100101":2,"0011000101001":1,"0011001000011":8,"0011001000101":2,"0011001001001":33,"0011010000011":1,"0011010001001":3,"0100100010011":11,"0100100010101":9,"0100100011001":15,"0100100100011":3,"0100100100101":1,"0100101000011":3,"0100101001001":13,"0100110000101":1,"0100110001001":1,"0101000010011":2,"0101000010101":4,"0101000011001":3,"0101000100101":1,"0101000101001":1,"0101001000011":4,"0101001000101":4,"0101001001001":16,"0101010001001":4,"1000100010011":5,"1000100010101":9,"1000100011001":12,"1000100100011":4,"1000100101001":2,"1000101000101":1,"1000101001001":5,"1000110000101":1,"1000110001001":4,"1001000010011":33,"1001000010101":34,"1001000011001":38,"1001000100101":5,"1001000101001":6,"1001001000011":14,"1001001000101":4,"1001001001001":69,"1001010000011":9,"1001010000101":6,"1001010001001":45},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.38049346501065884},"reduced":{"seed":2,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0,3],"fixed_cost":19,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":4,"forced_by":3,"reasons":["resource","precedence"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[6,7,8,9,10,11,12]],"components":[{"qubits":7,"penalty":28,"objective_bound":27,"offset":84,"linear":[-23,-21,-28,-18,-28,-25,-18],"quadratic":[[0,1,56],[0,2,28],[1,2,28],[1,4,28],[1,5,28],[2,3,56],[3,4,28],[3,5,28],[4,5,56],[4,6,56],[5,6,56]],"domains":[[0,1],[2,3],[4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":12,"cost":5},{"index":1,"task":"t2","resource":"r2","start":14,"cost":7},{"index":2,"task":"t3","resource":"r0","start":13,"cost":0},{"index":3,"task":"t3","resource":"r0","start":18,"cost":10},{"index":4,"task":"t4","resource":"r1","start":16,"cost":0},{"index":5,"task":"t4","resource":"r2","start":16,"cost":3},{"index":6,"task":"t4","resource":"r2","start":20,"cost":10}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":4,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource","group"]},{"i":3,"j":4,"reasons":["precedence"]},{"i":3,"j":5,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":44,"raw_cost":44,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r2","start":11,"end":12,"reserved_end":12,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":12,"end":15,"reserved_end":15,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r0","start":18,"end":19,"reserved_end":21,"changed":true},{"variable":12,"task":"t4","group":"g0","resource":"r2","start":20,"end":21,"reserved_end":21,"changed":true}],"bits":[1,0,0,1,0,0,1,0,0,1,0,0,1],"qubo_energy":44},"components":[{"status":"feasible","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":12,"end":15,"reserved_end":15,"changed":true},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":18,"end":19,"reserved_end":21,"changed":true},{"variable":6,"task":"t4","group":"g0","resource":"r2","start":20,"end":21,"reserved_end":21,"changed":true}],"bits":[1,0,0,1,0,0,1],"qubo_energy":25},"seed":2001025171,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4834534098160437,2.880556430736116],"expected_energy":35.345574064695576,"initial_expected_energy":44.65275164049554,"history":[44.65275164049554,44.080990899869185,44.61951290410101,57.227353121260094,44.53725846293436,46.106631741230274,43.43491970027708,42.158184003347976,40.66021712678893,40.70299014720985,40.566636525367386,40.37267100182475,40.40702648836631,40.43976338625998,40.38267489159056,40.342894131639284,40.28489908668284,40.17715150173922,40.26107142250808,40.32527232390025,40.157673475854345,40.097687258191016,39.988447002095654,39.79943144762713,39.537545585940265,40.83797834302446,40.612325762967544,39.52593566128208,39.48898970476119,39.42039903078721,39.325551450039555,39.57339091428419,39.43021789081162,39.31948838575954,39.39493145206366,39.310195705625084,39.31343159786945,39.31385596461073,39.31088952536736,39.30717463316262,39.301624657112775,39.29221967550761,39.2868960408463,39.29575649174824,39.346938349870044,39.2755008334667,39.27468007971375,39.27228301127287,39.26873872903355,39.26432526551098,39.26102701593163,39.269624434471915,39.2705542677392,39.260854459932474,39.26004330168816,39.2589788743485,39.259450230489115,39.260539887877684,39.25919869991517,39.2605526008431,52.44611612653422,54.233650705416096,46.49462964666007,39.96461970099051,57.04018767717477,48.85985338184814,48.14026901069306,54.29622004147458,46.769362714629864,35.886729512054565,44.266305147035524,35.479601401704706,35.53221757050271,35.45768205816857,36.059574560298586,35.35667477547719,35.50594773723043,35.35414536985951,35.3665112142809,35.356032106453995,35.34981704780158,35.356113003871286,35.34888949012929,35.34913334291918,35.34879716881353,35.34868652793027,35.34876649643393,35.3485214454652,35.34838695364557,35.34843966590696,35.34825053803458,35.348172566725246,35.348258316052465,35.34801023046724,35.34786213624557,35.34757235743926,35.34711901298184,35.34715142846789,35.3477003805659,35.34694202363898,35.346745604328746,35.34675740342263,35.34661211272449,35.3468172267505,35.34668202826561,35.346533862326346,35.34662424283804,35.34642558079172,35.34632761256475,35.34613076832107,35.34577926260454,35.3463318719259,35.34640655349285,35.34589064370164,35.34574460726266,35.34576712005885,35.34568932813428,35.34566352178422,35.34581564730902,35.345574064695576],"feasible_probability":0.3098765843673513,"one_hot_probability":1.0,"sampled_feasible_fraction":0.345703125,"counts":{"0010101":121,"0010110":11,"0011001":40,"0011010":4,"0100101":79,"0101001":25,"0101010":13,"1000101":26,"1000110":16,"1001001":117,"1001010":60},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11507600599725265}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.3098765843673513,"total_shots":512,"runtime_seconds":0.11527443899831269},"direct_metrics":{"exact_objective":44,"optimal_count":1,"combinations":72,"optimal_probability":0.129522424945434,"feasible_probability":0.20420623792801385,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.027777777777777776,"shots_for_95_percent":22,"hit_curve":[{"shots":8,"quantum":0.6703442163640688,"uniform":0.10585733481633375},{"shots":16,"quantum":0.8913270643153801,"uniform":0.20050889429825008},{"shots":32,"quantum":0.9881901930496865,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9998605284597963,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9999999805476895,"uniform":0.8330797244996347},{"shots":512,"quantum":1.0,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":44},{"shots":16,"best_objective":44},{"shots":32,"best_objective":44},{"shots":64,"best_objective":44},{"shots":128,"best_objective":44},{"shots":512,"best_objective":44}]},"component_metrics":[{"exact_objective":25,"optimal_count":1,"combinations":12,"optimal_probability":0.19320569492752873,"feasible_probability":0.3098765843673513,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":14,"hit_curve":[{"shots":8,"quantum":0.8204842359137264,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9677740904445213,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9989614907533221,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999989214985445,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999988368,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":25},{"shots":16,"best_objective":25},{"shots":32,"best_objective":25},{"shots":64,"best_objective":25},{"shots":128,"best_objective":25},{"shots":512,"best_objective":25}]}],"reduced_single_joint_draw_p_opt":0.19320569492752873,"diagnostic_seconds":0.012480375007726252}
+{"instance":"n5-s2-r3.json","seed":3,"direct":{"status":"feasible","best":{"feasible":true,"objective":44,"raw_cost":44,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r2","start":11,"end":12,"reserved_end":12,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":12,"end":15,"reserved_end":15,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r0","start":18,"end":19,"reserved_end":21,"changed":true},{"variable":12,"task":"t4","group":"g0","resource":"r2","start":20,"end":21,"reserved_end":21,"changed":true}],"bits":[1,0,0,1,0,0,1,0,0,1,0,0,1],"qubo_energy":44},"seed":3,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.8562759419120244,2.0109807318433686],"expected_energy":86.67008798523486,"initial_expected_energy":115.55420453671601,"history":[115.55420453671601,124.00886380610095,111.81304728241095,92.94450190591273,91.82084013344172,123.40459215137747,117.10513848410984,115.20526681872002,92.66672696777677,91.21364869266117,91.64158244872047,92.2683454054164,90.13979705433209,90.78776987998134,90.35622212841261,90.16899402594436,90.05638898554432,90.05339641504244,90.00192962721887,89.95567991809256,89.87685525644397,89.74743092698534,89.44346240768581,88.95764059237264,91.37494473068809,92.26575318756288,88.84016206873696,88.85092131664541,89.06583472105585,88.77100926573561,88.74689066029183,88.65662064456515,88.56355951030164,88.40699733750976,88.1628913636228,87.69133313218778,86.9071724655594,98.40409651336705,96.58237391216173,87.36137769657624,89.56447149163333,87.062208606159,87.14228604202916,86.88433806112586,86.8647593491302,86.91918224434735,86.84136665950932,86.83041680293204,86.81392204947772,86.78340250789643,86.74049348786153,86.75063843852291,86.7808494334935,86.75416452840136,86.72611960350257,86.73967180277877,86.71402396304669,86.70403819224849,86.69180301930388,86.67008798523486,111.61369632787931,116.32038486114647,118.96862162400033,118.86042738457398,112.2771289990053,110.80640825572247,111.57039992873717,111.10339052559286,110.33465164383159,110.03613959318236,111.58152107329344,109.29058779472172,107.73917604882737,104.4180838016008,97.2363895560406,97.27655203573445,119.00591338799181,105.01675214491218,98.12768854821522,97.92741452220864,97.51173370604684,96.45515270642417,96.30719114714768,99.03024151350226,95.79897720767246,94.36836239577696,94.02388271034124,95.44362853873872,93.52521267116171,93.08333942850558,92.28129795130104,90.90011677650187,92.8988874776007,94.39899404373793,90.98243360806676,90.80205275630546,90.80160553144492,91.1741997543916,90.81004559287278,90.67248029905272,90.45602024107652,90.29762321665211,90.04997784227984,89.91466102528332,89.63826318634027,89.3383815796214,88.85831470402287,88.6468954622444,88.35481539507424,89.61798037106387,89.47738593048012,88.57793628081134,87.89377611067829,87.80133483359887,87.67644815863395,87.76551572716996,87.61198385453505,87.65170705142509,87.57801385365924,87.55752550292756],"feasible_probability":0.23822486044195443,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.2109375,"counts":{"0010100100011":1,"0010100101001":3,"0010101000011":8,"0010101001001":21,"0010110000011":2,"0010110001001":3,"0011000011001":4,"0011000100101":2,"0011000101001":7,"0011001000011":30,"0011001001001":67,"0011010000011":1,"0011010000101":3,"0011010001001":15,"0100100100101":1,"0100100101001":1,"0100101000011":3,"0100101001001":2,"0100110000011":3,"0100110001001":8,"0101000101001":1,"0101001000011":1,"0101001001001":1,"0101010000101":2,"0101010001001":3,"1000100010011":1,"1000100011001":5,"1000100100011":2,"1000100100101":3,"1000100101001":3,"1000101000011":22,"1000101001001":66,"1000110000011":8,"1000110000101":3,"1000110001001":28,"1001000010011":1,"1001000011001":10,"1001000100011":2,"1001000100101":3,"1001000101001":10,"1001001000011":31,"1001001000101":1,"1001001001001":83,"1001010000011":6,"1001010000101":6,"1001010001001":25},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.35937499700230546},"reduced":{"seed":3,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0,3],"fixed_cost":19,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":4,"forced_by":3,"reasons":["resource","precedence"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[6,7,8,9,10,11,12]],"components":[{"qubits":7,"penalty":28,"objective_bound":27,"offset":84,"linear":[-23,-21,-28,-18,-28,-25,-18],"quadratic":[[0,1,56],[0,2,28],[1,2,28],[1,4,28],[1,5,28],[2,3,56],[3,4,28],[3,5,28],[4,5,56],[4,6,56],[5,6,56]],"domains":[[0,1],[2,3],[4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":12,"cost":5},{"index":1,"task":"t2","resource":"r2","start":14,"cost":7},{"index":2,"task":"t3","resource":"r0","start":13,"cost":0},{"index":3,"task":"t3","resource":"r0","start":18,"cost":10},{"index":4,"task":"t4","resource":"r1","start":16,"cost":0},{"index":5,"task":"t4","resource":"r2","start":16,"cost":3},{"index":6,"task":"t4","resource":"r2","start":20,"cost":10}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":4,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource","group"]},{"i":3,"j":4,"reasons":["precedence"]},{"i":3,"j":5,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":44,"raw_cost":44,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r2","start":11,"end":12,"reserved_end":12,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":12,"end":15,"reserved_end":15,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r0","start":18,"end":19,"reserved_end":21,"changed":true},{"variable":12,"task":"t4","group":"g0","resource":"r2","start":20,"end":21,"reserved_end":21,"changed":true}],"bits":[1,0,0,1,0,0,1,0,0,1,0,0,1],"qubo_energy":44},"components":[{"status":"feasible","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":12,"end":15,"reserved_end":15,"changed":true},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":18,"end":19,"reserved_end":21,"changed":true},{"variable":6,"task":"t4","group":"g0","resource":"r2","start":20,"end":21,"reserved_end":21,"changed":true}],"bits":[1,0,0,1,0,0,1],"qubo_energy":25},"seed":819382448,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.6514050746027655,1.1984960539583769],"expected_energy":39.263899699057006,"initial_expected_energy":42.5496017583146,"history":[42.5496017583146,41.45303753173209,53.425025979997635,45.035731474325885,50.79942732145601,40.981634958782024,39.50109525868643,40.244030480593565,39.429471697522374,39.658350626704056,39.49205493343682,39.4644565453023,39.45011770398819,39.4263740490333,39.41822793655477,39.41038953395464,39.39918925462407,39.38851086499957,39.36865949428681,39.33634861195446,39.347793422365356,39.44549418846369,39.33717961495319,39.33471984503527,39.335712722659494,39.33835295185225,39.32941325691983,39.32693370893444,39.34129436642777,39.32253776319548,39.318661459014436,39.311711245728155,39.30164862217116,39.32537838645864,39.338230013307296,39.2977010816026,39.29479929633817,39.305275831111935,39.29104495206711,39.28921848354271,39.28676794909849,39.28250413562857,39.28686872598914,39.28341693669419,39.283816699807765,39.280698848731554,39.27885752212315,39.27780190966265,39.273605677247424,39.27751282007531,39.27269060206429,39.27594746990924,39.27089896135889,39.26937744883623,39.26837511490874,39.26593110023758,39.26937345850443,39.265091556293925,39.26765757854341,39.263899699057006,45.87393718686301,46.37676524442481,51.29630835446554,46.08636263347134,48.984908477557404,47.30691524754769,43.509903698265774,44.365652173563674,42.92327914360916,42.559060008074475,42.44763583769472,42.27058199375281,42.11584336770994,41.86241647642744,41.242904793629705,41.006029443676624,45.52833992581151,45.17518493172636,41.01429851640921,40.169563619962375,40.77553387518735,40.28682176695631,40.338738239629095,40.15819799175682,40.12572486015639,40.065852099481944,39.96402218266239,39.78567319814838,39.78291856390534,39.51687045329643,42.597716814354506,39.76862105755381,39.50826708791011,39.93364583708925,39.428217874778525,39.43161850178938,39.42198586879332,39.42625190228786,39.42751298493695,39.413190966652365,39.405195162341,39.416180582007875,39.40027174229138,39.396465304545416,39.39148053760101,39.382498523919196,39.36491667851738,39.33947345806398,39.48794664554744,39.49803293674372,39.33187228384125,39.33468250172985,39.32965045321281,39.33881158189308,39.322678997809646,39.31848919404472,39.31570636347063,39.318172360368884,39.314217950399694,39.31340877746283],"feasible_probability":0.15364177969160758,"one_hot_probability":1.0,"sampled_feasible_fraction":0.1328125,"counts":{"0010101":153,"0010110":2,"0011001":32,"0100101":79,"0100110":5,"0101001":82,"0101010":38,"1000101":53,"1001001":29,"1001010":39},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11235701899568085}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.15364177969160758,"total_shots":512,"runtime_seconds":0.11256451401277445},"direct_metrics":{"exact_objective":44,"optimal_count":1,"combinations":72,"optimal_probability":0.17801926693362588,"feasible_probability":0.23822486044195443,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.027777777777777776,"shots_for_95_percent":16,"hit_curve":[{"shots":8,"quantum":0.7916022126207258,"uniform":0.10585733481633375},{"shots":16,"quantum":0.9565703622154229,"uniform":0.20050889429825008},{"shots":32,"quantum":0.9981138665619004,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9999964425006537,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9999999999873442,"uniform":0.8330797244996347},{"shots":512,"quantum":1.0,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.5265566588595902e-16,"independent_samples":[{"shots":8,"best_objective":44},{"shots":16,"best_objective":44},{"shots":32,"best_objective":44},{"shots":64,"best_objective":44},{"shots":128,"best_objective":44},{"shots":512,"best_objective":44}]},"component_metrics":[{"exact_objective":25,"optimal_count":1,"combinations":12,"optimal_probability":0.07849357240658592,"feasible_probability":0.15364177969160758,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":37,"hit_curve":[{"shots":8,"quantum":0.4800196278768883,"uniform":0.5014697532613109},{"shots":16,"quantum":0.7296204126067103,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9268948787210344,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9946556412427877,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999714378294742,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":25},{"shots":32,"best_objective":25},{"shots":64,"best_objective":25},{"shots":128,"best_objective":25},{"shots":512,"best_objective":25}]}],"reduced_single_joint_draw_p_opt":0.07849357240658592,"diagnostic_seconds":0.010413387994049117}
+{"instance":"n5-s2-r3.json","seed":4,"direct":{"status":"feasible","best":{"feasible":true,"objective":44,"raw_cost":44,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r2","start":11,"end":12,"reserved_end":12,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":12,"end":15,"reserved_end":15,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r0","start":18,"end":19,"reserved_end":21,"changed":true},{"variable":12,"task":"t4","group":"g0","resource":"r2","start":20,"end":21,"reserved_end":21,"changed":true}],"bits":[1,0,0,1,0,0,1,0,0,1,0,0,1],"qubo_energy":44},"seed":4,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[5.034119537485548,0.27921867334026323],"expected_energy":81.76662314230319,"initial_expected_energy":116.9994695711593,"history":[116.9994695711593,116.61963260329453,123.39506438091172,110.23998007358844,117.8154321737756,102.48073471304505,101.56683256215393,109.48181932780642,116.05888045740556,91.6315970746702,137.42748321857698,99.70934600460802,90.8958793292959,99.04609455482469,90.23039681910446,89.43571438530157,88.52646882281672,87.38662903395914,89.88445406033671,86.22951598865174,87.25100287659949,85.37627881354669,85.45348181675337,85.1598940148723,85.32914274056435,85.2868110557047,84.97400751222654,84.90222127918298,85.12065245718318,84.86036637232392,84.77870727077348,84.6196674313579,84.31370283752082,83.75018533261206,83.97204396336468,83.94018475946366,83.68549328481475,84.17080525860055,83.59190325404658,83.43348663345463,83.20345469954648,82.79863226152509,83.91710327973485,83.0049897675332,82.74082880741733,83.02333353646954,82.62315568863735,82.54876482952554,82.45786203715718,82.37174440585093,82.23368866418605,82.05889737719338,81.81778990332282,82.15224855507051,82.39125373001445,81.79257163458345,82.14376621329438,81.76662314230319,81.77350878074697,81.79748103505567,119.6951412739885,122.27449218056005,116.85309584843137,121.16458292079949,117.40217904169342,117.38541747492798,114.75818744816945,118.10132800570094,114.78492687945386,115.2124483284326,114.02388434790313,113.7729364411932,116.57583097309302,112.77051975097586,111.89573779420974,110.41304001972085,107.25822742800302,100.1264804305317,117.11535259789554,124.32420855170335,110.80850151162339,99.06797779794573,100.00644621899701,98.82402973510462,100.95165454919751,97.49206774859206,96.87172990017012,95.73642732526062,93.68409498893193,89.68248304808071,89.8366755098904,101.24897986555493,91.2875085834806,90.10374386637451,90.4146611918087,89.17941496502809,88.72645842026259,88.66038819256747,87.9012229827523,87.15515617582457,86.55664254678594,87.52274075695902,86.0890103242565,85.84164675304551,85.43889270193877,84.80574730918562,84.12778417846339,83.74560430566925,82.82767788984125,87.68119933148476,87.84126744872327,83.70040561820943,82.85859371907985,83.24725339767481,82.81475108887595,82.83966839238774,82.82742881494802,82.79911773143509,82.80746230090709,82.80133733234985],"feasible_probability":0.20614133308927562,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.208984375,"counts":{"0010100010011":9,"0010100010101":11,"0010100011001":13,"0010100100011":3,"0010100101001":1,"0010101000011":1,"0010101001001":4,"0011000010011":6,"0011000010101":6,"0011000011001":12,"0011000100011":2,"0011000100101":9,"0011001000011":10,"0011001000101":1,"0011001001001":26,"0011010000101":1,"0011010001001":4,"0100100010011":12,"0100100010101":6,"0100100011001":19,"0100100100011":3,"0100100100101":1,"0100100101001":1,"0100101000101":2,"0100101001001":11,"0100110001001":1,"0101000010011":3,"0101000010101":2,"0101000011001":5,"0101000100011":1,"0101000100101":1,"0101000101001":1,"0101001000011":2,"0101001000101":1,"0101001001001":13,"0101010001001":4,"1000100010011":6,"1000100010101":12,"1000100011001":12,"1000100100011":5,"1000100100101":1,"1000100101001":2,"1000101000011":2,"1000101001001":6,"1000110000011":1,"1000110001001":1,"1001000010011":32,"1001000010101":27,"1001000011001":48,"1001000100011":2,"1001000100101":5,"1001000101001":5,"1001001000011":15,"1001001000101":5,"1001001001001":69,"1001010000011":5,"1001010000101":5,"1001010001001":38},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.37064629899396095},"reduced":{"seed":4,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0,3],"fixed_cost":19,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":4,"forced_by":3,"reasons":["resource","precedence"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[6,7,8,9,10,11,12]],"components":[{"qubits":7,"penalty":28,"objective_bound":27,"offset":84,"linear":[-23,-21,-28,-18,-28,-25,-18],"quadratic":[[0,1,56],[0,2,28],[1,2,28],[1,4,28],[1,5,28],[2,3,56],[3,4,28],[3,5,28],[4,5,56],[4,6,56],[5,6,56]],"domains":[[0,1],[2,3],[4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":12,"cost":5},{"index":1,"task":"t2","resource":"r2","start":14,"cost":7},{"index":2,"task":"t3","resource":"r0","start":13,"cost":0},{"index":3,"task":"t3","resource":"r0","start":18,"cost":10},{"index":4,"task":"t4","resource":"r1","start":16,"cost":0},{"index":5,"task":"t4","resource":"r2","start":16,"cost":3},{"index":6,"task":"t4","resource":"r2","start":20,"cost":10}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":4,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource","group"]},{"i":3,"j":4,"reasons":["precedence"]},{"i":3,"j":5,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":44,"raw_cost":44,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r2","start":11,"end":12,"reserved_end":12,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":12,"end":15,"reserved_end":15,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r0","start":18,"end":19,"reserved_end":21,"changed":true},{"variable":12,"task":"t4","group":"g0","resource":"r2","start":20,"end":21,"reserved_end":21,"changed":true}],"bits":[1,0,0,1,0,0,1,0,0,1,0,0,1],"qubo_energy":44},"components":[{"status":"feasible","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":12,"end":15,"reserved_end":15,"changed":true},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":18,"end":19,"reserved_end":21,"changed":true},{"variable":6,"task":"t4","group":"g0","resource":"r2","start":20,"end":21,"reserved_end":21,"changed":true}],"bits":[1,0,0,1,0,0,1],"qubo_energy":25},"seed":367776961,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[-1.1401160985456724,1.9749104539475784],"expected_energy":39.64494599094698,"initial_expected_energy":49.54370512955309,"history":[49.54370512955309,52.0427744381042,46.12745850228218,47.981333085862445,47.82949570327287,45.13852699920034,46.945599186488465,45.315788532290604,46.30566227824373,45.10601567657078,44.94038531748478,44.933404916962154,44.651521561573915,44.720706786646346,44.7257758641921,44.77295243510681,44.59398772612217,44.63191108434192,44.57782686411369,44.541645411177505,44.46732087491692,44.318262157747796,44.027729802172686,43.40113160274365,43.27135435198379,45.44425624937294,46.78606976342974,43.33219425508002,42.13920856004239,42.200578990171415,42.268984203324294,42.222314360415616,42.01012834469502,41.91537566220423,41.739400197395426,41.42696551940824,40.994479036045014,41.32170149410577,42.11272278902101,40.9898960707833,41.10132489535751,40.99722343259418,40.95148095396947,40.91907041672553,40.85080397775767,40.719573123746954,40.47244454117743,40.072869318683225,41.85174823123293,43.14026302983219,40.31882537733172,40.05815666086409,40.488231478386766,39.96079063391571,39.93951199450679,39.88523622824715,39.837668447047044,39.769283559691715,39.713657493387075,39.64494599094698,48.29826299709046,49.01862238420866,44.275723016907236,50.11458103799963,43.79849553809832,45.44270136836853,43.789249660097326,43.40467103798981,43.26580638325575,43.09165519668747,42.96679833574464,42.77926303954982,42.598192846687084,42.25280159809711,42.75700318620147,42.46165196158317,42.35006588860922,42.448543332444245,42.18370657591348,42.216807494969366,42.1445216754611,42.11481772593279,42.12224375284004,42.0774877234298,42.04995050695142,42.047175351348145,42.110487481501856,42.049490026488826,42.023985535164094,41.98342715107138,41.94450531899905,41.88043432307022,41.82112224387132,41.69472452856933,41.45810054606106,41.400499721887954,40.91918045887046,41.85979120597004,41.34227499029063,40.866214463924535,40.97340013641922,40.86197279848527,40.806103083355104,40.6984672596012,40.49386046481426,40.126027214386625,42.63054400114839,42.214400178160375,40.43168347319518,40.09203602059784,40.276320265636,40.0592243280567,40.02941510740684,40.09411122579422,39.99760805448694,39.96778344774074,40.01597710957148,39.93888334684775,39.90975200243241,39.933218424433164],"feasible_probability":0.18443971955259536,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.177734375,"counts":{"0010101":125,"0010110":3,"0011001":58,"0011010":1,"0100101":55,"0100110":7,"0101001":73,"0101010":32,"1000101":60,"1000110":7,"1001001":58,"1001010":33},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12871235999045894}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.18443971955259536,"total_shots":512,"runtime_seconds":0.1289487710018875},"direct_metrics":{"exact_objective":44,"optimal_count":1,"combinations":72,"optimal_probability":0.13090440185109453,"feasible_probability":0.20614133308927562,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.027777777777777776,"shots_for_95_percent":22,"hit_curve":[{"shots":8,"quantum":0.6745079374767106,"uniform":0.10585733481633375},{"shots":16,"quantum":0.8940549172343351,"uniform":0.20050889429825008},{"shots":32,"quantum":0.9887756394377764,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9998740137299692,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9999999841274597,"uniform":0.8330797244996347},{"shots":512,"quantum":1.0,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.249000902703301e-16,"independent_samples":[{"shots":8,"best_objective":44},{"shots":16,"best_objective":44},{"shots":32,"best_objective":44},{"shots":64,"best_objective":44},{"shots":128,"best_objective":44},{"shots":512,"best_objective":44}]},"component_metrics":[{"exact_objective":25,"optimal_count":1,"combinations":12,"optimal_probability":0.11937049604826339,"feasible_probability":0.18443971955259536,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":24,"hit_curve":[{"shots":8,"quantum":0.6383022117011801,"uniform":0.5014697532613109},{"shots":16,"quantum":0.8691747099397421,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9828847434806494,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9997070679942768,"uniform":0.9961846700381721},{"shots":128,"quantum":0.99999991419084,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.3877787807814457e-16,"independent_samples":[{"shots":8,"best_objective":25},{"shots":16,"best_objective":25},{"shots":32,"best_objective":25},{"shots":64,"best_objective":25},{"shots":128,"best_objective":25},{"shots":512,"best_objective":25}]}],"reduced_single_joint_draw_p_opt":0.11937049604826339,"diagnostic_seconds":0.012462694008718245}
+{"instance":"n5-s2-r3.json","seed":5,"direct":{"status":"feasible","best":{"feasible":true,"objective":44,"raw_cost":44,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r2","start":11,"end":12,"reserved_end":12,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":12,"end":15,"reserved_end":15,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r0","start":18,"end":19,"reserved_end":21,"changed":true},{"variable":12,"task":"t4","group":"g0","resource":"r2","start":20,"end":21,"reserved_end":21,"changed":true}],"bits":[1,0,0,1,0,0,1,0,0,1,0,0,1],"qubo_energy":44},"seed":5,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.2079645432468566,2.901443818963221],"expected_energy":82.79371574441288,"initial_expected_energy":117.96216630260837,"history":[117.96216630260837,117.92785711388854,89.50934616524901,157.10931900715528,99.54043100555027,90.14273424628567,90.85374602873854,90.48882227338663,89.26713568420006,91.67084813093493,88.59928764204861,88.08648904949024,87.2624885867593,85.69108746149715,83.46370514441163,93.30289955536087,88.75700523658134,83.28078738608392,83.86739382862729,83.6923333480816,83.17315892708577,83.14881056140933,83.32385970997366,83.10757218052923,83.0758723693212,83.02731446936224,82.9413172488544,82.88359302206912,83.11914301005015,83.29318978551143,82.82151377775958,82.84250196073117,82.82022333844456,82.84643579336826,82.81408260605804,82.81806949928651,82.82170643415407,82.81209127497031,82.81205927782196,82.81283910670462,82.81224164231064,82.81127660868322,82.81000778589441,82.81122896940066,82.80891427936513,82.80871409889062,82.81081404320791,82.80787050307804,82.80645351973627,82.80439679588044,82.80034961353132,82.79463527258486,82.80711563947263,82.804812189201,82.79409172665028,82.79543705235506,82.7943479278602,82.79392290105528,82.79408913761006,82.79371574441288,120.72154216311968,131.39095446142645,133.08716100219618,142.3646642552428,130.8174636984635,116.96183653428118,122.68456076537312,116.47790699961575,116.53347276884453,115.61412727952306,115.25709459279511,124.37641169441751,112.0913222007263,109.9393196728171,108.37364096874967,104.06855499988836,96.67275790788526,111.36152529951819,101.54975260324736,100.26033276109372,98.2005028099672,94.6293672938725,95.51225836585465,92.88419662602462,92.02293404321641,90.14841787661999,89.2254051561833,87.78179076280858,86.83393733372239,85.9579251764091,85.16489544078387,86.97158782022478,85.13853386390927,84.1529554587652,83.25696949632325,83.71167614925676,85.32396049264452,83.58486814778966,83.81427949224866,83.45989744961472,83.12696368337295,83.1974747470689,83.11356163343581,83.09070365759821,83.06393297455577,83.02402470833435,83.29350131997656,82.99531068942353,82.96123255362596,82.99118934855001,82.93615831642704,82.91969310709892,83.02036255513518,82.88997598156001,82.87948293394635,82.86414445710213,82.84191294428884,83.03252078067541,82.85651328550969,82.8528825582669],"feasible_probability":0.07786275254873148,"one_hot_probability":1.0,"sampled_feasible_fraction":0.076171875,"counts":{"0010100010011":42,"0010100010101":25,"0010100011001":15,"0010100100011":2,"0010100100101":6,"0010101000011":23,"0010101000101":4,"0010101001001":34,"0010110001001":3,"0011000010011":3,"0011000010101":1,"0011000011001":3,"0011000100101":1,"0011000101001":2,"0011001000011":13,"0011001000101":4,"0011001001001":8,"0011010001001":1,"0100100010011":32,"0100100010101":17,"0100100011001":15,"0100100100011":2,"0100100100101":3,"0100101000011":21,"0100101000101":7,"0100101001001":26,"0100110000011":1,"0101000010011":2,"0101000010101":1,"0101000011001":1,"0101000100011":3,"0101000101001":1,"0101001000011":8,"0101001000101":3,"0101001001001":8,"1000100010011":16,"1000100010101":8,"1000100011001":10,"1000100100011":1,"1000100100101":1,"1000100101001":1,"1000101000011":9,"1000101001001":4,"1000110000011":1,"1000110000101":8,"1000110001001":8,"1001000010011":19,"1001000010101":6,"1001000011001":2,"1001000100101":1,"1001000101001":3,"1001001000011":16,"1001001000101":1,"1001001001001":24,"1001010000011":11,"1001010000101":6,"1001010001001":15},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.40820199500012677},"reduced":{"seed":5,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0,3],"fixed_cost":19,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":4,"forced_by":3,"reasons":["resource","precedence"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[6,7,8,9,10,11,12]],"components":[{"qubits":7,"penalty":28,"objective_bound":27,"offset":84,"linear":[-23,-21,-28,-18,-28,-25,-18],"quadratic":[[0,1,56],[0,2,28],[1,2,28],[1,4,28],[1,5,28],[2,3,56],[3,4,28],[3,5,28],[4,5,56],[4,6,56],[5,6,56]],"domains":[[0,1],[2,3],[4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":12,"cost":5},{"index":1,"task":"t2","resource":"r2","start":14,"cost":7},{"index":2,"task":"t3","resource":"r0","start":13,"cost":0},{"index":3,"task":"t3","resource":"r0","start":18,"cost":10},{"index":4,"task":"t4","resource":"r1","start":16,"cost":0},{"index":5,"task":"t4","resource":"r2","start":16,"cost":3},{"index":6,"task":"t4","resource":"r2","start":20,"cost":10}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":4,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource","group"]},{"i":3,"j":4,"reasons":["precedence"]},{"i":3,"j":5,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":44,"raw_cost":44,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r2","start":11,"end":12,"reserved_end":12,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":12,"end":15,"reserved_end":15,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r0","start":18,"end":19,"reserved_end":21,"changed":true},{"variable":12,"task":"t4","group":"g0","resource":"r2","start":20,"end":21,"reserved_end":21,"changed":true}],"bits":[1,0,0,1,0,0,1,0,0,1,0,0,1],"qubo_energy":44},"components":[{"status":"feasible","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":12,"end":15,"reserved_end":15,"changed":true},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":18,"end":19,"reserved_end":21,"changed":true},{"variable":6,"task":"t4","group":"g0","resource":"r2","start":20,"end":21,"reserved_end":21,"changed":true}],"bits":[1,0,0,1,0,0,1],"qubo_energy":25},"seed":803261128,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.4906190365630805,2.8807452370297653],"expected_energy":35.34500091565203,"initial_expected_energy":48.815477881353516,"history":[48.815477881353516,48.541996678309886,35.96902228521082,62.84671726450193,36.93200467661224,35.35119710115218,36.44623126834796,35.372442476144855,35.650359195071104,35.47447492953074,35.364761172829915,35.36071622945213,35.35028667981465,35.35053020064616,35.35034602698775,35.350954611293716,35.34938975563488,35.349082561983906,35.34965619260986,35.34901973125043,35.34884838195073,35.348684207231955,35.34848429646115,35.34814351849778,35.347878854694585,35.34733673109239,35.346382466473784,35.349374124304795,35.34887726872744,35.34721994899958,35.34627108468899,35.34638583161457,35.34621031560746,35.346273098027126,35.34611301486753,35.34603581583062,35.34621774918293,35.34597135329916,35.345886702827066,35.34573352095898,35.34567011326553,35.345477371905226,35.34631224681332,35.34530672012405,35.34535013217161,35.34538805990363,35.345294509922034,35.34532129290155,35.345287608610114,35.34527458767347,35.3452503460973,35.34521152940818,35.345255652088696,35.34519458589402,35.34515050076818,35.34507335407163,35.34500975365226,35.3453996310126,35.34539784679113,35.34500091565203,45.437033276436686,48.14026781946147,49.389449762807274,47.69451497247657,44.08461209494958,48.87420737016115,43.868370023021996,43.68497263421627,43.61606356239256,43.88755931938877,43.30624644026954,43.227228179906255,43.03677399135279,42.863430453161115,42.54790545190751,42.16684717005436,41.61242555218567,43.785682992586196,42.63107407127107,42.84397119705727,41.75627071049312,41.40258225299554,41.35027978478682,41.733329557011466,41.24533495048226,41.17521878414964,41.109319144845585,41.080275533561235,40.900270145186894,40.92607354027164,40.87099357177425,40.938136000473676,40.85024825364056,40.82218669206879,40.78925707957936,40.74191504277637,40.75280076513382,40.70866590870364,40.69183840026077,40.71572218858484,40.68520069968584,40.67168802107099,40.64521779423967,40.59324178560388,40.492472705986,40.35477064003737,40.261617689018934,40.07369307708613,39.732260847747824,39.51761575874666,41.37297696784871,42.35849816715648,39.50234869468561,39.35706681898438,40.018714732275335,39.29340819199909,39.29562605306536,39.28873252141909,39.28926624339579,39.28960052071338],"feasible_probability":0.31020149841737477,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.3515625,"counts":{"0010101":131,"0010110":9,"0011001":43,"0011010":3,"0100101":72,"0101001":25,"0101010":8,"1000101":25,"1000110":16,"1001001":102,"1001010":78},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12343365300330333}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.31020149841737477,"total_shots":512,"runtime_seconds":0.12364928200258873},"direct_metrics":{"exact_objective":44,"optimal_count":1,"combinations":72,"optimal_probability":0.040556752573662994,"feasible_probability":0.07786275254873148,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.027777777777777776,"shots_for_95_percent":73,"hit_curve":[{"shots":8,"quantum":0.2819505976745792,"uniform":0.10585733481633375},{"shots":16,"quantum":0.48440505582010596,"uniform":0.20050889429825008},{"shots":32,"quantum":0.734161853536132,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9293300798846551,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9950057623908908,"uniform":0.8330797244996347},{"shots":512,"quantum":0.9999999993778762,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":7.632783294297951e-17,"independent_samples":[{"shots":8,"best_objective":null},{"shots":16,"best_objective":null},{"shots":32,"best_objective":44},{"shots":64,"best_objective":44},{"shots":128,"best_objective":44},{"shots":512,"best_objective":44}]},"component_metrics":[{"exact_objective":25,"optimal_count":1,"combinations":12,"optimal_probability":0.19372416914083082,"feasible_probability":0.31020149841737477,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":14,"hit_curve":[{"shots":8,"quantum":0.8214050675858913,"uniform":0.5014697532613109},{"shots":16,"quantum":0.968103850116,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9989826356225774,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999989649697235,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999989287,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":25},{"shots":16,"best_objective":25},{"shots":32,"best_objective":25},{"shots":64,"best_objective":25},{"shots":128,"best_objective":25},{"shots":512,"best_objective":25}]}],"reduced_single_joint_draw_p_opt":0.19372416914083082,"diagnostic_seconds":0.012050612000166439}
+{"instance":"n5-s2-r3.json","seed":6,"direct":{"status":"feasible","best":{"feasible":true,"objective":44,"raw_cost":44,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r2","start":11,"end":12,"reserved_end":12,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":12,"end":15,"reserved_end":15,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r0","start":18,"end":19,"reserved_end":21,"changed":true},{"variable":12,"task":"t4","group":"g0","resource":"r2","start":20,"end":21,"reserved_end":21,"changed":true}],"bits":[1,0,0,1,0,0,1,0,0,1,0,0,1],"qubo_energy":44},"seed":6,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[5.107437012877931,0.2731088082716186],"expected_energy":81.67753240992523,"initial_expected_energy":121.43629085431483,"history":[121.43629085431483,116.27941988320973,126.69655954447596,113.48120338945418,111.2919440775243,131.9956665807686,102.0169838435591,109.24447887680024,101.07840959344587,103.77139602896037,100.92329808547663,100.14171211923899,98.72827460598239,99.53040645598573,98.15934412350825,97.18383877323853,95.03757577524692,91.36528833436378,84.38397274998681,107.5076213423552,129.86356930830422,90.38104241587301,95.03890665983391,85.54441846284902,83.69328803193842,84.0109278923511,85.03253913409984,83.54636055198799,84.10573843464832,83.45217147566476,83.29210677702054,83.0248055764863,83.07658712611757,82.9284531876807,83.4469161878678,83.0120268461757,82.81331329925858,82.70604716584938,82.718435119872,82.65967922551174,82.62642431521125,82.62432501025813,82.69664282042245,82.5610600129548,82.45869222011939,82.32538967319869,82.16424530954069,81.95353098228294,81.75777498889718,82.5822818744279,82.5464715369046,81.80592525811724,81.86274445718828,81.79231131807364,81.75529394203323,81.73674633099861,81.72351399928087,81.6990467104531,81.73220445201775,81.72942108827573,121.87718333399081,111.24276498034406,117.44207484155534,116.06463000115863,116.26743552731277,111.51594036629687,108.99524320738539,105.35469901423464,97.1077334200997,85.93353502486107,110.05634974635875,137.738258565257,83.78484006338093,96.51808871097055,89.8282770568783,84.59872294667056,85.09683940537349,85.61391286982817,82.08143755049991,82.74080640927757,82.27192220013566,82.21773181152449,82.06317555110762,82.03933492794174,82.00839000740467,81.96432502872935,82.25485451207189,81.92451254018683,81.88718783099941,81.91870550929534,81.85780209375125,81.85925066966033,81.83728699338292,81.82062339406659,81.81987231226991,81.78025393205499,81.76215775575051,81.75187017951359,81.7794907505389,81.74329784250388,81.73656280956295,81.72319065085517,81.70468010599677,81.70386222770549,81.6863449203949,81.68777428801573,81.69979684187183,81.68950533912908,81.68422031422537,81.68163251113762,81.68270193973783,81.68029015670528,81.68069901485347,81.6805623288192,81.67986675917982,81.67943520774926,81.68073981119586,81.67910318302157,81.67850794130756,81.67753240992523],"feasible_probability":0.2125186873613647,"one_hot_probability":1.0000000000000002,"sampled_feasible_fraction":0.193359375,"counts":{"0010100010011":6,"0010100010101":12,"0010100011001":10,"0010100100011":2,"0010101000011":1,"0010101001001":7,"0010110001001":1,"0011000010011":6,"0011000010101":4,"0011000011001":6,"0011000100011":2,"0011000100101":1,"0011000101001":1,"0011001000011":8,"0011001000101":3,"0011001001001":37,"0011010000101":1,"0011010001001":5,"0100100010011":6,"0100100010101":9,"0100100011001":19,"0100100100011":1,"0100100100101":2,"0100100101001":2,"0100101000011":3,"0100101000101":2,"0100101001001":11,"0100110001001":1,"0101000010011":2,"0101000010101":1,"0101000011001":2,"0101000100101":2,"0101000101001":2,"0101001000011":4,"0101001000101":3,"0101001001001":15,"0101010000101":1,"0101010001001":5,"1000100010011":5,"1000100010101":7,"1000100011001":15,"1000100100011":4,"1000100100101":1,"1000100101001":3,"1000101001001":3,"1000110001001":6,"1001000010011":30,"1001000010101":32,"1001000011001":52,"1001000100011":5,"1001000100101":12,"1001000101001":2,"1001001000011":16,"1001001000101":6,"1001001001001":61,"1001010000011":6,"1001010000101":2,"1001010001001":38},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.3703839639929356},"reduced":{"seed":6,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0,3],"fixed_cost":19,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":4,"forced_by":3,"reasons":["resource","precedence"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[6,7,8,9,10,11,12]],"components":[{"qubits":7,"penalty":28,"objective_bound":27,"offset":84,"linear":[-23,-21,-28,-18,-28,-25,-18],"quadratic":[[0,1,56],[0,2,28],[1,2,28],[1,4,28],[1,5,28],[2,3,56],[3,4,28],[3,5,28],[4,5,56],[4,6,56],[5,6,56]],"domains":[[0,1],[2,3],[4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":12,"cost":5},{"index":1,"task":"t2","resource":"r2","start":14,"cost":7},{"index":2,"task":"t3","resource":"r0","start":13,"cost":0},{"index":3,"task":"t3","resource":"r0","start":18,"cost":10},{"index":4,"task":"t4","resource":"r1","start":16,"cost":0},{"index":5,"task":"t4","resource":"r2","start":16,"cost":3},{"index":6,"task":"t4","resource":"r2","start":20,"cost":10}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":4,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource","group"]},{"i":3,"j":4,"reasons":["precedence"]},{"i":3,"j":5,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":44,"raw_cost":44,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r2","start":11,"end":12,"reserved_end":12,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":12,"end":15,"reserved_end":15,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r0","start":18,"end":19,"reserved_end":21,"changed":true},{"variable":12,"task":"t4","group":"g0","resource":"r2","start":20,"end":21,"reserved_end":21,"changed":true}],"bits":[1,0,0,1,0,0,1,0,0,1,0,0,1],"qubo_energy":44},"components":[{"status":"feasible","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":12,"end":15,"reserved_end":15,"changed":true},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":18,"end":19,"reserved_end":21,"changed":true},{"variable":6,"task":"t4","group":"g0","resource":"r2","start":20,"end":21,"reserved_end":21,"changed":true}],"bits":[1,0,0,1,0,0,1],"qubo_energy":25},"seed":3153149895,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.5227325837056758,2.8802021422546797],"expected_energy":35.35176011952437,"initial_expected_energy":45.46677412683656,"history":[45.46677412683656,46.10906766879936,44.37020259035626,46.014340714786506,40.54512615652324,36.71486240950186,46.704080102577414,46.53307104107287,36.37134946364729,36.411560360573496,37.00459818648886,35.689575726115145,35.985502800747085,35.80351024889162,35.71671670338766,35.64823701807093,35.68507731170538,35.63418207460709,35.62798797219948,35.61271146320686,35.58673057162587,35.53873292562146,35.559749075830155,35.56726070509542,35.54986446302527,35.52210197996351,35.55178799266048,35.510795666673204,35.500244198167096,35.48928966118622,35.46768129674595,35.457040208088245,35.438467507398556,35.43299511024338,35.40679336648191,35.481542656548754,35.39409728517603,35.395139899441396,35.40517287591283,35.3914750383113,35.39102845595777,35.39520316040791,35.39075278893311,35.38903063976038,35.38631319857946,35.380990286666645,35.37408823961806,35.36768853569339,35.362447059588106,35.37895026319881,35.35776644099924,35.359902888242445,35.358602180613765,35.357423572218664,35.35550236843015,35.35500261721633,35.35176011952437,35.359348672935255,35.35459718909969,35.352594632468254,58.216063712432884,53.623375868546134,45.38531504817076,42.37794962614903,54.18215243754102,43.42438955892274,45.49899473904112,42.18014117813047,41.69986847189146,41.504787991366314,41.9013644104169,41.36017451501749,41.23163490229969,41.05533656820555,40.80754198790966,40.60977587116322,40.20057848038429,39.61432675380687,40.814691476926086,41.998878918405055,40.05241494139506,39.78892301137877,39.64214691625916,39.61687062802646,39.59744926374251,39.58440183136792,39.58369854502889,39.6425265026859,39.584617862705144,39.564644152612765,39.53502771290596,39.52877510099305,39.51559030205253,39.50698009721636,39.513042844441316,39.497009455712,39.48992345869672,39.4894891287667,39.481712947822736,39.47418431951251,39.459760028726926,39.43313770411511,39.39046118065014,39.51016751662458,39.51402035540947,39.387167864514794,39.37417965415557,39.35187524929098,39.3204997636102,39.31837510105718,39.29191930366215,39.348868910057924,39.31783058364138,39.28936965484662,39.295022609079176,39.28847954041276,39.285638996203986,39.282063543175674,39.27755139278905,39.27130171135844],"feasible_probability":0.3110739218715135,"one_hot_probability":1.0,"sampled_feasible_fraction":0.32421875,"counts":{"0010101":125,"0010110":8,"0011001":51,"0011010":2,"0100101":85,"0101001":16,"0101010":5,"1000101":41,"1000110":13,"1001001":112,"1001010":54},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.11834051400364842}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.3110739218715135,"total_shots":512,"runtime_seconds":0.11853438499383628},"direct_metrics":{"exact_objective":44,"optimal_count":1,"combinations":72,"optimal_probability":0.13373559456942372,"feasible_probability":0.2125186873613647,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.027777777777777776,"shots_for_95_percent":21,"hit_curve":[{"shots":8,"quantum":0.6828945123236174,"uniform":0.10585733481633375},{"shots":16,"quantum":0.8994441096855236,"uniform":0.20050889429825008},{"shots":32,"quantum":0.989888512923063,"uniform":0.3608139719037934},{"shots":64,"quantum":0.999897757829093,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9999999895465385,"uniform":0.8330797244996347},{"shots":512,"quantum":1.0,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.5265566588595902e-16,"independent_samples":[{"shots":8,"best_objective":46},{"shots":16,"best_objective":44},{"shots":32,"best_objective":44},{"shots":64,"best_objective":44},{"shots":128,"best_objective":44},{"shots":512,"best_objective":44}]},"component_metrics":[{"exact_objective":25,"optimal_count":1,"combinations":12,"optimal_probability":0.19584995562072524,"feasible_probability":0.3110739218715135,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":14,"hit_curve":[{"shots":8,"quantum":0.8251374843746038,"uniform":0.5014697532613109},{"shots":16,"quantum":0.969423100629158,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9990650532248654,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999991258745277,"uniform":0.9961846700381721},{"shots":128,"quantum":0.999999999999236,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":25},{"shots":16,"best_objective":25},{"shots":32,"best_objective":25},{"shots":64,"best_objective":25},{"shots":128,"best_objective":25},{"shots":512,"best_objective":25}]}],"reduced_single_joint_draw_p_opt":0.19584995562072524,"diagnostic_seconds":0.011396760994102806}
+{"instance":"n5-s2-r3.json","seed":7,"direct":{"status":"feasible","best":{"feasible":true,"objective":44,"raw_cost":44,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r2","start":11,"end":12,"reserved_end":12,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":12,"end":15,"reserved_end":15,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r0","start":18,"end":19,"reserved_end":21,"changed":true},{"variable":12,"task":"t4","group":"g0","resource":"r2","start":20,"end":21,"reserved_end":21,"changed":true}],"bits":[1,0,0,1,0,0,1,0,0,1,0,0,1],"qubo_energy":44},"seed":7,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[5.090474293885547,0.2737181249615721],"expected_energy":81.66967159004396,"initial_expected_energy":125.8034510119805,"history":[125.8034510119805,116.44621002815683,116.3876576890152,113.79076603912657,112.44997444058586,115.9250344715491,101.72734853848829,117.30257225272786,93.4247504287753,92.41363645918933,118.89573265692219,85.74506778869227,128.06948088060884,85.26707870218792,82.78022817981527,93.11521986703238,82.77355921377244,86.00317983592053,81.69491759410887,83.28729606510788,81.77638686878097,81.68491450259569,81.67241062744674,81.72018473635609,81.68260230576041,81.67138962037006,81.68855047927255,81.67239570939674,81.67246710009962,81.67162314253756,81.67122125130903,81.67097601121674,81.67087687475778,81.67119188736527,81.67068372801576,81.67052938369714,81.67028588696846,81.67003621077875,81.6697448303193,81.67186139306034,81.67013077808477,81.66972964766951,81.66995046392488,81.66976195162616,81.66978163481558,81.66972061456639,81.66971137567754,81.6697052319883,81.66971850664957,81.6697004809757,81.66969668895493,81.66970400293472,81.66969409265783,81.66969010262426,81.66968303418824,81.66967758970192,81.66968319153462,81.66969847033268,81.66967522185865,81.66967159004396,97.51831461420348,105.06175915328669,133.41793984158957,108.14298117951643,90.51983842449346,166.11329997812263,96.42363487965706,90.61783208400607,103.47891031745345,89.29040790563418,88.16453672233604,87.95490670895319,90.13077968390975,87.28219378199489,86.83154301551569,86.47237626750984,87.41833637966201,86.23284099243634,85.83680897001746,85.0924897424289,83.96260527376599,88.03231116031503,87.54518750105314,83.80445553343127,85.70806778041165,83.64377142818539,83.59705447749018,83.33263153238408,83.23627816811099,83.08314351487303,83.09150996038068,83.23930783913936,83.09006537587791,83.05415496889506,83.03487417216317,83.06088403371038,83.02248769108886,83.01044987984541,82.98976637891263,82.94946052796152,82.87812074958948,82.95008730272417,83.0598313062406,82.91300892913503,82.87160437041634,82.8843309266691,82.86631029888731,82.85949131884679,82.84699443355764,82.83396082085656,82.82735721267261,82.81152820888805,82.79297826327405,82.89739723275076,82.83255832139665,82.79303959594321,82.8131859663705,82.79214569240617,82.79547103597736,82.79271681753849],"feasible_probability":0.21083406349811384,"one_hot_probability":1.0,"sampled_feasible_fraction":0.193359375,"counts":{"0010100010011":6,"0010100010101":4,"0010100011001":12,"0010100100011":2,"0010100100101":1,"0010101000011":3,"0010101000101":1,"0010101001001":7,"0011000010011":5,"0011000010101":12,"0011000011001":12,"0011000100011":4,"0011000100101":1,"0011000101001":2,"0011001000011":9,"0011001000101":4,"0011001001001":37,"0011010000011":1,"0011010001001":11,"0100100010011":12,"0100100010101":8,"0100100011001":12,"0100100100011":3,"0100100100101":2,"0100101000011":2,"0100101001001":13,"0101000010101":2,"0101000011001":3,"0101000100101":1,"0101000101001":2,"0101001000011":5,"0101001000101":1,"0101001001001":23,"0101010001001":1,"1000100010011":4,"1000100010101":9,"1000100011001":20,"1000100100011":5,"1000100101001":1,"1000101000011":2,"1000101001001":4,"1000110000101":2,"1000110001001":2,"1001000010011":21,"1001000010101":29,"1001000011001":33,"1001000100011":6,"1001000100101":7,"1001000101001":4,"1001001000011":22,"1001001000101":6,"1001001001001":59,"1001010000011":5,"1001010000101":7,"1001010001001":40},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.43578882300062105},"reduced":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0,3],"fixed_cost":19,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":4,"forced_by":3,"reasons":["resource","precedence"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[6,7,8,9,10,11,12]],"components":[{"qubits":7,"penalty":28,"objective_bound":27,"offset":84,"linear":[-23,-21,-28,-18,-28,-25,-18],"quadratic":[[0,1,56],[0,2,28],[1,2,28],[1,4,28],[1,5,28],[2,3,56],[3,4,28],[3,5,28],[4,5,56],[4,6,56],[5,6,56]],"domains":[[0,1],[2,3],[4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":12,"cost":5},{"index":1,"task":"t2","resource":"r2","start":14,"cost":7},{"index":2,"task":"t3","resource":"r0","start":13,"cost":0},{"index":3,"task":"t3","resource":"r0","start":18,"cost":10},{"index":4,"task":"t4","resource":"r1","start":16,"cost":0},{"index":5,"task":"t4","resource":"r2","start":16,"cost":3},{"index":6,"task":"t4","resource":"r2","start":20,"cost":10}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":4,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource","group"]},{"i":3,"j":4,"reasons":["precedence"]},{"i":3,"j":5,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":44,"raw_cost":44,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r2","start":11,"end":12,"reserved_end":12,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":12,"end":15,"reserved_end":15,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r0","start":18,"end":19,"reserved_end":21,"changed":true},{"variable":12,"task":"t4","group":"g0","resource":"r2","start":20,"end":21,"reserved_end":21,"changed":true}],"bits":[1,0,0,1,0,0,1,0,0,1,0,0,1],"qubo_energy":44},"components":[{"status":"feasible","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":12,"end":15,"reserved_end":15,"changed":true},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":18,"end":19,"reserved_end":21,"changed":true},{"variable":6,"task":"t4","group":"g0","resource":"r2","start":20,"end":21,"reserved_end":21,"changed":true}],"bits":[1,0,0,1,0,0,1],"qubo_energy":25},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.6334120668353025,1.195305970437774],"expected_energy":39.260905895541356,"initial_expected_energy":42.66661989871645,"history":[42.66661989871645,41.66173174935071,53.28986801524084,44.91548963416238,51.22341688736484,39.62057552711599,39.941566388645484,39.659308129610295,39.98420433632148,39.488339498143844,39.60716165772659,39.5394090687113,39.487987403203505,39.47204743768297,39.460656828243394,39.509370380558586,39.445899938125976,39.433829668464824,39.46618927050323,39.42240402731362,39.40978609832399,39.40078953820141,39.489000649030444,39.378397343356916,39.36990906090048,39.35808501752383,39.338892603222604,39.414062148740804,39.347763729711026,39.33629635413247,39.35162045858079,39.3332001725627,39.32838839498516,39.322589308167856,39.31649456390049,39.32628392915439,39.31308632400589,39.30735234240244,39.299013874817774,39.379033273273656,39.29876856080998,39.29086295094049,39.278649139714126,39.26584502557993,39.32650552218187,39.29693920743405,39.26865721149696,39.26553090712412,39.268824761966236,39.26472725835013,39.26482521010081,39.26579344489286,39.26476999428855,39.264388940128484,39.26414544288532,39.263637155613495,39.26315950598555,39.26224062779117,39.260905895541356,39.261779421345175,42.243263763678286,41.21853664274268,53.69573140013106,45.328935129073116,50.60001182904381,40.85417634282178,39.53499381014613,40.43026794745259,39.4603586392025,39.651795505867,39.55367807196312,39.49065200161113,39.451399441824336,39.47496883187057,39.44778272951981,39.441067538290305,39.42872258650092,39.40922573137089,39.43544654020099,39.40136311395061,39.37872426456734,39.33935322509867,39.29964678274618,39.52531751531208,39.480838120542714,39.29418295577118,39.284373564075366,39.30082099728165,39.29237344923962,39.28635986489065,39.28095909699534,39.28159999214179,39.27988829915462,39.278988921170445,39.27784667295382,39.2814317449905,39.27723676884844,39.27615974386873,39.27530334588325,39.27546456898321,39.274890792885756,39.274545955238665,39.27417489217587,39.27544281993463,39.27397410756407,39.27345833123731,39.27301188595404,39.27290946783321,39.272445851049696,39.272002890736914,39.27116113619657,39.26960823848543,39.267002143737244,39.27036555735226,39.273860241840154,39.267005709541266,39.26668104611177,39.26651575001727,39.267232425571436,39.26621571441823],"feasible_probability":0.15394703257019873,"one_hot_probability":1.0,"sampled_feasible_fraction":0.14453125,"counts":{"0010101":147,"0010110":1,"0011001":48,"0100101":67,"0100110":1,"0101001":91,"0101010":32,"1000101":48,"1000110":3,"1001001":39,"1001010":35},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.13593530499201734}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.15394703257019873,"total_shots":512,"runtime_seconds":0.13636764900002163},"direct_metrics":{"exact_objective":44,"optimal_count":1,"combinations":72,"optimal_probability":0.1328338950472363,"feasible_probability":0.21083406349811384,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.027777777777777776,"shots_for_95_percent":22,"hit_curve":[{"shots":8,"quantum":0.680244256886495,"uniform":0.10585733481633375},{"shots":16,"quantum":0.8977562647459303,"uniform":0.20050889429825008},{"shots":32,"quantum":0.9895462186012957,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9998907184544681,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9999999880575438,"uniform":0.8330797244996347},{"shots":512,"quantum":1.0,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.5265566588595902e-16,"independent_samples":[{"shots":8,"best_objective":44},{"shots":16,"best_objective":44},{"shots":32,"best_objective":44},{"shots":64,"best_objective":44},{"shots":128,"best_objective":44},{"shots":512,"best_objective":44}]},"component_metrics":[{"exact_objective":25,"optimal_count":1,"combinations":12,"optimal_probability":0.0798754220597306,"feasible_probability":0.15394703257019873,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":36,"hit_curve":[{"shots":8,"quantum":0.4862249002546092,"uniform":0.5014697532613109},{"shots":16,"quantum":0.7360351468816138,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9303225563181887,"uniform":0.9382316427138628},{"shots":64,"quantum":0.995145053841968,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999764294978026,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":8.326672684688674e-17,"independent_samples":[{"shots":8,"best_objective":25},{"shots":16,"best_objective":null},{"shots":32,"best_objective":25},{"shots":64,"best_objective":25},{"shots":128,"best_objective":25},{"shots":512,"best_objective":25}]}],"reduced_single_joint_draw_p_opt":0.0798754220597306,"diagnostic_seconds":0.015392858011182398}
+{"instance":"n5-s2-r3.json","seed":8,"direct":{"status":"feasible","best":{"feasible":true,"objective":44,"raw_cost":44,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r2","start":11,"end":12,"reserved_end":12,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":12,"end":15,"reserved_end":15,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r0","start":18,"end":19,"reserved_end":21,"changed":true},{"variable":12,"task":"t4","group":"g0","resource":"r2","start":20,"end":21,"reserved_end":21,"changed":true}],"bits":[1,0,0,1,0,0,1,0,0,1,0,0,1],"qubo_energy":44},"seed":8,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.006679906121257,2.0088272969302823],"expected_energy":86.60009687916519,"initial_expected_energy":112.54504444550507,"history":[112.54504444550507,120.25971643369742,119.13167080014998,133.77243512084925,116.0610724094065,112.81414368128603,112.17851273273789,111.68593493201595,111.65463831279642,112.99261732530937,110.40556100895269,108.25699247125058,104.95824870424724,98.3699895696771,121.52298530326645,115.1276020648155,97.63733106554102,113.01517430744839,97.08780032575305,97.32664517025772,98.36937776961204,96.63476493955973,96.49946179290002,96.79104837541257,96.4853452278406,96.36470720566396,96.17775014730319,95.78086529126792,95.08766264054952,97.97965338964188,97.41308291787908,95.6380040151866,95.15548081241235,95.12524521113522,95.06305792681835,95.18166479868717,95.0432705388741,95.0070281205606,94.94215465880919,94.82880597598975,94.59792016899362,94.16854170032376,95.07387385355916,95.69450661634718,94.50274616505055,94.21978152496149,94.1944504083051,94.1501386407954,94.22346096701432,94.11996728541723,94.09234014748603,94.04049330044245,93.94051123543115,93.7424746504409,93.33597431184046,92.56472939791053,92.25920249240416,103.36100129136048,105.96538116085796,92.53414846251624,90.688352405221,98.01546803095195,118.48765507650347,118.12035025821702,101.46395843588063,99.07211549437187,91.29378647124076,89.30616087677885,89.38635366671457,89.50839598834594,89.39945045948852,89.14813689921994,88.89704480626652,88.39288524899155,87.66548560559104,95.27455894905125,93.19610217507513,87.60343402492711,87.42395446419565,87.97798261653297,87.2086817109323,87.38622745869705,87.25443792356842,87.22280342185658,87.18772382214584,87.17573568227778,87.19550163497473,87.1410414642876,87.11729965536654,87.09189207501333,87.05097025605008,86.98208347270015,86.88657393600093,86.77195947983566,86.84578770073222,87.02176008874726,86.79826728234457,86.75246860114103,86.73924549678293,86.82150827263933,86.71734856607752,86.7105626197432,86.69657711840563,86.67240199951121,86.63708711485928,86.90417397391707,86.8654653624728,86.6466792567077,86.63519425309144,86.65756894374397,86.62558468196862,86.62977675258514,86.63092185106721,86.62594323055828,86.62344210778741,86.6195724097567,86.61197525803587,86.60009687916519,86.65361852494158,86.65759840940834],"feasible_probability":0.24966566275694885,"one_hot_probability":1.0,"sampled_feasible_fraction":0.267578125,"counts":{"0010100100011":3,"0010100100101":1,"0010100101001":3,"0010101000011":6,"0010101001001":23,"0010110000011":1,"0011000011001":4,"0011000100011":2,"0011000100101":2,"0011000101001":3,"0011001000011":20,"0011001000101":1,"0011001001001":62,"0011010000011":2,"0011010000101":3,"0011010001001":11,"0100100010011":1,"0100100100101":1,"0100100101001":1,"0100101001001":6,"0100110000011":3,"0100110001001":11,"0101000100101":1,"0101000101001":1,"0101001001001":6,"0101010001001":1,"1000100011001":1,"1000100100011":2,"1000100100101":1,"1000100101001":4,"1000101000011":26,"1000101001001":56,"1000110000011":4,"1000110000101":3,"1000110001001":24,"1001000010011":3,"1001000010101":1,"1001000011001":4,"1001000100011":2,"1001000100101":4,"1001000101001":14,"1001001000011":34,"1001001000101":3,"1001001001001":108,"1001010000011":6,"1001010000101":4,"1001010001001":29},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.464322429994354},"reduced":{"seed":8,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0,3],"fixed_cost":19,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":4,"forced_by":3,"reasons":["resource","precedence"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[6,7,8,9,10,11,12]],"components":[{"qubits":7,"penalty":28,"objective_bound":27,"offset":84,"linear":[-23,-21,-28,-18,-28,-25,-18],"quadratic":[[0,1,56],[0,2,28],[1,2,28],[1,4,28],[1,5,28],[2,3,56],[3,4,28],[3,5,28],[4,5,56],[4,6,56],[5,6,56]],"domains":[[0,1],[2,3],[4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":12,"cost":5},{"index":1,"task":"t2","resource":"r2","start":14,"cost":7},{"index":2,"task":"t3","resource":"r0","start":13,"cost":0},{"index":3,"task":"t3","resource":"r0","start":18,"cost":10},{"index":4,"task":"t4","resource":"r1","start":16,"cost":0},{"index":5,"task":"t4","resource":"r2","start":16,"cost":3},{"index":6,"task":"t4","resource":"r2","start":20,"cost":10}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":4,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource","group"]},{"i":3,"j":4,"reasons":["precedence"]},{"i":3,"j":5,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":44,"raw_cost":44,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r2","start":11,"end":12,"reserved_end":12,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":12,"end":15,"reserved_end":15,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r0","start":18,"end":19,"reserved_end":21,"changed":true},{"variable":12,"task":"t4","group":"g0","resource":"r2","start":20,"end":21,"reserved_end":21,"changed":true}],"bits":[1,0,0,1,0,0,1,0,0,1,0,0,1],"qubo_energy":44},"components":[{"status":"feasible","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":12,"end":15,"reserved_end":15,"changed":true},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":18,"end":19,"reserved_end":21,"changed":true},{"variable":6,"task":"t4","group":"g0","resource":"r2","start":20,"end":21,"reserved_end":21,"changed":true}],"bits":[1,0,0,1,0,0,1],"qubo_energy":25},"seed":3257320810,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.601080295998004,1.19265469576595],"expected_energy":39.25827448276327,"initial_expected_energy":59.018410892059116,"history":[59.018410892059116,58.70294224508342,52.4746199004389,39.362706208443576,46.943172384585495,40.240985585647564,41.85336827996613,39.48216995098713,40.69510498971295,39.265202522244984,39.44168792150091,39.26960324668322,39.291452957622404,39.26468224769935,39.26006280489137,39.25876051354136,39.25916662303587,39.2603776259347,39.25897939169753,39.258728620153136,39.25887649008419,39.258711459205166,39.25868372458153,39.25866688595697,39.258708495244434,39.25863868077101,39.25861537951892,39.25856658324276,39.25847870975556,39.25872329129627,39.258645618555875,39.25851166015711,39.25847283227183,39.2584414818983,39.25840602915097,39.25837751648771,39.258531066543654,39.25839061559446,39.25839256872443,39.25836423195962,39.25835632282349,39.25838960527984,39.258346907532385,39.25834170492141,39.258335082542615,39.25832316493409,39.258323055953454,39.25829860052565,39.25832970202133,39.258314590286176,39.25829577237794,39.25829707965379,39.25829392836522,39.25829297541123,39.25829587566105,39.258291162272236,39.25828967490008,39.25828724717083,39.258282382926424,39.25827448276327,45.62190455358298,45.07840350668755,50.12643963366141,42.874366148709356,53.3474101105279,40.83662719687811,41.25359291483438,40.09549780853377,41.22487049736508,40.00291890499223,40.15067898679159,39.91521254321746,39.943770725388774,39.84376197070014,39.86093276775634,39.85874315337965,39.8229171669818,39.81586786488162,39.866048728382964,39.8119430381091,39.79548304168135,39.768556802654324,39.72251061045307,39.689215815774006,39.646672723098405,39.57158528295888,39.52288593586223,39.49045481536786,39.441571988456346,39.532669155992636,40.309466504072745,39.31589507901941,39.33003519246761,39.32042929020101,39.3290862562152,39.30940982480501,39.31777641325274,39.306206500779304,39.30377828622717,39.30062470011315,39.295249454959716,39.28573077534469,39.27480955314101,39.2915210307254,39.32133711294206,39.269454323360094,39.27210528558116,39.271710442819085,39.2692302939137,39.27020348802111,39.26921482084698,39.26879475364885,39.268153074481994,39.26682164294776,39.26495110585796,39.264875278712054,39.26270939839627,39.262376555327414,39.26070168891074,39.26232293606751],"feasible_probability":0.1547528849610873,"one_hot_probability":1.0,"sampled_feasible_fraction":0.142578125,"counts":{"0010101":144,"0010110":2,"0011001":35,"0011010":1,"0100101":73,"0100110":2,"0101001":84,"0101010":39,"1000101":58,"1000110":1,"1001001":38,"1001010":35},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.136415446002502}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.1547528849610873,"total_shots":512,"runtime_seconds":0.1366444169980241},"direct_metrics":{"exact_objective":44,"optimal_count":1,"combinations":72,"optimal_probability":0.18759829580287457,"feasible_probability":0.24966566275694885,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.027777777777777776,"shots_for_95_percent":15,"hit_curve":[{"shots":8,"quantum":0.8102566315832225,"uniform":0.10585733481633375},{"shots":16,"quantum":0.963997454141855,"uniform":0.20050889429825008},{"shots":32,"quantum":0.9987038166917321,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9999983199088314,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9999999999971773,"uniform":0.8330797244996347},{"shots":512,"quantum":1.0,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":9.71445146547012e-17,"independent_samples":[{"shots":8,"best_objective":44},{"shots":16,"best_objective":44},{"shots":32,"best_objective":44},{"shots":64,"best_objective":44},{"shots":128,"best_objective":44},{"shots":512,"best_objective":44}]},"component_metrics":[{"exact_objective":25,"optimal_count":1,"combinations":12,"optimal_probability":0.08211998358995279,"feasible_probability":0.1547528849610873,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":35,"hit_curve":[{"shots":8,"quantum":0.4961661781629917,"uniform":0.5014697532613109},{"shots":16,"quantum":0.7461514799731137,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9355609288801595,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9958476061132121,"uniform":0.9961846700381721},{"shots":128,"quantum":0.999982757625009,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":2.220446049250313e-16,"independent_samples":[{"shots":8,"best_objective":25},{"shots":16,"best_objective":25},{"shots":32,"best_objective":25},{"shots":64,"best_objective":25},{"shots":128,"best_objective":25},{"shots":512,"best_objective":25}]}],"reduced_single_joint_draw_p_opt":0.08211998358995279,"diagnostic_seconds":0.014223033998860046}
+{"instance":"n5-s2-r3.json","seed":9,"direct":{"status":"feasible","best":{"feasible":true,"objective":44,"raw_cost":44,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r2","start":11,"end":12,"reserved_end":12,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":12,"end":15,"reserved_end":15,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r0","start":18,"end":19,"reserved_end":21,"changed":true},{"variable":12,"task":"t4","group":"g0","resource":"r2","start":20,"end":21,"reserved_end":21,"changed":true}],"bits":[1,0,0,1,0,0,1,0,0,1,0,0,1],"qubo_energy":44},"seed":9,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9199510186836117,2.011102172106547],"expected_energy":86.57953667714783,"initial_expected_energy":114.1141467046717,"history":[114.1141467046717,117.13871342179607,90.60240293284744,119.72762519208058,102.89242231365242,95.1672005198428,86.9901986829071,90.40496747291849,87.08863166601611,89.15269091167504,86.94850866305319,87.08925671678469,87.17850562250015,87.08328516944441,86.75245126109631,86.68264645568574,86.65678421869939,86.71331784268922,86.66123032868387,86.65297508818375,86.65846330645192,86.6589835037546,86.65295915479058,86.65059863069555,86.64668950901248,86.64943513503499,86.64376891881813,86.63934665304228,86.63080243138198,86.61615195964171,86.74799195295154,86.64083055413188,86.6136203500916,86.63278868917503,86.61004299674849,86.60855581050399,86.61549142651933,86.60643466710123,86.60477838442281,86.60184760182943,86.59630622328734,86.6078883381833,86.599960955986,86.59823775641414,86.59436662378604,86.59179697181548,86.58766341239566,86.61338465379012,86.58965707613513,86.58940250250787,86.58906043461992,86.58735939851157,86.58666306881184,86.58586027827707,86.58498864514218,86.58417596642042,86.58247450656519,86.57953667714783,86.58978376615819,86.58799180181349,117.9668734706012,118.15054514264193,123.80493128145969,123.29982015837965,127.64075743579244,117.71891895726328,119.08134794489033,117.75759278622479,117.08588586337103,117.37150895568138,117.07549676434788,117.18161919859429,117.07396354454781,117.04540180864979,117.02507439380642,116.99883917767502,117.00326204311482,116.99119741400713,116.98665816990803,116.99488862705512,116.9738149733825,116.9650276903135,116.95466054244324,116.93470230838105,116.9089966390591,116.86660096995696,116.86111360578596,116.79184012209379,116.8031391719145,116.77933318448362,116.79493450796969,116.77134605785233,116.7595431947876,116.75845326870532,116.74428393752046,116.73017421633824,116.70167993045239,116.6432554805815,116.52501726316791,116.21841481616627,116.22871604518961,115.75283169119137,115.20982374605858,116.63941364748015,113.7770034771518,112.12775469867807,109.33365080478828,115.23004663781137,111.98244064663861,109.15625224013864,107.87758180136069,105.40110586717725,100.50810905780605,88.48630835700632,118.1357319378025,117.14902957712215,124.65272774355074,86.58874240361311,92.5109244405194,87.82878069472326],"feasible_probability":0.243935116606664,"one_hot_probability":1.0000000000000004,"sampled_feasible_fraction":0.248046875,"counts":{"0010100011001":1,"0010100100011":2,"0010100101001":3,"0010101000011":13,"0010101001001":23,"0010110000011":1,"0010110001001":4,"0011000010011":2,"0011000011001":5,"0011000100011":1,"0011000100101":5,"0011000101001":6,"0011001000011":24,"0011001001001":52,"0011010000011":2,"0011010001001":13,"0100100011001":1,"0100100101001":1,"0100101001001":2,"0100110000011":1,"0100110000101":4,"0100110001001":13,"0101000101001":1,"0101001000011":1,"0101001001001":2,"0101010001001":3,"1000100010011":1,"1000100011001":1,"1000100100011":3,"1000100101001":4,"1000101000011":25,"1000101001001":71,"1000110000011":8,"1000110000101":1,"1000110001001":21,"1001000010011":1,"1001000011001":3,"1001000100011":4,"1001000100101":4,"1001000101001":13,"1001001000011":24,"1001001000101":5,"1001001001001":96,"1001010000011":6,"1001010000101":4,"1001010001001":31},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.45665423199534416},"reduced":{"seed":9,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":13,"fixed_variables":[0,3],"fixed_cost":19,"removals":[{"variable":1,"forced_by":0,"reasons":["precedence"]},{"variable":2,"forced_by":0,"reasons":["precedence"]},{"variable":5,"forced_by":0,"reasons":["resource","group"]},{"variable":4,"forced_by":3,"reasons":["resource","precedence"]}],"infeasible_task":null,"component_qubits":[7],"max_component_qubits":7,"component_to_original":[[6,7,8,9,10,11,12]],"components":[{"qubits":7,"penalty":28,"objective_bound":27,"offset":84,"linear":[-23,-21,-28,-18,-28,-25,-18],"quadratic":[[0,1,56],[0,2,28],[1,2,28],[1,4,28],[1,5,28],[2,3,56],[3,4,28],[3,5,28],[4,5,56],[4,6,56],[5,6,56]],"domains":[[0,1],[2,3],[4,5,6]],"pruned":[],"variables":[{"index":0,"task":"t2","resource":"r2","start":12,"cost":5},{"index":1,"task":"t2","resource":"r2","start":14,"cost":7},{"index":2,"task":"t3","resource":"r0","start":13,"cost":0},{"index":3,"task":"t3","resource":"r0","start":18,"cost":10},{"index":4,"task":"t4","resource":"r1","start":16,"cost":0},{"index":5,"task":"t4","resource":"r2","start":16,"cost":3},{"index":6,"task":"t4","resource":"r2","start":20,"cost":10}],"conflicts":[{"i":0,"j":2,"reasons":["precedence"]},{"i":1,"j":2,"reasons":["precedence"]},{"i":1,"j":4,"reasons":["group"]},{"i":1,"j":5,"reasons":["resource","group"]},{"i":3,"j":4,"reasons":["precedence"]},{"i":3,"j":5,"reasons":["precedence"]}]}]},"best":{"feasible":true,"objective":44,"raw_cost":44,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t0","group":"g0","resource":"r0","start":6,"end":9,"reserved_end":11,"changed":true},{"variable":3,"task":"t1","group":"g1","resource":"r2","start":11,"end":12,"reserved_end":12,"changed":true},{"variable":6,"task":"t2","group":"g0","resource":"r2","start":12,"end":15,"reserved_end":15,"changed":true},{"variable":9,"task":"t3","group":"g1","resource":"r0","start":18,"end":19,"reserved_end":21,"changed":true},{"variable":12,"task":"t4","group":"g0","resource":"r2","start":20,"end":21,"reserved_end":21,"changed":true}],"bits":[1,0,0,1,0,0,1,0,0,1,0,0,1],"qubo_energy":44},"components":[{"status":"feasible","best":{"feasible":true,"objective":25,"raw_cost":25,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"t2","group":"g0","resource":"r2","start":12,"end":15,"reserved_end":15,"changed":true},{"variable":3,"task":"t3","group":"g1","resource":"r0","start":18,"end":19,"reserved_end":21,"changed":true},{"variable":6,"task":"t4","group":"g0","resource":"r2","start":20,"end":21,"reserved_end":21,"changed":true}],"bits":[1,0,0,1,0,0,1],"qubo_energy":25},"seed":747784396,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[1.5890961564809571,2.88209888442871],"expected_energy":35.41672897087334,"initial_expected_energy":43.07932455362392,"history":[43.07932455362392,43.936724947176444,51.97473808676273,44.0845097161021,51.42034290684971,41.87755185403348,39.87420763982769,39.91491314687113,39.89344329154958,40.04663148843678,39.72080305402547,39.76110516860808,39.70350524395026,39.813474138729234,39.69299821252018,39.66349532593768,39.64266976934717,39.65934934262826,39.633115001612964,39.625990280370914,39.63051394358688,39.61694388006721,39.609223672259176,39.59961099921468,39.617830490851446,39.589327931809606,39.579836713022374,39.56224670859316,39.52914201182374,39.49997217521336,39.446622819523476,39.463930568996766,39.50287337750754,39.44826026521822,39.43115158483043,39.42219284144515,39.41036962529225,39.399022784745895,39.38197363233468,39.36351413789081,39.31859602791986,39.399974906650904,39.41380763825422,39.336224831211695,39.322236567929146,39.322295262078086,39.31629032902424,39.31769221333046,39.31304898636891,39.31221663918654,39.31734732721914,39.30843385553097,39.30286636772637,39.29156522808387,39.27815707634366,39.32411112164014,39.32331177893456,39.275970646060784,39.27280386127191,39.27436664235713,52.99324939117903,50.4587120357841,48.84953028416243,49.71974689241958,48.218530645781826,45.34853208740618,46.837964032665454,47.856663062949224,41.48265618780165,42.34856300093425,42.38392734175096,42.148711159609704,40.40540910660488,39.787813806767645,39.09281505109332,39.596607095338534,38.67791656571028,39.11797596162468,38.29607880789066,38.06767565469957,37.652023943081616,37.241276511202656,36.716928977865784,36.786615536480525,37.62309050670899,36.76991830656109,36.50034984321128,36.72203579414689,36.74223388404712,36.51441874020245,36.41886964658217,36.38113277899245,36.454295303490994,36.37535166085045,36.348707089835834,36.2994632460577,36.20434585465889,36.07890781436546,35.95506592538107,35.86832506862348,36.303338681807276,35.75663236021302,35.755772977487084,35.70553055304412,35.64437000478149,35.60344610768668,35.72716781063337,35.57717362019804,35.56226451164348,35.6063104375767,35.54816276852603,35.53683057716409,35.514656715918065,35.489020085461355,35.46437277143282,35.452954962059025,35.629336165379335,35.41860410839669,35.41908750167472,35.41672897087334],"feasible_probability":0.31320831399892435,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.326171875,"counts":{"0010101":132,"0010110":19,"0011001":54,"0011010":2,"0100101":80,"0100110":1,"0101001":14,"0101010":12,"1000101":20,"1000110":11,"1001001":114,"1001010":53},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.15629407699452713}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.31320831399892435,"total_shots":512,"runtime_seconds":0.1565349989978131},"direct_metrics":{"exact_objective":44,"optimal_count":1,"combinations":72,"optimal_probability":0.1825282204264805,"feasible_probability":0.243935116606664,"uniform_optimal_probability":0.013888888888888888,"uniform_feasible_probability":0.027777777777777776,"shots_for_95_percent":15,"hit_curve":[{"shots":8,"quantum":0.8005738282675003,"uniform":0.10585733481633375},{"shots":16,"quantum":0.9602292020281196,"uniform":0.20050889429825008},{"shots":32,"quantum":0.9984182836286799,"uniform":0.3608139719037934},{"shots":64,"quantum":0.9999974981733207,"uniform":0.5914412214865954},{"shots":128,"quantum":0.9999999999937409,"uniform":0.8330797244996347},{"shots":512,"quantum":1.0,"uniform":0.9992236878713933}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.6653345369377348e-16,"independent_samples":[{"shots":8,"best_objective":44},{"shots":16,"best_objective":44},{"shots":32,"best_objective":44},{"shots":64,"best_objective":44},{"shots":128,"best_objective":44},{"shots":512,"best_objective":44}]},"component_metrics":[{"exact_objective":25,"optimal_count":1,"combinations":12,"optimal_probability":0.200142089362044,"feasible_probability":0.31320831399892435,"uniform_optimal_probability":0.08333333333333333,"uniform_feasible_probability":0.16666666666666666,"shots_for_95_percent":14,"hit_curve":[{"shots":8,"quantum":0.8324660782537153,"uniform":0.5014697532613109},{"shots":16,"quantum":0.9719323850643098,"uniform":0.7514675930866618},{"shots":32,"quantum":0.9992122089918218,"uniform":0.9382316427138628},{"shots":64,"quantum":0.9999993793853275,"uniform":0.9961846700381721},{"shots":128,"quantum":0.9999999999996149,"uniform":0.9999854432572823},{"shots":512,"quantum":1.0,"uniform":1.0}],"interpretation":"conditional on trained state; training cost excluded","phase_max_error":1.1102230246251565e-16,"independent_samples":[{"shots":8,"best_objective":27},{"shots":16,"best_objective":25},{"shots":32,"best_objective":25},{"shots":64,"best_objective":25},{"shots":128,"best_objective":25},{"shots":512,"best_objective":25}]}],"reduced_single_joint_draw_p_opt":0.200142089362044,"diagnostic_seconds":0.013551645999541506}
diff --git a/Tutorials/LabScheduling/results/v2/summary.csv b/Tutorials/LabScheduling/results/v2/summary.csv
new file mode 100644
index 00000000..346c4f19
--- /dev/null
+++ b/Tutorials/LabScheduling/results/v2/summary.csv
@@ -0,0 +1,37 @@
+instance,tasks,scenario,replicate,feasible,optimum,raw_candidates,calendar_qubits,propagation_qubits,max_component_qubits,cnot_calendar_full,cnot_components_full,cnot_components_auto,mean_p_opt,min_p_opt,uniform_p_opt,direct_optimal_samples,reduced_optimal_samples,direct_mean_evaluations,reduced_mean_evaluations,direct_mean_seconds,reduced_mean_seconds,direct_shots,reduced_total_shots,milp_seconds,feasible_assignments
+n3-s0-r0.json,3,0,0,True,10,9,8,7,7,35,35,17,0.2665666059616983,0.19510255146572145,0.08333333333333333,10,10,120.0,120.0,0.11954604200145695,0.11346447160467506,512,512,0.0033687499962979928,11
+n3-s0-r1.json,3,0,1,True,19,9,8,5,3,39,17,9,0.1498783034662308,0.045674514794226725,0.08333333333333333,10,10,120.0,240.0,0.11544594240112929,0.16356325849919812,512,1024,0.0013095100002828985,6
+n3-s0-r2.json,3,0,2,True,10,9,8,7,7,39,39,21,0.14746506741241122,0.07533068402693312,0.08333333333333333,10,10,120.0,120.0,0.12392121899756603,0.12085012139868923,512,512,0.001514597999630496,9
+n3-s0-r3.json,3,0,3,True,14,9,8,5,3,37,17,9,0.18756947929762055,0.03972630532539659,0.08333333333333333,10,10,119.1,237.7,0.12156252180429875,0.1710476296968409,512,1024,0.0014459550002356991,6
+n3-s1-r0.json,3,1,0,True,25,9,7,0,0,36,0,0,0.22387757618912868,0.10902617404131001,0.125,10,10,118.0,0.0,0.12670059189986205,0.00012506439961725845,512,0,0.0013312529918039218,1
+n3-s1-r1.json,3,1,1,True,10,9,6,3,3,23,12,6,0.4657987442083537,0.4205655525091264,0.25,10,10,120.0,120.0,0.10316041210171534,0.0896732384004281,512,512,0.0022428840020438656,3
+n3-s1-r2.json,3,1,2,False,,9,5,,,,,,0,0,0,0,0,0.0,0.0,1.319301372859627e-06,1.5941899619065225e-05,0,0,0.0014472780021606013,0
+n3-s1-r3.json,3,1,3,False,,9,4,,,,,,0,0,0,0,0,0.0,0.0,1.1288982932455838e-06,1.2739002704620361e-05,0,0,0.0009325279970653355,0
+n3-s2-r0.json,3,2,0,False,,9,8,,,53,,,0.0,0.0,0.0,0,0,120.0,0.0,0.12248277290054829,4.150260065216571e-05,512,0,0.0007442550122505054,0
+n3-s2-r1.json,3,2,1,True,7,9,8,7,7,49,49,31,0.20496167262866702,0.1236033267428613,0.08333333333333333,10,10,120.0,119.2,0.11919976220233366,0.11546347079711268,512,512,0.0012447180051822215,4
+n3-s2-r2.json,3,2,2,True,27,9,8,0,0,49,0,0,0.1405278101472927,0.015108814213825376,0.08333333333333333,10,10,113.4,0.0,0.12212199769855943,0.00013352050154935569,512,0,0.0011814540048362687,1
+n3-s2-r3.json,3,2,3,False,,9,8,,,45,,,0.0,0.0,0.0,0,0,120.0,0.0,0.12548059099790407,4.687959881266579e-05,512,0,0.0014003039977978915,0
+n4-s0-r0.json,4,0,0,True,22,11,10,7,7,50,30,20,0.06822123061237241,0.040034472616669446,0.041666666666666664,10,10,120.0,120.0,0.13614594120008405,0.11784110360022168,512,512,0.0016433980053989217,4
+n4-s0-r1.json,4,0,1,True,18,11,10,4,2,52,10,6,0.10528440597012671,0.08089622814059329,0.041666666666666664,10,10,119.0,240.0,0.142510288800986,0.1637988957023481,512,1024,0.0011643040052149445,4
+n4-s0-r2.json,4,0,2,True,4,11,10,7,5,46,24,14,0.03416413334547393,0.002247822702867585,0.041666666666666664,9,10,119.7,240.0,0.1281577933987137,0.16884924530022544,512,1024,0.0013204370043240488,10
+n4-s0-r3.json,4,0,3,True,10,11,10,8,5,44,33,19,0.05208235066834742,0.0016328353164022516,0.041666666666666664,9,10,120.0,240.0,0.13882664210250367,0.19272199400002138,512,1024,0.0025123119994532317,12
+n4-s1-r0.json,4,1,0,False,,11,7,,,,,,0,0,0,0,0,0.0,0.0,1.3762997696176172e-06,1.8529196677263825e-05,0,0,0.0011201460001757368,0
+n4-s1-r1.json,4,1,1,False,,11,7,,,,,,0,0,0,0,0,0.0,0.0,1.1947980965487658e-06,1.750399824231863e-05,0,0,0.0009516749996691942,0
+n4-s1-r2.json,4,1,2,True,18,11,9,8,8,43,43,27,0.11597529302208902,0.021024335478386613,0.0625,10,10,119.9,120.0,0.12080838679685257,0.11563629190059146,512,512,0.006262604001676664,5
+n4-s1-r3.json,4,1,3,True,15,11,7,4,2,19,10,6,0.28623411180299746,0.2007734980914638,0.16666666666666666,10,10,119.7,240.0,0.09156022519746329,0.1465202424005838,512,1024,0.0011463349947007373,4
+n4-s2-r0.json,4,2,0,True,7,11,10,8,8,52,43,27,0.10298034427930033,0.09344742182326912,0.041666666666666664,10,10,118.3,118.7,0.12687954120046924,0.11067967230046634,512,512,0.0015027579938760027,6
+n4-s2-r1.json,4,2,1,True,3,11,10,9,9,62,62,42,0.16251184947141123,0.06401722334036038,0.041666666666666664,10,10,120.0,120.0,0.13655680369993206,0.12902965640096226,512,512,0.0012826049933210015,1
+n4-s2-r2.json,4,2,2,True,32,11,10,7,7,60,34,24,0.20635326695142306,0.1761668772052385,0.08333333333333333,10,10,120.0,120.0,0.13874826969986315,0.1086697559003369,512,512,0.001251245994353667,2
+n4-s2-r3.json,4,2,3,False,,11,10,,,64,,,0.0,0.0,0.0,0,0,120.0,0.0,0.13585359859862364,4.380430036690086e-05,512,0,0.0010051499994006008,0
+n5-s0-r0.json,5,0,0,True,17,14,13,9,5,62,29,17,0.015488200547768472,0.002008119769225996,0.013888888888888888,9,10,119.7,360.0,0.3219157351049944,0.23833269009919605,512,1536,0.0011530460033100098,20
+n5-s0-r1.json,5,0,1,True,11,14,13,12,9,54,54,28,0.05113192649442645,0.011923185360977761,0.013888888888888888,10,10,120.0,240.0,0.33996222440182466,0.22968445990118197,512,1024,0.0014016689965501428,51
+n5-s0-r2.json,5,0,2,True,13,14,13,11,6,58,49,27,0.058269790750916275,0.01732882179009122,0.013888888888888888,10,10,120.0,359.9,0.3123566098991432,0.265213498097728,512,1536,0.001464929009671323,30
+n5-s0-r3.json,5,0,3,True,3,14,13,12,9,64,64,38,0.020842987283326557,0.004101062408401113,0.013888888888888888,10,10,118.7,235.0,0.3265470251004444,0.21382746379968012,512,1024,0.0018701529916143045,27
+n5-s1-r0.json,5,1,0,False,,14,12,,,53,,,0.0,0.0,0.0,0,0,120.0,0.0,0.27161877359758363,4.5423099072650076e-05,512,0,0.0010818860027939081,0
+n5-s1-r1.json,5,1,1,False,,14,10,,,,,,0,0,0,0,0,0.0,0.0,1.20710174087435e-06,1.6615798813290894e-05,0,0,0.0010534580069361255,0
+n5-s1-r2.json,5,1,2,True,20,14,12,8,8,55,37,23,0.08914420177005611,0.06843514593239075,0.020833333333333332,10,10,120.0,118.0,0.2928804521987331,0.1261758359003579,512,512,0.0012739029916701838,9
+n5-s1-r3.json,5,1,3,False,,14,10,,,,,,0,0,0,0,0,0.0,0.0,1.291600347030908e-06,1.6140699153766035e-05,0,0,0.0010298220004187897,0
+n5-s2-r0.json,5,2,0,True,4,14,13,12,12,72,72,46,0.04777111473232565,0.018758694114051722,0.013888888888888888,10,10,120.0,120.0,0.40903830650204326,0.3656083653040696,512,512,0.0014081639965297654,15
+n5-s2-r1.json,5,2,1,False,,14,13,,,72,,,0.0,0.0,0.0,0,0,120.0,0.0,0.382581269700313,5.308049876475707e-05,512,0,0.0014835100009804592,0
+n5-s2-r2.json,5,2,2,False,,14,13,,,82,,,0.0,0.0,0.0,0,0,117.6,0.0,0.41591675620002205,5.166079645277932e-05,512,0,0.0011502230045152828,0
+n5-s2-r3.json,5,2,3,True,44,14,13,7,7,74,34,24,0.13749641521838946,0.040556752573662994,0.013888888888888888,10,10,120.0,120.0,0.4036123758982285,0.12715288269828307,512,512,0.0013881789927836508,2
diff --git a/Tutorials/LabScheduling/results/v2/tradeoff/ablation.json b/Tutorials/LabScheduling/results/v2/tradeoff/ablation.json
new file mode 100644
index 00000000..d3b7174c
--- /dev/null
+++ b/Tutorials/LabScheduling/results/v2/tradeoff/ablation.json
@@ -0,0 +1 @@
+{"stages":{"raw_input":{"candidate_count":9,"cnot":null,"circuit_status":"not_encoded; unary-invalid candidates still present"},"calendar_full_phase":{"component_qubits":[8],"total_qubits":8,"max_component_qubits":8,"cnot":37,"cry":5,"serial_depth_sum":42,"max_component_depth":42,"circuit_status":"constructed"},"propagation_full_phase":{"component_qubits":[8],"total_qubits":8,"max_component_qubits":8,"cnot":37,"cry":5,"serial_depth_sum":42,"max_component_depth":42,"circuit_status":"constructed"},"components_full_phase":{"component_qubits":[8],"total_qubits":8,"max_component_qubits":8,"cnot":37,"cry":5,"serial_depth_sum":42,"max_component_depth":42,"circuit_status":"constructed"},"components_auto_phase":{"component_qubits":[8],"total_qubits":8,"max_component_qubits":8,"cnot":23,"cry":5,"serial_depth_sum":23,"max_component_depth":23,"circuit_status":"constructed"}},"reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[0,1,2,3,4,5,6,7]],"components":[{"qubits":8,"penalty":29,"objective_bound":28,"offset":87,"linear":[-25,-15,-29,-25,-22,-29,-25,-22],"quadratic":[[0,1,58],[0,2,29],[2,3,58],[2,4,58],[3,4,58],[3,5,29],[4,5,29],[4,6,29],[5,6,58],[5,7,58],[6,7,58]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":4},{"index":1,"task":"A","resource":"backup","start":0,"cost":14},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":4},{"index":4,"task":"B","resource":"oven","start":8,"cost":7},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":4},{"index":7,"task":"C","resource":"oven","start":10,"cost":7}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]}]},"feasible_count":9,"exact_objective":12,"proof":"all raw feasible choices = pruned choices = restored component choices; costs equal","calendar_seconds":5.627899372484535e-05,"reduction_seconds":7.211501360870898e-05,"proof_seconds":0.0006318399973679334,"resource_audit_seconds":0.0030829409952275455}
diff --git a/Tutorials/LabScheduling/results/v2/tradeoff/alternatives.csv b/Tutorials/LabScheduling/results/v2/tradeoff/alternatives.csv
new file mode 100644
index 00000000..ae24a8c0
--- /dev/null
+++ b/Tutorials/LabScheduling/results/v2/tradeoff/alternatives.csv
@@ -0,0 +1,10 @@
+objective,changed_tasks,schedule,sampled_choice
+12,3,A:oven@2; B:oven@5; C:oven@7,True
+14,1,A:backup@0; B:oven@3; C:oven@5,False
+15,3,A:oven@2; B:oven@5; C:oven@10,False
+18,2,A:backup@0; B:oven@3; C:oven@7,False
+18,3,A:oven@2; B:oven@8; C:oven@10,False
+21,2,A:backup@0; B:oven@3; C:oven@10,False
+22,3,A:backup@0; B:oven@5; C:oven@7,False
+25,3,A:backup@0; B:oven@5; C:oven@10,False
+28,3,A:backup@0; B:oven@8; C:oven@10,False
diff --git a/Tutorials/LabScheduling/results/v2/tradeoff/control-input.json b/Tutorials/LabScheduling/results/v2/tradeoff/control-input.json
new file mode 100644
index 00000000..7bf4e5e0
--- /dev/null
+++ b/Tutorials/LabScheduling/results/v2/tradeoff/control-input.json
@@ -0,0 +1 @@
+{"name":"合成连锁改约:低成本整体后移或高成本备用设备","horizon":14,"resources":[{"id":"oven","cleanup":1,"downtime":[]},{"id":"backup","cleanup":1,"downtime":[]}],"tasks":[{"id":"A","group":"gA","duration":2,"original":{"resource":"oven","start":0},"change_cost":2,"options":[{"resource":"oven","start":0,"cost":0},{"resource":"oven","start":2,"cost":2},{"resource":"backup","start":0,"cost":12}]},{"id":"B","group":"gB","duration":1,"original":{"resource":"oven","start":3},"change_cost":2,"options":[{"resource":"oven","start":3,"cost":0},{"resource":"oven","start":5,"cost":2},{"resource":"oven","start":8,"cost":5}]},{"id":"C","group":"gC","duration":2,"original":{"resource":"oven","start":5},"change_cost":2,"options":[{"resource":"oven","start":5,"cost":0},{"resource":"oven","start":7,"cost":2},{"resource":"oven","start":10,"cost":5}]}],"precedence":[["A","B"],["B","C"]]}
diff --git a/Tutorials/LabScheduling/results/v2/tradeoff/control-report.json b/Tutorials/LabScheduling/results/v2/tradeoff/control-report.json
new file mode 100644
index 00000000..441c8370
--- /dev/null
+++ b/Tutorials/LabScheduling/results/v2/tradeoff/control-report.json
@@ -0,0 +1 @@
+{"schema_version":2,"problem":"合成连锁改约:低成本整体后移或高成本备用设备","input_sha256":"02da439fd1be47f76e30efa088295762148a9da7b4d877feebbfb39ce5b5c62b","environment":{"python":"3.12.3","platform":"Linux","pyqpanda3":"0.4.1","pyqpanda_alg":"2.0.0","numpy":"2.5.3","scipy":"1.18.1"},"model":{"qubits":9,"penalty":29,"objective_bound":28,"offset":87,"linear":[-29,-25,-15,-29,-25,-22,-29,-25,-22],"quadratic":[[0,1,58],[0,2,58],[1,2,58],[1,3,29],[3,4,58],[3,5,58],[4,5,58],[4,6,29],[5,6,29],[5,7,29],[6,7,58],[6,8,58],[7,8,58]],"domains":[[0,1,2],[3,4,5],[6,7,8]],"pruned":[],"variables":[{"index":0,"task":"A","resource":"oven","start":0,"cost":0},{"index":1,"task":"A","resource":"oven","start":2,"cost":4},{"index":2,"task":"A","resource":"backup","start":0,"cost":14},{"index":3,"task":"B","resource":"oven","start":3,"cost":0},{"index":4,"task":"B","resource":"oven","start":5,"cost":4},{"index":5,"task":"B","resource":"oven","start":8,"cost":7},{"index":6,"task":"C","resource":"oven","start":5,"cost":0},{"index":7,"task":"C","resource":"oven","start":7,"cost":4},{"index":8,"task":"C","resource":"oven","start":10,"cost":7}],"conflicts":[{"i":1,"j":3,"reasons":["resource","precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]},{"i":5,"j":6,"reasons":["precedence"]},{"i":5,"j":7,"reasons":["resource","precedence"]}]},"quantum":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":9,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[9],"max_component_qubits":9,"component_to_original":[[0,1,2,3,4,5,6,7,8]],"components":[{"qubits":9,"penalty":29,"objective_bound":28,"offset":87,"linear":[-29,-25,-15,-29,-25,-22,-29,-25,-22],"quadratic":[[0,1,58],[0,2,58],[1,2,58],[1,3,29],[3,4,58],[3,5,58],[4,5,58],[4,6,29],[5,6,29],[5,7,29],[6,7,58],[6,8,58],[7,8,58]],"domains":[[0,1,2],[3,4,5],[6,7,8]],"pruned":[],"variables":[{"index":0,"task":"A","resource":"oven","start":0,"cost":0},{"index":1,"task":"A","resource":"oven","start":2,"cost":4},{"index":2,"task":"A","resource":"backup","start":0,"cost":14},{"index":3,"task":"B","resource":"oven","start":3,"cost":0},{"index":4,"task":"B","resource":"oven","start":5,"cost":4},{"index":5,"task":"B","resource":"oven","start":8,"cost":7},{"index":6,"task":"C","resource":"oven","start":5,"cost":0},{"index":7,"task":"C","resource":"oven","start":7,"cost":4},{"index":8,"task":"C","resource":"oven","start":10,"cost":7}],"conflicts":[{"i":1,"j":3,"reasons":["resource","precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]},{"i":5,"j":6,"reasons":["precedence"]},{"i":5,"j":7,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":0,"end":2,"reserved_end":3,"changed":false},{"variable":3,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":6,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[1,0,0,1,0,0,1,0,0],"qubo_energy":0},"components":[{"status":"feasible","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":0,"end":2,"reserved_end":3,"changed":false},{"variable":3,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":6,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[1,0,0,1,0,0,1,0,0],"qubo_energy":0},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[0.9484827632065873,1.4677402942355124],"expected_energy":25.86979251295585,"initial_expected_energy":26.449511669645428,"history":[26.449511669645428,27.572021947148045,28.4869500771109,26.58078403731056,26.067291062283232,27.5383235391119,26.419236266607022,26.103270046996904,26.157181916718,25.931676879522186,25.99330587691187,25.92282939134045,25.92250437766792,25.919824215991966,25.91618895009966,25.913866004028208,25.910686095613404,25.90811460830017,25.904038671422885,25.908203438433826,25.911568902315448,25.901923239337705,25.900341261353383,25.89847883135252,25.904895865867164,25.89656261002417,25.895704108039297,25.894407145697336,25.892021222706312,25.88962210978394,25.887717338267397,25.88604721290762,25.897136115683818,25.881176161482188,25.881554967406327,25.880922570848895,25.881287185786785,25.881756531992238,25.880064790126323,25.880687086021723,25.880523007097775,25.880063956253245,25.879842381651585,25.879406574647252,25.87857637415957,25.878022662915676,25.876275880141677,25.877494598447942,25.875894159046883,25.877339607095447,25.87579628764221,25.87537244827891,25.875088368334087,25.875466953591328,25.874907820210176,25.874729111697476,25.87439481980268,25.873722498087936,25.872450556730413,25.871503034756174,26.533962078165786,27.774419327124363,28.583967239794625,26.60404503033098,25.98391139893099,27.946909275109743,26.133056309593524,26.360712704211913,26.152157057818144,25.979499702910886,26.252865640474898,25.92264648045253,26.027907436862037,25.91053934652676,25.910528581453715,25.90766964698316,25.905186794024505,25.90392669117786,25.91256884773386,25.90185417959177,25.900887400652536,25.8995772610998,25.897190323716956,25.89621917185864,25.891719550260188,25.90581323725903,25.889289861831863,25.888853206324335,25.896325673094747,25.886920062396726,25.886026138581624,25.885184272878256,25.885986771334743,25.8845388967393,25.883671973068868,25.88242852388392,25.895221553146666,25.88134599765243,25.88097710781125,25.88909518733537,25.879129688890362,25.878521184434227,25.877811069545082,25.877649995986843,25.8755660376303,25.877677059506826,25.875274500853408,25.876699239085458,25.87444637046379,25.873780312744465,25.872575638482388,25.870708565114512,25.87317097502991,25.88504180210552,25.870084550759643,25.871397574075317,25.87042200475214,25.869841638176702,25.869987404955435,25.86979251295585],"feasible_probability":0.5768261178770018,"one_hot_probability":1.0,"sampled_feasible_fraction":0.578125,"counts":{"001001001":38,"001001010":19,"001001100":17,"001010001":15,"001010010":8,"001010100":5,"001100001":18,"001100010":16,"001100100":19,"010001001":21,"010001010":10,"010001100":12,"010010001":14,"010010010":19,"010010100":10,"010100001":28,"010100010":30,"010100100":37,"100001001":27,"100001010":11,"100001100":19,"100010001":26,"100010010":17,"100010100":26,"100100001":10,"100100010":14,"100100100":26},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.12852587200177368}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.5768261178770018,"total_shots":512,"runtime_seconds":0.12875030499708373,"business_metrics":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0],"schedule":[{"task":"A","resource":"oven","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]}},"exact":{"status":"optimal","best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":0,"end":2,"reserved_end":3,"changed":false},{"variable":3,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":6,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[1,0,0,1,0,0,1,0,0],"qubo_energy":0},"combinations":27,"feasible_count":15,"runtime_seconds":0.00015581400657538325},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":0,"preference_cost":0,"change_cost":0,"changed_tasks":0,"max_start_shift":0,"choices":[0,0,0],"schedule":[{"task":"A","resource":"oven","start":0,"end":2},{"task":"B","resource":"oven","start":3,"end":4},{"task":"C","resource":"oven","start":5,"end":7}]},"dual_bound":0.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.001259698998183012},"uniform_one_hot":{"best":{"feasible":true,"objective":0,"raw_cost":0,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":0,"end":2,"reserved_end":3,"changed":false},{"variable":3,"task":"B","group":"gB","resource":"oven","start":3,"end":4,"reserved_end":5,"changed":false},{"variable":6,"task":"C","group":"gC","resource":"oven","start":5,"end":7,"reserved_end":8,"changed":false}],"bits":[1,0,0,1,0,0,1,0,0],"qubo_energy":0},"shots":512,"seed":7,"feasible_probability":0.5555555555555556,"sampled_feasible_fraction":0.59765625,"runtime_seconds":0.00856915200711228},"absolute_gap":0,"status":"feasible","runtime_seconds":0.1413392629910959}
diff --git a/Tutorials/LabScheduling/results/v2/tradeoff/outage-input.json b/Tutorials/LabScheduling/results/v2/tradeoff/outage-input.json
new file mode 100644
index 00000000..7c956bff
--- /dev/null
+++ b/Tutorials/LabScheduling/results/v2/tradeoff/outage-input.json
@@ -0,0 +1 @@
+{"name":"合成连锁改约:低成本整体后移或高成本备用设备","horizon":14,"resources":[{"id":"oven","cleanup":1,"downtime":[[0,1]]},{"id":"backup","cleanup":1}],"tasks":[{"id":"A","group":"gA","duration":2,"original":{"resource":"oven","start":0},"change_cost":2,"options":[{"resource":"oven","start":0,"cost":0},{"resource":"oven","start":2,"cost":2},{"resource":"backup","start":0,"cost":12}]},{"id":"B","group":"gB","duration":1,"original":{"resource":"oven","start":3},"change_cost":2,"options":[{"resource":"oven","start":3,"cost":0},{"resource":"oven","start":5,"cost":2},{"resource":"oven","start":8,"cost":5}]},{"id":"C","group":"gC","duration":2,"original":{"resource":"oven","start":5},"change_cost":2,"options":[{"resource":"oven","start":5,"cost":0},{"resource":"oven","start":7,"cost":2},{"resource":"oven","start":10,"cost":5}]}],"precedence":[["A","B"],["B","C"]]}
diff --git a/Tutorials/LabScheduling/results/v2/tradeoff/outage-report.json b/Tutorials/LabScheduling/results/v2/tradeoff/outage-report.json
new file mode 100644
index 00000000..2ffd2116
--- /dev/null
+++ b/Tutorials/LabScheduling/results/v2/tradeoff/outage-report.json
@@ -0,0 +1 @@
+{"schema_version":2,"problem":"合成连锁改约:低成本整体后移或高成本备用设备","input_sha256":"fb186f6154a157be65af2f6b9e65c295c016791fd60e21b1e257ab35b2f63b9f","environment":{"python":"3.12.3","platform":"Linux","pyqpanda3":"0.4.1","pyqpanda_alg":"2.0.0","numpy":"2.5.3","scipy":"1.18.1"},"model":{"qubits":8,"penalty":29,"objective_bound":28,"offset":87,"linear":[-25,-15,-29,-25,-22,-29,-25,-22],"quadratic":[[0,1,58],[0,2,29],[2,3,58],[2,4,58],[3,4,58],[3,5,29],[4,5,29],[4,6,29],[5,6,58],[5,7,58],[6,7,58]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[{"task":"A","resource":"oven","start":0,"reasons":["downtime"]}],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":4},{"index":1,"task":"A","resource":"backup","start":0,"cost":14},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":4},{"index":4,"task":"B","resource":"oven","start":8,"cost":7},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":4},{"index":7,"task":"C","resource":"oven","start":10,"cost":7}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]},"quantum":{"seed":7,"mixer":"xy","reduction":{"method":"singleton propagation + disconnected conflict components","original_qubits":8,"fixed_variables":[],"fixed_cost":0,"removals":[],"infeasible_task":null,"component_qubits":[8],"max_component_qubits":8,"component_to_original":[[0,1,2,3,4,5,6,7]],"components":[{"qubits":8,"penalty":29,"objective_bound":28,"offset":87,"linear":[-25,-15,-29,-25,-22,-29,-25,-22],"quadratic":[[0,1,58],[0,2,29],[2,3,58],[2,4,58],[3,4,58],[3,5,29],[4,5,29],[4,6,29],[5,6,58],[5,7,58],[6,7,58]],"domains":[[0,1],[2,3,4],[5,6,7]],"pruned":[],"variables":[{"index":0,"task":"A","resource":"oven","start":2,"cost":4},{"index":1,"task":"A","resource":"backup","start":0,"cost":14},{"index":2,"task":"B","resource":"oven","start":3,"cost":0},{"index":3,"task":"B","resource":"oven","start":5,"cost":4},{"index":4,"task":"B","resource":"oven","start":8,"cost":7},{"index":5,"task":"C","resource":"oven","start":5,"cost":0},{"index":6,"task":"C","resource":"oven","start":7,"cost":4},{"index":7,"task":"C","resource":"oven","start":10,"cost":7}],"conflicts":[{"i":0,"j":2,"reasons":["resource","precedence"]},{"i":3,"j":5,"reasons":["resource","precedence"]},{"i":4,"j":5,"reasons":["precedence"]},{"i":4,"j":6,"reasons":["resource","precedence"]}]}]},"best":{"feasible":true,"objective":12,"raw_cost":12,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":12},"components":[{"status":"feasible","best":{"feasible":true,"objective":12,"raw_cost":12,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":12},"seed":1201125462,"mixer":"xy","phase_mode":"auto","layers":1,"shots":512,"maxiter":60,"restarts":2,"parameters":[2.092786972576943,1.456100045288597],"expected_energy":29.190260151910458,"initial_expected_energy":29.613481700185602,"history":[29.613481700185602,29.493786408763174,33.66427684583551,34.25254556790344,33.26227415318608,31.619366169119214,29.48860256528762,29.23559827259821,29.55129564282673,29.23075418465455,29.263924908273367,29.230843111320365,29.22676266867058,29.22833407501895,29.22756458869051,29.226936357784744,29.226356746963248,29.226255058089087,29.22518299841374,29.22459278565833,29.223699670006972,29.22213262169249,29.21886060567848,29.21248848577187,29.209574619269528,29.3029055704771,29.300259288558273,29.210204025076088,29.200492747030154,29.21571201810537,29.201725982617987,29.200199171045426,29.199777213026344,29.20108839150789,29.199355963395885,29.19903343780053,29.198321763701507,29.19692848147548,29.195075700184816,29.197062971432697,29.200295018303134,29.194459348772344,29.193782263132732,29.193437729387433,29.195106592572444,29.19298690102641,29.192696182431746,29.19236559795894,29.191752550813625,29.191795673792544,29.1915694323406,29.191995696316262,29.19166592753621,29.19138269147191,29.191244092216493,29.191504465270516,29.191196125189872,29.191059178930107,29.19078832393528,29.190260151910458,29.7459761895576,29.69689278623816,34.17555317181457,33.87981874881274,32.709983663723264,29.713824882217672,31.952697989133558,29.430429819141672,29.259408451999448,29.505479368541433,29.272238425012272,29.276480177041428,29.251047122315846,29.276006592382956,29.2499275269532,29.253111124795474,29.24857550553354,29.25339779715378,29.24748230946806,29.24664317358912,29.24578371779567,29.244259054630525,29.249132276860095,29.244321649362575,29.243980252165525,29.244159165517424,29.244448337286578,29.243258108743667,29.242713777252327,29.24408881261447,29.242236631529632,29.241822462554232,29.241375292149904,29.240320661141112,29.239868314637057,29.237668895458846,29.240718875993167,29.238833055803163,29.23735356211345,29.238138086434184,29.2371683859962,29.23675284982835,29.236370137721085,29.235420915791295,29.234845801555473,29.233880981218604,29.2327126733933,29.230830990572144,29.230809224198552,29.22706076791119,29.233378984419296,29.229762054116684,29.22662552695039,29.22702705124167,29.22633604398746,29.226384951845013,29.22625853675175,29.22608195180556,29.2257460014915,29.225097421919482],"feasible_probability":0.5569311480320706,"one_hot_probability":0.9999999999999999,"sampled_feasible_fraction":0.5625,"counts":{"00100101":22,"00100110":65,"00101001":17,"00101010":11,"00110001":44,"00110010":21,"01000101":2,"01000110":31,"01001001":32,"01001010":22,"01010001":69,"01010010":28,"10000101":10,"10000110":51,"10001001":45,"10001010":16,"10010001":15,"10010010":11},"circuit_evaluations":120,"optimizer_runs":[{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60},{"success":false,"message":"Return from COBYLA because the objective function has been evaluated MAXFUN times.","evaluations":60}],"sampling":"seeded NumPy multinomial from CPUQVM Born probabilities","runtime_seconds":0.10666588100139052}],"circuit_evaluations":120,"status":"feasible","feasible_probability":0.5569311480320706,"total_shots":512,"runtime_seconds":0.10687632499320898,"business_metrics":{"feasible":true,"violations":[],"violation_count":0,"objective":12,"preference_cost":6,"change_cost":6,"changed_tasks":3,"max_start_shift":2,"choices":[1,1,1],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]}},"exact":{"status":"optimal","best":{"feasible":true,"objective":12,"raw_cost":12,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":12},"combinations":18,"feasible_count":9,"runtime_seconds":0.00012674999015871435},"milp":{"variables":9,"best":{"feasible":true,"violations":[],"violation_count":0,"objective":12,"preference_cost":6,"change_cost":6,"changed_tasks":3,"max_start_shift":2,"choices":[1,1,1],"schedule":[{"task":"A","resource":"oven","start":2,"end":4},{"task":"B","resource":"oven","start":5,"end":6},{"task":"C","resource":"oven","start":7,"end":9}]},"dual_bound":12.0,"gap":0.0,"status":"optimal","solver_status":0,"message":"Optimization terminated successfully. (HiGHS Status 7: Optimal)","constraints":7,"runtime_seconds":0.004288544994778931},"uniform_one_hot":{"best":{"feasible":true,"objective":12,"raw_cost":12,"violation_count":0,"violations":[],"schedule":[{"variable":0,"task":"A","group":"gA","resource":"oven","start":2,"end":4,"reserved_end":5,"changed":true},{"variable":3,"task":"B","group":"gB","resource":"oven","start":5,"end":6,"reserved_end":7,"changed":true},{"variable":6,"task":"C","group":"gC","resource":"oven","start":7,"end":9,"reserved_end":10,"changed":true}],"bits":[1,0,0,1,0,0,1,0],"qubo_energy":12},"shots":512,"seed":7,"feasible_probability":0.5,"sampled_feasible_fraction":0.537109375,"runtime_seconds":0.00947661699319724},"absolute_gap":0,"status":"feasible","runtime_seconds":0.12756174700916745}
diff --git a/Tutorials/LabScheduling/results/v2/tradeoff/tradeoff.svg b/Tutorials/LabScheduling/results/v2/tradeoff/tradeoff.svg
new file mode 100644
index 00000000..eda52008
--- /dev/null
+++ b/Tutorials/LabScheduling/results/v2/tradeoff/tradeoff.svg
@@ -0,0 +1,544 @@
+
+
+
diff --git a/Tutorials/LabScheduling/results/v2/verification.json b/Tutorials/LabScheduling/results/v2/verification.json
new file mode 100644
index 00000000..5b840d8a
--- /dev/null
+++ b/Tutorials/LabScheduling/results/v2/verification.json
@@ -0,0 +1,11 @@
+{
+ "implementation_commit": "798f1bc",
+ "application_tests": 76,
+ "line_coverage_percent": 98.44,
+ "wheel_environment_tests": 76,
+ "paired_records": 360,
+ "input_seed_grid_complete": true,
+ "counts_and_sampled_best_verified": true,
+ "source_hashes_match": true,
+ "replay_exclusions": "only *_seconds fields"
+}
diff --git a/Tutorials/LabScheduling/results/verification.txt b/Tutorials/LabScheduling/results/verification.txt
new file mode 100644
index 00000000..b3665c99
--- /dev/null
+++ b/Tutorials/LabScheduling/results/verification.txt
@@ -0,0 +1,34 @@
+Local verification, 2026-09-21, WSL / Python 3.12.3
+
+APPLICATION TESTS (source-directory coverage)
+........................................................ [100%]
+================================ tests coverage ================================
+_______________ coverage: platform linux, python 3.12.3-final-0 ________________
+
+Name Stmts Miss Cover Missing
+------------------------------------------------------------------------------------------
+pyqpanda-algorithm/pyqpanda_alg/LabScheduling/__init__.py 5 0 100%
+pyqpanda-algorithm/pyqpanda_alg/LabScheduling/__main__.py 27 3 89% 34-35, 43
+pyqpanda-algorithm/pyqpanda_alg/LabScheduling/classical.py 24 0 100%
+pyqpanda-algorithm/pyqpanda_alg/LabScheduling/model.py 119 0 100%
+pyqpanda-algorithm/pyqpanda_alg/LabScheduling/problem.py 121 1 99% 150
+pyqpanda-algorithm/pyqpanda_alg/LabScheduling/quantum.py 121 2 98% 82, 231
+pyqpanda-algorithm/pyqpanda_alg/LabScheduling/report.py 38 1 97% 71
+------------------------------------------------------------------------------------------
+TOTAL 455 7 98%
+Required test coverage of 95% reached. Total coverage: 98.46%
+56 passed in 5.74s
+
+UPSTREAM EFFECTIVE TESTS (OMP/BLAS threads=1)
+.................. [100%]
+18 passed in 9.08s
+
+QUALITY
+Ruff check: passed
+Ruff format --check: 13 files formatted
+Mypy: no issues in 7 source files
+pip check: no broken requirements
+Built wheel import + medium CPU example: cost=4, violations=0, gap=0
+Full 12-run benchmark replay: exact JSON equality excluding runtime_seconds.
+Final upstream refresh: develop unchanged; 70 open PRs, no new entries.
+Final diff, artifact, secret-pattern, legacy-import and relative-link audits: passed.
diff --git a/Tutorials/README.md b/Tutorials/README.md
index bb77d7f7..b7e95fe2 100644
--- a/Tutorials/README.md
+++ b/Tutorials/README.md
@@ -1,2 +1,7 @@
# QPanda-Toturial
# pyQPanda-Toturial
+
+
+## 应用案例
+
+- [LabReschedule 中文教程与复现实验](LabScheduling/README.md)
diff --git a/Tutorials/source/index.rst b/Tutorials/source/index.rst
index 08668542..a70934fb 100644
--- a/Tutorials/source/index.rst
+++ b/Tutorials/source/index.rst
@@ -42,3 +42,4 @@ Overall, it provides a standardized set of tools for developers, allowing them t
autoapi/pyqpanda_alg/QSVD/index
autoapi/pyqpanda_alg/QSVR/index
autoapi/pyqpanda_alg/QUBO/index
+ autoapi/pyqpanda_alg/LabScheduling/index
diff --git a/pyqpanda-algorithm/example/LabScheduling/README.md b/pyqpanda-algorithm/example/LabScheduling/README.md
new file mode 100644
index 00000000..a6834123
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/README.md
@@ -0,0 +1,31 @@
+# 共享实验室最小扰动重排
+
+完整中文教程、输入规范、QUBO 推导、结果和演示流程:
+[LabReschedule](../../../Tutorials/LabScheduling/README.md)。
+
+在**仓库根目录**安装本地包和应用依赖后运行:
+
+```bash
+OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 .venv/bin/python -m pyqpanda_alg.LabScheduling pyqpanda-algorithm/example/LabScheduling/data/medium.json --output reports/medium.json
+```
+
+默认 XY / seed 7:中等样例目标值 4、违反数 0、经典最优差距 0。
+数据为合成数据;不需要 API Key、GPU 或真实量子硬件。
+
+增强演示(CSV 预约→连锁改约→4 比特 CPU 求解→双经典认证→变更表/甘特图):
+
+```bash
+OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 MPLBACKEND=Agg .venv/bin/python pyqpanda-algorithm/example/LabScheduling/booking_demo.py
+```
+
+[增强教程与全部实验](../../../Tutorials/LabScheduling/ENHANCEMENTS.md)解释安全传播、
+组件回填、XY 相位精简、MILP、12 实例 × 10 种子评测及已知失败。
+## 最新审阅与异构案例
+
+安装后可运行 `tradeoff_demo.py`,查看三个实验整体后移与使用备用设备的完整取舍。
+`benchmark_v2.py` 执行冻结的 36 个异构问题及两条求解路径;
+`summarize_v2.py reports/lab-v2` 汇总所有结果,旧版评价入口继续保留。
+详见[审阅指南](../../../Tutorials/LabScheduling/REVIEW_GUIDE.md)。
+
+`matched_budget.py` 与 `summarize_matched.py` 提供同总预算及化简后随机基线对照。
+运行、结论边界和全量重放见[补充评价](../../../Tutorials/LabScheduling/MATCHED_BUDGET.md)。
diff --git a/pyqpanda-algorithm/example/LabScheduling/ablation.py b/pyqpanda-algorithm/example/LabScheduling/ablation.py
new file mode 100644
index 00000000..c7c9d33c
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/ablation.py
@@ -0,0 +1,140 @@
+"""Audit each preprocessing stage against every raw feasible assignment."""
+
+from dataclasses import replace
+from itertools import product
+from time import perf_counter
+from typing import Any
+
+from pyqpanda_alg.LabScheduling import (
+ Model,
+ Problem,
+ compile_qubo,
+ evaluate,
+ reduce_model,
+ validate_assignment,
+)
+from pyqpanda_alg.LabScheduling.metrics import circuit_resources
+
+
+def feasible_vectors(model: Model) -> dict[tuple[int, ...], int]:
+ """Enumerate feasible one-hot vectors and their original objective costs."""
+ result = {}
+ for choices in product(*model.domains):
+ bits = tuple(int(i in choices) for i in range(len(model.variables)))
+ row = evaluate(model, bits)
+ if row["feasible"]:
+ result[bits] = row["objective"]
+ return result
+
+
+def resources(models: list[Model], mode: str) -> dict[str, Any]:
+ """Count native p=1 gates; distinguish serial depth from component maximum."""
+ valid = all(all(m.domains) for m in models)
+ counts = [circuit_resources(m, [0.37, 0.61])[mode] for m in models] if valid else []
+ return {
+ "component_qubits": [len(m.variables) for m in models],
+ "total_qubits": sum(len(m.variables) for m in models),
+ "max_component_qubits": max((len(m.variables) for m in models), default=0),
+ "cnot": sum(c["cnot"] for c in counts) if valid else None,
+ "cry": sum(c["cry"] for c in counts) if valid else None,
+ "serial_depth_sum": sum(c["depth"] for c in counts) if valid else None,
+ "max_component_depth": max((c["depth"] for c in counts), default=0)
+ if valid
+ else None,
+ "circuit_status": "constructed" if valid and models else "no_circuit",
+ }
+
+
+def audit_stages(problem: Problem) -> dict[str, Any]:
+ """Verify pruning and restoration bijections before reporting saved resources.
+
+ Intended for the bounded example corpus, not unrestricted production inputs.
+ Raw input is enumerated with the independent raw semantic checker. A raw
+ invalid option has no circuit representation in this app, so its gate count
+ is deliberately absent instead of comparing different constraint problems.
+ """
+ started = perf_counter()
+ model = compile_qubo(problem)
+ compiled = perf_counter()
+ reduction = reduce_model(model)
+ reduced = perf_counter()
+ raw_feasible = {}
+ for choices in product(*(range(len(t.options)) for t in problem.tasks)):
+ row = validate_assignment(problem, choices)
+ if row["feasible"]:
+ raw_feasible[choices] = row["objective"]
+ vectors = feasible_vectors(model)
+ mapped = {}
+ for bits, cost in vectors.items():
+ choices = tuple(
+ problem.tasks[ti].options.index(
+ model.variables[next(i for i in d if bits[i])].option
+ )
+ for ti, d in enumerate(model.domains)
+ )
+ mapped[choices] = cost
+ if mapped != raw_feasible:
+ raise RuntimeError("calendar pruning changed raw feasible assignments")
+ restored = {}
+ if reduction.infeasible_task is None:
+ local = [feasible_vectors(m) for m in reduction.components]
+ for choices in product(*(list(values) for values in local)):
+ row = reduction.restore(choices)
+ expected = reduction.audit()["fixed_cost"] + sum(
+ values[bits] for values, bits in zip(local, choices, strict=True)
+ )
+ if not row["feasible"] or row["objective"] != expected:
+ raise RuntimeError("component restoration changed feasibility or cost")
+ restored[tuple(row["bits"])] = row["objective"]
+ if restored != vectors:
+ raise RuntimeError("reduction changed the complete feasible set")
+ proven = perf_counter()
+ stage_rows = {
+ "raw_input": {
+ "candidate_count": sum(len(t.options) for t in problem.tasks),
+ "cnot": None,
+ "circuit_status": "not_encoded; unary-invalid candidates still present",
+ },
+ "calendar_full_phase": resources([model], "full"),
+ }
+ if reduction.infeasible_task is None:
+ active = {i for mapping in reduction.mappings for i in mapping}
+ tasks = tuple(
+ replace(
+ task,
+ options=tuple(model.variables[i].option for i in domain if i in active),
+ )
+ for task, domain in zip(problem.tasks, model.domains, strict=True)
+ if any(i in active for i in domain)
+ )
+ ids = {t.id for t in tasks}
+ joint = compile_qubo(
+ replace(
+ problem,
+ tasks=tasks,
+ precedence=tuple(
+ (a, b) for a, b in problem.precedence if a in ids and b in ids
+ ),
+ )
+ )
+ stage_rows.update(
+ {
+ "propagation_full_phase": resources([joint] if tasks else [], "full"),
+ "components_full_phase": resources(list(reduction.components), "full"),
+ "components_auto_phase": resources(list(reduction.components), "auto"),
+ }
+ )
+ return {
+ "stages": stage_rows,
+ "reduction": reduction.audit(),
+ "feasible_count": len(vectors),
+ "exact_objective": min(vectors.values(), default=None),
+ "proof": (
+ "all raw feasible choices = pruned choices = restored component choices; "
+ "costs equal"
+ ),
+ "calendar_seconds": compiled - started,
+ "reduction_seconds": reduced - compiled,
+ "proof_seconds": proven - reduced,
+ "resource_audit_seconds": perf_counter() - proven,
+ }
diff --git a/pyqpanda-algorithm/example/LabScheduling/benchmark.py b/pyqpanda-algorithm/example/LabScheduling/benchmark.py
new file mode 100644
index 00000000..e84d014b
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/benchmark.py
@@ -0,0 +1,63 @@
+"""Reproduce seed/mixer ablations and write raw reports plus CSV metrics."""
+
+import argparse
+import csv
+import json
+from pathlib import Path
+
+from pyqpanda_alg.LabScheduling.report import run_experiment
+
+
+def main() -> None:
+ """Benchmark both feasible datasets with three seeds and two mixers."""
+ parser = argparse.ArgumentParser(description=__doc__)
+ parser.add_argument("--output", type=Path, default=Path("reports/lab-scheduling"))
+ parser.add_argument("--seeds", type=int, nargs="+", default=[7, 19, 42])
+ args = parser.parse_args()
+ args.output.mkdir(parents=True, exist_ok=True)
+ rows = []
+ for dataset in ("simple", "medium"):
+ for seed in args.seeds:
+ for mixer in ("xy", "x"):
+ report = run_experiment(
+ Path(__file__).parent / "data" / f"{dataset}.json",
+ seed=seed,
+ mixer=mixer,
+ )
+ name = f"{dataset}-{mixer}-{seed}"
+ (args.output / f"{name}.json").write_text(
+ json.dumps(report, ensure_ascii=False, allow_nan=False) + "\n",
+ encoding="utf-8",
+ )
+ q = report["quantum"]
+ rows.append(
+ {
+ "dataset": dataset,
+ "seed": seed,
+ "mixer": mixer,
+ "qubits": report["model"]["qubits"],
+ "objective": q["best"]["objective"],
+ "violations": q["best"]["violation_count"],
+ "exact_objective": report["exact"]["best"]["objective"],
+ "gap": report["absolute_gap"],
+ "feasible_probability": q["feasible_probability"],
+ "one_hot_probability": q["one_hot_probability"],
+ "uniform_feasible_probability": report["uniform_one_hot"][
+ "feasible_probability"
+ ],
+ "quantum_seconds": q["runtime_seconds"],
+ "exact_seconds": report["exact"]["runtime_seconds"],
+ "circuit_evaluations": q["circuit_evaluations"],
+ }
+ )
+ print(name, rows[-1], flush=True)
+ with (args.output / "summary.csv").open(
+ "w", newline="", encoding="utf-8"
+ ) as stream:
+ writer = csv.DictWriter(stream, fieldnames=list(rows[0]), lineterminator="\n")
+ writer.writeheader()
+ writer.writerows(rows)
+
+
+if __name__ == "__main__":
+ main()
diff --git a/pyqpanda-algorithm/example/LabScheduling/benchmark_v2.py b/pyqpanda-algorithm/example/LabScheduling/benchmark_v2.py
new file mode 100644
index 00000000..67a6b35f
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/benchmark_v2.py
@@ -0,0 +1,234 @@
+"""Run every frozen heterogeneous instance and both quantum execution paths."""
+
+import argparse
+import hashlib
+import json
+import platform
+from dataclasses import replace
+from importlib.metadata import version
+from math import prod
+from pathlib import Path
+from time import perf_counter
+from typing import Any
+
+import numpy as np
+from ablation import audit_stages
+from pyqpanda_alg.LabScheduling import (
+ circuit_probabilities,
+ compile_qubo,
+ evaluate,
+ load_problem,
+ reduce_model,
+ solve_milp,
+ solve_qaoa,
+ solve_reduced,
+ validate_assignment,
+)
+from pyqpanda_alg.LabScheduling.metrics import distribution_metrics
+from stress_benchmark import write_json
+
+
+def check_sample(model: Any, run: dict[str, Any]) -> None:
+ """Reject a selected result absent from counts or invalid in raw input."""
+ if "counts" in run:
+ key = "".join(map(str, run["best"]["bits"][::-1]))
+ if run["counts"].get(key, 0) <= 0:
+ raise RuntimeError("best result is not an observed quantum sample")
+ if run["best"] and run["best"]["feasible"]:
+ choices = [
+ task.options.index(
+ next(
+ v.option
+ for v, bit in zip(model.variables, run["best"]["bits"], strict=True)
+ if bit and v.task == ti
+ )
+ )
+ for ti, task in enumerate(model.problem.tasks)
+ ]
+ raw = validate_assignment(model.problem, choices)
+ if not raw["feasible"] or raw["objective"] != run["best"]["objective"]:
+ raise RuntimeError("sample failed raw semantic check")
+
+
+def diagnostics(model: Any, run: dict[str, Any]) -> dict[str, Any] | None:
+ """Certify a trained distribution without feeding the optimum into training."""
+ if "parameters" not in run:
+ return None
+ probabilities = circuit_probabilities(model, run["parameters"])
+ full = circuit_probabilities(model, run["parameters"], phase_mode="full")
+ error = float(np.max(np.abs(probabilities - full)))
+ if error > 1e-10:
+ raise RuntimeError("full and simplified phases disagree")
+ metrics = distribution_metrics(model, probabilities)
+ samples = []
+ for shots in (8, 16, 32, 64, 128, 512):
+ rng = np.random.default_rng(
+ np.random.SeedSequence([run["seed"], shots, 20260929])
+ )
+ objectives = []
+ for value in set(rng.choice(len(probabilities), size=shots, p=probabilities)):
+ row = evaluate(
+ model, [(int(value) >> j) & 1 for j in range(len(model.variables))]
+ )
+ if row["feasible"]:
+ objectives.append(row["objective"])
+ samples.append(
+ {"shots": shots, "best_objective": min(objectives, default=None)}
+ )
+ return {**metrics, "phase_max_error": error, "independent_samples": samples}
+
+
+def run(corpus: Path, output: Path) -> None:
+ """Save all instances and seed runs; failed/fully classical cases remain visible."""
+ manifest_path = corpus / "manifest.json"
+ manifest = json.loads(manifest_path.read_text())
+ here = Path(__file__).parent
+ if (
+ hashlib.sha256((here / "make_corpus_v2.py").read_bytes()).hexdigest()
+ != manifest["generator_sha256"]
+ ):
+ raise ValueError("frozen generator changed")
+ for spec in manifest["instances"]:
+ if (
+ hashlib.sha256((corpus / spec["file"]).read_bytes()).hexdigest()
+ != spec["sha256"]
+ ):
+ raise ValueError(f"frozen input changed: {spec['file']}")
+ output.mkdir(parents=True, exist_ok=True)
+ import pyqpanda_alg.LabScheduling as package
+
+ write_json(
+ output / "provenance.json",
+ {
+ "manifest": manifest,
+ "manifest_sha256": hashlib.sha256(manifest_path.read_bytes()).hexdigest(),
+ "python": platform.python_version(),
+ "platform": platform.platform(),
+ "packages": {
+ n: version(n) for n in ("numpy", "scipy", "pyqpanda3", "pyqpanda_alg")
+ },
+ "sources": {
+ str(p.relative_to(here))
+ if p.is_relative_to(here)
+ else f"core/{p.name}": hashlib.sha256(p.read_bytes()).hexdigest()
+ for p in [
+ Path(__file__),
+ here / "ablation.py",
+ here / "stress_benchmark.py",
+ *Path(package.__file__).parent.glob("*.py"),
+ ]
+ },
+ },
+ )
+ started = perf_counter()
+ instances = []
+ count = 0
+ with (output / "runs.jsonl").open("w", encoding="utf-8") as stream:
+ for spec in manifest["instances"]:
+ problem = load_problem(corpus / spec["file"])
+ control = replace(
+ problem,
+ resources=tuple(replace(r, downtime=()) for r in problem.resources),
+ )
+ original = validate_assignment(control, [0] * len(control.tasks))
+ if not original["feasible"] or original["objective"] != 0:
+ raise RuntimeError(
+ "original bookings are not a valid zero-cost control"
+ )
+ model = compile_qubo(problem)
+ reduction = reduce_model(model)
+ stages = audit_stages(problem)
+ milp = solve_milp(problem)
+ if (milp["status"] == "optimal") != bool(stages["feasible_count"]) or milp[
+ "status"
+ ] not in ("optimal", "infeasible"):
+ raise RuntimeError("MILP and exhaustive proof disagree")
+ if milp["best"] and milp["best"]["objective"] != stages["exact_objective"]:
+ raise RuntimeError("MILP optimum disagrees")
+ instances.append(
+ {
+ "input": spec,
+ "model": model.audit(),
+ "ablation": stages,
+ "milp": milp,
+ "control": original,
+ }
+ )
+ for seed in manifest["optimization_seeds"]:
+ # Both paths execute before any distribution diagnostics.
+ direct = solve_qaoa(model, seed=seed, **manifest["training"])
+ reduced = solve_reduced(model, seed=seed, **manifest["training"])
+ check_sample(model, direct)
+ check_sample(model, reduced)
+ diagnostic_started = perf_counter()
+ profile = diagnostics(model, direct)
+ local = []
+ for component, result in zip(
+ reduction.components, reduced["components"], strict=True
+ ):
+ check_sample(component, result)
+ local.append(diagnostics(component, result))
+ record = {
+ "instance": spec["file"],
+ "seed": seed,
+ "direct": direct,
+ "reduced": reduced,
+ "direct_metrics": profile,
+ "component_metrics": local,
+ "reduced_single_joint_draw_p_opt": prod(
+ m["optimal_probability"] for m in local
+ )
+ if reduced["status"]
+ in ("feasible", "no_feasible_sample", "classical_propagation")
+ else None,
+ "diagnostic_seconds": perf_counter() - diagnostic_started,
+ }
+ stream.write(
+ json.dumps(
+ record,
+ ensure_ascii=False,
+ allow_nan=False,
+ separators=(",", ":"),
+ )
+ + "\n"
+ )
+ stream.flush()
+ count += 1
+ print(
+ spec["file"],
+ milp["status"],
+ "components",
+ stages["reduction"]["component_qubits"],
+ flush=True,
+ )
+ with (output / "instances.jsonl").open("w", encoding="utf-8") as stream:
+ for record in instances:
+ stream.write(
+ json.dumps(
+ record, ensure_ascii=False, allow_nan=False, separators=(",", ":")
+ )
+ + "\n"
+ )
+ write_json(
+ output / "execution.json",
+ {
+ "instances": len(instances),
+ "paired_seed_records": count,
+ "runtime_seconds": perf_counter() - started,
+ },
+ )
+
+
+def main() -> None:
+ """Run the frozen second corpus independently of the first archive."""
+ parser = argparse.ArgumentParser(description=__doc__)
+ parser.add_argument(
+ "--corpus", type=Path, default=Path(__file__).parent / "data/corpus-v2"
+ )
+ parser.add_argument("--output", type=Path, default=Path("reports/lab-v2"))
+ args = parser.parse_args()
+ run(args.corpus, args.output)
+
+
+if __name__ == "__main__":
+ main()
diff --git a/pyqpanda-algorithm/example/LabScheduling/booking_demo.py b/pyqpanda-algorithm/example/LabScheduling/booking_demo.py
new file mode 100644
index 00000000..edac3c95
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/booking_demo.py
@@ -0,0 +1,138 @@
+"""One-command booking CSV -> safe reduction -> CPU QAOA -> verified change ledger."""
+
+import argparse
+import copy
+import csv
+import json
+from pathlib import Path
+
+import matplotlib
+
+matplotlib.use("Agg")
+import matplotlib.pyplot as plt
+from pyqpanda_alg.LabScheduling.bookings import import_bookings
+from pyqpanda_alg.LabScheduling.report import run_experiment
+
+
+def run_demo(output: Path) -> None:
+ """Run outage and unchanged control, save raw reports, CSV changes and SVG."""
+ source = Path(__file__).parent / "data/bookings"
+ calendar = json.loads((source / "outage.json").read_text(encoding="utf-8"))
+ problem = import_bookings(source / "chain.csv", calendar)
+ output.mkdir(parents=True, exist_ok=True)
+ reports = {}
+ for name in ("outage", "control"):
+ raw = copy.deepcopy(problem)
+ if name == "control":
+ for resource in raw["resources"]:
+ resource["downtime"] = []
+ raw["name"] = "合成无停机对照:原预约全部保留"
+ path = output / f"{name}-input.json"
+ path.write_text(json.dumps(raw, ensure_ascii=False, indent=2) + "\n")
+ report = run_experiment(path, reduce=True)
+ (output / f"{name}-report.json").write_text(
+ json.dumps(report, ensure_ascii=False, indent=2, allow_nan=False) + "\n"
+ )
+ if report["status"] != "feasible":
+ raise RuntimeError(f"demo failed: {name}: {report['status']}")
+ reports[name] = report
+ best = reports["outage"]["quantum"]["best"]
+ reduction = reports["outage"]["quantum"]["reduction"]
+ changes = []
+ for row in best["schedule"]:
+ task = next(t for t in problem["tasks"] if t["id"] == row["task"])
+ original = task["original"]
+ option = next(
+ o
+ for o in task["options"]
+ if (o["resource"], o["start"]) == (row["resource"], row["start"])
+ )
+ pruned = any(
+ p["task"] == task["id"]
+ and p["resource"] == original["resource"]
+ and p["start"] == original["start"]
+ for p in reports["outage"]["model"]["pruned"]
+ )
+ changes.append(
+ {
+ "task": row["task"],
+ "original_resource": original["resource"],
+ "original_start": original["start"],
+ "new_resource": row["resource"],
+ "new_start": row["start"],
+ "changed": row["changed"],
+ "preference_cost": option["cost"],
+ "change_cost": task["change_cost"] if row["changed"] else 0,
+ "explanation": "原预约被停机排除"
+ if pruned
+ else "约束传播要求连锁改约,见 reduction.removals"
+ if row["changed"]
+ else "保留原预约",
+ }
+ )
+ with (output / "changes.csv").open("w", newline="", encoding="utf-8") as stream:
+ writer = csv.DictWriter(
+ stream, fieldnames=list(changes[0]), lineterminator="\n"
+ )
+ writer.writeheader()
+ writer.writerows(changes)
+ fig, axes = plt.subplots(2, 1, figsize=(9, 4.8), layout="constrained", sharex=True)
+ for ax, title, after in zip(
+ axes,
+ ("Original bookings + outage", "Verified reschedule"),
+ (False, True),
+ strict=True,
+ ):
+ for i, task in enumerate(problem["tasks"]):
+ original = task["original"]
+ row = next(r for r in best["schedule"] if r["task"] == task["id"])
+ start = row["start"] if after else original["start"]
+ rid = row["resource"] if after else original["resource"]
+ y = {"oven": 0, "scope": 1}[rid]
+ ax.barh(
+ y,
+ task["duration"],
+ left=start,
+ height=0.55,
+ color=plt.get_cmap("tab10")(i),
+ )
+ ax.text(
+ start + task["duration"] / 2, y, task["id"], ha="center", va="center"
+ )
+ ax.barh(
+ 0, 1, left=0, height=0.75, facecolor="none", edgecolor="red", hatch="xx"
+ )
+ ax.set(
+ title=title, yticks=[0, 1], yticklabels=["Oven", "Microscope"], xlim=(0, 6)
+ )
+ ax.grid(axis="x", alpha=0.2)
+ axes[-1].set_xlabel("Time slot; red hatch = outage; synthetic booking data")
+ matplotlib.rcParams["svg.hashsalt"] = "lab-booking-demo"
+ matplotlib.rcParams["svg.fonttype"] = "none"
+ fig.savefig(output / "booking-changes.svg", metadata={"Date": None})
+ plt.close(fig)
+ print(
+ json.dumps(
+ {
+ "outage_cost": best["objective"],
+ "control_cost": reports["control"]["quantum"]["best"]["objective"],
+ "changed_tasks": sum(row["changed"] for row in changes),
+ "original_qubits": reduction["original_qubits"],
+ "component_qubits": reduction["component_qubits"],
+ "outputs": str(output),
+ },
+ ensure_ascii=False,
+ indent=2,
+ )
+ )
+
+
+def main() -> None:
+ """Generate the complete offline demonstration in one command."""
+ parser = argparse.ArgumentParser(description=__doc__)
+ parser.add_argument("--output", type=Path, default=Path("reports/booking-demo"))
+ run_demo(parser.parse_args().output)
+
+
+if __name__ == "__main__":
+ main()
diff --git a/pyqpanda-algorithm/example/LabScheduling/classical_scaling.py b/pyqpanda-algorithm/example/LabScheduling/classical_scaling.py
new file mode 100644
index 00000000..22c20505
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/classical_scaling.py
@@ -0,0 +1,70 @@
+"""Classical-only 20/35/50-task cascade stress cases; no quantum scaling claim."""
+
+import argparse
+import hashlib
+import json
+from pathlib import Path
+from typing import Any
+
+from pyqpanda_alg.LabScheduling import Problem, compile_qubo, reduce_model, solve_milp
+
+
+def generate_chain(tasks: int) -> dict[str, Any]:
+ """Create a connected shared-oven cascade with three choices per booking."""
+ return {
+ "name": f"synthetic-classical-chain-{tasks}",
+ "horizon": 2 * tasks + 4,
+ "resources": [{"id": "oven", "cleanup": 1, "downtime": [[0, 2]]}],
+ "tasks": [
+ {
+ "id": f"t{i}",
+ "group": f"g{i}",
+ "duration": 1,
+ "original": {"resource": "oven", "start": 2 * i},
+ "change_cost": 2,
+ "options": [
+ {"resource": "oven", "start": 2 * (i + j), "cost": j}
+ for j in range(3)
+ ],
+ }
+ for i in range(tasks)
+ ],
+ }
+
+
+def main() -> None:
+ """Save full synthetic inputs and independent MILP certificates."""
+ parser = argparse.ArgumentParser(description=__doc__)
+ parser.add_argument(
+ "--output", type=Path, default=Path("reports/classical-scaling")
+ )
+ output = parser.parse_args().output
+ output.mkdir(parents=True, exist_ok=True)
+ for count in (20, 35, 50):
+ data = generate_chain(count)
+ content = json.dumps(data, indent=2) + "\n"
+ (output / f"chain-{count}.json").write_text(content)
+ problem = Problem.from_dict(data)
+ certificate = solve_milp(problem)
+ reduction = reduce_model(compile_qubo(problem))
+ report = {
+ "tasks": count,
+ "input_sha256": hashlib.sha256(content.encode()).hexdigest(),
+ "milp": certificate,
+ "reduction": reduction.audit(),
+ "quantum_executed": False,
+ "scope": "classical-only; connected component exceeds CPU quantum cap",
+ }
+ (output / f"chain-{count}-result.json").write_text(
+ json.dumps(report, indent=2, allow_nan=False) + "\n"
+ )
+ print(
+ count,
+ certificate["status"],
+ certificate["best"]["objective"] if certificate["best"] else None,
+ reduction.audit()["max_component_qubits"],
+ )
+
+
+if __name__ == "__main__":
+ main()
diff --git a/pyqpanda-algorithm/example/LabScheduling/constraints-py311.txt b/pyqpanda-algorithm/example/LabScheduling/constraints-py311.txt
new file mode 100644
index 00000000..22971ea1
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/constraints-py311.txt
@@ -0,0 +1,68 @@
+# Tested Linux x86_64 / Python 3.11 environment; see Tutorials/LabScheduling/COMPATIBILITY.md.
+alabaster==1.0.0
+allure-pytest==2.16.1
+allure-python-commons==2.16.1
+ast_serialize==0.11.2
+astroid==4.3.1
+attrs==26.1.0
+babel==2.18.0
+certifi==2026.7.22
+charset-normalizer==3.5.1
+cloudpickle==3.1.2
+contourpy==1.3.3
+coverage==7.16.1
+cycler==0.12.1
+Cython==3.3.0
+docutils==0.22.4
+fonttools==4.65.0
+graphviz==0.21
+idna==3.20
+imagesize==2.0.1
+iniconfig==2.3.0
+Jinja2==3.1.6
+joblib==1.6.0
+kiwisolver==1.5.1
+librt==0.15.0
+MarkupSafe==3.0.3
+matplotlib==3.11.2
+mpmath==1.3.0
+mypy==2.3.1
+mypy_extensions==1.1.0
+narwhals==2.26.0
+networkx==3.6.1
+numpy==2.4.6
+packaging==26.3
+pandas==3.0.6
+pathspec==1.1.1
+pillow==12.3.0
+pluggy==1.6.0
+pycryptodome==3.23.0
+pydot==4.0.1
+Pygments==2.21.0
+pyparsing==3.3.3
+pyqpanda3==0.4.1
+pytest==9.1.1
+pytest-cov==7.1.0
+pytest-timeout==2.4.0
+python-dateutil==2.9.0.post0
+PyYAML==6.0.3
+requests==2.34.2
+roman-numerals==4.1.0
+ruff==0.16.8
+scikit-learn==1.9.1
+scipy==1.17.1
+setuptools==84.0.0
+six==1.17.0
+snowballstemmer==3.1.1
+Sphinx==9.0.4
+sphinx-autoapi==3.8.1
+sphinxcontrib-applehelp==2.0.0
+sphinxcontrib-devhelp==2.0.0
+sphinxcontrib-htmlhelp==2.1.0
+sphinxcontrib-jsmath==1.0.1
+sphinxcontrib-qthelp==2.0.0
+sphinxcontrib-serializinghtml==2.0.0
+sympy==1.14.0
+threadpoolctl==3.7.0
+typing_extensions==4.16.0
+urllib3==2.8.0
diff --git a/pyqpanda-algorithm/example/LabScheduling/constraints-py312.txt b/pyqpanda-algorithm/example/LabScheduling/constraints-py312.txt
new file mode 100644
index 00000000..8b27615d
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/constraints-py312.txt
@@ -0,0 +1,68 @@
+# Tested WSL x86_64 / Python 3.12.3 environment, 2026-09-21.
+alabaster==1.0.0
+allure-pytest==2.16.1
+allure-python-commons==2.16.1
+ast_serialize==0.11.2
+astroid==4.3.1
+attrs==26.1.0
+babel==2.18.0
+certifi==2026.7.22
+charset-normalizer==3.5.1
+cloudpickle==3.1.2
+contourpy==1.4.0
+coverage==7.16.1
+cycler==0.12.1
+Cython==3.3.0
+docutils==0.22.4
+fonttools==4.65.0
+graphviz==0.21
+idna==3.20
+imagesize==2.0.1
+iniconfig==2.3.0
+Jinja2==3.1.6
+joblib==1.6.0
+kiwisolver==1.5.1
+librt==0.15.0
+MarkupSafe==3.0.3
+matplotlib==3.11.2
+mpmath==1.3.0
+mypy==2.3.1
+mypy_extensions==1.1.0
+narwhals==2.26.0
+networkx==3.6.1
+numpy==2.5.3
+packaging==26.3
+pandas==3.0.6
+pathspec==1.1.1
+pillow==12.3.0
+pluggy==1.6.0
+pycryptodome==3.23.0
+pydot==4.0.1
+Pygments==2.21.0
+pyparsing==3.3.3
+pyqpanda3==0.4.1
+pytest==9.1.1
+pytest-cov==7.1.0
+pytest-timeout==2.4.0
+python-dateutil==2.9.0.post0
+PyYAML==6.0.3
+requests==2.34.2
+roman-numerals==4.1.0
+ruff==0.16.8
+scikit-learn==1.9.1
+scipy==1.18.1
+setuptools==84.0.0
+six==1.17.0
+snowballstemmer==3.1.1
+Sphinx==9.1.0
+sphinx-autoapi==3.8.1
+sphinxcontrib-applehelp==2.0.0
+sphinxcontrib-devhelp==2.0.0
+sphinxcontrib-htmlhelp==2.1.0
+sphinxcontrib-jsmath==1.0.1
+sphinxcontrib-qthelp==2.0.0
+sphinxcontrib-serializinghtml==2.0.0
+sympy==1.14.0
+threadpoolctl==3.7.0
+typing_extensions==4.16.0
+urllib3==2.8.0
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/bookings/chain.csv b/pyqpanda-algorithm/example/LabScheduling/data/bookings/chain.csv
new file mode 100644
index 00000000..75e86dbe
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/bookings/chain.csv
@@ -0,0 +1,6 @@
+id,group,duration,original_resource,original_start,allowed_resources,earliest,latest,step,change_cost,shift_cost
+A-heat,A,1,oven,0,oven,0,1,1,1,0
+B-heat,B,1,oven,1,oven,1,2,1,2,0
+C-heat,C,1,oven,2,oven,2,3,1,3,0
+D-image,D,1,scope,1,scope,1,2,1,2,0
+E-image,E,1,scope,2,scope,1,2,1,2,0
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/bookings/outage.json b/pyqpanda-algorithm/example/LabScheduling/data/bookings/outage.json
new file mode 100644
index 00000000..4bda6c6e
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/bookings/outage.json
@@ -0,0 +1,9 @@
+{
+ "name": "合成业务案例:烘箱停机引发三单连锁改约,显微预约保持不动",
+ "horizon": 6,
+ "resources": [
+ {"id": "oven", "cleanup": 0, "downtime": [[0, 1]]},
+ {"id": "scope", "cleanup": 0}
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/manifest.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/manifest.json
new file mode 100644
index 00000000..26a710fa
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/manifest.json
@@ -0,0 +1,321 @@
+{
+ "version": 2,
+ "generator_sha256": "c5b48eb8d0c60cd88977419370b3e7d26b12cdc6f4c54d96324637d62750c3a1",
+ "instances": [
+ {
+ "file": "n3-s0-r0.json",
+ "tasks": 3,
+ "scenario": 0,
+ "replicate": 0,
+ "data_seed": 2026092600,
+ "sha256": "480cb064b75a4ab276c0b40efe62867858b857455db58e9958a5f85325d7a250"
+ },
+ {
+ "file": "n3-s0-r1.json",
+ "tasks": 3,
+ "scenario": 0,
+ "replicate": 1,
+ "data_seed": 2026092601,
+ "sha256": "7bde9f6a7e91f5cf1c50260bd0205f601de5e61e9b34fa903b75cce5f58421ff"
+ },
+ {
+ "file": "n3-s0-r2.json",
+ "tasks": 3,
+ "scenario": 0,
+ "replicate": 2,
+ "data_seed": 2026092602,
+ "sha256": "980e1417cd9e25dfc8d552ad19d76c18194f0c2f9e736508360519214a64bd82"
+ },
+ {
+ "file": "n3-s0-r3.json",
+ "tasks": 3,
+ "scenario": 0,
+ "replicate": 3,
+ "data_seed": 2026092603,
+ "sha256": "7ad2d759c8cfcdcea0574002a9893cd6a38c1192ac23e4e2c6e61c77aca3e00e"
+ },
+ {
+ "file": "n3-s1-r0.json",
+ "tasks": 3,
+ "scenario": 1,
+ "replicate": 0,
+ "data_seed": 2026092610,
+ "sha256": "3102867f59fcc7a80a9774499507f0d52ad6f39327c3f7f339e0b781da147add"
+ },
+ {
+ "file": "n3-s1-r1.json",
+ "tasks": 3,
+ "scenario": 1,
+ "replicate": 1,
+ "data_seed": 2026092611,
+ "sha256": "b995fea8a97f1baea0ec2c94fd6283168e039b6b1a8cbac3c8da689008576b1f"
+ },
+ {
+ "file": "n3-s1-r2.json",
+ "tasks": 3,
+ "scenario": 1,
+ "replicate": 2,
+ "data_seed": 2026092612,
+ "sha256": "fcf3c44d08725a501917977b012a460df0065bddee7201e89fd75769f72f398f"
+ },
+ {
+ "file": "n3-s1-r3.json",
+ "tasks": 3,
+ "scenario": 1,
+ "replicate": 3,
+ "data_seed": 2026092613,
+ "sha256": "7e0b8b9923a6f00ec09c570c68a6964b0e4193de04571463499f254eea50a03c"
+ },
+ {
+ "file": "n3-s2-r0.json",
+ "tasks": 3,
+ "scenario": 2,
+ "replicate": 0,
+ "data_seed": 2026092620,
+ "sha256": "93d4314ad16586792abae5864149abd76be8d08cfbf47d1515c68e3f7cc4b3d4"
+ },
+ {
+ "file": "n3-s2-r1.json",
+ "tasks": 3,
+ "scenario": 2,
+ "replicate": 1,
+ "data_seed": 2026092621,
+ "sha256": "5562af7b6a4430f78b74bf07db67f2ee1e2a54dd89e76076d59f476405f51b02"
+ },
+ {
+ "file": "n3-s2-r2.json",
+ "tasks": 3,
+ "scenario": 2,
+ "replicate": 2,
+ "data_seed": 2026092622,
+ "sha256": "bdbd13d37d5b027158ad3b96617fcbbe127c26450b6577397a5c79ed73f463e3"
+ },
+ {
+ "file": "n3-s2-r3.json",
+ "tasks": 3,
+ "scenario": 2,
+ "replicate": 3,
+ "data_seed": 2026092623,
+ "sha256": "bf2d32ec2da41a07091bdc4b92d015e6b57398275f745d630dfabb8520cbe877"
+ },
+ {
+ "file": "n4-s0-r0.json",
+ "tasks": 4,
+ "scenario": 0,
+ "replicate": 0,
+ "data_seed": 2026092700,
+ "sha256": "08fc30fec69a29a96ae57e373739ff0162ba3fcff6ab53119895679a31029390"
+ },
+ {
+ "file": "n4-s0-r1.json",
+ "tasks": 4,
+ "scenario": 0,
+ "replicate": 1,
+ "data_seed": 2026092701,
+ "sha256": "c9739a81f0c0dbc6ef8e5d5061eccd04a8e046db3d7f670e0b7689d7d4cc69e8"
+ },
+ {
+ "file": "n4-s0-r2.json",
+ "tasks": 4,
+ "scenario": 0,
+ "replicate": 2,
+ "data_seed": 2026092702,
+ "sha256": "88b2b434a81b9ddf68c43898785b4f6f2c891ed28befc9a6f268e6b083dbc547"
+ },
+ {
+ "file": "n4-s0-r3.json",
+ "tasks": 4,
+ "scenario": 0,
+ "replicate": 3,
+ "data_seed": 2026092703,
+ "sha256": "125b0b1fe9d0a431b457b083014998f33cb82d918e140db12414608702847198"
+ },
+ {
+ "file": "n4-s1-r0.json",
+ "tasks": 4,
+ "scenario": 1,
+ "replicate": 0,
+ "data_seed": 2026092710,
+ "sha256": "aa0ece2791aae422f427562f52a225e34573890675432668dc4ecd85a8ccd78b"
+ },
+ {
+ "file": "n4-s1-r1.json",
+ "tasks": 4,
+ "scenario": 1,
+ "replicate": 1,
+ "data_seed": 2026092711,
+ "sha256": "836204438f461f317c06e52eee9095d95210ae5e5be6b81a69c216266aa22a36"
+ },
+ {
+ "file": "n4-s1-r2.json",
+ "tasks": 4,
+ "scenario": 1,
+ "replicate": 2,
+ "data_seed": 2026092712,
+ "sha256": "103484d367bba6939e95310aa224358325eba3c739c1d94228a9d8c28aee2e3f"
+ },
+ {
+ "file": "n4-s1-r3.json",
+ "tasks": 4,
+ "scenario": 1,
+ "replicate": 3,
+ "data_seed": 2026092713,
+ "sha256": "4984d9ea14045c7d5025867e5de16c2cb0e2873919cc72f376d781d8dcf6b318"
+ },
+ {
+ "file": "n4-s2-r0.json",
+ "tasks": 4,
+ "scenario": 2,
+ "replicate": 0,
+ "data_seed": 2026092720,
+ "sha256": "9af23d9f34d060ee7e63feab87ad80511bdd416663485f76bd21cc31c298d504"
+ },
+ {
+ "file": "n4-s2-r1.json",
+ "tasks": 4,
+ "scenario": 2,
+ "replicate": 1,
+ "data_seed": 2026092721,
+ "sha256": "757985044dbd854bc54a96d9bbd6811fa20c7d908ae98ae54c22029e6c189a5a"
+ },
+ {
+ "file": "n4-s2-r2.json",
+ "tasks": 4,
+ "scenario": 2,
+ "replicate": 2,
+ "data_seed": 2026092722,
+ "sha256": "ddc2942dc20ad1a731547e61f8630f5d0816fde5631800724760dfe9c09d6967"
+ },
+ {
+ "file": "n4-s2-r3.json",
+ "tasks": 4,
+ "scenario": 2,
+ "replicate": 3,
+ "data_seed": 2026092723,
+ "sha256": "62dac5d42a79a79081d8ca08bde2e705f673d2c0ea74c9cd10d419709542ed99"
+ },
+ {
+ "file": "n5-s0-r0.json",
+ "tasks": 5,
+ "scenario": 0,
+ "replicate": 0,
+ "data_seed": 2026092800,
+ "sha256": "3b096967495414f6c7221f29bc07fd93e00f4ffd2699ae23860da80297f245fb"
+ },
+ {
+ "file": "n5-s0-r1.json",
+ "tasks": 5,
+ "scenario": 0,
+ "replicate": 1,
+ "data_seed": 2026092801,
+ "sha256": "33be7180ae045495e20118be59832c58b92de1b3606e624fb49ee921324b2178"
+ },
+ {
+ "file": "n5-s0-r2.json",
+ "tasks": 5,
+ "scenario": 0,
+ "replicate": 2,
+ "data_seed": 2026092802,
+ "sha256": "76eebc2eead32041f9502f223147ce83aadee15cbd3aa7d085c0ef5733d8a662"
+ },
+ {
+ "file": "n5-s0-r3.json",
+ "tasks": 5,
+ "scenario": 0,
+ "replicate": 3,
+ "data_seed": 2026092803,
+ "sha256": "1add7f70a8e1245cbfeab43a68ecff0c4363a8466db647bfbc74addacf540223"
+ },
+ {
+ "file": "n5-s1-r0.json",
+ "tasks": 5,
+ "scenario": 1,
+ "replicate": 0,
+ "data_seed": 2026092810,
+ "sha256": "b81bb3521d067c55d1c324a08e3c60a2ac45fe3939757f55be879a4b92088626"
+ },
+ {
+ "file": "n5-s1-r1.json",
+ "tasks": 5,
+ "scenario": 1,
+ "replicate": 1,
+ "data_seed": 2026092811,
+ "sha256": "b4220f8427bb64e26d03a7153c73a5b25aa2ddb0d03c2ca0ff8d4f47f2148faf"
+ },
+ {
+ "file": "n5-s1-r2.json",
+ "tasks": 5,
+ "scenario": 1,
+ "replicate": 2,
+ "data_seed": 2026092812,
+ "sha256": "c5aef421815278af00fc874bf90bc25f908db0c626e7175edda15119410278a8"
+ },
+ {
+ "file": "n5-s1-r3.json",
+ "tasks": 5,
+ "scenario": 1,
+ "replicate": 3,
+ "data_seed": 2026092813,
+ "sha256": "0c66b0c1a454629cd740c4653d9b44eb389629df1ca1f078e941e243b39dca70"
+ },
+ {
+ "file": "n5-s2-r0.json",
+ "tasks": 5,
+ "scenario": 2,
+ "replicate": 0,
+ "data_seed": 2026092820,
+ "sha256": "152b5cba1d3286c2bd54e7a1b8cc0452fd3718a4c5122fb49843942d50587d9c"
+ },
+ {
+ "file": "n5-s2-r1.json",
+ "tasks": 5,
+ "scenario": 2,
+ "replicate": 1,
+ "data_seed": 2026092821,
+ "sha256": "e60d5db27b35fd0b91a5e09b8cd2d6b2a4325844d8588f602fd997e1a1310b48"
+ },
+ {
+ "file": "n5-s2-r2.json",
+ "tasks": 5,
+ "scenario": 2,
+ "replicate": 2,
+ "data_seed": 2026092822,
+ "sha256": "b57d495cbb305f84ddf041862a157fe19d8040ea2224b0d872defce8c9fd9e42"
+ },
+ {
+ "file": "n5-s2-r3.json",
+ "tasks": 5,
+ "scenario": 2,
+ "replicate": 3,
+ "data_seed": 2026092823,
+ "sha256": "8bbbac614632276aae9cc270fa7477a191f2e1d0742c961db5457df28975a83b"
+ }
+ ],
+ "optimization_seeds": [
+ 0,
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9
+ ],
+ "training": {
+ "layers": 1,
+ "shots": 512,
+ "maxiter": 60,
+ "restarts": 2
+ },
+ "shots": [
+ 8,
+ 16,
+ 32,
+ 64,
+ 128,
+ 512
+ ],
+ "selection": "all instances retained; no solver-based selection or tuning"
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s0-r0.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s0-r0.json
new file mode 100644
index 00000000..6a9a8f86
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s0-r0.json
@@ -0,0 +1,110 @@
+{
+ "name": "heterogeneous-n3-s0-seed2026092600",
+ "horizon": 21,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 2,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 0,
+ "downtime": []
+ },
+ {
+ "id": "r2",
+ "cleanup": 0,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 4,
+ "cost": 7
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 3,
+ "original": {
+ "resource": "r1",
+ "start": 5
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 5,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 6,
+ "cost": 3
+ },
+ {
+ "resource": "r2",
+ "start": 8,
+ "cost": 3
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r2",
+ "start": 8
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 8,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 13,
+ "cost": 8
+ },
+ {
+ "resource": "r1",
+ "start": 9,
+ "cost": 3
+ },
+ {
+ "resource": "r0",
+ "start": 14,
+ "cost": 9
+ }
+ ]
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s0-r1.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s0-r1.json
new file mode 100644
index 00000000..403dde54
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s0-r1.json
@@ -0,0 +1,110 @@
+{
+ "name": "heterogeneous-n3-s0-seed2026092601",
+ "horizon": 19,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 1,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 2,
+ "downtime": []
+ },
+ {
+ "id": "r2",
+ "cleanup": 1,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 2,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 6,
+ "cost": 6
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 1,
+ "original": {
+ "resource": "r1",
+ "start": 3
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 3,
+ "cost": 1
+ },
+ {
+ "resource": "r0",
+ "start": 1,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 2,
+ "original": {
+ "resource": "r2",
+ "start": 6
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 6,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 11,
+ "cost": 8
+ },
+ {
+ "resource": "r0",
+ "start": 10,
+ "cost": 6
+ },
+ {
+ "resource": "r1",
+ "start": 4,
+ "cost": 3
+ }
+ ]
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s0-r2.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s0-r2.json
new file mode 100644
index 00000000..f5623f6c
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s0-r2.json
@@ -0,0 +1,110 @@
+{
+ "name": "heterogeneous-n3-s0-seed2026092602",
+ "horizon": 23,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 1,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 1,
+ "downtime": []
+ },
+ {
+ "id": "r2",
+ "cleanup": 2,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 4,
+ "cost": 7
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 1,
+ "original": {
+ "resource": "r1",
+ "start": 5
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 5,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 10,
+ "cost": 7
+ },
+ {
+ "resource": "r0",
+ "start": 10,
+ "cost": 8
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r2",
+ "start": 7
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 7,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 8,
+ "cost": 3
+ },
+ {
+ "resource": "r2",
+ "start": 11,
+ "cost": 7
+ },
+ {
+ "resource": "r1",
+ "start": 13,
+ "cost": 6
+ }
+ ]
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s0-r3.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s0-r3.json
new file mode 100644
index 00000000..88b0f779
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s0-r3.json
@@ -0,0 +1,110 @@
+{
+ "name": "heterogeneous-n3-s0-seed2026092603",
+ "horizon": 18,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 0,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 0,
+ "downtime": []
+ },
+ {
+ "id": "r2",
+ "cleanup": 1,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 2,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 5,
+ "cost": 6
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 2,
+ "original": {
+ "resource": "r1",
+ "start": 3
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 6,
+ "cost": 5
+ },
+ {
+ "resource": "r1",
+ "start": 7,
+ "cost": 7
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 1,
+ "original": {
+ "resource": "r2",
+ "start": 5
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 5,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 3,
+ "cost": 4
+ },
+ {
+ "resource": "r0",
+ "start": 9,
+ "cost": 7
+ },
+ {
+ "resource": "r0",
+ "start": 11,
+ "cost": 6
+ }
+ ]
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s1-r0.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s1-r0.json
new file mode 100644
index 00000000..f9241e58
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s1-r0.json
@@ -0,0 +1,115 @@
+{
+ "name": "heterogeneous-n3-s1-seed2026092610",
+ "horizon": 20,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 2,
+ "downtime": [
+ [
+ 0,
+ 7
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 0,
+ "downtime": [
+ [
+ 6,
+ 9
+ ]
+ ]
+ },
+ {
+ "id": "r2",
+ "cleanup": 2,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 5,
+ "cost": 6
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 1,
+ "original": {
+ "resource": "r1",
+ "start": 6
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 6,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 12,
+ "cost": 8
+ },
+ {
+ "resource": "r2",
+ "start": 4,
+ "cost": 4
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 1,
+ "original": {
+ "resource": "r2",
+ "start": 7
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 7,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 10,
+ "cost": 6
+ },
+ {
+ "resource": "r2",
+ "start": 12,
+ "cost": 5
+ },
+ {
+ "resource": "r2",
+ "start": 6,
+ "cost": 1
+ }
+ ]
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s1-r1.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s1-r1.json
new file mode 100644
index 00000000..7b8ebcd2
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s1-r1.json
@@ -0,0 +1,115 @@
+{
+ "name": "heterogeneous-n3-s1-seed2026092611",
+ "horizon": 23,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 2,
+ "downtime": [
+ [
+ 0,
+ 7
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 0,
+ "downtime": [
+ [
+ 6,
+ 10
+ ]
+ ]
+ },
+ {
+ "id": "r2",
+ "cleanup": 1,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 1,
+ "cost": 1
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 2,
+ "original": {
+ "resource": "r1",
+ "start": 6
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 6,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 9,
+ "cost": 5
+ },
+ {
+ "resource": "r2",
+ "start": 6,
+ "cost": 3
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 2,
+ "original": {
+ "resource": "r2",
+ "start": 9
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 9,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 15,
+ "cost": 9
+ },
+ {
+ "resource": "r2",
+ "start": 8,
+ "cost": 1
+ },
+ {
+ "resource": "r0",
+ "start": 15,
+ "cost": 7
+ }
+ ]
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s1-r2.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s1-r2.json
new file mode 100644
index 00000000..b30411c7
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s1-r2.json
@@ -0,0 +1,115 @@
+{
+ "name": "heterogeneous-n3-s1-seed2026092612",
+ "horizon": 21,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 0,
+ "downtime": [
+ [
+ 0,
+ 4
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 2,
+ "downtime": [
+ [
+ 3,
+ 9
+ ]
+ ]
+ },
+ {
+ "id": "r2",
+ "cleanup": 0,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 2,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 3,
+ "cost": 5
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 2,
+ "original": {
+ "resource": "r1",
+ "start": 3
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 7,
+ "cost": 7
+ },
+ {
+ "resource": "r2",
+ "start": 9,
+ "cost": 7
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r2",
+ "start": 7
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 7,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 5,
+ "cost": 4
+ },
+ {
+ "resource": "r2",
+ "start": 6,
+ "cost": 4
+ },
+ {
+ "resource": "r1",
+ "start": 6,
+ "cost": 1
+ }
+ ]
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s1-r3.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s1-r3.json
new file mode 100644
index 00000000..2685c3f7
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s1-r3.json
@@ -0,0 +1,115 @@
+{
+ "name": "heterogeneous-n3-s1-seed2026092613",
+ "horizon": 19,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 0,
+ "downtime": [
+ [
+ 0,
+ 3
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 2,
+ "downtime": [
+ [
+ 1,
+ 7
+ ]
+ ]
+ },
+ {
+ "id": "r2",
+ "cleanup": 1,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 1,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 4,
+ "cost": 6
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 2,
+ "original": {
+ "resource": "r1",
+ "start": 1
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 1,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 3,
+ "cost": 4
+ },
+ {
+ "resource": "r0",
+ "start": 6,
+ "cost": 6
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 1,
+ "original": {
+ "resource": "r2",
+ "start": 6
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 6,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 7,
+ "cost": 4
+ },
+ {
+ "resource": "r1",
+ "start": 10,
+ "cost": 4
+ },
+ {
+ "resource": "r1",
+ "start": 4,
+ "cost": 4
+ }
+ ]
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s2-r0.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s2-r0.json
new file mode 100644
index 00000000..8612dfbc
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s2-r0.json
@@ -0,0 +1,119 @@
+{
+ "name": "heterogeneous-n3-s2-seed2026092620",
+ "horizon": 22,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 0,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 1,
+ "downtime": []
+ },
+ {
+ "id": "r2",
+ "cleanup": 2,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 5,
+ "cost": 6
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 1,
+ "original": {
+ "resource": "r1",
+ "start": 4
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 1,
+ "cost": 5
+ },
+ {
+ "resource": "r1",
+ "start": 5,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 2,
+ "original": {
+ "resource": "r2",
+ "start": 7
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 7,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 4,
+ "cost": 4
+ },
+ {
+ "resource": "r1",
+ "start": 8,
+ "cost": 1
+ },
+ {
+ "resource": "r2",
+ "start": 5,
+ "cost": 5
+ }
+ ]
+ }
+ ],
+ "precedence": [
+ [
+ "t0",
+ "t1"
+ ],
+ [
+ "t1",
+ "t2"
+ ]
+ ]
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s2-r1.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s2-r1.json
new file mode 100644
index 00000000..b6c61017
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s2-r1.json
@@ -0,0 +1,119 @@
+{
+ "name": "heterogeneous-n3-s2-seed2026092621",
+ "horizon": 19,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 1,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 0,
+ "downtime": []
+ },
+ {
+ "id": "r2",
+ "cleanup": 0,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 1,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 2,
+ "cost": 3
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 2,
+ "original": {
+ "resource": "r1",
+ "start": 3
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 9,
+ "cost": 6
+ },
+ {
+ "resource": "r1",
+ "start": 6,
+ "cost": 4
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r2",
+ "start": 6
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 6,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 11,
+ "cost": 6
+ },
+ {
+ "resource": "r0",
+ "start": 3,
+ "cost": 6
+ },
+ {
+ "resource": "r2",
+ "start": 3,
+ "cost": 4
+ }
+ ]
+ }
+ ],
+ "precedence": [
+ [
+ "t0",
+ "t1"
+ ],
+ [
+ "t1",
+ "t2"
+ ]
+ ]
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s2-r2.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s2-r2.json
new file mode 100644
index 00000000..b1def036
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s2-r2.json
@@ -0,0 +1,119 @@
+{
+ "name": "heterogeneous-n3-s2-seed2026092622",
+ "horizon": 22,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 1,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 2,
+ "downtime": []
+ },
+ {
+ "id": "r2",
+ "cleanup": 1,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 3,
+ "cost": 5
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 1,
+ "original": {
+ "resource": "r1",
+ "start": 5
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 5,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 9,
+ "cost": 6
+ },
+ {
+ "resource": "r0",
+ "start": 5,
+ "cost": 0
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 2,
+ "original": {
+ "resource": "r2",
+ "start": 8
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 8,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 8,
+ "cost": 3
+ },
+ {
+ "resource": "r2",
+ "start": 5,
+ "cost": 5
+ },
+ {
+ "resource": "r2",
+ "start": 12,
+ "cost": 5
+ }
+ ]
+ }
+ ],
+ "precedence": [
+ [
+ "t0",
+ "t1"
+ ],
+ [
+ "t1",
+ "t2"
+ ]
+ ]
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s2-r3.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s2-r3.json
new file mode 100644
index 00000000..f36a40a4
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n3-s2-r3.json
@@ -0,0 +1,119 @@
+{
+ "name": "heterogeneous-n3-s2-seed2026092623",
+ "horizon": 20,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 1,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 1,
+ "downtime": []
+ },
+ {
+ "id": "r2",
+ "cleanup": 0,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 1,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 4,
+ "cost": 7
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 3,
+ "original": {
+ "resource": "r1",
+ "start": 3
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 4,
+ "cost": 2
+ },
+ {
+ "resource": "r1",
+ "start": 8,
+ "cost": 6
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 2,
+ "original": {
+ "resource": "r2",
+ "start": 8
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 8,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 9,
+ "cost": 4
+ },
+ {
+ "resource": "r2",
+ "start": 10,
+ "cost": 5
+ },
+ {
+ "resource": "r1",
+ "start": 9,
+ "cost": 2
+ }
+ ]
+ }
+ ],
+ "precedence": [
+ [
+ "t0",
+ "t1"
+ ],
+ [
+ "t1",
+ "t2"
+ ]
+ ]
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s0-r0.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s0-r0.json
new file mode 100644
index 00000000..7ac1059f
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s0-r0.json
@@ -0,0 +1,132 @@
+{
+ "name": "heterogeneous-n4-s0-seed2026092700",
+ "horizon": 24,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 2,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 0,
+ "downtime": []
+ },
+ {
+ "id": "r2",
+ "cleanup": 0,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 6,
+ "cost": 7
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 1,
+ "original": {
+ "resource": "r1",
+ "start": 6
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 6,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 11,
+ "cost": 7
+ },
+ {
+ "resource": "r1",
+ "start": 9,
+ "cost": 6
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r2",
+ "start": 7
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 7,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 6,
+ "cost": 4
+ },
+ {
+ "resource": "r1",
+ "start": 11,
+ "cost": 7
+ },
+ {
+ "resource": "r0",
+ "start": 9,
+ "cost": 3
+ }
+ ]
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 1,
+ "original": {
+ "resource": "r0",
+ "start": 11
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 11,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 13,
+ "cost": 4
+ }
+ ]
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s0-r1.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s0-r1.json
new file mode 100644
index 00000000..6529372f
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s0-r1.json
@@ -0,0 +1,132 @@
+{
+ "name": "heterogeneous-n4-s0-seed2026092701",
+ "horizon": 24,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 0,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 0,
+ "downtime": []
+ },
+ {
+ "id": "r2",
+ "cleanup": 2,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 5,
+ "cost": 6
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 3,
+ "original": {
+ "resource": "r1",
+ "start": 3
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 5,
+ "cost": 3
+ },
+ {
+ "resource": "r2",
+ "start": 6,
+ "cost": 4
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r2",
+ "start": 6
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 6,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 3,
+ "cost": 4
+ },
+ {
+ "resource": "r2",
+ "start": 11,
+ "cost": 8
+ },
+ {
+ "resource": "r1",
+ "start": 4,
+ "cost": 5
+ }
+ ]
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 3,
+ "original": {
+ "resource": "r0",
+ "start": 11
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 11,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 11,
+ "cost": 1
+ }
+ ]
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s0-r2.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s0-r2.json
new file mode 100644
index 00000000..fd3f5ba0
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s0-r2.json
@@ -0,0 +1,132 @@
+{
+ "name": "heterogeneous-n4-s0-seed2026092702",
+ "horizon": 23,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 0,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 0,
+ "downtime": []
+ },
+ {
+ "id": "r2",
+ "cleanup": 0,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 1,
+ "cost": 1
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 1,
+ "original": {
+ "resource": "r1",
+ "start": 4
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 5,
+ "cost": 1
+ },
+ {
+ "resource": "r0",
+ "start": 3,
+ "cost": 3
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r2",
+ "start": 6
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 6,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 3,
+ "cost": 3
+ },
+ {
+ "resource": "r0",
+ "start": 8,
+ "cost": 4
+ },
+ {
+ "resource": "r2",
+ "start": 12,
+ "cost": 7
+ }
+ ]
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 3,
+ "original": {
+ "resource": "r0",
+ "start": 9
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 9,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 7,
+ "cost": 5
+ }
+ ]
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s0-r3.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s0-r3.json
new file mode 100644
index 00000000..5bd44772
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s0-r3.json
@@ -0,0 +1,132 @@
+{
+ "name": "heterogeneous-n4-s0-seed2026092703",
+ "horizon": 23,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 1,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 0,
+ "downtime": []
+ },
+ {
+ "id": "r2",
+ "cleanup": 2,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 2,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 4,
+ "cost": 5
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 1,
+ "original": {
+ "resource": "r1",
+ "start": 3
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 2,
+ "cost": 3
+ },
+ {
+ "resource": "r1",
+ "start": 7,
+ "cost": 4
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 1,
+ "original": {
+ "resource": "r2",
+ "start": 5
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 5,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 8,
+ "cost": 5
+ },
+ {
+ "resource": "r1",
+ "start": 6,
+ "cost": 2
+ },
+ {
+ "resource": "r2",
+ "start": 11,
+ "cost": 8
+ }
+ ]
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 3,
+ "original": {
+ "resource": "r0",
+ "start": 8
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 8,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 9,
+ "cost": 4
+ }
+ ]
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s1-r0.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s1-r0.json
new file mode 100644
index 00000000..f8f8ef54
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s1-r0.json
@@ -0,0 +1,137 @@
+{
+ "name": "heterogeneous-n4-s1-seed2026092710",
+ "horizon": 26,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 1,
+ "downtime": [
+ [
+ 0,
+ 6
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 1,
+ "downtime": [
+ [
+ 4,
+ 8
+ ]
+ ]
+ },
+ {
+ "id": "r2",
+ "cleanup": 2,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 2,
+ "cost": 5
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 1,
+ "original": {
+ "resource": "r1",
+ "start": 4
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 2,
+ "cost": 2
+ },
+ {
+ "resource": "r2",
+ "start": 8,
+ "cost": 5
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r2",
+ "start": 7
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 7,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 8,
+ "cost": 4
+ },
+ {
+ "resource": "r0",
+ "start": 9,
+ "cost": 4
+ },
+ {
+ "resource": "r0",
+ "start": 5,
+ "cost": 3
+ }
+ ]
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 1,
+ "original": {
+ "resource": "r0",
+ "start": 13
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 13,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 17,
+ "cost": 4
+ }
+ ]
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s1-r1.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s1-r1.json
new file mode 100644
index 00000000..dee309b3
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s1-r1.json
@@ -0,0 +1,137 @@
+{
+ "name": "heterogeneous-n4-s1-seed2026092711",
+ "horizon": 17,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 0,
+ "downtime": [
+ [
+ 0,
+ 3
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 0,
+ "downtime": [
+ [
+ 1,
+ 5
+ ]
+ ]
+ },
+ {
+ "id": "r2",
+ "cleanup": 0,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 1,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 2,
+ "cost": 4
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 2,
+ "original": {
+ "resource": "r1",
+ "start": 1
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 1,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 1,
+ "cost": 2
+ },
+ {
+ "resource": "r1",
+ "start": 2,
+ "cost": 1
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 2,
+ "original": {
+ "resource": "r2",
+ "start": 3
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 5,
+ "cost": 5
+ },
+ {
+ "resource": "r2",
+ "start": 5,
+ "cost": 4
+ },
+ {
+ "resource": "r2",
+ "start": 8,
+ "cost": 8
+ }
+ ]
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 2,
+ "original": {
+ "resource": "r0",
+ "start": 5
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 5,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 3,
+ "cost": 2
+ }
+ ]
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s1-r2.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s1-r2.json
new file mode 100644
index 00000000..d2e6f905
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s1-r2.json
@@ -0,0 +1,137 @@
+{
+ "name": "heterogeneous-n4-s1-seed2026092712",
+ "horizon": 25,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 2,
+ "downtime": [
+ [
+ 0,
+ 5
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 2,
+ "downtime": [
+ [
+ 3,
+ 10
+ ]
+ ]
+ },
+ {
+ "id": "r2",
+ "cleanup": 0,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 1,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 3,
+ "cost": 4
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 3,
+ "original": {
+ "resource": "r1",
+ "start": 3
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 8,
+ "cost": 5
+ },
+ {
+ "resource": "r0",
+ "start": 7,
+ "cost": 4
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r2",
+ "start": 8
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 8,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 8,
+ "cost": 3
+ },
+ {
+ "resource": "r0",
+ "start": 5,
+ "cost": 5
+ },
+ {
+ "resource": "r2",
+ "start": 6,
+ "cost": 3
+ }
+ ]
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 1,
+ "original": {
+ "resource": "r0",
+ "start": 11
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 11,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 12,
+ "cost": 1
+ }
+ ]
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s1-r3.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s1-r3.json
new file mode 100644
index 00000000..be5422dd
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s1-r3.json
@@ -0,0 +1,137 @@
+{
+ "name": "heterogeneous-n4-s1-seed2026092713",
+ "horizon": 27,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 2,
+ "downtime": [
+ [
+ 0,
+ 6
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 2,
+ "downtime": [
+ [
+ 4,
+ 10
+ ]
+ ]
+ },
+ {
+ "id": "r2",
+ "cleanup": 0,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 2,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 6,
+ "cost": 7
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 2,
+ "original": {
+ "resource": "r1",
+ "start": 4
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 6,
+ "cost": 4
+ },
+ {
+ "resource": "r2",
+ "start": 4,
+ "cost": 3
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r2",
+ "start": 9
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 9,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 10,
+ "cost": 3
+ },
+ {
+ "resource": "r0",
+ "start": 10,
+ "cost": 4
+ },
+ {
+ "resource": "r1",
+ "start": 8,
+ "cost": 3
+ }
+ ]
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 2,
+ "original": {
+ "resource": "r0",
+ "start": 12
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 12,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 9,
+ "cost": 3
+ }
+ ]
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s2-r0.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s2-r0.json
new file mode 100644
index 00000000..d0896c8f
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s2-r0.json
@@ -0,0 +1,145 @@
+{
+ "name": "heterogeneous-n4-s2-seed2026092720",
+ "horizon": 21,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 0,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 1,
+ "downtime": []
+ },
+ {
+ "id": "r2",
+ "cleanup": 0,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 1,
+ "cost": 4
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 1,
+ "original": {
+ "resource": "r1",
+ "start": 4
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 9,
+ "cost": 8
+ },
+ {
+ "resource": "r0",
+ "start": 1,
+ "cost": 6
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r2",
+ "start": 7
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 7,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 12,
+ "cost": 6
+ },
+ {
+ "resource": "r0",
+ "start": 9,
+ "cost": 5
+ },
+ {
+ "resource": "r1",
+ "start": 8,
+ "cost": 1
+ }
+ ]
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 1,
+ "original": {
+ "resource": "r0",
+ "start": 10
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 10,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 16,
+ "cost": 9
+ }
+ ]
+ }
+ ],
+ "precedence": [
+ [
+ "t0",
+ "t1"
+ ],
+ [
+ "t1",
+ "t2"
+ ],
+ [
+ "t2",
+ "t3"
+ ]
+ ]
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s2-r1.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s2-r1.json
new file mode 100644
index 00000000..b931be89
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s2-r1.json
@@ -0,0 +1,145 @@
+{
+ "name": "heterogeneous-n4-s2-seed2026092721",
+ "horizon": 24,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 1,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 0,
+ "downtime": []
+ },
+ {
+ "id": "r2",
+ "cleanup": 0,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 2,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 3,
+ "original": {
+ "resource": "r1",
+ "start": 5
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 5,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 7,
+ "cost": 5
+ },
+ {
+ "resource": "r2",
+ "start": 7,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 1,
+ "original": {
+ "resource": "r2",
+ "start": 9
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 9,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 15,
+ "cost": 6
+ },
+ {
+ "resource": "r2",
+ "start": 11,
+ "cost": 2
+ },
+ {
+ "resource": "r1",
+ "start": 7,
+ "cost": 4
+ }
+ ]
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 2,
+ "original": {
+ "resource": "r0",
+ "start": 11
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 11,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 8,
+ "cost": 3
+ }
+ ]
+ }
+ ],
+ "precedence": [
+ [
+ "t0",
+ "t1"
+ ],
+ [
+ "t1",
+ "t2"
+ ],
+ [
+ "t2",
+ "t3"
+ ]
+ ]
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s2-r2.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s2-r2.json
new file mode 100644
index 00000000..fd911e91
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s2-r2.json
@@ -0,0 +1,145 @@
+{
+ "name": "heterogeneous-n4-s2-seed2026092722",
+ "horizon": 19,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 0,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 0,
+ "downtime": []
+ },
+ {
+ "id": "r2",
+ "cleanup": 0,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 1,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 1,
+ "cost": 1
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 2,
+ "original": {
+ "resource": "r1",
+ "start": 1
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 1,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 4,
+ "cost": 6
+ },
+ {
+ "resource": "r1",
+ "start": 5,
+ "cost": 6
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 2,
+ "original": {
+ "resource": "r2",
+ "start": 3
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 1,
+ "cost": 4
+ },
+ {
+ "resource": "r0",
+ "start": 4,
+ "cost": 3
+ },
+ {
+ "resource": "r0",
+ "start": 7,
+ "cost": 5
+ }
+ ]
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 3,
+ "original": {
+ "resource": "r0",
+ "start": 6
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 6,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 12,
+ "cost": 6
+ }
+ ]
+ }
+ ],
+ "precedence": [
+ [
+ "t0",
+ "t1"
+ ],
+ [
+ "t1",
+ "t2"
+ ],
+ [
+ "t2",
+ "t3"
+ ]
+ ]
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s2-r3.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s2-r3.json
new file mode 100644
index 00000000..c5542fe3
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n4-s2-r3.json
@@ -0,0 +1,145 @@
+{
+ "name": "heterogeneous-n4-s2-seed2026092723",
+ "horizon": 22,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 0,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 0,
+ "downtime": []
+ },
+ {
+ "id": "r2",
+ "cleanup": 1,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 2,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 4,
+ "cost": 5
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 2,
+ "original": {
+ "resource": "r1",
+ "start": 2
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 2,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 6,
+ "cost": 5
+ },
+ {
+ "resource": "r1",
+ "start": 5,
+ "cost": 4
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r2",
+ "start": 4
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 7,
+ "cost": 6
+ },
+ {
+ "resource": "r2",
+ "start": 2,
+ "cost": 4
+ },
+ {
+ "resource": "r0",
+ "start": 9,
+ "cost": 7
+ }
+ ]
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 2,
+ "original": {
+ "resource": "r0",
+ "start": 9
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 9,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 10,
+ "cost": 1
+ }
+ ]
+ }
+ ],
+ "precedence": [
+ [
+ "t0",
+ "t1"
+ ],
+ [
+ "t1",
+ "t2"
+ ],
+ [
+ "t2",
+ "t3"
+ ]
+ ]
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s0-r0.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s0-r0.json
new file mode 100644
index 00000000..980656ea
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s0-r0.json
@@ -0,0 +1,159 @@
+{
+ "name": "heterogeneous-n5-s0-seed2026092800",
+ "horizon": 28,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 1,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 2,
+ "downtime": []
+ },
+ {
+ "id": "r2",
+ "cleanup": 2,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 6,
+ "cost": 6
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 1,
+ "original": {
+ "resource": "r1",
+ "start": 4
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 9,
+ "cost": 7
+ },
+ {
+ "resource": "r1",
+ "start": 9,
+ "cost": 5
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 1,
+ "original": {
+ "resource": "r2",
+ "start": 8
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 8,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 9,
+ "cost": 3
+ },
+ {
+ "resource": "r2",
+ "start": 13,
+ "cost": 8
+ },
+ {
+ "resource": "r1",
+ "start": 13,
+ "cost": 7
+ }
+ ]
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 2,
+ "original": {
+ "resource": "r0",
+ "start": 11
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 11,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 12,
+ "cost": 4
+ }
+ ]
+ },
+ {
+ "id": "t4",
+ "group": "g0",
+ "duration": 1,
+ "original": {
+ "resource": "r1",
+ "start": 15
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 15,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 21,
+ "cost": 6
+ },
+ {
+ "resource": "r1",
+ "start": 17,
+ "cost": 5
+ }
+ ]
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s0-r1.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s0-r1.json
new file mode 100644
index 00000000..53bef62c
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s0-r1.json
@@ -0,0 +1,159 @@
+{
+ "name": "heterogeneous-n5-s0-seed2026092801",
+ "horizon": 29,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 1,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 2,
+ "downtime": []
+ },
+ {
+ "id": "r2",
+ "cleanup": 1,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 1,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 5,
+ "cost": 8
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 1,
+ "original": {
+ "resource": "r1",
+ "start": 3
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 6,
+ "cost": 5
+ },
+ {
+ "resource": "r0",
+ "start": 9,
+ "cost": 8
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 2,
+ "original": {
+ "resource": "r2",
+ "start": 7
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 7,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 11,
+ "cost": 4
+ },
+ {
+ "resource": "r2",
+ "start": 13,
+ "cost": 8
+ },
+ {
+ "resource": "r1",
+ "start": 10,
+ "cost": 5
+ }
+ ]
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 3,
+ "original": {
+ "resource": "r0",
+ "start": 11
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 11,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 16,
+ "cost": 8
+ }
+ ]
+ },
+ {
+ "id": "t4",
+ "group": "g0",
+ "duration": 1,
+ "original": {
+ "resource": "r1",
+ "start": 15
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 15,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 16,
+ "cost": 1
+ },
+ {
+ "resource": "r2",
+ "start": 21,
+ "cost": 8
+ }
+ ]
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s0-r2.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s0-r2.json
new file mode 100644
index 00000000..cd736250
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s0-r2.json
@@ -0,0 +1,159 @@
+{
+ "name": "heterogeneous-n5-s0-seed2026092802",
+ "horizon": 29,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 1,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 1,
+ "downtime": []
+ },
+ {
+ "id": "r2",
+ "cleanup": 2,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 2,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 2,
+ "cost": 4
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 1,
+ "original": {
+ "resource": "r1",
+ "start": 4
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 9,
+ "cost": 5
+ },
+ {
+ "resource": "r2",
+ "start": 8,
+ "cost": 7
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 2,
+ "original": {
+ "resource": "r2",
+ "start": 7
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 7,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 10,
+ "cost": 6
+ },
+ {
+ "resource": "r0",
+ "start": 9,
+ "cost": 4
+ },
+ {
+ "resource": "r1",
+ "start": 13,
+ "cost": 8
+ }
+ ]
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 3,
+ "original": {
+ "resource": "r0",
+ "start": 12
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 12,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 17,
+ "cost": 7
+ }
+ ]
+ },
+ {
+ "id": "t4",
+ "group": "g0",
+ "duration": 2,
+ "original": {
+ "resource": "r1",
+ "start": 16
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 16,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 19,
+ "cost": 4
+ },
+ {
+ "resource": "r1",
+ "start": 20,
+ "cost": 4
+ }
+ ]
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s0-r3.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s0-r3.json
new file mode 100644
index 00000000..13dd5824
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s0-r3.json
@@ -0,0 +1,159 @@
+{
+ "name": "heterogeneous-n5-s0-seed2026092803",
+ "horizon": 27,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 1,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 1,
+ "downtime": []
+ },
+ {
+ "id": "r2",
+ "cleanup": 0,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 2,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 1,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 1,
+ "original": {
+ "resource": "r1",
+ "start": 4
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 7,
+ "cost": 5
+ },
+ {
+ "resource": "r1",
+ "start": 5,
+ "cost": 1
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 1,
+ "original": {
+ "resource": "r2",
+ "start": 7
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 7,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 13,
+ "cost": 9
+ },
+ {
+ "resource": "r1",
+ "start": 11,
+ "cost": 6
+ },
+ {
+ "resource": "r0",
+ "start": 8,
+ "cost": 4
+ }
+ ]
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 2,
+ "original": {
+ "resource": "r0",
+ "start": 9
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 9,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 11,
+ "cost": 5
+ }
+ ]
+ },
+ {
+ "id": "t4",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r1",
+ "start": 12
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 12,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 17,
+ "cost": 6
+ },
+ {
+ "resource": "r1",
+ "start": 13,
+ "cost": 3
+ }
+ ]
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s1-r0.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s1-r0.json
new file mode 100644
index 00000000..917fa9cb
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s1-r0.json
@@ -0,0 +1,164 @@
+{
+ "name": "heterogeneous-n5-s1-seed2026092810",
+ "horizon": 33,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 1,
+ "downtime": [
+ [
+ 0,
+ 6
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 2,
+ "downtime": [
+ [
+ 5,
+ 11
+ ]
+ ]
+ },
+ {
+ "id": "r2",
+ "cleanup": 2,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 5,
+ "cost": 8
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 2,
+ "original": {
+ "resource": "r1",
+ "start": 5
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 5,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 2,
+ "cost": 5
+ },
+ {
+ "resource": "r2",
+ "start": 5,
+ "cost": 1
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 2,
+ "original": {
+ "resource": "r2",
+ "start": 10
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 10,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 15,
+ "cost": 7
+ },
+ {
+ "resource": "r2",
+ "start": 12,
+ "cost": 4
+ },
+ {
+ "resource": "r1",
+ "start": 11,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 2,
+ "original": {
+ "resource": "r0",
+ "start": 14
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 14,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 14,
+ "cost": 1
+ }
+ ]
+ },
+ {
+ "id": "t4",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r1",
+ "start": 17
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 17,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 17,
+ "cost": 2
+ },
+ {
+ "resource": "r1",
+ "start": 23,
+ "cost": 9
+ }
+ ]
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s1-r1.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s1-r1.json
new file mode 100644
index 00000000..61876211
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s1-r1.json
@@ -0,0 +1,164 @@
+{
+ "name": "heterogeneous-n5-s1-seed2026092811",
+ "horizon": 32,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 0,
+ "downtime": [
+ [
+ 0,
+ 5
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 2,
+ "downtime": [
+ [
+ 4,
+ 9
+ ]
+ ]
+ },
+ {
+ "id": "r2",
+ "cleanup": 2,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 5,
+ "cost": 8
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 1,
+ "original": {
+ "resource": "r1",
+ "start": 4
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 3,
+ "cost": 2
+ },
+ {
+ "resource": "r1",
+ "start": 9,
+ "cost": 6
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r2",
+ "start": 8
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 8,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 13,
+ "cost": 6
+ },
+ {
+ "resource": "r0",
+ "start": 10,
+ "cost": 5
+ },
+ {
+ "resource": "r0",
+ "start": 11,
+ "cost": 5
+ }
+ ]
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 2,
+ "original": {
+ "resource": "r0",
+ "start": 14
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 14,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 12,
+ "cost": 5
+ }
+ ]
+ },
+ {
+ "id": "t4",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r1",
+ "start": 16
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 16,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 14,
+ "cost": 2
+ },
+ {
+ "resource": "r1",
+ "start": 21,
+ "cost": 8
+ }
+ ]
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s1-r2.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s1-r2.json
new file mode 100644
index 00000000..70490d74
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s1-r2.json
@@ -0,0 +1,164 @@
+{
+ "name": "heterogeneous-n5-s1-seed2026092812",
+ "horizon": 35,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 2,
+ "downtime": [
+ [
+ 0,
+ 6
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 2,
+ "downtime": [
+ [
+ 5,
+ 12
+ ]
+ ]
+ },
+ {
+ "id": "r2",
+ "cleanup": 2,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 2,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 3,
+ "cost": 6
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 3,
+ "original": {
+ "resource": "r1",
+ "start": 5
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 5,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 4,
+ "cost": 1
+ },
+ {
+ "resource": "r2",
+ "start": 8,
+ "cost": 5
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 2,
+ "original": {
+ "resource": "r2",
+ "start": 10
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 10,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 15,
+ "cost": 7
+ },
+ {
+ "resource": "r2",
+ "start": 15,
+ "cost": 5
+ },
+ {
+ "resource": "r1",
+ "start": 12,
+ "cost": 2
+ }
+ ]
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 2,
+ "original": {
+ "resource": "r0",
+ "start": 15
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 15,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 13,
+ "cost": 5
+ }
+ ]
+ },
+ {
+ "id": "t4",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r1",
+ "start": 20
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 20,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 17,
+ "cost": 3
+ },
+ {
+ "resource": "r2",
+ "start": 25,
+ "cost": 8
+ }
+ ]
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s1-r3.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s1-r3.json
new file mode 100644
index 00000000..a09a25c1
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s1-r3.json
@@ -0,0 +1,164 @@
+{
+ "name": "heterogeneous-n5-s1-seed2026092813",
+ "horizon": 21,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 0,
+ "downtime": [
+ [
+ 0,
+ 4
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 0,
+ "downtime": [
+ [
+ 2,
+ 6
+ ]
+ ]
+ },
+ {
+ "id": "r2",
+ "cleanup": 0,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 2,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 1,
+ "cost": 1
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 2,
+ "original": {
+ "resource": "r1",
+ "start": 2
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 2,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 0,
+ "cost": 2
+ },
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 5
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 2,
+ "original": {
+ "resource": "r2",
+ "start": 5
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 5,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 9,
+ "cost": 4
+ },
+ {
+ "resource": "r1",
+ "start": 6,
+ "cost": 3
+ },
+ {
+ "resource": "r2",
+ "start": 11,
+ "cost": 8
+ }
+ ]
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 1,
+ "original": {
+ "resource": "r0",
+ "start": 7
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 7,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 9,
+ "cost": 3
+ }
+ ]
+ },
+ {
+ "id": "t4",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r1",
+ "start": 8
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 8,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 8,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 10,
+ "cost": 2
+ }
+ ]
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s2-r0.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s2-r0.json
new file mode 100644
index 00000000..d652121a
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s2-r0.json
@@ -0,0 +1,176 @@
+{
+ "name": "heterogeneous-n5-s2-seed2026092820",
+ "horizon": 31,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 1,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 2,
+ "downtime": []
+ },
+ {
+ "id": "r2",
+ "cleanup": 2,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 2,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 1,
+ "cost": 3
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 3,
+ "original": {
+ "resource": "r1",
+ "start": 3
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 9,
+ "cost": 8
+ },
+ {
+ "resource": "r0",
+ "start": 4,
+ "cost": 1
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r2",
+ "start": 8
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 8,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 12,
+ "cost": 6
+ },
+ {
+ "resource": "r0",
+ "start": 6,
+ "cost": 4
+ },
+ {
+ "resource": "r2",
+ "start": 14,
+ "cost": 6
+ }
+ ]
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 2,
+ "original": {
+ "resource": "r0",
+ "start": 13
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 13,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 19,
+ "cost": 9
+ }
+ ]
+ },
+ {
+ "id": "t4",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r1",
+ "start": 16
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 16,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 22,
+ "cost": 8
+ },
+ {
+ "resource": "r0",
+ "start": 14,
+ "cost": 4
+ }
+ ]
+ }
+ ],
+ "precedence": [
+ [
+ "t0",
+ "t1"
+ ],
+ [
+ "t1",
+ "t2"
+ ],
+ [
+ "t2",
+ "t3"
+ ],
+ [
+ "t3",
+ "t4"
+ ]
+ ]
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s2-r1.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s2-r1.json
new file mode 100644
index 00000000..e531b7e0
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s2-r1.json
@@ -0,0 +1,176 @@
+{
+ "name": "heterogeneous-n5-s2-seed2026092821",
+ "horizon": 30,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 2,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 2,
+ "downtime": []
+ },
+ {
+ "id": "r2",
+ "cleanup": 1,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 1,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 4,
+ "cost": 5
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 1,
+ "original": {
+ "resource": "r1",
+ "start": 4
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 9,
+ "cost": 8
+ },
+ {
+ "resource": "r2",
+ "start": 4,
+ "cost": 3
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r2",
+ "start": 8
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 8,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 7,
+ "cost": 4
+ },
+ {
+ "resource": "r0",
+ "start": 11,
+ "cost": 3
+ },
+ {
+ "resource": "r2",
+ "start": 6,
+ "cost": 3
+ }
+ ]
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 2,
+ "original": {
+ "resource": "r0",
+ "start": 13
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 13,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 11,
+ "cost": 4
+ }
+ ]
+ },
+ {
+ "id": "t4",
+ "group": "g0",
+ "duration": 1,
+ "original": {
+ "resource": "r1",
+ "start": 17
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 17,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 19,
+ "cost": 5
+ },
+ {
+ "resource": "r0",
+ "start": 14,
+ "cost": 4
+ }
+ ]
+ }
+ ],
+ "precedence": [
+ [
+ "t0",
+ "t1"
+ ],
+ [
+ "t1",
+ "t2"
+ ],
+ [
+ "t2",
+ "t3"
+ ],
+ [
+ "t3",
+ "t4"
+ ]
+ ]
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s2-r2.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s2-r2.json
new file mode 100644
index 00000000..16c1f7ca
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s2-r2.json
@@ -0,0 +1,176 @@
+{
+ "name": "heterogeneous-n5-s2-seed2026092822",
+ "horizon": 23,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 0,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 1,
+ "downtime": []
+ },
+ {
+ "id": "r2",
+ "cleanup": 0,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 2,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 6,
+ "cost": 6
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 1,
+ "original": {
+ "resource": "r1",
+ "start": 2
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 2,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 0,
+ "cost": 4
+ },
+ {
+ "resource": "r2",
+ "start": 3,
+ "cost": 3
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 1,
+ "original": {
+ "resource": "r2",
+ "start": 5
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 5,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 7,
+ "cost": 5
+ },
+ {
+ "resource": "r2",
+ "start": 6,
+ "cost": 1
+ },
+ {
+ "resource": "r1",
+ "start": 8,
+ "cost": 4
+ }
+ ]
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 3,
+ "original": {
+ "resource": "r0",
+ "start": 6
+ },
+ "change_cost": 4,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 6,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 12,
+ "cost": 9
+ }
+ ]
+ },
+ {
+ "id": "t4",
+ "group": "g0",
+ "duration": 1,
+ "original": {
+ "resource": "r1",
+ "start": 10
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 10,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 11,
+ "cost": 3
+ },
+ {
+ "resource": "r1",
+ "start": 7,
+ "cost": 4
+ }
+ ]
+ }
+ ],
+ "precedence": [
+ [
+ "t0",
+ "t1"
+ ],
+ [
+ "t1",
+ "t2"
+ ],
+ [
+ "t2",
+ "t3"
+ ],
+ [
+ "t3",
+ "t4"
+ ]
+ ]
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s2-r3.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s2-r3.json
new file mode 100644
index 00000000..d8d4c483
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus-v2/n5-s2-r3.json
@@ -0,0 +1,176 @@
+{
+ "name": "heterogeneous-n5-s2-seed2026092823",
+ "horizon": 29,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 2,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 2,
+ "downtime": []
+ },
+ {
+ "id": "r2",
+ "cleanup": 0,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 6,
+ "cost": 7
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 1,
+ "original": {
+ "resource": "r1",
+ "start": 5
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 5,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 8,
+ "cost": 4
+ },
+ {
+ "resource": "r2",
+ "start": 11,
+ "cost": 8
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g0",
+ "duration": 3,
+ "original": {
+ "resource": "r2",
+ "start": 9
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 9,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 8,
+ "cost": 2
+ },
+ {
+ "resource": "r2",
+ "start": 12,
+ "cost": 3
+ },
+ {
+ "resource": "r2",
+ "start": 14,
+ "cost": 5
+ }
+ ]
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 1,
+ "original": {
+ "resource": "r0",
+ "start": 13
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 13,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 18,
+ "cost": 8
+ }
+ ]
+ },
+ {
+ "id": "t4",
+ "group": "g0",
+ "duration": 1,
+ "original": {
+ "resource": "r1",
+ "start": 16
+ },
+ "change_cost": 3,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 16,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 16,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 20,
+ "cost": 7
+ }
+ ]
+ }
+ ],
+ "precedence": [
+ [
+ "t0",
+ "t1"
+ ],
+ [
+ "t1",
+ "t2"
+ ],
+ [
+ "t2",
+ "t3"
+ ],
+ [
+ "t3",
+ "t4"
+ ]
+ ]
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus/development-n3-d0.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus/development-n3-d0.json
new file mode 100644
index 00000000..a459017a
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus/development-n3-d0.json
@@ -0,0 +1,100 @@
+{
+ "name": "synthetic-n3-d0-s20260921",
+ "horizon": 7,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 0,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 0,
+ "downtime": []
+ },
+ {
+ "id": "r2",
+ "cleanup": 0,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 2,
+ "cost": 1
+ },
+ {
+ "resource": "r2",
+ "start": 3,
+ "cost": 1
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 2
+ },
+ {
+ "id": "t1",
+ "group": "g0",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 4,
+ "cost": 2
+ },
+ {
+ "resource": "r0",
+ "start": 6,
+ "cost": 2
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 4
+ },
+ "change_cost": 4
+ },
+ {
+ "id": "t2",
+ "group": "g1",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 5,
+ "cost": 2
+ },
+ {
+ "resource": "r0",
+ "start": 2,
+ "cost": 3
+ }
+ ],
+ "original": {
+ "resource": "r2",
+ "start": 5
+ },
+ "change_cost": 3
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n3-d0.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n3-d0.json
new file mode 100644
index 00000000..32e5ad43
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n3-d0.json
@@ -0,0 +1,100 @@
+{
+ "name": "synthetic-n3-d0-s20260952",
+ "horizon": 7,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 0,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 0,
+ "downtime": []
+ },
+ {
+ "id": "r2",
+ "cleanup": 0,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 4,
+ "cost": 2
+ },
+ {
+ "resource": "r2",
+ "start": 6,
+ "cost": 4
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 2
+ },
+ {
+ "id": "t1",
+ "group": "g0",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 6,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 2,
+ "cost": 4
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 6
+ },
+ "change_cost": 2
+ },
+ {
+ "id": "t2",
+ "group": "g1",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 1,
+ "cost": 4
+ },
+ {
+ "resource": "r2",
+ "start": 6,
+ "cost": 4
+ }
+ ],
+ "original": {
+ "resource": "r2",
+ "start": 1
+ },
+ "change_cost": 2
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n3-d1.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n3-d1.json
new file mode 100644
index 00000000..2dd25e1c
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n3-d1.json
@@ -0,0 +1,100 @@
+{
+ "name": "synthetic-n3-d1-s20260953",
+ "horizon": 5,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 0,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 0,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 3,
+ "cost": 2
+ },
+ {
+ "resource": "r0",
+ "start": 4,
+ "cost": 1
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 1
+ },
+ {
+ "id": "t1",
+ "group": "g0",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 2,
+ "cost": 4
+ },
+ {
+ "resource": "r0",
+ "start": 4,
+ "cost": 1
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 2
+ },
+ "change_cost": 1
+ },
+ {
+ "id": "t2",
+ "group": "g1",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 1,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 1,
+ "cost": 1
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 1
+ },
+ "change_cost": 3
+ }
+ ],
+ "precedence": [
+ [
+ "t0",
+ "t1"
+ ]
+ ]
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n3-d2.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n3-d2.json
new file mode 100644
index 00000000..24a3aef9
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n3-d2.json
@@ -0,0 +1,90 @@
+{
+ "name": "synthetic-n3-d2-s20260954",
+ "horizon": 4,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 0,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 2,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 1,
+ "cost": 3
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 4
+ },
+ {
+ "id": "t1",
+ "group": "g0",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 2,
+ "cost": 4
+ },
+ {
+ "resource": "r0",
+ "start": 3,
+ "cost": 1
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 2
+ },
+ "change_cost": 4
+ },
+ {
+ "id": "t2",
+ "group": "g1",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 2,
+ "cost": 2
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 3
+ },
+ "change_cost": 1
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n5-d0.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n5-d0.json
new file mode 100644
index 00000000..4f56d85c
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n5-d0.json
@@ -0,0 +1,144 @@
+{
+ "name": "synthetic-n5-d0-s20260972",
+ "horizon": 11,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 0,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 0,
+ "downtime": []
+ },
+ {
+ "id": "r2",
+ "cleanup": 0,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 5,
+ "cost": 4
+ },
+ {
+ "resource": "r0",
+ "start": 4,
+ "cost": 0
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 3
+ },
+ {
+ "id": "t1",
+ "group": "g0",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 5,
+ "cost": 2
+ },
+ {
+ "resource": "r0",
+ "start": 8,
+ "cost": 1
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 5
+ },
+ "change_cost": 3
+ },
+ {
+ "id": "t2",
+ "group": "g1",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 3,
+ "cost": 4
+ },
+ {
+ "resource": "r0",
+ "start": 4,
+ "cost": 3
+ }
+ ],
+ "original": {
+ "resource": "r2",
+ "start": 3
+ },
+ "change_cost": 3
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 8,
+ "cost": 2
+ },
+ {
+ "resource": "r0",
+ "start": 2,
+ "cost": 4
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 8
+ },
+ "change_cost": 2
+ },
+ {
+ "id": "t4",
+ "group": "g2",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 2,
+ "cost": 3
+ },
+ {
+ "resource": "r1",
+ "start": 5,
+ "cost": 3
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 2
+ },
+ "change_cost": 4
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n5-d1.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n5-d1.json
new file mode 100644
index 00000000..cd76a4e0
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n5-d1.json
@@ -0,0 +1,144 @@
+{
+ "name": "synthetic-n5-d1-s20260973",
+ "horizon": 7,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 0,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 0,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 4,
+ "cost": 1
+ },
+ {
+ "resource": "r1",
+ "start": 4,
+ "cost": 2
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 4
+ },
+ {
+ "id": "t1",
+ "group": "g0",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 1,
+ "cost": 3
+ },
+ {
+ "resource": "r0",
+ "start": 5,
+ "cost": 1
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 1
+ },
+ "change_cost": 1
+ },
+ {
+ "id": "t2",
+ "group": "g1",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 2,
+ "cost": 3
+ },
+ {
+ "resource": "r0",
+ "start": 5,
+ "cost": 1
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 2
+ },
+ "change_cost": 3
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 1,
+ "cost": 3
+ },
+ {
+ "resource": "r1",
+ "start": 2,
+ "cost": 4
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 1
+ },
+ "change_cost": 3
+ },
+ {
+ "id": "t4",
+ "group": "g2",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 4,
+ "cost": 3
+ },
+ {
+ "resource": "r0",
+ "start": 2,
+ "cost": 3
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 4
+ },
+ "change_cost": 1
+ }
+ ],
+ "precedence": [
+ [
+ "t0",
+ "t1"
+ ]
+ ]
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n5-d2.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n5-d2.json
new file mode 100644
index 00000000..2dd77ccc
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n5-d2.json
@@ -0,0 +1,134 @@
+{
+ "name": "synthetic-n5-d2-s20260974",
+ "horizon": 4,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 0,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 1,
+ "cost": 4
+ },
+ {
+ "resource": "r0",
+ "start": 3,
+ "cost": 4
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 4
+ },
+ {
+ "id": "t1",
+ "group": "g0",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 3,
+ "cost": 4
+ },
+ {
+ "resource": "r0",
+ "start": 1,
+ "cost": 0
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 3
+ },
+ "change_cost": 1
+ },
+ {
+ "id": "t2",
+ "group": "g1",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 2,
+ "cost": 4
+ },
+ {
+ "resource": "r0",
+ "start": 1,
+ "cost": 4
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 2
+ },
+ "change_cost": 2
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 1,
+ "cost": 1
+ },
+ {
+ "resource": "r0",
+ "start": 3,
+ "cost": 0
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 1
+ },
+ "change_cost": 1
+ },
+ {
+ "id": "t4",
+ "group": "g2",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 1,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 3,
+ "cost": 2
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 1
+ },
+ "change_cost": 1
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n6-d0.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n6-d0.json
new file mode 100644
index 00000000..c19cc3a8
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n6-d0.json
@@ -0,0 +1,166 @@
+{
+ "name": "synthetic-n6-d0-s20260982",
+ "horizon": 13,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 0,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 0,
+ "downtime": []
+ },
+ {
+ "id": "r2",
+ "cleanup": 0,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 6,
+ "cost": 3
+ },
+ {
+ "resource": "r0",
+ "start": 5,
+ "cost": 3
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 1
+ },
+ {
+ "id": "t1",
+ "group": "g0",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 6,
+ "cost": 1
+ },
+ {
+ "resource": "r0",
+ "start": 7,
+ "cost": 2
+ }
+ ],
+ "original": {
+ "resource": "r1",
+ "start": 6
+ },
+ "change_cost": 3
+ },
+ {
+ "id": "t2",
+ "group": "g1",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 2,
+ "cost": 3
+ },
+ {
+ "resource": "r0",
+ "start": 10,
+ "cost": 2
+ }
+ ],
+ "original": {
+ "resource": "r1",
+ "start": 2
+ },
+ "change_cost": 2
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 2,
+ "cost": 1
+ },
+ {
+ "resource": "r1",
+ "start": 5,
+ "cost": 2
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 2
+ },
+ "change_cost": 1
+ },
+ {
+ "id": "t4",
+ "group": "g2",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 1,
+ "cost": 4
+ },
+ {
+ "resource": "r0",
+ "start": 3,
+ "cost": 2
+ }
+ ],
+ "original": {
+ "resource": "r1",
+ "start": 1
+ },
+ "change_cost": 1
+ },
+ {
+ "id": "t5",
+ "group": "g2",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 10,
+ "cost": 2
+ },
+ {
+ "resource": "r2",
+ "start": 11,
+ "cost": 1
+ }
+ ],
+ "original": {
+ "resource": "r2",
+ "start": 10
+ },
+ "change_cost": 4
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n6-d1.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n6-d1.json
new file mode 100644
index 00000000..65354d74
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n6-d1.json
@@ -0,0 +1,166 @@
+{
+ "name": "synthetic-n6-d1-s20260983",
+ "horizon": 8,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 0,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 0,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 5,
+ "cost": 4
+ },
+ {
+ "resource": "r1",
+ "start": 7,
+ "cost": 3
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 3
+ },
+ {
+ "id": "t1",
+ "group": "g0",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 5,
+ "cost": 3
+ },
+ {
+ "resource": "r0",
+ "start": 6,
+ "cost": 3
+ }
+ ],
+ "original": {
+ "resource": "r1",
+ "start": 5
+ },
+ "change_cost": 2
+ },
+ {
+ "id": "t2",
+ "group": "g1",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 5,
+ "cost": 2
+ },
+ {
+ "resource": "r0",
+ "start": 2,
+ "cost": 2
+ }
+ ],
+ "original": {
+ "resource": "r1",
+ "start": 5
+ },
+ "change_cost": 3
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 2,
+ "cost": 4
+ },
+ {
+ "resource": "r0",
+ "start": 7,
+ "cost": 1
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 2
+ },
+ "change_cost": 1
+ },
+ {
+ "id": "t4",
+ "group": "g2",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 1,
+ "cost": 2
+ },
+ {
+ "resource": "r0",
+ "start": 5,
+ "cost": 2
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 1
+ },
+ "change_cost": 3
+ },
+ {
+ "id": "t5",
+ "group": "g2",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 3,
+ "cost": 4
+ },
+ {
+ "resource": "r1",
+ "start": 7,
+ "cost": 2
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 3
+ },
+ "change_cost": 2
+ }
+ ],
+ "precedence": [
+ [
+ "t0",
+ "t1"
+ ]
+ ]
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n6-d2.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n6-d2.json
new file mode 100644
index 00000000..b706cf6a
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n6-d2.json
@@ -0,0 +1,156 @@
+{
+ "name": "synthetic-n6-d2-s20260984",
+ "horizon": 5,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 0,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 3,
+ "cost": 2
+ },
+ {
+ "resource": "r0",
+ "start": 4,
+ "cost": 4
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 1
+ },
+ {
+ "id": "t1",
+ "group": "g0",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 1,
+ "cost": 2
+ },
+ {
+ "resource": "r0",
+ "start": 2,
+ "cost": 4
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 1
+ },
+ "change_cost": 1
+ },
+ {
+ "id": "t2",
+ "group": "g1",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 2,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 1,
+ "cost": 0
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 2
+ },
+ "change_cost": 1
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 3,
+ "cost": 3
+ },
+ {
+ "resource": "r0",
+ "start": 2,
+ "cost": 4
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 3
+ },
+ "change_cost": 4
+ },
+ {
+ "id": "t4",
+ "group": "g2",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 3,
+ "cost": 4
+ },
+ {
+ "resource": "r0",
+ "start": 1,
+ "cost": 1
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 3
+ },
+ "change_cost": 4
+ },
+ {
+ "id": "t5",
+ "group": "g2",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 3,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 2,
+ "cost": 0
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 3
+ },
+ "change_cost": 3
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n8-d0.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n8-d0.json
new file mode 100644
index 00000000..40a09b9a
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n8-d0.json
@@ -0,0 +1,210 @@
+{
+ "name": "synthetic-n8-d0-s20261002",
+ "horizon": 17,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 0,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 0,
+ "downtime": []
+ },
+ {
+ "id": "r2",
+ "cleanup": 0,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 7,
+ "cost": 0
+ },
+ {
+ "resource": "r2",
+ "start": 15,
+ "cost": 1
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 1
+ },
+ {
+ "id": "t1",
+ "group": "g0",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 6,
+ "cost": 4
+ },
+ {
+ "resource": "r0",
+ "start": 10,
+ "cost": 0
+ }
+ ],
+ "original": {
+ "resource": "r2",
+ "start": 6
+ },
+ "change_cost": 3
+ },
+ {
+ "id": "t2",
+ "group": "g1",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 11,
+ "cost": 2
+ },
+ {
+ "resource": "r2",
+ "start": 1,
+ "cost": 4
+ }
+ ],
+ "original": {
+ "resource": "r1",
+ "start": 11
+ },
+ "change_cost": 4
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 13,
+ "cost": 2
+ },
+ {
+ "resource": "r0",
+ "start": 1,
+ "cost": 4
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 13
+ },
+ "change_cost": 3
+ },
+ {
+ "id": "t4",
+ "group": "g2",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 8,
+ "cost": 3
+ },
+ {
+ "resource": "r2",
+ "start": 11,
+ "cost": 4
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 8
+ },
+ "change_cost": 3
+ },
+ {
+ "id": "t5",
+ "group": "g2",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 1,
+ "cost": 2
+ },
+ {
+ "resource": "r2",
+ "start": 2,
+ "cost": 4
+ }
+ ],
+ "original": {
+ "resource": "r1",
+ "start": 1
+ },
+ "change_cost": 1
+ },
+ {
+ "id": "t6",
+ "group": "g3",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 14,
+ "cost": 4
+ },
+ {
+ "resource": "r1",
+ "start": 8,
+ "cost": 0
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 14
+ },
+ "change_cost": 1
+ },
+ {
+ "id": "t7",
+ "group": "g3",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r2",
+ "start": 10,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 9,
+ "cost": 1
+ }
+ ],
+ "original": {
+ "resource": "r2",
+ "start": 10
+ },
+ "change_cost": 1
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n8-d1.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n8-d1.json
new file mode 100644
index 00000000..954f1415
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n8-d1.json
@@ -0,0 +1,210 @@
+{
+ "name": "synthetic-n8-d1-s20261003",
+ "horizon": 10,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 0,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ },
+ {
+ "id": "r1",
+ "cleanup": 0,
+ "downtime": []
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 5,
+ "cost": 2
+ },
+ {
+ "resource": "r1",
+ "start": 3,
+ "cost": 1
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 2
+ },
+ {
+ "id": "t1",
+ "group": "g0",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 3,
+ "cost": 4
+ },
+ {
+ "resource": "r1",
+ "start": 7,
+ "cost": 4
+ }
+ ],
+ "original": {
+ "resource": "r1",
+ "start": 3
+ },
+ "change_cost": 2
+ },
+ {
+ "id": "t2",
+ "group": "g1",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 6,
+ "cost": 3
+ },
+ {
+ "resource": "r1",
+ "start": 8,
+ "cost": 0
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 6
+ },
+ "change_cost": 2
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 5,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 6,
+ "cost": 2
+ }
+ ],
+ "original": {
+ "resource": "r1",
+ "start": 5
+ },
+ "change_cost": 2
+ },
+ {
+ "id": "t4",
+ "group": "g2",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 7,
+ "cost": 4
+ },
+ {
+ "resource": "r0",
+ "start": 2,
+ "cost": 2
+ }
+ ],
+ "original": {
+ "resource": "r1",
+ "start": 7
+ },
+ "change_cost": 4
+ },
+ {
+ "id": "t5",
+ "group": "g2",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 1,
+ "cost": 1
+ },
+ {
+ "resource": "r1",
+ "start": 2,
+ "cost": 1
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 1
+ },
+ "change_cost": 4
+ },
+ {
+ "id": "t6",
+ "group": "g3",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 5,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 9,
+ "cost": 2
+ }
+ ],
+ "original": {
+ "resource": "r1",
+ "start": 5
+ },
+ "change_cost": 3
+ },
+ {
+ "id": "t7",
+ "group": "g3",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r1",
+ "start": 2,
+ "cost": 0
+ },
+ {
+ "resource": "r1",
+ "start": 9,
+ "cost": 0
+ }
+ ],
+ "original": {
+ "resource": "r1",
+ "start": 2
+ },
+ "change_cost": 3
+ }
+ ],
+ "precedence": [
+ [
+ "t0",
+ "t1"
+ ]
+ ]
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n8-d2.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n8-d2.json
new file mode 100644
index 00000000..aeee7b4b
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus/evaluation-n8-d2.json
@@ -0,0 +1,200 @@
+{
+ "name": "synthetic-n8-d2-s20261004",
+ "horizon": 6,
+ "resources": [
+ {
+ "id": "r0",
+ "cleanup": 0,
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 1,
+ "cost": 2
+ },
+ {
+ "resource": "r0",
+ "start": 2,
+ "cost": 4
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 0
+ },
+ "change_cost": 3
+ },
+ {
+ "id": "t1",
+ "group": "g0",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 5,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 3,
+ "cost": 4
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 5
+ },
+ "change_cost": 4
+ },
+ {
+ "id": "t2",
+ "group": "g1",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 3,
+ "cost": 4
+ },
+ {
+ "resource": "r0",
+ "start": 2,
+ "cost": 1
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 3
+ },
+ "change_cost": 4
+ },
+ {
+ "id": "t3",
+ "group": "g1",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 5,
+ "cost": 0
+ },
+ {
+ "resource": "r0",
+ "start": 4,
+ "cost": 2
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 5
+ },
+ "change_cost": 1
+ },
+ {
+ "id": "t4",
+ "group": "g2",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 3,
+ "cost": 1
+ },
+ {
+ "resource": "r0",
+ "start": 5,
+ "cost": 0
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 3
+ },
+ "change_cost": 1
+ },
+ {
+ "id": "t5",
+ "group": "g2",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 4,
+ "cost": 4
+ },
+ {
+ "resource": "r0",
+ "start": 5,
+ "cost": 1
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 4
+ },
+ "change_cost": 1
+ },
+ {
+ "id": "t6",
+ "group": "g3",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 1,
+ "cost": 4
+ },
+ {
+ "resource": "r0",
+ "start": 4,
+ "cost": 2
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 1
+ },
+ "change_cost": 3
+ },
+ {
+ "id": "t7",
+ "group": "g3",
+ "duration": 1,
+ "options": [
+ {
+ "resource": "r0",
+ "start": 4,
+ "cost": 2
+ },
+ {
+ "resource": "r0",
+ "start": 1,
+ "cost": 3
+ }
+ ],
+ "original": {
+ "resource": "r0",
+ "start": 4
+ },
+ "change_cost": 2
+ }
+ ],
+ "precedence": []
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/corpus/manifest.json b/pyqpanda-algorithm/example/LabScheduling/data/corpus/manifest.json
new file mode 100644
index 00000000..76c74c58
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/corpus/manifest.json
@@ -0,0 +1,136 @@
+{
+ "schema_version": 1,
+ "synthetic": true,
+ "generator_sha256": "6188e05164971853337fc04cd9321e2c5365bf027f77a4433e02bde827f32123",
+ "optimization_seeds": [
+ 0,
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9
+ ],
+ "training": {
+ "layers": 1,
+ "maxiter": 60,
+ "restarts": 2
+ },
+ "shots": [
+ 8,
+ 16,
+ 32,
+ 64,
+ 128,
+ 512
+ ],
+ "instances": [
+ {
+ "file": "development-n3-d0.json",
+ "split": "development",
+ "tasks": 3,
+ "density_parameter": 0,
+ "data_seed": 20260921,
+ "sha256": "d827ac7785a07c2ff18c3dc47d1e9345986a6249913826a2518a1d46f3ba7e18"
+ },
+ {
+ "file": "evaluation-n3-d0.json",
+ "split": "evaluation",
+ "tasks": 3,
+ "density_parameter": 0,
+ "data_seed": 20260952,
+ "sha256": "3b20e4e5c9e6ad0bcf04042080562788494a211b81f5b69cb6b200c3c66ecefe"
+ },
+ {
+ "file": "evaluation-n3-d1.json",
+ "split": "evaluation",
+ "tasks": 3,
+ "density_parameter": 1,
+ "data_seed": 20260953,
+ "sha256": "6d4d463f2d2b556e9352777df21317551122163d72f017025cc267fc9313bece"
+ },
+ {
+ "file": "evaluation-n3-d2.json",
+ "split": "evaluation",
+ "tasks": 3,
+ "density_parameter": 2,
+ "data_seed": 20260954,
+ "sha256": "6989a69a0cf7aab50b2b8a14a3a1b148f6301c187f8985ab4fb89d53709165a2"
+ },
+ {
+ "file": "evaluation-n5-d0.json",
+ "split": "evaluation",
+ "tasks": 5,
+ "density_parameter": 0,
+ "data_seed": 20260972,
+ "sha256": "16fb5b30481f7cb6e26893257198d60694a6b3601222700345682b477446f36c"
+ },
+ {
+ "file": "evaluation-n5-d1.json",
+ "split": "evaluation",
+ "tasks": 5,
+ "density_parameter": 1,
+ "data_seed": 20260973,
+ "sha256": "778be907478568fc0cd92503e0ae9e228b7caf62dc8b0c8f6cfe56dc337d42e6"
+ },
+ {
+ "file": "evaluation-n5-d2.json",
+ "split": "evaluation",
+ "tasks": 5,
+ "density_parameter": 2,
+ "data_seed": 20260974,
+ "sha256": "27e8da20697a51e79b1d9cf2f1a5103f183a804008384928ebe157dc6a0766ff"
+ },
+ {
+ "file": "evaluation-n6-d0.json",
+ "split": "evaluation",
+ "tasks": 6,
+ "density_parameter": 0,
+ "data_seed": 20260982,
+ "sha256": "689c6c10d93b32575b84b1a0b9b4ea32c3ac8e9cd35507dcf47df31a996cec46"
+ },
+ {
+ "file": "evaluation-n6-d1.json",
+ "split": "evaluation",
+ "tasks": 6,
+ "density_parameter": 1,
+ "data_seed": 20260983,
+ "sha256": "3670be6577fdf0a72f9099bae3e4264ab4cf1d364f2385a31835d48e0fd2d0b7"
+ },
+ {
+ "file": "evaluation-n6-d2.json",
+ "split": "evaluation",
+ "tasks": 6,
+ "density_parameter": 2,
+ "data_seed": 20260984,
+ "sha256": "9598e15a813425247ee3059d68f9f72d4ed0c80935040d96bc8b959549c5b482"
+ },
+ {
+ "file": "evaluation-n8-d0.json",
+ "split": "evaluation",
+ "tasks": 8,
+ "density_parameter": 0,
+ "data_seed": 20261002,
+ "sha256": "3f0bb0c0f3046ff399ba6cb057cbd4af76f9e58379bf21f3093dd368cce64145"
+ },
+ {
+ "file": "evaluation-n8-d1.json",
+ "split": "evaluation",
+ "tasks": 8,
+ "density_parameter": 1,
+ "data_seed": 20261003,
+ "sha256": "24a78232cc15095f23f1960fce0fa6b469331287e939761855cc9afe88d423e3"
+ },
+ {
+ "file": "evaluation-n8-d2.json",
+ "split": "evaluation",
+ "tasks": 8,
+ "density_parameter": 2,
+ "data_seed": 20261004,
+ "sha256": "829ea1e178a972a60b33f01009260d9577a71277b317cd63e6abab4823d5f8f2"
+ }
+ ]
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/infeasible.json b/pyqpanda-algorithm/example/LabScheduling/data/infeasible.json
new file mode 100644
index 00000000..e5d143ac
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/infeasible.json
@@ -0,0 +1,11 @@
+{
+ "name": "有效输入但单设备容量不足",
+ "horizon": 2,
+ "resources": [{"id": "instrument"}],
+ "tasks": [
+ {"id": "A", "group": "A", "duration": 2,
+ "options": [{"resource": "instrument", "start": 0, "cost": 0}]},
+ {"id": "B", "group": "B", "duration": 2,
+ "options": [{"resource": "instrument", "start": 0, "cost": 0}]}
+ ]
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/medium.json b/pyqpanda-algorithm/example/LabScheduling/data/medium.json
new file mode 100644
index 00000000..5dcba169
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/medium.json
@@ -0,0 +1,37 @@
+{
+ "name": "双设备四实验:停机、清洗、小组冲突与前序工艺",
+ "horizon": 12,
+ "resources": [
+ {"id": "spectrometer", "cleanup": 1, "downtime": [[0, 2]]},
+ {"id": "microscope", "cleanup": 1, "downtime": [[7, 8]]}
+ ],
+ "tasks": [
+ {"id": "A-prepare", "group": "group-A", "duration": 2,
+ "original": {"resource": "spectrometer", "start": 0}, "change_cost": 4,
+ "options": [
+ {"resource": "spectrometer", "start": 0, "cost": 0},
+ {"resource": "spectrometer", "start": 2, "cost": 0},
+ {"resource": "spectrometer", "start": 5, "cost": 1},
+ {"resource": "spectrometer", "start": 8, "cost": 2}]},
+ {"id": "A-image", "group": "group-A", "duration": 2,
+ "original": {"resource": "microscope", "start": 4}, "change_cost": 4,
+ "options": [
+ {"resource": "microscope", "start": 2, "cost": 0},
+ {"resource": "microscope", "start": 4, "cost": 0},
+ {"resource": "microscope", "start": 8, "cost": 1},
+ {"resource": "microscope", "start": 6, "cost": 0}]},
+ {"id": "B-measure", "group": "group-B", "duration": 2,
+ "original": {"resource": "spectrometer", "start": 5}, "change_cost": 3,
+ "options": [
+ {"resource": "spectrometer", "start": 2, "cost": 1},
+ {"resource": "spectrometer", "start": 5, "cost": 0},
+ {"resource": "spectrometer", "start": 8, "cost": 1}]},
+ {"id": "B-image", "group": "group-B", "duration": 2,
+ "original": {"resource": "microscope", "start": 0}, "change_cost": 3,
+ "options": [
+ {"resource": "microscope", "start": 0, "cost": 0},
+ {"resource": "microscope", "start": 4, "cost": 1},
+ {"resource": "microscope", "start": 8, "cost": 2}]}
+ ],
+ "precedence": [["A-prepare", "A-image"]]
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/sensitivity.json b/pyqpanda-algorithm/example/LabScheduling/data/sensitivity.json
new file mode 100644
index 00000000..d1fd2b69
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/sensitivity.json
@@ -0,0 +1,26 @@
+{
+ "base_input": "tradeoff.json",
+ "base_sha256": "fb186f6154a157be65af2f6b9e65c295c016791fd60e21b1e257ab35b2f63b9f",
+ "weights": [
+ 0,
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6
+ ],
+ "seeds": [
+ 7,
+ 19,
+ 42
+ ],
+ "solver": {
+ "reduce": true,
+ "layers": 1,
+ "shots": 512,
+ "maxiter": 60,
+ "restarts": 2,
+ "mixer": "xy"
+ }
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/simple.json b/pyqpanda-algorithm/example/LabScheduling/data/simple.json
new file mode 100644
index 00000000..8d5ee457
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/simple.json
@@ -0,0 +1,20 @@
+{
+ "name": "共享光谱仪故障后的两组重排",
+ "horizon": 9,
+ "resources": [{"id": "spectrometer", "cleanup": 1, "downtime": [[0, 1]]}],
+ "tasks": [
+ {"id": "sample-A", "group": "group-A", "duration": 2,
+ "original": {"resource": "spectrometer", "start": 0}, "change_cost": 3,
+ "options": [
+ {"resource": "spectrometer", "start": 0, "cost": 0},
+ {"resource": "spectrometer", "start": 1, "cost": 0},
+ {"resource": "spectrometer", "start": 3, "cost": 1},
+ {"resource": "spectrometer", "start": 6, "cost": 2}]},
+ {"id": "sample-B", "group": "group-B", "duration": 2,
+ "original": {"resource": "spectrometer", "start": 3}, "change_cost": 3,
+ "options": [
+ {"resource": "spectrometer", "start": 1, "cost": 1},
+ {"resource": "spectrometer", "start": 3, "cost": 0},
+ {"resource": "spectrometer", "start": 6, "cost": 1}]}
+ ]
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/support-chain.json b/pyqpanda-algorithm/example/LabScheduling/data/support-chain.json
new file mode 100644
index 00000000..447fd395
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/support-chain.json
@@ -0,0 +1,174 @@
+{
+ "name": "Synthetic outage: unsupported late processing windows",
+ "horizon": 13,
+ "resources": [
+ {
+ "id": "oven",
+ "downtime": [
+ [
+ 0,
+ 1
+ ]
+ ]
+ }
+ ],
+ "tasks": [
+ {
+ "id": "t0",
+ "group": "g0",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 0
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 0,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 1,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 2,
+ "cost": 2
+ },
+ {
+ "resource": "oven",
+ "start": 3,
+ "cost": 3
+ },
+ {
+ "resource": "oven",
+ "start": 8,
+ "cost": 8
+ },
+ {
+ "resource": "oven",
+ "start": 9,
+ "cost": 9
+ }
+ ]
+ },
+ {
+ "id": "t1",
+ "group": "g1",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 2
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 2,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 3,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 4,
+ "cost": 2
+ },
+ {
+ "resource": "oven",
+ "start": 9,
+ "cost": 7
+ },
+ {
+ "resource": "oven",
+ "start": 10,
+ "cost": 8
+ }
+ ]
+ },
+ {
+ "id": "t2",
+ "group": "g2",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 4
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 3,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 4,
+ "cost": 0
+ },
+ {
+ "resource": "oven",
+ "start": 5,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 10,
+ "cost": 6
+ },
+ {
+ "resource": "oven",
+ "start": 11,
+ "cost": 7
+ }
+ ]
+ },
+ {
+ "id": "t3",
+ "group": "g3",
+ "duration": 1,
+ "original": {
+ "resource": "oven",
+ "start": 6
+ },
+ "change_cost": 2,
+ "options": [
+ {
+ "resource": "oven",
+ "start": 4,
+ "cost": 2
+ },
+ {
+ "resource": "oven",
+ "start": 5,
+ "cost": 1
+ },
+ {
+ "resource": "oven",
+ "start": 6,
+ "cost": 0
+ }
+ ]
+ }
+ ],
+ "precedence": [
+ [
+ "t0",
+ "t1"
+ ],
+ [
+ "t1",
+ "t2"
+ ],
+ [
+ "t2",
+ "t3"
+ ]
+ ]
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/data/tradeoff.json b/pyqpanda-algorithm/example/LabScheduling/data/tradeoff.json
new file mode 100644
index 00000000..fa7f6a26
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/data/tradeoff.json
@@ -0,0 +1,38 @@
+{
+ "name": "合成连锁改约:低成本整体后移或高成本备用设备",
+ "horizon": 14,
+ "resources": [
+ {"id": "oven", "cleanup": 1, "downtime": [[0, 1]]},
+ {"id": "backup", "cleanup": 1}
+ ],
+ "tasks": [
+ {
+ "id": "A", "group": "gA", "duration": 2,
+ "original": {"resource": "oven", "start": 0}, "change_cost": 2,
+ "options": [
+ {"resource": "oven", "start": 0, "cost": 0},
+ {"resource": "oven", "start": 2, "cost": 2},
+ {"resource": "backup", "start": 0, "cost": 12}
+ ]
+ },
+ {
+ "id": "B", "group": "gB", "duration": 1,
+ "original": {"resource": "oven", "start": 3}, "change_cost": 2,
+ "options": [
+ {"resource": "oven", "start": 3, "cost": 0},
+ {"resource": "oven", "start": 5, "cost": 2},
+ {"resource": "oven", "start": 8, "cost": 5}
+ ]
+ },
+ {
+ "id": "C", "group": "gC", "duration": 2,
+ "original": {"resource": "oven", "start": 5}, "change_cost": 2,
+ "options": [
+ {"resource": "oven", "start": 5, "cost": 0},
+ {"resource": "oven", "start": 7, "cost": 2},
+ {"resource": "oven", "start": 10, "cost": 5}
+ ]
+ }
+ ],
+ "precedence": [["A", "B"], ["B", "C"]]
+}
diff --git a/pyqpanda-algorithm/example/LabScheduling/make_corpus.py b/pyqpanda-algorithm/example/LabScheduling/make_corpus.py
new file mode 100644
index 00000000..7e4cfe69
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/make_corpus.py
@@ -0,0 +1,108 @@
+"""Deterministic synthetic corpus; no filtering by feasibility or solver outcome."""
+
+import argparse
+import hashlib
+import json
+from pathlib import Path
+from typing import Any
+
+import numpy as np
+
+
+def generate(tasks: int, density: int, seed: int) -> dict[str, Any]:
+ """Generate two surviving choices per task plus one outage-pruned booking.
+
+ Density labels control resource count and slot range, not measured density.
+ All generated instances are retained, including infeasible instances.
+ """
+ rng = np.random.default_rng(seed)
+ resource_count = (3, 2, 1)[density]
+ span = (2 * tasks, tasks + 1, max(3, tasks // 2 + 1))[density]
+ resources = [
+ {"id": f"r{i}", "cleanup": 0, "downtime": [[0, 1]] if i == 0 else []}
+ for i in range(resource_count)
+ ]
+ rows = []
+ for ti in range(tasks):
+ universe = [
+ (f"r{r}", s) for r in range(resource_count) for s in range(1, span + 1)
+ ]
+ indices = rng.choice(len(universe), size=2, replace=False)
+ options = [
+ {
+ "resource": universe[i][0],
+ "start": universe[i][1],
+ "cost": int(rng.integers(0, 5)),
+ }
+ for i in indices
+ ]
+ original = {"resource": options[0]["resource"], "start": options[0]["start"]}
+ if ti == 0:
+ options.insert(0, {"resource": "r0", "start": 0, "cost": 0})
+ original = {"resource": "r0", "start": 0}
+ rows.append(
+ {
+ "id": f"t{ti}",
+ "group": f"g{ti // 2}",
+ "duration": 1,
+ "options": options,
+ "original": original,
+ "change_cost": int(rng.integers(1, 5)),
+ }
+ )
+ return {
+ "name": f"synthetic-n{tasks}-d{density}-s{seed}",
+ "horizon": span + 1,
+ "resources": resources,
+ "tasks": rows,
+ "precedence": [["t0", "t1"]] if density == 1 else [],
+ }
+
+
+def write_corpus(output: Path) -> None:
+ """Freeze 12 evaluation inputs, one development input and content hashes."""
+ output.mkdir(parents=True, exist_ok=True)
+ records = []
+ specs = [("development", 3, 0, 20260921)] + [
+ ("evaluation", n, density, 20260922 + 10 * n + density)
+ for n in (3, 5, 6, 8)
+ for density in range(3)
+ ]
+ for split, tasks, density, seed in specs:
+ raw = generate(tasks, density, seed)
+ filename = f"{split}-n{tasks}-d{density}.json"
+ content = json.dumps(raw, ensure_ascii=False, indent=2) + "\n"
+ (output / filename).write_text(content, encoding="utf-8")
+ records.append(
+ {
+ "file": filename,
+ "split": split,
+ "tasks": tasks,
+ "density_parameter": density,
+ "data_seed": seed,
+ "sha256": hashlib.sha256(content.encode()).hexdigest(),
+ }
+ )
+ manifest = {
+ "schema_version": 1,
+ "synthetic": True,
+ "generator_sha256": hashlib.sha256(Path(__file__).read_bytes()).hexdigest(),
+ "optimization_seeds": list(range(10)),
+ "training": {"layers": 1, "maxiter": 60, "restarts": 2},
+ "shots": [8, 16, 32, 64, 128, 512],
+ "instances": records,
+ }
+ (output / "manifest.json").write_text(json.dumps(manifest, indent=2) + "\n")
+
+
+def main() -> None:
+ """Write or identically regenerate the fixed corpus."""
+ parser = argparse.ArgumentParser(description=__doc__)
+ parser.add_argument(
+ "--output", type=Path, default=Path(__file__).parent / "data/corpus"
+ )
+ write_corpus(parser.parse_args().output)
+
+
+if __name__ == "__main__":
+ main()
diff --git a/pyqpanda-algorithm/example/LabScheduling/make_corpus_v2.py b/pyqpanda-algorithm/example/LabScheduling/make_corpus_v2.py
new file mode 100644
index 00000000..a184eb69
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/make_corpus_v2.py
@@ -0,0 +1,121 @@
+"""Freeze heterogeneous synthetic bookings before evaluating any solver."""
+
+import argparse
+import hashlib
+import json
+from pathlib import Path
+from typing import Any
+
+import numpy as np
+
+
+def generate(tasks: int, scenario: int, seed: int) -> dict[str, Any]:
+ """Create valid original bookings, then introduce an unfiltered outage.
+
+ Original reservations are sequential even across resources. Alternatives
+ vary in start, resource and cost; no feasibility or optimizer filtering is
+ used. Scenarios select one short outage, two extended outages, or a chain.
+ """
+ rng = np.random.default_rng(seed)
+ resources = [
+ {"id": f"r{i}", "cleanup": int(rng.integers(0, 3)), "downtime": []}
+ for i in range(3)
+ ]
+ rows = []
+ start = 0
+ for ti in range(tasks):
+ resource = resources[ti % 3]
+ duration = int(rng.integers(1, 4))
+ count = (2, 3, 4)[ti % 3]
+ original = {"resource": resource["id"], "start": start}
+ universe = [
+ (r["id"], s)
+ for r in resources
+ for s in range(max(0, start - 3), start + 7)
+ if (r["id"], s) != (resource["id"], start)
+ ]
+ choices = rng.choice(len(universe), count - 1, replace=False)
+ options = [{**original, "cost": 0}] + [
+ {
+ "resource": universe[i][0],
+ "start": universe[i][1],
+ "cost": abs(universe[i][1] - start) + int(rng.integers(0, 4)),
+ }
+ for i in choices
+ ]
+ rows.append(
+ {
+ "id": f"t{ti}",
+ "group": f"g{ti % 2}",
+ "duration": duration,
+ "original": original,
+ "change_cost": int(rng.integers(1, 5)),
+ "options": options,
+ }
+ )
+ start += duration + resource["cleanup"] + int(rng.integers(0, 2))
+ for ti in (0, 1) if scenario == 1 else (0,):
+ task = rows[ti]
+ left = task["original"]["start"]
+ length = task["duration"] + resources[ti % 3]["cleanup"]
+ resources[ti % 3]["downtime"] = [
+ [left, left + (length + 2 if scenario == 1 else 1)]
+ ]
+ return {
+ "name": f"heterogeneous-n{tasks}-s{scenario}-seed{seed}",
+ "horizon": start + 10,
+ "resources": resources,
+ "tasks": rows,
+ "precedence": [[f"t{i}", f"t{i + 1}"] for i in range(tasks - 1)]
+ if scenario == 2
+ else [],
+ }
+
+
+def write_corpus(output: Path) -> None:
+ """Write all 36 registered instances, hashes and unchanged training budgets."""
+ output.mkdir(parents=True, exist_ok=True)
+ records = []
+ for tasks in (3, 4, 5):
+ for scenario in range(3):
+ for replicate in range(4):
+ seed = 2026092300 + tasks * 100 + scenario * 10 + replicate
+ raw = generate(tasks, scenario, seed)
+ name = f"n{tasks}-s{scenario}-r{replicate}.json"
+ content = json.dumps(raw, ensure_ascii=False, indent=2) + "\n"
+ (output / name).write_text(content, encoding="utf-8")
+ records.append(
+ {
+ "file": name,
+ "tasks": tasks,
+ "scenario": scenario,
+ "replicate": replicate,
+ "data_seed": seed,
+ "sha256": hashlib.sha256(content.encode()).hexdigest(),
+ }
+ )
+ manifest = {
+ "version": 2,
+ "generator_sha256": hashlib.sha256(Path(__file__).read_bytes()).hexdigest(),
+ "instances": records,
+ "optimization_seeds": list(range(10)),
+ "training": {"layers": 1, "shots": 512, "maxiter": 60, "restarts": 2},
+ "shots": [8, 16, 32, 64, 128, 512],
+ "selection": "all instances retained; no solver-based selection or tuning",
+ }
+ (output / "manifest.json").write_text(
+ json.dumps(manifest, indent=2) + "\n", encoding="utf-8"
+ )
+
+
+def main() -> None:
+ """Generate the separately versioned corpus without changing v1."""
+ parser = argparse.ArgumentParser(description=__doc__)
+ parser.add_argument(
+ "--output", type=Path, default=Path(__file__).parent / "data/corpus-v2"
+ )
+ write_corpus(parser.parse_args().output)
+
+
+if __name__ == "__main__":
+ main()
diff --git a/pyqpanda-algorithm/example/LabScheduling/matched_budget.py b/pyqpanda-algorithm/example/LabScheduling/matched_budget.py
new file mode 100644
index 00000000..7f7693ba
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/matched_budget.py
@@ -0,0 +1,326 @@
+"""Compare four scheduling paths under equal total sampling/training caps."""
+
+import argparse
+import hashlib
+import json
+import platform
+from collections import Counter
+from importlib.metadata import version
+from math import prod
+from pathlib import Path
+from time import perf_counter
+from typing import Any
+
+import numpy as np
+from benchmark_v2 import check_sample
+from pyqpanda_alg.LabScheduling import (
+ Model,
+ Reduction,
+ circuit_probabilities,
+ compile_qubo,
+ evaluate,
+ load_problem,
+ reduce_model,
+ solve_exact,
+ solve_qaoa,
+)
+from pyqpanda_alg.LabScheduling.metrics import distribution_metrics, hit_probability
+from pyqpanda_alg.LabScheduling.quantum import MAX_QUBITS
+from stress_benchmark import write_json
+
+HERE = Path(__file__).resolve().parent
+ROOT = HERE.parents[2]
+
+
+def allocate(total: int, count: int, minimum: int = 1) -> list[int]:
+ """Split a positive budget deterministically; never exceed the total cap."""
+ if any(type(v) is not int for v in (total, count, minimum)):
+ raise ValueError("budgets and counts must be integers")
+ if total < 1 or count < 0 or minimum < 1 or total < count * minimum:
+ raise ValueError("insufficient or invalid budget")
+ if not count:
+ return []
+ quotient, remainder = divmod(total, count)
+ return [quotient + int(i < remainder) for i in range(count)]
+
+
+def uniform(model: Model, seed: int, shots: int) -> dict[str, Any]:
+ """Sample one-hot schedules without repair or consulting an exact optimum."""
+ started = perf_counter()
+ rng = np.random.default_rng(np.random.SeedSequence([seed, 20260930]))
+ counts: Counter[str] = Counter()
+ best = None
+ if all(model.domains):
+ for _ in range(shots):
+ bits = [0] * len(model.variables)
+ for domain in model.domains:
+ bits[int(rng.choice(domain))] = 1
+ counts["".join(map(str, bits[::-1]))] += 1
+ row = evaluate(model, bits)
+ if best is None or (not row["feasible"], row["qubo_energy"], bits) < (
+ not best["feasible"],
+ best["qubo_energy"],
+ best["bits"],
+ ):
+ best = row
+ return {
+ "status": "infeasible_domain"
+ if best is None
+ else "feasible"
+ if best["feasible"]
+ else "no_feasible_sample",
+ "best": best,
+ **({"counts": dict(counts)} if best is not None else {}),
+ "shots": sum(counts.values()),
+ "seed": seed,
+ "circuit_evaluations": 0,
+ "runtime_seconds": perf_counter() - started,
+ }
+
+
+def components(
+ reduction: Reduction,
+ seed: int,
+ *,
+ quantum: bool,
+ shots: int = 512,
+ per_restart: int = 60,
+) -> dict[str, Any]:
+ """Divide a fixed total budget over exact components, then restore samples."""
+ started = perf_counter()
+ models = reduction.components
+ runs = []
+ best = None
+ allocations = []
+ if reduction.infeasible_task is not None:
+ status = "infeasible_propagation"
+ elif quantum and any(len(m.variables) > MAX_QUBITS for m in models):
+ status = "resource_limit"
+ else:
+ try:
+ sampled = allocate(shots, len(models))
+ iterations = (
+ allocate(per_restart, len(models), 6) if quantum else [0] * len(models)
+ )
+ except ValueError:
+ status = "budget_insufficient"
+ else:
+ seeds = (
+ [seed]
+ if len(models) == 1
+ else [
+ int(s.generate_state(1)[0])
+ for s in np.random.SeedSequence(seed).spawn(len(models))
+ ]
+ )
+ for model, child_seed, budget, maxiter in zip(
+ models, seeds, sampled, iterations, strict=True
+ ):
+ run = (
+ solve_qaoa(model, child_seed, shots=budget, maxiter=maxiter)
+ if quantum
+ else uniform(model, child_seed, budget)
+ )
+ check_sample(model, run)
+ runs.append(run)
+ allocations.append(
+ {
+ "shots": budget,
+ "maxiter_per_restart": maxiter,
+ "seed": child_seed,
+ }
+ )
+ best = reduction.restore([r["best"]["bits"] for r in runs])
+ status = (
+ "classical_propagation"
+ if not models
+ else "feasible"
+ if best["feasible"]
+ else "no_feasible_sample"
+ )
+ return {
+ "status": status,
+ "best": best,
+ "components": runs,
+ "allocations": allocations,
+ "shots": sum(r["shots"] for r in runs),
+ "circuit_evaluations": sum(r["circuit_evaluations"] for r in runs),
+ "runtime_seconds": perf_counter() - started,
+ }
+
+
+def joint_hit(probabilities: list[float], shots: int) -> float:
+ """Chance every component yields an optimum with a shared total shot cap."""
+ return prod(
+ hit_probability(p, s)
+ for p, s in zip(probabilities, allocate(shots, len(probabilities)), strict=True)
+ )
+
+
+def profile(model: Model, run: dict[str, Any]) -> dict[str, Any] | None:
+ """Certify all tied optima only after every solver has finished."""
+ if "parameters" not in run:
+ return None
+ result = distribution_metrics(
+ model, circuit_probabilities(model, run["parameters"])
+ )
+ return {
+ k: result[k]
+ for k in (
+ "exact_objective",
+ "optimal_count",
+ "combinations",
+ "optimal_probability",
+ "uniform_optimal_probability",
+ )
+ }
+
+
+def compare(model: Model, reduction: Reduction, seed: int) -> dict[str, Any]:
+ """Run four uncorrected samplers, then add certificates and budget audits."""
+ direct = solve_qaoa(model, seed=seed)
+ reduced = components(reduction, seed, quantum=True)
+ random_direct = uniform(model, seed, 512)
+ random_reduced = components(reduction, seed, quantum=False)
+ paths = {
+ "direct": direct,
+ "reduced": reduced,
+ "uniform_direct": random_direct,
+ "uniform_reduced": random_reduced,
+ }
+ for run in paths.values():
+ check_sample(model, run)
+ if run["circuit_evaluations"] > 120:
+ raise RuntimeError("training cap exceeded")
+ used = run.get("shots", 0)
+ if used > 512 or (run.get("counts") and sum(run["counts"].values()) != used):
+ raise RuntimeError("sampling cap violated")
+ started = perf_counter()
+ exact = solve_exact(model)
+ optimum = exact["best"]["objective"] if exact["best"] else None
+ direct_profile = profile(model, direct)
+ local = [
+ profile(m, r)
+ for m, r in zip(reduction.components, reduced["components"], strict=True)
+ ]
+ curves = []
+ if optimum is not None:
+ for shots in (8, 16, 32, 64, 128, 512):
+ curves.append(
+ {
+ "total_shots": shots,
+ "direct": hit_probability(
+ direct_profile["optimal_probability"], shots
+ ),
+ "uniform_direct": hit_probability(
+ direct_profile["uniform_optimal_probability"], shots
+ ),
+ "reduced": joint_hit(
+ [m["optimal_probability"] for m in local], shots
+ ),
+ "uniform_reduced": joint_hit(
+ [m["uniform_optimal_probability"] for m in local], shots
+ ),
+ }
+ )
+ return {
+ "seed": seed,
+ "paths": paths,
+ "exact_objective": optimum,
+ "absolute_gaps": {
+ key: run["best"]["objective"] - optimum
+ if optimum is not None and run["best"] and run["best"]["feasible"]
+ else None
+ for key, run in paths.items()
+ },
+ "direct_profile": direct_profile,
+ "component_profiles": local,
+ "conditional_hit_curve": curves,
+ "diagnostic_seconds": perf_counter() - started,
+ }
+
+
+def run(corpus: Path, output: Path) -> None:
+ """Execute every frozen input/seed; save all failures and source fingerprints."""
+ manifest_path = corpus / "manifest.json"
+ manifest = json.loads(manifest_path.read_text())
+ generator = HERE / "make_corpus_v2.py"
+ if (
+ hashlib.sha256(generator.read_bytes()).hexdigest()
+ != manifest["generator_sha256"]
+ ):
+ raise ValueError("frozen generator changed")
+ for item in manifest["instances"]:
+ if (
+ hashlib.sha256((corpus / item["file"]).read_bytes()).hexdigest()
+ != item["sha256"]
+ ):
+ raise ValueError(f"frozen input changed: {item['file']}")
+ import pyqpanda_alg.LabScheduling as package
+
+ output.mkdir(parents=True, exist_ok=True)
+ sources = [
+ Path(__file__),
+ HERE / "benchmark_v2.py",
+ HERE / "ablation.py",
+ HERE / "stress_benchmark.py",
+ generator,
+ ROOT / "Tutorials/LabScheduling/MATCHED_BUDGET_PROTOCOL.md",
+ *Path(package.__file__).parent.glob("*.py"),
+ ]
+ write_json(
+ output / "provenance.json",
+ {
+ "manifest": manifest,
+ "manifest_sha256": hashlib.sha256(manifest_path.read_bytes()).hexdigest(),
+ "sources": {
+ str(p.relative_to(ROOT)): hashlib.sha256(p.read_bytes()).hexdigest()
+ for p in sources
+ },
+ "python": platform.python_version(),
+ "platform": platform.platform(),
+ "packages": {
+ n: version(n) for n in ("numpy", "scipy", "pyqpanda3", "pyqpanda_alg")
+ },
+ "training": {
+ "layers": 1,
+ "restarts": 2,
+ "total_evaluation_cap": 120,
+ "total_shots": 512,
+ },
+ },
+ )
+ started = perf_counter()
+ count = 0
+ with (output / "runs.jsonl").open("w", encoding="utf-8") as stream:
+ for item in manifest["instances"]:
+ model = compile_qubo(load_problem(corpus / item["file"]))
+ reduction = reduce_model(model)
+ for seed in manifest["optimization_seeds"]:
+ row = {"instance": item["file"], **compare(model, reduction, seed)}
+ stream.write(
+ json.dumps(
+ row, ensure_ascii=False, allow_nan=False, separators=(",", ":")
+ )
+ + "\n"
+ )
+ count += 1
+ stream.flush()
+ print(item["file"], "complete", flush=True)
+ write_json(
+ output / "execution.json",
+ {"paired_records": count, "runtime_seconds": perf_counter() - started},
+ )
+
+
+def main() -> None:
+ """Run the fixed supplemental budget audit without modifying older archives."""
+ parser = argparse.ArgumentParser(description=__doc__)
+ parser.add_argument("--corpus", type=Path, default=HERE / "data/corpus-v2")
+ parser.add_argument("--output", type=Path, default=Path("reports/lab-matched"))
+ args = parser.parse_args()
+ run(args.corpus, args.output)
+
+
+if __name__ == "__main__":
+ main()
diff --git a/pyqpanda-algorithm/example/LabScheduling/plot_results.py b/pyqpanda-algorithm/example/LabScheduling/plot_results.py
new file mode 100644
index 00000000..9ad1438e
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/plot_results.py
@@ -0,0 +1,132 @@
+"""Render a shareable SVG from saved measurements, without rerunning a solver."""
+
+import argparse
+import csv
+import hashlib
+import json
+from pathlib import Path
+
+import matplotlib
+
+matplotlib.use("Agg")
+import matplotlib.pyplot as plt
+import numpy as np
+
+
+def main() -> None:
+ """Plot all seeds' feasibility and the medium XY seed-7 schedule."""
+ parser = argparse.ArgumentParser(description=__doc__)
+ parser.add_argument("results", type=Path)
+ args = parser.parse_args()
+ with (args.results / "summary.csv").open(encoding="utf-8") as stream:
+ rows = list(csv.DictReader(stream))
+ report = json.loads((args.results / "medium-xy-7.json").read_text(encoding="utf-8"))
+ source = Path(__file__).parent / "data" / "medium.json"
+ if hashlib.sha256(source.read_bytes()).hexdigest() != report["input_sha256"]:
+ raise ValueError("medium input changed since these results were recorded")
+ problem = json.loads(source.read_text(encoding="utf-8"))
+ seeds = ", ".join(dict.fromkeys(row["seed"] for row in rows))
+ best = report["quantum"]["best"]
+ fig, axes = plt.subplots(1, 2, figsize=(12, 4.6), layout="constrained")
+ for i, dataset in enumerate(("simple", "medium")):
+ for j, mixer in enumerate(("xy", "x")):
+ values = [
+ float(r["feasible_probability"])
+ for r in rows
+ if r["dataset"] == dataset and r["mixer"] == mixer
+ ]
+ axes[0].bar(
+ i + (j - 0.5) * 0.3,
+ np.mean(values),
+ width=0.27,
+ color=("#167d9a", "#c67944")[j],
+ label=("XY", "X")[j] if i == 0 else None,
+ )
+ axes[0].scatter(
+ np.full(len(values), i + (j - 0.5) * 0.3),
+ values,
+ color="#152536",
+ s=18,
+ zorder=3,
+ )
+ uniform = float(
+ next(r for r in rows if r["dataset"] == dataset)[
+ "uniform_feasible_probability"
+ ]
+ )
+ axes[0].hlines(
+ uniform,
+ i - 0.4,
+ i + 0.4,
+ color="#586363",
+ linestyles="--",
+ label="Uniform one-hot" if i == 0 else None,
+ )
+ axes[0].set(
+ xticks=[0, 1],
+ xticklabels=["Simple (6 qubits)", "Medium (12 qubits)"],
+ ylabel="Feasible Born probability",
+ ylim=(0, 1),
+ title=f"Seeds: {seeds}; p={report['quantum']['layers']}, "
+ f"{report['quantum']['shots']} shots",
+ )
+ axes[0].legend(frameon=False)
+ axes[0].grid(axis="y", alpha=0.15)
+ resource_y = {"spectrometer": 1, "microscope": 0}
+ for row in report["quantum"]["best"]["schedule"]:
+ y = resource_y[row["resource"]]
+ color = "#167d9a" if row["group"] == "group-A" else "#c67944"
+ axes[1].barh(
+ y, row["end"] - row["start"], left=row["start"], height=0.5, color=color
+ )
+ axes[1].barh(
+ y,
+ row["reserved_end"] - row["end"],
+ left=row["end"],
+ height=0.5,
+ color=color,
+ alpha=0.25,
+ hatch="///",
+ )
+ axes[1].text(
+ (row["start"] + row["end"]) / 2,
+ y,
+ row["task"],
+ ha="center",
+ va="center",
+ color="white",
+ fontsize=9,
+ )
+ for resource in problem["resources"]:
+ for start, end in resource.get("downtime", []):
+ axes[1].barh(
+ resource_y[resource["id"]],
+ end - start,
+ left=start,
+ height=0.65,
+ color="#cccccc",
+ hatch="xx",
+ )
+ axes[1].set(
+ yticks=[0, 1],
+ yticklabels=["Microscope", "Spectrometer"],
+ xticks=range(13),
+ xlim=(0, 12),
+ xlabel="Time slot (hatched tail = cleanup)",
+ title=f"Medium / XY / seed 7: cost {best['objective']}, "
+ f"violations {best['violation_count']}",
+ )
+ axes[1].grid(axis="x", alpha=0.15)
+ matplotlib.rcParams["svg.hashsalt"] = "lab-reschedule"
+ matplotlib.rcParams["svg.fonttype"] = "none"
+ output = args.results / "overview.svg"
+ fig.savefig(output, metadata={"Date": None})
+ output.write_text(
+ "\n".join(line.rstrip() for line in output.read_text().splitlines()) + "\n",
+ encoding="utf-8",
+ )
+ plt.close(fig)
+
+
+if __name__ == "__main__":
+ main()
diff --git a/pyqpanda-algorithm/example/LabScheduling/requirements-dev.txt b/pyqpanda-algorithm/example/LabScheduling/requirements-dev.txt
new file mode 100644
index 00000000..3d7b61be
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/requirements-dev.txt
@@ -0,0 +1,9 @@
+# Upstream eager imports currently need these undeclared runtime dependencies.
+pandas
+scikit-learn
+# Application verification tools.
+pytest
+pytest-cov
+pytest-timeout
+allure-pytest
+ruff
diff --git a/pyqpanda-algorithm/example/LabScheduling/sensitivity.py b/pyqpanda-algorithm/example/LabScheduling/sensitivity.py
new file mode 100644
index 00000000..0fee2326
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/sensitivity.py
@@ -0,0 +1,306 @@
+"""Frozen change-cost analysis for the existing three-booking tradeoff demo."""
+
+import copy
+import csv
+import hashlib
+import json
+from itertools import product
+from pathlib import Path
+from typing import Any
+
+import matplotlib
+
+matplotlib.use("Agg")
+import matplotlib.pyplot as plt
+from pyqpanda_alg.LabScheduling import Problem, load_problem, validate_assignment
+from pyqpanda_alg.LabScheduling import report as report_module
+from stress_benchmark import write_json
+from summarize_matched import without_timing
+
+HERE = Path(__file__).resolve().parent
+
+
+def weighted_input(base: dict[str, Any], weight: int) -> dict[str, Any]:
+ """Copy an input and change only the uniform nonnegative integer change cost."""
+ if type(weight) is not int or not 0 <= weight <= 1_000_000:
+ raise ValueError("weight must be an integer in [0, 1000000]")
+ result = copy.deepcopy(base)
+ for task in result["tasks"]:
+ task["change_cost"] = weight
+ Problem.from_dict(result)
+ return result
+
+
+def feasible_schedules(problem: Problem) -> list[dict[str, Any]]:
+ """Enumerate raw choices with the independent semantic checker for this demo."""
+ combinations = 1
+ for task in problem.tasks:
+ combinations *= len(task.options)
+ if combinations > 1_000_000:
+ raise ValueError("sensitivity enumeration is limited to one million choices")
+ rows = []
+ for choices in product(*(range(len(t.options)) for t in problem.tasks)):
+ row = validate_assignment(problem, choices)
+ if row["feasible"]:
+ rows.append(row)
+ return rows
+
+
+def sample_metrics(
+ report: dict[str, Any], alternatives: list[dict[str, Any]]
+) -> dict[str, Any]:
+ """Accept any tied optimum; keep infeasible and nonoptimal samples unmodified."""
+ best = report["quantum"]["best"]
+ feasible = best is not None and best["feasible"]
+ optimum = min(row["objective"] for row in alternatives)
+ business = report["quantum"].get("business_metrics") if feasible else None
+ if feasible and business is None:
+ raise ValueError("feasible sample lacks a raw-input business audit")
+ gap = best["objective"] - optimum if feasible else None
+ if gap != report["absolute_gap"] or gap is not None and gap < 0:
+ raise ValueError("sample gap contradicts independent enumeration")
+ if feasible:
+ matching = [r for r in alternatives if r["choices"] == business["choices"]]
+ if len(matching) != 1 or matching[0] != business:
+ raise ValueError("sample business audit differs from raw enumeration")
+ return {
+ "seed": report["quantum"]["seed"],
+ "status": report["status"],
+ "objective": best["objective"] if feasible else None,
+ "violation_count": best["violation_count"] if best is not None else None,
+ "preference_cost": business["preference_cost"] if business else None,
+ "change_cost": business["change_cost"] if business else None,
+ "changed_tasks": business["changed_tasks"] if business else None,
+ "choices": business["choices"] if business else None,
+ "absolute_gap": gap,
+ "optimal": feasible and gap == 0,
+ "runtime_seconds": report["runtime_seconds"],
+ }
+
+
+def verify_replay(original: Path, current: dict[str, Any]) -> None:
+ """Reject provenance or sample changes, normalizing both sides through JSON."""
+ recorded = json.loads(original.read_text(encoding="utf-8"))
+ normalized = json.loads(json.dumps(current, allow_nan=False))
+ if without_timing(recorded) != without_timing(normalized):
+ raise ValueError("sensitivity replay differs beyond timing")
+
+
+def _plot(rows: list[dict[str, Any]], output: Path) -> None:
+ """Plot every certified cost line and actual gaps without hiding failures."""
+ matplotlib.rcParams["svg.hashsalt"] = "lab-sensitivity"
+ matplotlib.rcParams["svg.fonttype"] = "none"
+ fig, (costs, gaps) = plt.subplots(1, 2, figsize=(11, 4), layout="constrained")
+ weights = [row["weight"] for row in rows]
+ for index in range(len(rows[0]["alternatives"])):
+ costs.plot(
+ weights,
+ [r["alternatives"][index]["objective"] for r in rows],
+ color="#bbbbbb",
+ linewidth=1,
+ alpha=0.6,
+ )
+ costs.plot(weights, [6 + 3 * w for w in weights], label="Shift all: 6 + 3w")
+ costs.plot(weights, [12 + w for w in weights], label="Backup: 12 + w")
+ costs.scatter(
+ weights,
+ [r["optimum"] for r in rows],
+ marker="*",
+ s=80,
+ color="black",
+ label="Certified optimum",
+ zorder=4,
+ )
+ costs.axvline(3, linestyle=":", color="gray")
+ costs.set(
+ xlabel="Change cost w per changed booking",
+ ylabel="Total cost (points)",
+ title="All nine feasible schedules; synthetic data",
+ )
+ costs.legend(fontsize=8)
+ for index, marker in enumerate(("o", "x", "+")):
+ samples = [r["samples"][index] for r in rows]
+ gaps.scatter(
+ [
+ w
+ for w, s in zip(weights, samples, strict=True)
+ if s["absolute_gap"] is not None
+ ],
+ [s["absolute_gap"] for s in samples if s["absolute_gap"] is not None],
+ marker=marker,
+ s=70,
+ label=f"Seed {samples[0]['seed']}",
+ )
+ failures = [
+ (r["weight"], s["seed"])
+ for r in rows
+ for s in r["samples"]
+ if s["absolute_gap"] is None
+ ]
+ gaps.set(
+ xlabel="Change cost w per changed booking",
+ ylabel="Sampled optimality gap",
+ title="Actual QAOA samples (overlapping points retained)",
+ )
+ gaps.text(
+ 0.02,
+ 0.96,
+ f"No feasible sample: {failures or 'none'}",
+ transform=gaps.transAxes,
+ va="top",
+ fontsize=8,
+ )
+ gaps.legend(loc="lower right", fontsize=8)
+ for ax in (costs, gaps):
+ ax.set_xticks(weights)
+ ax.grid(alpha=0.2)
+ fig.savefig(output / "sensitivity.svg", metadata={"Date": None})
+ plt.close(fig)
+
+
+def run_sensitivity(
+ output: Path, *, verify_against: Path | None = None
+) -> dict[str, Any]:
+ """Run the frozen 21 experiments, certify all choices, and save full evidence."""
+ config_path = HERE / "data/sensitivity.json"
+ config = json.loads(config_path.read_text(encoding="utf-8"))
+ source = HERE / "data" / config["base_input"]
+ snapshot = source.read_bytes()
+ if hashlib.sha256(snapshot).hexdigest() != config["base_sha256"]:
+ raise ValueError("sensitivity base input changed after protocol freeze")
+ base = json.loads(snapshot)
+ inputs = output / "inputs"
+ inputs.mkdir(parents=True, exist_ok=True)
+ rows, records, input_hashes = [], [], []
+ choices_reference = None
+ for weight in config["weights"]:
+ path = inputs / f"w{weight}.json"
+ write_json(path, weighted_input(base, weight))
+ reports = [
+ report_module.run_experiment(path, seed=seed, **config["solver"])
+ for seed in config["seeds"]
+ ]
+ # Enumeration is downstream of all actual quantum runs for this input.
+ alternatives = feasible_schedules(load_problem(path))
+ choices = [row["choices"] for row in alternatives]
+ if (
+ not alternatives
+ or choices_reference is not None
+ and choices != choices_reference
+ ):
+ raise RuntimeError("changing costs changed the feasible schedule set")
+ choices_reference = choices
+ optimum = min(row["objective"] for row in alternatives)
+ optimal = [row for row in alternatives if row["objective"] == optimum]
+ samples = []
+ for report in reports:
+ if (
+ report["exact"]["best"]["objective"] != optimum
+ or report["milp"]["status"] != "optimal"
+ or report["milp"]["best"]["objective"] != optimum
+ or report["exact"]["feasible_count"] != len(alternatives)
+ ):
+ raise RuntimeError("independent certificates disagree")
+ for component in report["quantum"]["components"]:
+ key = "".join(map(str, component["best"]["bits"][::-1]))
+ if component["counts"].get(key, 0) <= 0:
+ raise RuntimeError("chosen quantum result was not sampled")
+ samples.append(sample_metrics(report, alternatives))
+ records.append(
+ {"weight": weight, "seed": report["quantum"]["seed"], "report": report}
+ )
+ rows.append(
+ {
+ "weight": weight,
+ "optimum": optimum,
+ "optimal_choices": [row["choices"] for row in optimal],
+ "optimal_changed_tasks": sorted(
+ {row["changed_tasks"] for row in optimal}
+ ),
+ "alternatives": alternatives,
+ "samples": samples,
+ }
+ )
+ input_hashes.append(
+ {
+ "weight": weight,
+ "file": f"inputs/{path.name}",
+ "sha256": reports[0]["input_sha256"],
+ }
+ )
+ package = Path(report_module.__file__).parent
+ files = {f"LabScheduling/{p.name}": p for p in sorted(package.glob("*.py"))}
+ files.update(
+ {
+ f"example/{name}": HERE / name
+ for name in (
+ "sensitivity.py",
+ "tradeoff_demo.py",
+ "stress_benchmark.py",
+ "summarize_matched.py",
+ )
+ }
+ )
+ files["protocol"] = (
+ HERE.parents[2] / "Tutorials/LabScheduling/SENSITIVITY_PROTOCOL.md"
+ )
+ files["configuration"] = config_path
+ result = {
+ "config": config,
+ "input_sha256": input_hashes,
+ "source_sha256": {
+ name: hashlib.sha256(p.read_bytes()).hexdigest()
+ for name, p in files.items()
+ },
+ "environment": records[0]["report"]["environment"],
+ "weights": rows,
+ "runs": records,
+ }
+ if verify_against:
+ verify_replay(verify_against, result)
+ write_json(
+ output / "replay.json",
+ {
+ "identical_except_timing": True,
+ "weights": len(rows),
+ "runs": len(records),
+ },
+ )
+ # Compact full JSON avoids duplicating thousands of formatted optimizer lines.
+ (output / "results.json").write_text(
+ json.dumps(result, ensure_ascii=False, allow_nan=False, separators=(",", ":"))
+ + "\n",
+ encoding="utf-8",
+ )
+ summaries = [
+ {
+ "weight": row["weight"],
+ "certified_optimum": row["optimum"],
+ "optimal_choices": json.dumps(row["optimal_choices"]),
+ "optimal_changed_tasks": json.dumps(row["optimal_changed_tasks"]),
+ "feasible_runs": sum(s["absolute_gap"] is not None for s in row["samples"]),
+ "optimal_runs": sum(s["optimal"] for s in row["samples"]),
+ "sampled_objectives": json.dumps([s["objective"] for s in row["samples"]]),
+ "sampled_gaps": json.dumps([s["absolute_gap"] for s in row["samples"]]),
+ }
+ for row in rows
+ ]
+ with (output / "summary.csv").open("w", encoding="utf-8", newline="") as stream:
+ writer = csv.DictWriter(
+ stream, fieldnames=list(summaries[0]), lineterminator="\n"
+ )
+ writer.writeheader()
+ writer.writerows(summaries)
+ _plot(rows, output)
+ print(
+ json.dumps(
+ {
+ "sensitivity_runs": len(records),
+ "decisions": summaries,
+ "output": str(output),
+ },
+ ensure_ascii=False,
+ indent=2,
+ )
+ )
+ return result
diff --git a/pyqpanda-algorithm/example/LabScheduling/stress_benchmark.py b/pyqpanda-algorithm/example/LabScheduling/stress_benchmark.py
new file mode 100644
index 00000000..92b7a6c9
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/stress_benchmark.py
@@ -0,0 +1,208 @@
+"""Run the frozen corpus without tuning/filtering; save every optimizer outcome."""
+
+import argparse
+import csv
+import hashlib
+import json
+import platform
+import resource
+from importlib.metadata import version
+from pathlib import Path
+from time import perf_counter
+from typing import Any
+
+import numpy as np
+from pyqpanda_alg.LabScheduling import (
+ circuit_probabilities,
+ compile_qubo,
+ evaluate,
+ load_problem,
+ reduce_model,
+ solve_exact,
+ solve_milp,
+ solve_qaoa,
+)
+from pyqpanda_alg.LabScheduling.classical import solve_greedy
+from pyqpanda_alg.LabScheduling.metrics import circuit_resources, distribution_metrics
+
+
+def write_json(path: Path, value: Any) -> None:
+ """Persist finite JSON with a final newline."""
+ path.write_text(
+ json.dumps(value, ensure_ascii=False, allow_nan=False, indent=2) + "\n",
+ encoding="utf-8",
+ )
+
+
+def run(corpus: Path, output: Path, split: str) -> None:
+ """Train 10 seeds per registered instance and audit fixed-parameter equivalence."""
+ output.mkdir(parents=True, exist_ok=True)
+ manifest = json.loads((corpus / "manifest.json").read_text())
+ source = Path(__file__).with_name("make_corpus.py")
+ if hashlib.sha256(source.read_bytes()).hexdigest() != manifest["generator_sha256"]:
+ raise ValueError("generator changed after corpus freeze")
+ for row in manifest["instances"]:
+ if (
+ hashlib.sha256((corpus / row["file"]).read_bytes()).hexdigest()
+ != row["sha256"]
+ ):
+ raise ValueError(f"input hash mismatch: {row['file']}")
+ started = perf_counter()
+ script_hash = hashlib.sha256(Path(__file__).read_bytes()).hexdigest()
+ write_json(
+ output / "provenance.json",
+ {
+ "manifest": manifest,
+ "split": split,
+ "benchmark_sha256": script_hash,
+ "python": platform.python_version(),
+ "platform": platform.platform(),
+ "packages": {
+ n: version(n) for n in ("numpy", "scipy", "pyqpanda3", "pyqpanda_alg")
+ },
+ "source_hashes": {
+ p.name: hashlib.sha256(p.read_bytes()).hexdigest()
+ for p in Path(
+ __import__(
+ "pyqpanda_alg.LabScheduling", fromlist=["__file__"]
+ ).__file__
+ ).parent.glob("*.py")
+ },
+ },
+ )
+ rows = []
+ for spec in manifest["instances"]:
+ if spec["split"] != split:
+ continue
+ problem = load_problem(corpus / spec["file"])
+ model = compile_qubo(problem)
+ exact, oracle = solve_exact(model), solve_milp(problem)
+ if exact["status"] != oracle["status"] or (
+ exact["best"] and exact["best"]["objective"] != oracle["best"]["objective"]
+ ):
+ raise RuntimeError("independent oracle disagreement")
+ greedy = solve_greedy(model)
+ for seed in manifest["optimization_seeds"]:
+ quantum = solve_qaoa(model, seed=seed, **manifest["training"])
+ diagnostics_started = perf_counter()
+ probabilities = circuit_probabilities(model, quantum["parameters"])
+ full = circuit_probabilities(
+ model, quantum["parameters"], phase_mode="full"
+ )
+ error = float(np.max(np.abs(probabilities - full)))
+ if error > 1e-10:
+ raise RuntimeError("phase equivalence failed")
+ metrics = distribution_metrics(model, probabilities)
+ samples = []
+ for shots in manifest["shots"]:
+ rng = np.random.default_rng(
+ np.random.SeedSequence([seed, shots, 20260928])
+ )
+ # Fresh samples; initialization and training RNG streams are not reused.
+ draws = rng.choice(len(probabilities), size=shots, p=probabilities)
+ candidates = [
+ evaluate(
+ model, [(int(i) >> j) & 1 for j in range(len(model.variables))]
+ )
+ for i in set(draws)
+ ]
+ feasible = [r["objective"] for r in candidates if r["feasible"]]
+ uniform = []
+ for _ in range(shots):
+ bits = [0] * len(model.variables)
+ for domain in model.domains:
+ bits[int(rng.choice(domain))] = 1
+ candidate = evaluate(model, bits)
+ if candidate["feasible"]:
+ uniform.append(candidate["objective"])
+ samples.append(
+ {
+ "shots": shots,
+ "quantum_objective": min(feasible, default=None),
+ "uniform_objective": min(uniform, default=None),
+ }
+ )
+ gates = circuit_resources(model, quantum["parameters"])
+ record = {
+ "input": spec,
+ "model": model.audit(),
+ "quantum": quantum,
+ "metrics": metrics,
+ "raw_milp": oracle,
+ "exact": exact,
+ "greedy": greedy,
+ "resources": gates,
+ "phase_max_probability_error": error,
+ "samples": samples,
+ "reduction": reduce_model(model).audit(),
+ "diagnostic_seconds": perf_counter() - diagnostics_started,
+ }
+ name = f"{Path(spec['file']).stem}-seed{seed}"
+ write_json(output / f"{name}.json", record)
+ rows.append(
+ {
+ "instance": spec["file"],
+ "seed": seed,
+ "qubits": len(model.variables),
+ "conflicts": len(model.conflicts),
+ "exact_status": exact["status"],
+ "exact_objective": metrics["exact_objective"],
+ "quantum_objective": quantum["best"]["objective"],
+ "greedy_objective": greedy["best"]["objective"]
+ if greedy["best"]
+ else None,
+ "p_opt": metrics["optimal_probability"],
+ "p_feasible": metrics["feasible_probability"],
+ "uniform_p_opt": metrics["uniform_optimal_probability"],
+ "hit16": metrics["hit_curve"][1]["quantum"],
+ "uniform_hit16": metrics["hit_curve"][1]["uniform"],
+ "cnot_full": gates["full"]["cnot"],
+ "cnot_auto": gates["auto"]["cnot"],
+ "depth_full": gates["full"]["depth"],
+ "depth_auto": gates["auto"]["depth"],
+ "phase_max_error": error,
+ "evaluations": quantum["circuit_evaluations"],
+ "quantum_seconds": quantum["runtime_seconds"],
+ "milp_seconds": oracle["runtime_seconds"],
+ "exact_seconds": exact["runtime_seconds"],
+ }
+ )
+ print(
+ name,
+ quantum["status"],
+ f"p_opt={metrics['optimal_probability']:.5f}",
+ flush=True,
+ )
+ with (output / "summary.csv").open("w", newline="", encoding="utf-8") as stream:
+ writer = csv.DictWriter(stream, fieldnames=list(rows[0]), lineterminator="\n")
+ writer.writeheader()
+ writer.writerows(rows)
+ write_json(
+ output / "execution.json",
+ {
+ "records": len(rows),
+ "runtime_seconds": perf_counter() - started,
+ "peak_process_rss_kib_linux": resource.getrusage(
+ resource.RUSAGE_SELF
+ ).ru_maxrss,
+ "rss_scope": "whole process high-water mark on Linux; not per circuit",
+ },
+ )
+
+
+def main() -> None:
+ """Run development separately; evaluation uses the same frozen training budget."""
+ parser = argparse.ArgumentParser(description=__doc__)
+ parser.add_argument(
+ "--corpus", type=Path, default=Path(__file__).parent / "data/corpus"
+ )
+ parser.add_argument("--output", type=Path, default=Path("reports/lab-enhanced"))
+ parser.add_argument(
+ "--split", choices=("development", "evaluation"), default="evaluation"
+ )
+ args = parser.parse_args()
+ run(args.corpus, args.output, args.split)
+
+
+if __name__ == "__main__":
+ main()
diff --git a/pyqpanda-algorithm/example/LabScheduling/summarize_benchmark.py b/pyqpanda-algorithm/example/LabScheduling/summarize_benchmark.py
new file mode 100644
index 00000000..1b4e15e5
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/summarize_benchmark.py
@@ -0,0 +1,212 @@
+"""Archive all frozen-corpus runs and render instance-weighted evidence plots."""
+
+import argparse
+import json
+import shutil
+from collections import defaultdict
+from itertools import combinations
+from pathlib import Path
+from typing import Any
+
+import matplotlib
+
+matplotlib.use("Agg")
+import matplotlib.pyplot as plt
+import numpy as np
+
+
+def summarize(source: Path, output: Path) -> None:
+ """Preserve failures; aggregate optimization seeds within each instance first."""
+ provenance = json.loads((source / "provenance.json").read_text())
+ records = []
+ groups: dict[str, list[dict[str, Any]]] = defaultdict(list)
+ for instance in provenance["manifest"]["instances"]:
+ if instance["split"] != provenance["split"]:
+ continue
+ for seed in provenance["manifest"]["optimization_seeds"]:
+ name = f"{Path(instance['file']).stem}-seed{seed}.json"
+ record = json.loads((source / name).read_text())
+ records.append(record)
+ groups[instance["file"]].append(record)
+ output.mkdir(parents=True, exist_ok=True)
+ for name in ("summary.csv", "provenance.json", "execution.json"):
+ shutil.copyfile(source / name, output / name)
+ with (output / "runs.jsonl").open("w", encoding="utf-8") as stream:
+ for record in records:
+ stream.write(
+ json.dumps(
+ record, ensure_ascii=False, allow_nan=False, separators=(",", ":")
+ )
+ + "\n"
+ )
+ aggregate = []
+ for name, group in groups.items():
+ first = group[0]
+ p = [r["metrics"]["optimal_probability"] for r in group]
+ baseline = first["metrics"]["uniform_optimal_probability"]
+ aggregate.append(
+ {
+ "instance": name,
+ "status": first["exact"]["status"],
+ "qubits": first["model"]["qubits"],
+ "candidate_conflict_density": len(first["model"]["conflicts"])
+ / sum(
+ len(a) * len(b)
+ for a, b in combinations(first["model"]["domains"], 2)
+ ),
+ "mean_p_opt": float(np.mean(p)),
+ "min_p_opt": min(p),
+ "max_p_opt": max(p),
+ "uniform_p_opt": baseline,
+ "seeds_better_than_uniform": sum(
+ value > baseline + 1e-12 for value in p
+ ),
+ "cnot_full": first["resources"]["full"]["cnot"],
+ "cnot_auto": first["resources"]["auto"]["cnot"],
+ "depth_full": first["resources"]["full"]["depth"],
+ "depth_auto": first["resources"]["auto"]["depth"],
+ "mean_training_seconds": float(
+ np.mean([r["quantum"]["runtime_seconds"] for r in group])
+ ),
+ "milp_seconds": first["raw_milp"]["runtime_seconds"],
+ }
+ )
+ (output / "aggregate.json").write_text(json.dumps(aggregate, indent=2) + "\n")
+ md = [
+ "# 冻结语料逐实例汇总",
+ "",
+ "完整训练记录见 runs.jsonl,每行一次训练;包含全部不可行实例。",
+ "",
+ "| 实例 | 状态 | 平均/最差 p_opt | 均匀 p_opt | 胜出种子/10 | CNOT 原始→精简 |",
+ "|---|---|---|---|---|---|",
+ ]
+ for row in aggregate:
+ md.append(
+ f"| {row['instance']} | {row['status']} | "
+ f"{row['mean_p_opt']:.6f} / {row['min_p_opt']:.6f} | "
+ f"{row['uniform_p_opt']:.6f} | {row['seeds_better_than_uniform']} | "
+ f"{row['cnot_full']} → {row['cnot_auto']} |"
+ )
+ (output / "SUMMARY.md").write_text("\n".join(md) + "\n", encoding="utf-8")
+ matplotlib.rcParams["svg.hashsalt"] = "lab-enhancement-v1"
+ matplotlib.rcParams["svg.fonttype"] = "none"
+ labels = [f"q{r['qubits']}/d{i % 3}" for i, r in enumerate(aggregate)]
+ x = np.arange(len(labels))
+ fig, ax = plt.subplots(figsize=(10, 4), layout="constrained")
+ ax.bar(
+ x - 0.2,
+ [r["cnot_full"] for r in aggregate],
+ 0.4,
+ label="Full phase",
+ color="#b47750",
+ )
+ ax.bar(
+ x + 0.2,
+ [r["cnot_auto"] for r in aggregate],
+ 0.4,
+ label="Simplified XY",
+ color="#167d9a",
+ )
+ ax.set(
+ xticks=x,
+ xticklabels=labels,
+ ylabel="Native CNOT operations",
+ title="Same trained parameters; p=1; all 12 registered instances",
+ )
+ ax.legend(frameon=False)
+ fig.savefig(output / "resources.svg", metadata={"Date": None})
+ plt.close(fig)
+ feasible_groups = [
+ g for g in groups.values() if g[0]["exact"]["status"] == "optimal"
+ ]
+ budgets = provenance["manifest"]["shots"]
+ quantum, uniform, observed_q, observed_u = [], [], [], []
+ for i, _shots in enumerate(budgets):
+ quantum.append(
+ np.mean(
+ [
+ np.mean([r["metrics"]["hit_curve"][i]["quantum"] for r in g])
+ for g in feasible_groups
+ ]
+ )
+ )
+ uniform.append(
+ np.mean(
+ [g[0]["metrics"]["hit_curve"][i]["uniform"] for g in feasible_groups]
+ )
+ )
+ for target, key in (
+ (observed_q, "quantum_objective"),
+ (observed_u, "uniform_objective"),
+ ):
+ target.append(
+ np.mean(
+ [
+ np.mean(
+ [
+ r["samples"][i][key] == r["metrics"]["exact_objective"]
+ for r in g
+ ]
+ )
+ for g in feasible_groups
+ ]
+ )
+ )
+ fig, ax = plt.subplots(figsize=(8, 4), layout="constrained")
+ ax.plot(
+ budgets, quantum, "o-", label="XY: analytic after training", color="#167d9a"
+ )
+ ax.plot(budgets, uniform, "o--", label="Uniform one-hot: analytic", color="#b47750")
+ ax.scatter(
+ budgets,
+ observed_q,
+ marker="x",
+ label="XY: independent sample runs",
+ color="#167d9a",
+ )
+ ax.scatter(
+ budgets, observed_u, marker="+", label="Uniform: sample runs", color="#b47750"
+ )
+ ax.set(
+ xscale="log",
+ xticks=budgets,
+ xticklabels=budgets,
+ ylim=(0, 1.03),
+ xlabel="Shots (training cost excluded)",
+ ylabel="At least one optimum",
+ title=(
+ f"Equal weight over {len(feasible_groups)} feasible instances; "
+ "10 seeds each"
+ ),
+ )
+ ax.legend(frameon=False, fontsize=9)
+ ax.grid(alpha=0.15)
+ fig.savefig(output / "hit-curves.svg", metadata={"Date": None})
+ plt.close(fig)
+ (output / "hit-curves.json").write_text(
+ json.dumps(
+ {
+ "shots": budgets,
+ "analytic_xy": quantum,
+ "analytic_uniform": uniform,
+ "observed_xy": observed_q,
+ "observed_uniform": observed_u,
+ "aggregation": "seed mean within instance, then equal instance mean",
+ },
+ indent=2,
+ )
+ + "\n"
+ )
+
+
+def main() -> None:
+ """Produce reviewable plots and a single lossless JSONL archive."""
+ parser = argparse.ArgumentParser(description=__doc__)
+ parser.add_argument("source", type=Path)
+ parser.add_argument("--output", type=Path, default=Path("reports/lab-evidence"))
+ args = parser.parse_args()
+ summarize(args.source, args.output)
+
+
+if __name__ == "__main__":
+ main()
diff --git a/pyqpanda-algorithm/example/LabScheduling/summarize_matched.py b/pyqpanda-algorithm/example/LabScheduling/summarize_matched.py
new file mode 100644
index 00000000..7fc41b66
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/summarize_matched.py
@@ -0,0 +1,226 @@
+"""Summarize every matched-budget record, keeping classical-only cases separate."""
+
+import argparse
+import csv
+import json
+from collections import Counter
+from pathlib import Path
+from statistics import mean
+from typing import Any
+
+from stress_benchmark import write_json
+
+PATHS = ("direct", "reduced", "uniform_direct", "uniform_reduced")
+
+
+def without_timing(value: Any) -> Any:
+ """Exclude only timing fields; preserve parameters, counts and all failures."""
+ if isinstance(value, dict):
+ return {
+ key: without_timing(item)
+ for key, item in value.items()
+ if not key.endswith("_seconds")
+ }
+ if isinstance(value, list):
+ return [without_timing(item) for item in value]
+ return value
+
+
+def verify_replay(original: Path, replay: Path) -> None:
+ """Reject environment/source changes or any non-timing record discrepancy."""
+ left_provenance = json.loads((original / "provenance.json").read_text())
+ right_provenance = json.loads((replay / "provenance.json").read_text())
+ if left_provenance != right_provenance:
+ raise ValueError("replay provenance changed")
+ left = [
+ json.loads(line) for line in (original / "runs.jsonl").read_text().splitlines()
+ ]
+ right = [
+ json.loads(line) for line in (replay / "runs.jsonl").read_text().splitlines()
+ ]
+ if without_timing(left) != without_timing(right):
+ raise ValueError("replay records differ beyond timing fields")
+ write_json(
+ original / "replay.json",
+ {
+ "records_compared": len(left),
+ "identical_except_timing": True,
+ "excluded_fields": "only keys ending in _seconds, recursively",
+ "replay_execution": json.loads((replay / "execution.json").read_text()),
+ },
+ )
+
+
+def summarize(folder: Path) -> None:
+ """Write instance-first summaries and conditional total-shot hit curves."""
+ records = [
+ json.loads(line) for line in (folder / "runs.jsonl").read_text().splitlines()
+ ]
+ manifest = json.loads((folder / "provenance.json").read_text())["manifest"]
+ expected = {
+ (item["file"], seed)
+ for item in manifest["instances"]
+ for seed in manifest["optimization_seeds"]
+ }
+ if (
+ len(records) != len(expected)
+ or {(r["instance"], r["seed"]) for r in records} != expected
+ ):
+ raise ValueError("missing, duplicate or unexpected instance/seed record")
+ rows = []
+ quantum_groups = []
+ for item in manifest["instances"]:
+ group = [r for r in records if r["instance"] == item["file"]]
+ first = group[0]
+ category = (
+ "infeasible"
+ if first["exact_objective"] is None
+ else "classical_only"
+ if first["paths"]["reduced"]["status"] == "classical_propagation"
+ else "quantum_required"
+ )
+ if category == "quantum_required":
+ quantum_groups.append(group)
+ row: dict[str, Any] = {
+ "instance": item["file"],
+ "category": category,
+ "optimum": first["exact_objective"],
+ }
+ for path in PATHS:
+ row[f"{path}_optimal_seeds"] = sum(
+ r["absolute_gaps"][path] == 0 for r in group
+ )
+ row[f"{path}_feasible_seeds"] = sum(
+ bool(r["paths"][path]["best"] and r["paths"][path]["best"]["feasible"])
+ for r in group
+ )
+ for field in ("circuit_evaluations", "shots", "runtime_seconds"):
+ row[f"{path}_mean_{field}"] = mean(
+ r["paths"][path].get(field, 0) for r in group
+ )
+ rows.append(row)
+ with (folder / "summary.csv").open("w", newline="", encoding="utf-8") as stream:
+ writer = csv.DictWriter(stream, fieldnames=list(rows[0]), lineterminator="\n")
+ writer.writeheader()
+ writer.writerows(rows)
+ curves = []
+ for index, shots in enumerate((8, 16, 32, 64, 128, 512)):
+ row = {"total_shots": shots}
+ for path in PATHS:
+ row[path] = mean(
+ mean(r["conditional_hit_curve"][index][path] for r in group)
+ for group in quantum_groups
+ )
+ deltas = [
+ mean(
+ r["conditional_hit_curve"][index]["reduced"]
+ - r["conditional_hit_curve"][index]["uniform_reduced"]
+ for r in group
+ )
+ for group in quantum_groups
+ ]
+ row["reduced_vs_uniform_instance_delta_min"] = min(deltas)
+ row["reduced_vs_uniform_instance_delta_max"] = max(deltas)
+ row["instances_reduced_better_than_uniform"] = sum(d > 1e-12 for d in deltas)
+ row["instances_reduced_worse_than_uniform"] = sum(d < -1e-12 for d in deltas)
+ curves.append(row)
+ aggregate = {
+ "paired_records": len(records),
+ "instance_categories": dict(Counter(row["category"] for row in rows)),
+ "statuses": {
+ path: dict(Counter(r["paths"][path]["status"] for r in records))
+ for path in PATHS
+ },
+ "quantum_required_optimal_seeds": {
+ path: sum(
+ r["absolute_gaps"][path] == 0 for group in quantum_groups for r in group
+ )
+ for path in PATHS
+ },
+ "all_feasible_optimal_seeds": {
+ path: sum(
+ r["absolute_gaps"][path] == 0
+ for r in records
+ if r["exact_objective"] is not None
+ )
+ for path in PATHS
+ },
+ "quantum_required_mean_evaluations": {
+ path: mean(
+ row[f"{path}_mean_circuit_evaluations"]
+ for row in rows
+ if row["category"] == "quantum_required"
+ )
+ for path in PATHS
+ },
+ "conditional_hit_curves_quantum_required": curves,
+ "interpretation": (
+ "Equal caps, not equal actual work. Instance-first means; curves "
+ "condition on trained states. Known synthetic corpus, not a new holdout."
+ ),
+ }
+ write_json(folder / "aggregate.json", aggregate)
+ lines = [
+ "# 同总预算对照结果",
+ "",
+ "全部 36 个实例、每实例 10 种子;Q=直接量子,R=分量量子,"
+ "U=直接均匀随机,S=分量均匀随机。",
+ "",
+ "下表为实际 512 总 shots 下采到精确最优的种子数;不可行行无最优值,记 0。",
+ "",
+ "| 实例 | 类别 | 最优值 | Q | R | U | S |",
+ "|---|---|---:|---:|---:|---:|---:|",
+ ]
+ for row in rows:
+ cells = [
+ row["instance"],
+ row["category"],
+ row["optimum"],
+ *[row[f"{p}_optimal_seeds"] for p in PATHS],
+ ]
+ lines.append(
+ "| " + " | ".join(str(v) if v is not None else "—" for v in cells) + " |"
+ )
+ lines += [
+ "",
+ "## 同总 shots 的条件命中概率",
+ "",
+ "仅 22 个仍需量子的可行实例,先平均每实例的十种子,再等权平均实例。",
+ "这是训练后理论曲线,低 shots 未重新训练或实际抽样,不包括训练成本。",
+ "",
+ "| 总 shots | Q | R | U | S | R>S 实例 | R None:
+ """Summarize a complete frozen 360-record evaluation directory."""
+ parser = argparse.ArgumentParser(description=__doc__)
+ parser.add_argument("folder", type=Path)
+ parser.add_argument("--replay", type=Path, help="also verify an independent rerun")
+ args = parser.parse_args()
+ summarize(args.folder)
+ if args.replay:
+ verify_replay(args.folder, args.replay)
+
+
+if __name__ == "__main__":
+ main()
diff --git a/pyqpanda-algorithm/example/LabScheduling/summarize_v2.py b/pyqpanda-algorithm/example/LabScheduling/summarize_v2.py
new file mode 100644
index 00000000..b69028d9
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/summarize_v2.py
@@ -0,0 +1,247 @@
+"""Summarize every heterogeneous instance without discarding failed runs."""
+
+import argparse
+import csv
+import json
+from collections import Counter, defaultdict
+from pathlib import Path
+
+import matplotlib
+
+matplotlib.use("Agg")
+import matplotlib.pyplot as plt
+import numpy as np
+from stress_benchmark import write_json
+
+
+def summarize(source: Path) -> None:
+ """Add compact instance/cell tables and stage-resource plots to a run archive."""
+ instances = [
+ json.loads(line)
+ for line in (source / "instances.jsonl").read_text().splitlines()
+ ]
+ runs = [
+ json.loads(line) for line in (source / "runs.jsonl").read_text().splitlines()
+ ]
+ groups = defaultdict(list)
+ for run in runs:
+ groups[run["instance"]].append(run)
+ rows = []
+ for instance in instances:
+ spec = instance["input"]
+ group = groups[spec["file"]]
+ stages = instance["ablation"]["stages"]
+ opt = instance["ablation"]["exact_objective"]
+ profiles = [
+ r["direct_metrics"] for r in group if r["direct_metrics"] is not None
+ ]
+ final = stages.get("components_auto_phase")
+ rows.append(
+ {
+ "instance": spec["file"],
+ "tasks": spec["tasks"],
+ "scenario": spec["scenario"],
+ "replicate": spec["replicate"],
+ "feasible": opt is not None,
+ "optimum": opt,
+ "raw_candidates": stages["raw_input"]["candidate_count"],
+ "calendar_qubits": stages["calendar_full_phase"]["total_qubits"],
+ "propagation_qubits": stages.get("propagation_full_phase", {}).get(
+ "total_qubits"
+ ),
+ "max_component_qubits": final["max_component_qubits"]
+ if final
+ else None,
+ "cnot_calendar_full": stages["calendar_full_phase"]["cnot"],
+ "cnot_components_full": stages.get("components_full_phase", {}).get(
+ "cnot"
+ ),
+ "cnot_components_auto": final["cnot"] if final else None,
+ "mean_p_opt": float(
+ np.mean([p["optimal_probability"] for p in profiles])
+ )
+ if profiles
+ else 0,
+ "min_p_opt": min(
+ (p["optimal_probability"] for p in profiles), default=0
+ ),
+ "uniform_p_opt": profiles[0]["uniform_optimal_probability"]
+ if profiles
+ else 0,
+ "direct_optimal_samples": sum(
+ r["direct"]["best"] is not None
+ and opt is not None
+ and r["direct"]["best"]["objective"] == opt
+ for r in group
+ ),
+ "reduced_optimal_samples": sum(
+ r["reduced"]["best"] is not None
+ and opt is not None
+ and r["reduced"]["best"]["objective"] == opt
+ for r in group
+ ),
+ "direct_mean_evaluations": float(
+ np.mean([r["direct"]["circuit_evaluations"] for r in group])
+ ),
+ "reduced_mean_evaluations": float(
+ np.mean([r["reduced"]["circuit_evaluations"] for r in group])
+ ),
+ "direct_mean_seconds": float(
+ np.mean([r["direct"]["runtime_seconds"] for r in group])
+ ),
+ "reduced_mean_seconds": float(
+ np.mean([r["reduced"]["runtime_seconds"] for r in group])
+ ),
+ "direct_shots": group[0]["direct"].get("shots", 0),
+ "reduced_total_shots": group[0]["reduced"].get("total_shots", 0),
+ "milp_seconds": instance["milp"]["runtime_seconds"],
+ "feasible_assignments": instance["ablation"]["feasible_count"],
+ }
+ )
+ with (source / "summary.csv").open("w", newline="", encoding="utf-8") as stream:
+ writer = csv.DictWriter(stream, fieldnames=list(rows[0]), lineterminator="\n")
+ writer.writeheader()
+ writer.writerows(rows)
+ cells = []
+ for tasks in (3, 4, 5):
+ for scenario in range(3):
+ cell = [
+ r for r in rows if r["tasks"] == tasks and r["scenario"] == scenario
+ ]
+ feasible = [r for r in cell if r["feasible"]]
+ cells.append(
+ {
+ "tasks": tasks,
+ "scenario": scenario,
+ "instances": len(cell),
+ "feasible": len(feasible),
+ "instance_mean_p_opt": float(
+ np.mean([r["mean_p_opt"] for r in feasible])
+ )
+ if feasible
+ else None,
+ "instance_mean_uniform_p_opt": float(
+ np.mean([r["uniform_p_opt"] for r in feasible])
+ )
+ if feasible
+ else None,
+ "instance_mean_delta_range": [
+ min(r["mean_p_opt"] - r["uniform_p_opt"] for r in feasible),
+ max(r["mean_p_opt"] - r["uniform_p_opt"] for r in feasible),
+ ]
+ if feasible
+ else None,
+ }
+ )
+ feasible_profiles = [
+ r["direct_metrics"]
+ for r in runs
+ if r["direct_metrics"] and r["direct_metrics"]["exact_objective"] is not None
+ ]
+ aggregate = {
+ "instances": len(instances),
+ "feasible_instances": sum(r["feasible"] for r in rows),
+ "paired_seed_records": len(runs),
+ "direct_statuses": dict(Counter(r["direct"]["status"] for r in runs)),
+ "reduced_statuses": dict(Counter(r["reduced"]["status"] for r in runs)),
+ "direct_quantum_executions": sum(
+ r["direct"]["circuit_evaluations"] > 0 for r in runs
+ ),
+ "reduced_quantum_executions": sum(
+ r["reduced"]["circuit_evaluations"] > 0 for r in runs
+ ),
+ "reduced_component_trainings": sum(
+ len(r["reduced"]["components"]) for r in runs
+ ),
+ "feasible_training_seeds": len(feasible_profiles),
+ "seeds_better_than_uniform": sum(
+ p["optimal_probability"] > p["uniform_optimal_probability"] + 1e-12
+ for p in feasible_profiles
+ ),
+ "seeds_worse_than_uniform": sum(
+ p["optimal_probability"] < p["uniform_optimal_probability"] - 1e-12
+ for p in feasible_profiles
+ ),
+ "phase_max_error": max(
+ (
+ r["direct_metrics"]["phase_max_error"]
+ for r in runs
+ if r["direct_metrics"]
+ ),
+ default=0,
+ ),
+ "cells": cells,
+ "scope": (
+ "synthetic instances; seed means within instance; "
+ "unequal component budgets; no speedup claim"
+ ),
+ }
+ write_json(source / "aggregate.json", aggregate)
+ text = [
+ "# 第二批逐实例结果",
+ "",
+ "36 个实例 × 10 个种子,两条执行路径;不可行和纯经典传播均保留。",
+ "",
+ "原始模型只有候选计数,不虚构含无效候选的线路。分解前后预算不同,不能用命中数宣称公平胜率优势。",
+ "",
+ "| 实例 | 最优值 | 原始→日历→传播→最大组件候选 | "
+ "CNOT 日历完整→组件完整→精简 | 直接/化简最优命中(各10) |",
+ "|---|---|---|---|---|",
+ ]
+ for r in rows:
+ text.append(
+ f"| {r['instance']} | {r['optimum']} | "
+ f"{r['raw_candidates']}→{r['calendar_qubits']}→"
+ f"{r['propagation_qubits']}→{r['max_component_qubits']} | "
+ f"{r['cnot_calendar_full']}→{r['cnot_components_full']}→"
+ f"{r['cnot_components_auto']} | "
+ f"{r['direct_optimal_samples']}/{r['reduced_optimal_samples']} |"
+ )
+ (source / "SUMMARY.md").write_text("\n".join(text) + "\n", encoding="utf-8")
+ matplotlib.rcParams["svg.hashsalt"] = "lab-v2"
+ matplotlib.rcParams["svg.fonttype"] = "none"
+ fig, axes = plt.subplots(1, 2, figsize=(11, 4), layout="constrained")
+ x = np.arange(len(rows))
+ for key, label in (
+ ("raw_candidates", "Raw candidates"),
+ ("calendar_qubits", "After calendar"),
+ ("max_component_qubits", "Largest remaining component"),
+ ):
+ axes[0].plot(
+ x,
+ [r[key] if r[key] is not None else np.nan for r in rows],
+ ".-",
+ label=label,
+ )
+ axes[0].set(
+ xlabel="Registered instance index (0–35)",
+ ylabel="Candidate / qubit count",
+ title="Missing final points = propagation proved infeasible",
+ )
+ axes[0].legend(frameon=False, fontsize=8)
+ feasible_rows = [r for r in rows if r["feasible"]]
+ axes[1].scatter(
+ [r["uniform_p_opt"] for r in feasible_rows],
+ [r["mean_p_opt"] for r in feasible_rows],
+ color="#167d9a",
+ )
+ axes[1].plot([0, 1], [0, 1], "--", color="gray")
+ axes[1].set(
+ xlabel="Uniform optimum probability",
+ ylabel="XY optimum probability (mean of 10 seeds)",
+ title="Each dot = one feasible instance; training excluded",
+ )
+ fig.savefig(source / "overview.svg", metadata={"Date": None})
+ plt.close(fig)
+ print(json.dumps({k: v for k, v in aggregate.items() if k != "cells"}, indent=2))
+
+
+def main() -> None:
+ """Summarize a completed archive in place."""
+ parser = argparse.ArgumentParser(description=__doc__)
+ parser.add_argument("source", type=Path)
+ summarize(parser.parse_args().source)
+
+
+if __name__ == "__main__":
+ main()
diff --git a/pyqpanda-algorithm/example/LabScheduling/support_pruning.py b/pyqpanda-algorithm/example/LabScheduling/support_pruning.py
new file mode 100644
index 00000000..a8e90f46
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/support_pruning.py
@@ -0,0 +1,214 @@
+"""Verify lossless arc pruning and reproduce a constructed resource boundary."""
+
+import argparse
+import hashlib
+import json
+from dataclasses import replace
+from itertools import product
+from math import prod
+from pathlib import Path
+from typing import Any
+
+from ablation import feasible_vectors
+from pyqpanda_alg.LabScheduling import (
+ Model,
+ Problem,
+ Reduction,
+ compile_qubo,
+ load_problem,
+ reduce_model,
+ validate_assignment,
+)
+from pyqpanda_alg.LabScheduling.report import run_experiment
+from stress_benchmark import write_json
+from summarize_matched import without_timing
+
+HERE = Path(__file__).resolve().parent
+
+
+def verify_removals(model: Model, reduction: Reduction) -> None:
+ """Replay each deletion witness, including its complete then-current domain."""
+ active = [set(d) for d in model.domains]
+ conflicts = {(i, j): reasons for i, j, reasons in model.conflicts}
+ tasks = {t.id: i for i, t in enumerate(model.problem.tasks)}
+ for row in reduction.removals:
+ i = row["variable"]
+ if i not in active[model.variables[i].task]:
+ raise ValueError("deletion witness refers to an inactive candidate")
+ if row.get("rule") == "no_support":
+ opposing = active[tasks[row["against_task"]]]
+ blockers = row["blockers"]
+ if not opposing or [b["variable"] for b in blockers] != sorted(opposing):
+ raise ValueError("deletion witness must contain the entire live domain")
+ else:
+ forced = row["forced_by"]
+ if active[model.variables[forced].task] != {forced}:
+ raise ValueError("forced deletion witness is not a singleton")
+ blockers = [{"variable": forced, "reasons": row["reasons"]}]
+ for blocker in blockers:
+ pair = tuple(sorted((i, blocker["variable"])))
+ if tuple(blocker["reasons"]) != conflicts.get(pair):
+ raise ValueError("deletion witness lacks a matching forbidden pair")
+ active[model.variables[i].task].remove(i)
+ if reduction.infeasible_task is not None:
+ if active[tasks[reduction.infeasible_task]]:
+ raise ValueError("infeasibility witness has no empty domain")
+ else:
+ surviving = set().union(*active) if active else set()
+ mapped = set(reduction.fixed).union(*map(set, reduction.mappings))
+ if surviving != mapped:
+ raise ValueError("restoration map differs from the surviving domains")
+
+
+def audit_problem(problem: Problem) -> dict[str, Any]:
+ """Compare both reductions to the full raw-input feasible set, with costs."""
+ if prod(len(t.options) for t in problem.tasks) > 1_000_000:
+ raise ValueError("support audit is limited to one million raw combinations")
+ model = compile_qubo(problem)
+ raw = {}
+ for choices in product(*(range(len(t.options)) for t in problem.tasks)):
+ result = validate_assignment(problem, choices)
+ if result["feasible"]:
+ raw[choices] = result["objective"]
+ modes = {}
+ for mode in ("singleton", "arc"):
+ reduction = reduce_model(model, pruning=mode)
+ verify_removals(model, reduction)
+ restored = {}
+ if reduction.infeasible_task is None:
+ local = [feasible_vectors(m) for m in reduction.components]
+ for assignment in product(*(list(vectors) for vectors in local)):
+ result = reduction.restore(assignment)
+ expected = reduction.audit()["fixed_cost"] + sum(
+ vectors[bits]
+ for vectors, bits in zip(local, assignment, strict=True)
+ )
+ if not result["feasible"] or result["objective"] != expected:
+ raise RuntimeError("restoration changed feasibility or cost")
+ choices = tuple(
+ task.options.index(
+ model.variables[
+ next(i for i in domain if result["bits"][i])
+ ].option
+ )
+ for task, domain in zip(problem.tasks, model.domains, strict=True)
+ )
+ if choices in restored:
+ raise RuntimeError("restoration is not injective")
+ restored[choices] = result["objective"]
+ if restored != raw:
+ raise RuntimeError("reduction changed the complete raw feasible set")
+ modes[mode] = reduction.audit()
+ return {
+ "problem": problem.name,
+ "feasible_count": len(raw),
+ "exact_objective": min(raw.values(), default=None),
+ "proof": "all raw feasible schedules and costs equal all restored schedules",
+ "modes": modes,
+ }
+
+
+def run_evaluation() -> dict[str, Any]:
+ """Audit all 36 existing V2 inputs and run three real CPU boundary-case seeds."""
+ sources = sorted((HERE / "data/corpus-v2").glob("n*.json"))
+ if len(sources) != 36:
+ raise ValueError("expected the complete 36-instance V2 corpus")
+ boundary = HERE / "data/support-chain.json"
+ problem = load_problem(boundary)
+ original = [
+ next(i for i, o in enumerate(t.options) if (o.resource, o.start) == t.original)
+ for t in problem.tasks
+ ]
+ control = replace(
+ problem, resources=tuple(replace(r, downtime=()) for r in problem.resources)
+ )
+ rows = []
+ for path in [*sources, boundary]:
+ row = audit_problem(load_problem(path))
+ row["input"] = path.relative_to(HERE).as_posix()
+ row["input_sha256"] = hashlib.sha256(path.read_bytes()).hexdigest()
+ rows.append(row)
+ # Solver results are kept separate from enumeration, never repaired with it.
+ default = run_experiment(boundary, reduce=True)
+ runs = [
+ run_experiment(boundary, reduce=True, pruning="arc", seed=seed)
+ for seed in (7, 19, 42)
+ ]
+ for report in runs:
+ for component in report["quantum"]["components"]:
+ key = "".join(map(str, component["best"]["bits"][::-1]))
+ if component["counts"].get(key, 0) <= 0:
+ raise RuntimeError("selected component result was not sampled")
+ package = HERE.parents[1] / "pyqpanda_alg/LabScheduling"
+ root = HERE.parents[2]
+ files = [
+ *sorted(package.glob("*.py")),
+ Path(__file__),
+ HERE / "ablation.py",
+ root / "Tutorials/LabScheduling/ARC_PROTOCOL.md",
+ ]
+ return {
+ "protocol": "ARC_PROTOCOL.md; known V2 corpus and constructed boundary case",
+ "source_sha256": {
+ p.relative_to(root).as_posix(): hashlib.sha256(p.read_bytes()).hexdigest()
+ for p in files
+ },
+ "instances": rows,
+ "boundary_original": {
+ "before_outage": validate_assignment(control, original),
+ "after_outage": validate_assignment(problem, original),
+ },
+ "boundary_default": default,
+ "boundary_arc": runs,
+ }
+
+
+def main() -> None:
+ """Write complete evidence, optionally requiring an exact non-timing replay."""
+ parser = argparse.ArgumentParser(description=__doc__)
+ parser.add_argument("--output", type=Path, default=Path("reports/support-pruning"))
+ parser.add_argument("--verify-against", type=Path)
+ args = parser.parse_args()
+ # Compare the JSON representation on both sides, including tuple domains.
+ result = json.loads(json.dumps(run_evaluation(), allow_nan=False))
+ args.output.mkdir(parents=True, exist_ok=True)
+ if args.verify_against:
+ original = json.loads(args.verify_against.read_text(encoding="utf-8"))
+ if without_timing(original) != without_timing(result):
+ raise ValueError("support-pruning replay differs beyond timing")
+ write_json(args.output / "replay.json", {"identical_except_timing": True})
+ write_json(args.output / "results.json", result)
+ corpus = result["instances"][:-1]
+ print(
+ json.dumps(
+ {
+ "audited_instances": len(result["instances"]),
+ "v2_strictly_smaller_max_component": sum(
+ r["modes"]["arc"]["max_component_qubits"]
+ < r["modes"]["singleton"]["max_component_qubits"]
+ for r in corpus
+ ),
+ "boundary_component_qubits": {
+ mode: result["instances"][-1]["modes"][mode]["component_qubits"]
+ for mode in ("singleton", "arc")
+ },
+ "boundary_default_status": result["boundary_default"]["status"],
+ "boundary_arc": [
+ {
+ "seed": r["quantum"]["seed"],
+ "status": r["status"],
+ "objective": r["quantum"]["best"]["objective"]
+ if r["quantum"]["best"]
+ else None,
+ "gap": r["absolute_gap"],
+ }
+ for r in result["boundary_arc"]
+ ],
+ },
+ indent=2,
+ )
+ )
+
+
+if __name__ == "__main__":
+ main()
diff --git a/pyqpanda-algorithm/example/LabScheduling/tradeoff_demo.py b/pyqpanda-algorithm/example/LabScheduling/tradeoff_demo.py
new file mode 100644
index 00000000..f17c5e44
--- /dev/null
+++ b/pyqpanda-algorithm/example/LabScheduling/tradeoff_demo.py
@@ -0,0 +1,148 @@
+"""Show the cost of shifting three bookings versus renting a backup instrument."""
+
+import argparse
+import copy
+import csv
+import json
+from pathlib import Path
+
+import matplotlib
+
+matplotlib.use("Agg")
+import matplotlib.pyplot as plt
+from ablation import audit_stages, feasible_vectors
+from pyqpanda_alg.LabScheduling import compile_qubo, evaluate, load_problem
+from pyqpanda_alg.LabScheduling.report import run_experiment
+from stress_benchmark import write_json
+
+
+def run_demo(output: Path) -> None:
+ """Run actual QAOA, then show every feasible alternative and an outage control."""
+ source = Path(__file__).parent / "data/tradeoff.json"
+ problem = load_problem(source)
+ output.mkdir(parents=True, exist_ok=True)
+ report = run_experiment(source, reduce=True)
+ write_json(output / "outage-report.json", report)
+ raw = json.loads(source.read_text(encoding="utf-8"))
+ control = copy.deepcopy(raw)
+ for resource in control["resources"]:
+ resource["downtime"] = []
+ write_json(output / "outage-input.json", raw)
+ write_json(output / "control-input.json", control)
+ write_json(
+ output / "control-report.json",
+ run_experiment(output / "control-input.json", reduce=True),
+ )
+ write_json(output / "ablation.json", audit_stages(problem))
+ model = compile_qubo(problem)
+ best = report["quantum"]["best"]
+ alternatives = []
+ for bits, cost in feasible_vectors(model).items():
+ candidate = evaluate(model, bits)
+ alternatives.append(
+ {
+ "objective": cost,
+ "changed_tasks": sum(r["changed"] for r in candidate["schedule"]),
+ "schedule": "; ".join(
+ f"{r['task']}:{r['resource']}@{r['start']}"
+ for r in candidate["schedule"]
+ ),
+ "sampled_choice": bool(best and list(bits) == best["bits"]),
+ }
+ )
+ alternatives.sort(key=lambda r: (r["objective"], r["schedule"]))
+ with (output / "alternatives.csv").open(
+ "w", newline="", encoding="utf-8"
+ ) as stream:
+ writer = csv.DictWriter(
+ stream, fieldnames=list(alternatives[0]), lineterminator="\n"
+ )
+ writer.writeheader()
+ writer.writerows(alternatives)
+ if best and best["feasible"]:
+ matplotlib.rcParams["svg.hashsalt"] = "lab-tradeoff"
+ matplotlib.rcParams["svg.fonttype"] = "none"
+ fig, axes = plt.subplots(
+ 2, 1, figsize=(9, 4.6), layout="constrained", sharex=True
+ )
+ for ax, after in zip(axes, (False, True), strict=True):
+ for ti, task in enumerate(problem.tasks):
+ row = next(r for r in best["schedule"] if r["task"] == task.id)
+ rid, start = (row["resource"], row["start"]) if after else task.original
+ y = {"oven": 0, "backup": 1}[rid]
+ ax.barh(
+ y,
+ task.duration,
+ left=start,
+ height=0.5,
+ color=plt.get_cmap("tab10")(ti),
+ )
+ ax.barh(
+ y,
+ 1,
+ left=start + task.duration,
+ height=0.5,
+ color="#dddddd",
+ hatch="//",
+ )
+ ax.text(start + task.duration / 2, y, task.id, ha="center", va="center")
+ ax.axvspan(0, 1, ymin=0.08, ymax=0.46, color="red", alpha=0.15)
+ ax.set(
+ yticks=[0, 1],
+ yticklabels=["Oven", "Backup"],
+ ylim=(-0.7, 1.5),
+ xlim=(0, 14),
+ title="Actual sampled reschedule"
+ if after
+ else "Original reservations; outage on oven",
+ )
+ ax.grid(axis="x", alpha=0.2)
+ axes[-1].set_xlabel("Time slot; gray hatch = cleanup; synthetic data")
+ fig.savefig(output / "tradeoff.svg", metadata={"Date": None})
+ plt.close(fig)
+ print(
+ json.dumps(
+ {
+ "status": report["status"],
+ "sampled_objective": best["objective"] if best else None,
+ "certified_optimum": report["milp"]["best"]["objective"],
+ "gap": report["absolute_gap"],
+ "component_qubits": report["quantum"]["reduction"]["component_qubits"],
+ "fixed_variables": report["quantum"]["reduction"]["fixed_variables"],
+ "feasible_alternatives": len(alternatives),
+ "output": str(output),
+ },
+ ensure_ascii=False,
+ indent=2,
+ )
+ )
+
+
+def main() -> None:
+ """Write the complete offline demonstration and all alternative schedules."""
+ parser = argparse.ArgumentParser(description=__doc__)
+ parser.add_argument("--output", type=Path, default=Path("reports/tradeoff-demo"))
+ parser.add_argument(
+ "--sensitivity",
+ action="store_true",
+ help="also run 21 frozen change-cost experiments",
+ )
+ parser.add_argument(
+ "--verify-sensitivity",
+ type=Path,
+ help="previous sensitivity/results.json to replay",
+ )
+ args = parser.parse_args()
+ if args.verify_sensitivity and not args.sensitivity:
+ parser.error("--verify-sensitivity requires --sensitivity")
+ run_demo(args.output)
+ if args.sensitivity:
+ from sensitivity import run_sensitivity
+
+ run_sensitivity(
+ args.output / "sensitivity", verify_against=args.verify_sensitivity
+ )
+
+
+if __name__ == "__main__":
+ main()
diff --git a/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/__init__.py b/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/__init__.py
new file mode 100644
index 00000000..ca7ffbed
--- /dev/null
+++ b/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/__init__.py
@@ -0,0 +1,27 @@
+"""QUBO-based, auditable shared-laboratory rescheduling application."""
+
+from .classical import solve_exact
+from .milp import solve_milp, validate_assignment
+from .model import Model, compile_qubo, evaluate
+from .problem import Problem, load_problem, parse_problem
+from .quantum import build_circuit, circuit_probabilities, solve_qaoa, to_ising
+from .reduction import Reduction, reduce_model, solve_reduced
+
+__all__ = [
+ "Model",
+ "Reduction",
+ "reduce_model",
+ "solve_reduced",
+ "solve_milp",
+ "validate_assignment",
+ "Problem",
+ "build_circuit",
+ "circuit_probabilities",
+ "compile_qubo",
+ "evaluate",
+ "load_problem",
+ "parse_problem",
+ "solve_exact",
+ "solve_qaoa",
+ "to_ising",
+]
diff --git a/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/__main__.py b/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/__main__.py
new file mode 100644
index 00000000..eb5afff9
--- /dev/null
+++ b/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/__main__.py
@@ -0,0 +1,97 @@
+"""Run with python -m pyqpanda_alg.LabScheduling INPUT.json."""
+
+import argparse
+import json
+from pathlib import Path
+from tempfile import NamedTemporaryFile
+
+from .report import run_experiment
+
+
+def _report_destination(source: Path, output: Path) -> Path:
+ """Resolve links and reject input aliases before starting or saving a run."""
+ destination = output.resolve()
+ if destination == source.resolve() or (
+ destination.exists() and source.exists() and destination.samefile(source)
+ ):
+ raise ValueError("output must not overwrite the input file (including links)")
+ if destination.exists() and not destination.is_file():
+ raise ValueError("output must be a regular report file")
+ return destination
+
+
+def _save_report(source: Path, output: Path, text: str) -> None:
+ """Replace a report only after a complete same-directory temporary write."""
+ destination = _report_destination(source, output)
+ destination.parent.mkdir(parents=True, exist_ok=True)
+ temporary: Path | None = None
+ try:
+ with NamedTemporaryFile(
+ mode="w",
+ encoding="utf-8",
+ dir=destination.parent,
+ prefix=f".{destination.name}.",
+ suffix=".tmp",
+ delete=False,
+ ) as stream:
+ temporary = Path(stream.name)
+ stream.write(text + "\n")
+ # Recheck links in case an output alias changed while writing.
+ _report_destination(source, destination)
+ temporary.replace(destination)
+ finally:
+ if temporary is not None:
+ temporary.unlink(missing_ok=True)
+
+
+def main(argv: list[str] | None = None) -> int:
+ """Print JSON; exit 2 for I/O/input errors, 3/4/5 for infeasible/miss/limit."""
+ parser = argparse.ArgumentParser(description="共享实验室 QUBO 最小扰动重排(CPU)")
+ parser.add_argument("input", type=Path)
+ parser.add_argument("--seed", type=int, default=7)
+ parser.add_argument("--layers", type=int, default=1)
+ parser.add_argument("--shots", type=int, default=512)
+ parser.add_argument("--maxiter", type=int, default=60)
+ parser.add_argument("--restarts", type=int, default=2)
+ parser.add_argument("--mixer", choices=("xy", "x"), default="xy")
+ parser.add_argument(
+ "--reduce", action="store_true", help="exact propagation and component solving"
+ )
+ parser.add_argument("--output", type=Path, help="also save the JSON report here")
+ parser.add_argument(
+ "--pruning",
+ choices=("singleton", "arc"),
+ default="singleton",
+ help="propagation strength; arc requires --reduce",
+ )
+ args = parser.parse_args(argv)
+ try:
+ if args.output:
+ _report_destination(args.input, args.output)
+ report = run_experiment(
+ args.input,
+ args.seed,
+ args.layers,
+ args.shots,
+ args.maxiter,
+ args.restarts,
+ args.mixer,
+ reduce=args.reduce,
+ pruning=args.pruning,
+ )
+ text = json.dumps(report, ensure_ascii=False, indent=2, allow_nan=False)
+ if args.output:
+ _save_report(args.input, args.output, text)
+ except (ValueError, OSError) as error:
+ parser.error(str(error))
+ print(text)
+ return {
+ "feasible": 0,
+ "infeasible": 3,
+ "no_feasible_sample": 4,
+ "resource_limit": 5,
+ }[report["status"]]
+
+
+if __name__ == "__main__":
+ raise SystemExit(main())
diff --git a/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/bookings.py b/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/bookings.py
new file mode 100644
index 00000000..bc9b038c
--- /dev/null
+++ b/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/bookings.py
@@ -0,0 +1,98 @@
+"""Transparent CSV booking windows to explicit scheduling JSON candidates."""
+
+from __future__ import annotations
+
+import csv
+from pathlib import Path
+from typing import Any
+
+from .problem import Problem
+
+COLUMNS = (
+ "id",
+ "group",
+ "duration",
+ "original_resource",
+ "original_start",
+ "allowed_resources",
+ "earliest",
+ "latest",
+ "step",
+ "change_cost",
+ "shift_cost",
+)
+
+
+def import_bookings(path: str | Path, calendar: dict[str, Any]) -> dict[str, Any]:
+ """Expand every allowed resource/start in inclusive CSV booking windows.
+
+ calendar uses the regular problem schema without tasks. Resources are pipe
+ separated; cost is shift_cost*abs(start-original_start). No candidate is
+ silently dropped: horizon/downtime pruning belongs to the QUBO audit.
+ At most 256 raw candidates are expanded; costs and references use the same
+ strict Problem validation as manually authored JSON.
+ """
+ if not isinstance(calendar, dict) or set(calendar) - {
+ "name",
+ "horizon",
+ "resources",
+ "precedence",
+ }:
+ raise ValueError("calendar must contain problem fields without tasks")
+ tasks = []
+ total = 0
+ with Path(path).open(newline="", encoding="utf-8-sig") as stream:
+ reader = csv.DictReader(stream)
+ if reader.fieldnames != list(COLUMNS):
+ raise ValueError(f"CSV headers must be: {','.join(COLUMNS)}")
+ for row in reader:
+ if set(row) != set(COLUMNS) or any(v is None for v in row.values()):
+ raise ValueError("CSV row has missing or extra cells")
+ numbers = {}
+ for key in (
+ "duration",
+ "original_start",
+ "earliest",
+ "latest",
+ "step",
+ "change_cost",
+ "shift_cost",
+ ):
+ value = row[key]
+ if not value.isascii() or not value.isdecimal():
+ raise ValueError(f"CSV {key} must be a nonnegative integer")
+ numbers[key] = int(value)
+ if numbers[key] > 1_000_000:
+ raise ValueError(f"CSV {key} exceeds 1000000")
+ if numbers["step"] < 1 or numbers["earliest"] > numbers["latest"]:
+ raise ValueError("CSV requires step >= 1 and earliest <= latest")
+ resources = row["allowed_resources"].split("|")
+ starts = range(numbers["earliest"], numbers["latest"] + 1, numbers["step"])
+ total += len(resources) * len(starts)
+ if total > 256:
+ raise ValueError("CSV expansion supports at most 256 raw candidates")
+ tasks.append(
+ {
+ "id": row["id"],
+ "group": row["group"],
+ "duration": numbers["duration"],
+ "original": {
+ "resource": row["original_resource"],
+ "start": numbers["original_start"],
+ },
+ "change_cost": numbers["change_cost"],
+ "options": [
+ {
+ "resource": resource,
+ "start": start,
+ "cost": numbers["shift_cost"]
+ * abs(start - numbers["original_start"]),
+ }
+ for resource in resources
+ for start in starts
+ ],
+ }
+ )
+ data = {**calendar, "tasks": tasks}
+ Problem.from_dict(data)
+ return data
diff --git a/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/classical.py b/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/classical.py
new file mode 100644
index 00000000..25cf7985
--- /dev/null
+++ b/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/classical.py
@@ -0,0 +1,77 @@
+"""Independent exact certification by Cartesian enumeration of task choices."""
+
+from itertools import product
+from math import prod
+from time import perf_counter
+from typing import Any
+
+from .model import Model, evaluate
+
+
+def solve_exact(model: Model, max_combinations: int = 1_000_000) -> dict[str, Any]:
+ """Certify the optimum using schedule constraints, never QUBO minimization.
+
+ An empty domain proves infeasibility. A search budget overflow raises before
+ enumeration; it is never misreported as an infeasible instance.
+ """
+ if type(max_combinations) is not int or max_combinations < 1:
+ raise ValueError("max_combinations must be a positive integer")
+ started = perf_counter()
+ combinations = prod(map(len, model.domains))
+ if combinations > max_combinations:
+ raise ValueError(
+ f"exact search needs {combinations} combinations; limit={max_combinations}"
+ )
+ best = None
+ feasible_count = 0
+ for choice in product(*model.domains):
+ bits = [0] * len(model.variables)
+ for index in choice:
+ bits[index] = 1
+ result = evaluate(model, bits)
+ if result["feasible"]:
+ feasible_count += 1
+ if best is None or result["objective"] < best["objective"]:
+ best = result
+ return {
+ "status": "optimal" if best is not None else "infeasible",
+ "best": best,
+ "combinations": combinations,
+ "feasible_count": feasible_count,
+ "runtime_seconds": perf_counter() - started,
+ }
+
+
+def solve_greedy(model: Model) -> dict[str, Any]:
+ """Choose the cheapest currently compatible option in input task order.
+
+ No backtracking or repair is performed. A dead end is not an infeasibility
+ certificate; this is a transparent operational heuristic for comparisons.
+ """
+ started = perf_counter()
+ bits = [0] * len(model.variables)
+ selected: set[int] = set()
+ conflicts = {frozenset((i, j)) for i, j, _ in model.conflicts}
+ for domain in model.domains:
+ options = sorted(domain, key=lambda i: (model.variables[i].cost, i))
+ chosen = next(
+ (
+ i
+ for i in options
+ if all(frozenset((i, j)) not in conflicts for j in selected)
+ ),
+ None,
+ )
+ if chosen is None:
+ return {
+ "status": "dead_end",
+ "best": None,
+ "runtime_seconds": perf_counter() - started,
+ }
+ bits[chosen] = 1
+ selected.add(chosen)
+ return {
+ "status": "feasible",
+ "best": evaluate(model, bits),
+ "runtime_seconds": perf_counter() - started,
+ }
diff --git a/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/metrics.py b/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/metrics.py
new file mode 100644
index 00000000..6b6a2ff9
--- /dev/null
+++ b/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/metrics.py
@@ -0,0 +1,108 @@
+"""Post-training diagnostics: optimum probability and native circuit resources."""
+
+from __future__ import annotations
+
+from itertools import product
+from math import ceil, log, log1p, prod
+from typing import Any
+
+import numpy as np
+
+from .model import Model, evaluate
+from .quantum import build_circuit
+
+SHOT_BUDGETS = (8, 16, 32, 64, 128, 512)
+
+
+def hit_probability(probability: float, shots: int) -> float:
+ """Probability of at least one hit in independent draws from a fixed state."""
+ if not np.isfinite(probability) or not 0 <= probability <= 1:
+ raise ValueError("probability must be in [0, 1]")
+ if type(shots) is not int or shots < 1:
+ raise ValueError("shots must be a positive integer")
+ return float(-np.expm1(shots * np.log1p(-probability))) if probability < 1 else 1.0
+
+
+def distribution_metrics(model: Model, probabilities: np.ndarray) -> dict[str, Any]:
+ """Enumerate schedules AFTER training; count all tied optima, not one witness.
+
+ Hit curves condition on this already trained noiseless state. They exclude
+ training and statevector diagnostic costs and are not end-to-end speedups.
+ """
+ if (
+ probabilities.shape != (1 << len(model.variables),)
+ or not np.all(np.isfinite(probabilities))
+ or np.any(probabilities < 0)
+ or not np.isclose(probabilities.sum(), 1.0)
+ ):
+ raise ValueError("expected a normalized finite nonnegative probability vector")
+ combinations = prod(map(len, model.domains))
+ if combinations > 1_000_000:
+ raise ValueError("distribution certification exceeds 1000000 combinations")
+ optimum = None
+ optimal_indices: list[int] = []
+ feasible_count = 0
+ feasible_probability = 0.0
+ for choice in product(*model.domains):
+ bits = [0] * len(model.variables)
+ for i in choice:
+ bits[i] = 1
+ row = evaluate(model, bits)
+ if not row["feasible"]:
+ continue
+ index = sum(1 << i for i in choice)
+ feasible_count += 1
+ feasible_probability += float(probabilities[index])
+ cost = row["objective"]
+ if optimum is None or cost < optimum:
+ optimum, optimal_indices = cost, [index]
+ elif cost == optimum:
+ optimal_indices.append(index)
+ probability = min(1.0, float(probabilities[optimal_indices].sum()))
+ uniform = len(optimal_indices) / combinations if combinations else 0.0
+ return {
+ "exact_objective": optimum,
+ "optimal_count": len(optimal_indices),
+ "combinations": combinations,
+ "optimal_probability": probability,
+ "feasible_probability": min(1.0, feasible_probability),
+ "uniform_optimal_probability": uniform,
+ "uniform_feasible_probability": feasible_count / combinations
+ if combinations
+ else 0,
+ "shots_for_95_percent": (
+ 1
+ if probability == 1
+ else ceil(log(0.05) / log1p(-probability))
+ if probability > 0
+ else None
+ ),
+ "hit_curve": [
+ {
+ "shots": s,
+ "quantum": hit_probability(probability, s),
+ "uniform": hit_probability(uniform, s),
+ }
+ for s in SHOT_BUDGETS
+ ],
+ "interpretation": "conditional on trained state; training cost excluded",
+ }
+
+
+def circuit_resources(
+ model: Model,
+ parameters: list[float],
+ mixer: str = "xy",
+) -> dict[str, Any]:
+ """Compare native CPU circuit operations; CRY is not decomposed into CNOTs."""
+ result = {}
+ for mode in ("full", "auto"):
+ program = build_circuit(model, parameters, mixer, phase_mode=mode)
+ operations = dict(program.count_ops())
+ result[mode] = {
+ "depth": program.depth(),
+ "operations": operations,
+ "cnot": operations.get("CNOT", 0),
+ "cry": operations.get("CRY", 0),
+ }
+ return result
diff --git a/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/milp.py b/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/milp.py
new file mode 100644
index 00000000..6736d357
--- /dev/null
+++ b/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/milp.py
@@ -0,0 +1,212 @@
+"""Independent raw-input MILP oracle; does not import the QUBO compiler."""
+
+from __future__ import annotations
+
+from collections.abc import Sequence
+from itertools import combinations
+from time import perf_counter
+from typing import Any
+
+import numpy as np
+from scipy.optimize import Bounds, LinearConstraint, milp
+from scipy.sparse import csc_matrix
+
+from .problem import Option, Problem, Task
+
+MAX_RAW_CANDIDATES = 2048
+
+
+def validate_assignment(problem: Problem, choices: Sequence[int]) -> dict[str, Any]:
+ """Check raw option indices, unary calendars, pairs and original-booking cost.
+
+ This checker deliberately uses neither compiled variables nor conflict edges.
+ One raw option index per task is mandatory; invalid indices raise ValueError.
+ """
+ if len(choices) != len(problem.tasks) or any(
+ type(i) is not int or not 0 <= i < len(t.options)
+ for t, i in zip(problem.tasks, choices, strict=True)
+ ):
+ raise ValueError("expected one valid raw option index per task")
+ selected = [(t, t.options[i]) for t, i in zip(problem.tasks, choices, strict=True)]
+ violations: list[dict[str, Any]] = []
+ for task, option in selected:
+ if not _available(problem, task, option):
+ violations.append({"kind": "calendar", "task": task.id})
+ for (a, oa), (b, ob) in combinations(selected, 2):
+ if _incompatible(problem, a, oa, b, ob):
+ violations.append({"kind": "pair", "tasks": [a.id, b.id]})
+ preference = sum(o.cost for _, o in selected)
+ changed = [
+ (t, o)
+ for t, o in selected
+ if t.original is not None and t.original != (o.resource, o.start)
+ ]
+ change = sum(t.change_cost for t, _ in changed)
+ return {
+ "feasible": not violations,
+ "violations": violations,
+ "violation_count": len(violations),
+ "objective": preference + change if not violations else None,
+ "preference_cost": preference,
+ "change_cost": change,
+ "changed_tasks": len(changed),
+ "max_start_shift": max(
+ (abs(o.start - t.original[1]) for t, o in changed if t.original), default=0
+ ),
+ "choices": list(choices),
+ "schedule": [
+ {
+ "task": t.id,
+ "resource": o.resource,
+ "start": o.start,
+ "end": o.start + t.duration,
+ }
+ for t, o in selected
+ ],
+ }
+
+
+def solve_milp(problem: Problem, time_limit: float = 30.0) -> dict[str, Any]:
+ """Minimize raw-option cost with exact-one, calendar bounds and pair rows.
+
+ HiGHS status, incumbent, dual bound and relative gap are reported separately.
+ A time limit (solver time only) is never presented as an optimality certificate.
+ At most 2048 raw candidates are accepted to bound quadratic model construction.
+ A task with no calendar-compatible raw option proves infeasibility before
+ constructing pair rows; this independent check does not use QUBO pruning.
+ """
+ if isinstance(time_limit, bool) or not np.isfinite(time_limit) or time_limit <= 0:
+ raise ValueError("time_limit must be positive and finite")
+ started = perf_counter()
+ options = [
+ (ti, oi, t, o)
+ for ti, t in enumerate(problem.tasks)
+ for oi, o in enumerate(t.options)
+ ]
+ if len(options) > MAX_RAW_CANDIDATES:
+ raise ValueError(f"MILP supports at most {MAX_RAW_CANDIDATES} raw candidates")
+ base: dict[str, Any] = {
+ "variables": len(options),
+ "best": None,
+ "dual_bound": None,
+ "gap": None,
+ }
+ if not problem.tasks or any(not t.options for t in problem.tasks):
+ feasible = not problem.tasks
+ base.update(
+ status="optimal" if feasible else "infeasible",
+ best=validate_assignment(problem, []) if feasible else None,
+ runtime_seconds=perf_counter() - started,
+ )
+ return base
+ costs = [
+ o.cost
+ + (
+ t.change_cost
+ if t.original is not None and t.original != (o.resource, o.start)
+ else 0
+ )
+ for _, _, t, o in options
+ ]
+ upper = [int(_available(problem, t, o)) for _, _, t, o in options]
+ available_tasks = {
+ ti for allowed, (ti, _, _, _) in zip(upper, options, strict=True) if allowed
+ }
+ for ti, task in enumerate(problem.tasks):
+ if ti not in available_tasks:
+ base.update(
+ status="infeasible",
+ infeasible_task=task.id,
+ reason="no raw option satisfies the resource calendar",
+ constraints=0,
+ runtime_seconds=perf_counter() - started,
+ )
+ return base
+ rows: list[list[int]] = [
+ [i for i, (ti, _, _, _) in enumerate(options) if ti == task]
+ for task in range(len(problem.tasks))
+ ]
+ lower = [1.0] * len(rows)
+ bounds = [1.0] * len(rows)
+ # If upper[i] == 0, y_i + y_j <= 1 follows from y_j <= 1 already.
+ # Keep every raw variable and its index, but omit these redundant pair rows.
+ available_indices = [i for i, allowed in enumerate(upper) if allowed]
+ for i, j in combinations(available_indices, 2):
+ ti, _, a, oa = options[i]
+ tj, _, b, ob = options[j]
+ if ti != tj and _incompatible(problem, a, oa, b, ob):
+ rows.append([i, j])
+ lower.append(-np.inf)
+ bounds.append(1.0)
+ row_indices = [r for r, columns in enumerate(rows) for _ in columns]
+ column_indices = [i for columns in rows for i in columns]
+ matrix = csc_matrix(
+ (np.ones(len(row_indices)), (row_indices, column_indices)),
+ shape=(len(rows), len(options)),
+ )
+ result = milp(
+ np.asarray(costs, dtype=float),
+ integrality=np.ones(len(options)),
+ bounds=Bounds(np.zeros(len(options)), upper),
+ constraints=LinearConstraint(matrix, lower, bounds),
+ options={"time_limit": float(time_limit), "mip_rel_gap": 0.0},
+ )
+ status = {0: "optimal", 1: "limit", 2: "infeasible"}.get(result.status, "error")
+ if result.x is not None:
+ if not np.allclose(result.x, np.rint(result.x), atol=1e-6, rtol=0):
+ raise RuntimeError("MILP incumbent is not integral")
+ for ti in range(len(problem.tasks)):
+ if (
+ sum(
+ int(x > 0.5)
+ for x, (task, _, _, _) in zip(result.x, options, strict=True)
+ if task == ti
+ )
+ != 1
+ ):
+ raise RuntimeError("MILP incumbent violates exact-one assignment")
+ chosen = [
+ oi for x, (_, oi, _, _) in zip(result.x, options, strict=True) if x > 0.5
+ ]
+ best = validate_assignment(problem, chosen)
+ if not best["feasible"] or abs(best["objective"] - result.fun) > 1e-5:
+ raise RuntimeError("MILP incumbent failed independent semantic check")
+ base["best"] = best
+ if status == "optimal" and base["best"] is None:
+ raise RuntimeError("MILP reported optimal without an incumbent")
+ for output, attribute in (("dual_bound", "mip_dual_bound"), ("gap", "mip_gap")):
+ value = getattr(result, attribute, None)
+ base[output] = (
+ float(value) if value is not None and np.isfinite(value) else None
+ )
+ base.update(
+ status=status,
+ solver_status=int(result.status),
+ message=str(result.message),
+ constraints=len(rows),
+ runtime_seconds=perf_counter() - started,
+ )
+ return base
+
+
+def _available(problem: Problem, task: Task, option: Option) -> bool:
+ resource = next(r for r in problem.resources if r.id == option.resource)
+ finish = option.start + task.duration + resource.cleanup
+ return finish <= problem.horizon and all(
+ finish <= begin or option.start >= end for begin, end in resource.downtime
+ )
+
+
+def _incompatible(problem: Problem, a: Task, oa: Option, b: Task, ob: Option) -> bool:
+ end_a, end_b = oa.start + a.duration, ob.start + b.duration
+ if oa.resource == ob.resource:
+ cleanup = next(r.cleanup for r in problem.resources if r.id == oa.resource)
+ if not (end_a + cleanup <= ob.start or end_b + cleanup <= oa.start):
+ return True
+ if a.group == b.group and not (end_a <= ob.start or end_b <= oa.start):
+ return True
+ return any(
+ (before == a.id and after == b.id and end_a > ob.start)
+ or (before == b.id and after == a.id and end_b > oa.start)
+ for before, after in problem.precedence
+ )
diff --git a/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/model.py b/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/model.py
new file mode 100644
index 00000000..fa62914d
--- /dev/null
+++ b/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/model.py
@@ -0,0 +1,254 @@
+"""Auditable candidate pruning, QUBO compilation and independent validation."""
+
+from __future__ import annotations
+
+from collections.abc import Sequence
+from dataclasses import dataclass
+from itertools import combinations
+from typing import Any
+
+from .problem import Option, Problem, Task
+
+
+@dataclass(frozen=True)
+class Variable:
+ """One surviving candidate; its tuple position is its qubit index."""
+
+ task: int
+ option: Option
+ cost: int
+
+
+@dataclass(frozen=True)
+class Model:
+ """Upper-triangular QUBO: offset + linear*x + sum(i int:
+ """Evaluate the full QUBO, including its constant offset."""
+ _validate_bits(bits, len(self.variables))
+ return (
+ self.offset
+ + sum(c * b for c, b in zip(self.linear, bits, strict=True))
+ + sum(c * bits[i] * bits[j] for i, j, c in self.quadratic)
+ )
+
+ def audit(self) -> dict[str, Any]:
+ """Return JSON-ready coefficients and a stable variable-to-qubit map."""
+ return {
+ "qubits": len(self.variables),
+ "penalty": self.penalty,
+ "objective_bound": self.objective_bound,
+ "offset": self.offset,
+ "linear": list(self.linear),
+ "quadratic": list(self.quadratic),
+ "domains": self.domains,
+ "pruned": self.pruned,
+ "variables": [
+ {
+ "index": i,
+ "task": self.problem.tasks[v.task].id,
+ "resource": v.option.resource,
+ "start": v.option.start,
+ "cost": v.cost,
+ }
+ for i, v in enumerate(self.variables)
+ ],
+ "conflicts": [
+ {"i": i, "j": j, "reasons": reasons} for i, j, reasons in self.conflicts
+ ],
+ }
+
+
+def compile_qubo(problem: Problem, penalty: int | None = None) -> Model:
+ """Prune unary-invalid options and compile exact-one and pair penalties.
+
+ Let U be the sum of the largest surviving cost per task. For nonnegative
+ costs, A=U+1 makes every infeasible bit vector worse than every feasible
+ schedule. A custom penalty must be an integer strictly greater than U.
+ """
+ resources = {r.id: r for r in problem.resources}
+ variables: list[Variable] = []
+ domains: list[tuple[int, ...]] = []
+ pruned: list[dict[str, Any]] = []
+ for ti, task in enumerate(problem.tasks):
+ domain = []
+ for option in task.options:
+ resource = resources[option.resource]
+ end = option.start + task.duration + resource.cleanup
+ reasons = []
+ if end > problem.horizon:
+ reasons.append("horizon")
+ if any(_overlap(option.start, end, a, b) for a, b in resource.downtime):
+ reasons.append("downtime")
+ if reasons:
+ pruned.append(
+ {
+ "task": task.id,
+ "resource": option.resource,
+ "start": option.start,
+ "reasons": reasons,
+ }
+ )
+ else:
+ domain.append(len(variables))
+ variables.append(Variable(ti, option, _cost(task, option)))
+ if len(variables) > 256:
+ raise ValueError(
+ "model compilation supports at most 256 candidates"
+ )
+ domains.append(tuple(domain))
+ bound = sum(max((variables[i].cost for i in d), default=0) for d in domains)
+ if penalty is None:
+ penalty = bound + 1
+ if type(penalty) is not int or penalty <= bound:
+ raise ValueError(f"penalty must be an integer greater than {bound}")
+ linear = [v.cost - penalty for v in variables]
+ quadratic: dict[tuple[int, int], int] = {}
+ for indices in domains:
+ for i, j in combinations(indices, 2):
+ quadratic[i, j] = 2 * penalty
+ conflicts = []
+ precedence = set(problem.precedence)
+ for i, j in combinations(range(len(variables)), 2):
+ left, right = variables[i], variables[j]
+ if left.task == right.task:
+ continue
+ a, b = problem.tasks[left.task], problem.tasks[right.task]
+ oa, ob = left.option, right.option
+ ea, eb = oa.start + a.duration, ob.start + b.duration
+ reasons = []
+ if oa.resource == ob.resource:
+ cleanup = resources[oa.resource].cleanup
+ if _overlap(oa.start, ea + cleanup, ob.start, eb + cleanup):
+ reasons.append("resource")
+ if a.group == b.group and _overlap(oa.start, ea, ob.start, eb):
+ reasons.append("group")
+ if (
+ (a.id, b.id) in precedence
+ and ea > ob.start
+ or (b.id, a.id) in precedence
+ and eb > oa.start
+ ):
+ reasons.append("precedence")
+ if reasons:
+ # Count a forbidden candidate pair once, even with several reasons.
+ conflicts.append((i, j, tuple(reasons)))
+ quadratic[i, j] = penalty
+ return Model(
+ problem,
+ tuple(variables),
+ tuple(domains),
+ tuple(linear),
+ tuple((i, j, c) for (i, j), c in sorted(quadratic.items())),
+ penalty * len(problem.tasks),
+ penalty,
+ bound,
+ tuple(conflicts),
+ tuple(pruned),
+ )
+
+
+def evaluate(model: Model, bits: Sequence[int]) -> dict[str, Any]:
+ """Decode and check constraints from input semantics, independently of QUBO.
+
+ Violation count counts violated exact-one task constraints and distinct
+ forbidden selected pairs. Detailed pair reasons may contain multiple causes.
+ An infeasible vector has objective=None; raw_cost remains available to audit.
+ """
+ _validate_bits(bits, len(model.variables))
+ selected = [i for i, bit in enumerate(bits) if bit]
+ rows: list[dict[str, Any]] = []
+ violations = []
+ raw_cost = 0
+ resources = {r.id: r for r in model.problem.resources}
+ for ti, task in enumerate(model.problem.tasks):
+ chosen = [i for i in selected if model.variables[i].task == ti]
+ if len(chosen) != 1:
+ violations.append(
+ {"kind": "exact_one", "task": task.id, "count": len(chosen)}
+ )
+ for i in chosen:
+ option = model.variables[i].option
+ raw_cost += _cost(task, option)
+ rows.append(
+ {
+ "variable": i,
+ "task": task.id,
+ "group": task.group,
+ "resource": option.resource,
+ "start": option.start,
+ "end": option.start + task.duration,
+ "reserved_end": option.start
+ + task.duration
+ + resources[option.resource].cleanup,
+ "changed": task.original is not None
+ and task.original != (option.resource, option.start),
+ }
+ )
+ for a, b in combinations(rows, 2):
+ if a["task"] == b["task"]:
+ continue
+ reasons = []
+ if a["resource"] == b["resource"] and _overlap(
+ a["start"], a["reserved_end"], b["start"], b["reserved_end"]
+ ):
+ reasons.append("resource")
+ if a["group"] == b["group"] and _overlap(
+ a["start"], a["end"], b["start"], b["end"]
+ ):
+ reasons.append("group")
+ for before, after in model.problem.precedence:
+ if (
+ (a["task"], b["task"]) == (before, after)
+ and a["end"] > b["start"]
+ or (b["task"], a["task"]) == (before, after)
+ and b["end"] > a["start"]
+ ):
+ reasons.append("precedence")
+ if reasons:
+ violations.append(
+ {
+ "kind": "conflict",
+ "tasks": [a["task"], b["task"]],
+ "variables": [a["variable"], b["variable"]],
+ "reasons": reasons,
+ }
+ )
+ return {
+ "feasible": not violations,
+ "objective": raw_cost if not violations else None,
+ "raw_cost": raw_cost,
+ "violation_count": len(violations),
+ "violations": violations,
+ "schedule": sorted(rows, key=lambda row: (row["start"], row["task"])),
+ "bits": list(bits),
+ "qubo_energy": model.energy(bits),
+ }
+
+
+def _cost(task: Task, option: Option) -> int:
+ changed = task.original is not None and task.original != (
+ option.resource,
+ option.start,
+ )
+ return option.cost + task.change_cost * changed
+
+
+def _overlap(a: int, b: int, c: int, d: int) -> bool:
+ return a < d and c < b
+
+
+def _validate_bits(bits: Sequence[int], size: int) -> None:
+ if len(bits) != size or any(b not in (0, 1) for b in bits):
+ raise ValueError(f"expected {size} binary values in qubit-index order")
diff --git a/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/problem.py b/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/problem.py
new file mode 100644
index 00000000..75cb225f
--- /dev/null
+++ b/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/problem.py
@@ -0,0 +1,189 @@
+"""Validated, immutable inputs for shared laboratory rescheduling."""
+
+from __future__ import annotations
+
+import json
+from dataclasses import dataclass
+from pathlib import Path
+from typing import Any
+
+
+@dataclass(frozen=True)
+class Resource:
+ """A unit-capacity instrument with cleanup time and half-open downtime."""
+
+ id: str
+ cleanup: int
+ downtime: tuple[tuple[int, int], ...]
+
+
+@dataclass(frozen=True)
+class Option:
+ """An explicitly allowed instrument/start assignment and preference cost."""
+
+ resource: str
+ start: int
+ cost: int
+
+
+@dataclass(frozen=True)
+class Task:
+ """An indivisible experiment belonging to one mutually exclusive group."""
+
+ id: str
+ group: str
+ duration: int
+ options: tuple[Option, ...]
+ original: tuple[str, int] | None
+ change_cost: int
+
+
+@dataclass(frozen=True)
+class Problem:
+ """Validated finite scheduling instance; empty domains may be infeasible."""
+
+ name: str
+ horizon: int
+ resources: tuple[Resource, ...]
+ tasks: tuple[Task, ...]
+ precedence: tuple[tuple[str, str], ...]
+
+ @classmethod
+ def from_dict(cls, data: dict[str, Any]) -> Problem:
+ """Parse strict JSON-shaped data; reject typos, booleans and bad references.
+
+ Costs and time values are bounded nonnegative integers. A task with no
+ options is a valid but infeasible instance, as is a cyclic precedence
+ graph (durations are strictly positive).
+ """
+ _keys(
+ data, {"name", "horizon", "resources", "tasks"}, {"precedence"}, "problem"
+ )
+ name = _name(data["name"], "name")
+ horizon = _integer(data["horizon"], "horizon", minimum=1)
+ resources = []
+ for raw in _list(data["resources"], "resources"):
+ _keys(raw, {"id"}, {"cleanup", "downtime"}, "resource")
+ rid = _name(raw["id"], "resource.id")
+ cleanup = _integer(raw.get("cleanup", 0), "cleanup")
+ downtime = []
+ for interval in _list(raw.get("downtime", []), "downtime"):
+ if not isinstance(interval, list) or len(interval) != 2:
+ raise ValueError("downtime must contain [start, end] pairs")
+ start, end = (_integer(v, "downtime endpoint") for v in interval)
+ if not 0 <= start < end <= horizon:
+ raise ValueError(
+ "downtime must satisfy 0 <= start < end <= horizon"
+ )
+ downtime.append((start, end))
+ resources.append(Resource(rid, cleanup, tuple(downtime)))
+ _unique([r.id for r in resources], "resource ids")
+ if not resources:
+ raise ValueError("at least one resource is required")
+ resource_ids = {r.id for r in resources}
+ tasks = []
+ for raw in _list(data["tasks"], "tasks"):
+ _keys(
+ raw,
+ {"id", "group", "duration", "options"},
+ {"original", "change_cost"},
+ "task",
+ )
+ tid = _name(raw["id"], "task.id")
+ group = _name(raw["group"], "group")
+ duration = _integer(raw["duration"], "duration", minimum=1)
+ options = []
+ for option in _list(raw["options"], "options"):
+ _keys(option, {"resource", "start", "cost"}, set(), "option")
+ rid, start = _assignment(option, resource_ids)
+ options.append(Option(rid, start, _integer(option["cost"], "cost")))
+ _unique([(o.resource, o.start) for o in options], "task options")
+ original = None
+ if "original" in raw:
+ _keys(raw["original"], {"resource", "start"}, set(), "original")
+ original = _assignment(raw["original"], resource_ids)
+ change_cost = _integer(raw.get("change_cost", 0), "change_cost")
+ if change_cost and original is None:
+ raise ValueError("change_cost requires original")
+ tasks.append(
+ Task(tid, group, duration, tuple(options), original, change_cost)
+ )
+ _unique([t.id for t in tasks], "task ids")
+ task_ids = {t.id for t in tasks}
+ precedence = []
+ for pair in _list(data.get("precedence", []), "precedence"):
+ if not isinstance(pair, list) or len(pair) != 2:
+ raise ValueError("precedence must contain [before, after] pairs")
+ before, after = (_name(v, "precedence task") for v in pair)
+ if before not in task_ids or after not in task_ids or before == after:
+ raise ValueError("precedence needs two distinct known task ids")
+ precedence.append((before, after))
+ _unique(precedence, "precedence pairs")
+ return cls(name, horizon, tuple(resources), tuple(tasks), tuple(precedence))
+
+
+def load_problem(path: str | Path) -> Problem:
+ """Read UTF-8 JSON, rejecting duplicate keys and non-finite constants."""
+ return parse_problem(Path(path).read_text(encoding="utf-8"))
+
+
+def parse_problem(text: str) -> Problem:
+ """Parse a JSON snapshot with the same strict validation as file loading."""
+
+ def pairs_hook(pairs: list[tuple[str, Any]]) -> dict[str, Any]:
+ """Reject duplicate object keys instead of silently keeping the last."""
+ result: dict[str, Any] = {}
+ for key, value in pairs:
+ if key in result:
+ raise ValueError(f"duplicate JSON key: {key}")
+ result[key] = value
+ return result
+
+ def invalid_constant(value: str) -> None:
+ """Reject nonstandard JSON numeric constants."""
+ raise ValueError(f"invalid JSON constant: {value}")
+
+ return Problem.from_dict(
+ json.loads(
+ text,
+ object_pairs_hook=pairs_hook,
+ parse_constant=invalid_constant,
+ )
+ )
+
+
+def _keys(value: Any, required: set[str], optional: set[str], label: str) -> None:
+ if not isinstance(value, dict):
+ raise ValueError(f"{label} must be an object")
+ if required - value.keys() or value.keys() - required - optional:
+ raise ValueError(f"{label}: missing or unknown fields")
+
+
+def _integer(value: Any, label: str, minimum: int = 0) -> int:
+ if type(value) is not int or not minimum <= value <= 1_000_000:
+ raise ValueError(f"{label} must be an integer in [{minimum}, 1000000]")
+ return value
+
+
+def _name(value: Any, label: str) -> str:
+ if not isinstance(value, str) or not value.strip():
+ raise ValueError(f"{label} must be a nonempty string")
+ return value
+
+
+def _list(value: Any, label: str) -> list[Any]:
+ if not isinstance(value, list):
+ raise ValueError(f"{label} must be an array")
+ return value
+
+
+def _unique(values: list[Any], label: str) -> None:
+ if len(set(values)) != len(values):
+ raise ValueError(f"duplicate {label}")
+
+
+def _assignment(raw: dict[str, Any], resource_ids: set[str]) -> tuple[str, int]:
+ rid = _name(raw["resource"], "resource reference")
+ if rid not in resource_ids:
+ raise ValueError(f"unknown resource: {rid}")
+ return rid, _integer(raw["start"], "start")
diff --git a/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/quantum.py b/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/quantum.py
new file mode 100644
index 00000000..9063a171
--- /dev/null
+++ b/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/quantum.py
@@ -0,0 +1,270 @@
+"""Seeded CPU statevector QAOA using upstream phase and XY circuit components."""
+
+from __future__ import annotations
+
+import itertools
+from dataclasses import replace
+from time import perf_counter
+from typing import Any
+
+import numpy as np
+from pyqpanda3.core import CPUQVM, RX, H, QCircuit, QProg
+from pyqpanda3.hamiltonian import PauliOperator
+from scipy.optimize import minimize
+
+from pyqpanda_alg.QAOA.default_circuits import iswap, linear_w_state
+from pyqpanda_alg.QAOA.qaoa import pauli_z_operator_to_circuit
+
+from .model import Model, evaluate
+
+MAX_QUBITS = 16
+
+
+def to_ising(model: Model, scale: float = 1.0) -> PauliOperator:
+ """Map x_i=(I-Z_i)/2 with explicit indices, preserving the constant offset."""
+ if not np.isfinite(scale) or scale <= 0:
+ raise ValueError("scale must be positive and finite")
+ terms = {"": float(model.offset)}
+ for i, coefficient in enumerate(model.linear):
+ terms[""] += coefficient / 2
+ terms[f"Z{i}"] = terms.get(f"Z{i}", 0.0) - coefficient / 2
+ for i, j, coefficient in model.quadratic:
+ terms[""] += coefficient / 4
+ terms[f"Z{i}"] = terms.get(f"Z{i}", 0.0) - coefficient / 4
+ terms[f"Z{j}"] = terms.get(f"Z{j}", 0.0) - coefficient / 4
+ terms[f"Z{i} Z{j}"] = coefficient / 4
+ return PauliOperator({key: value / scale for key, value in terms.items()})
+
+
+def build_circuit(
+ model: Model,
+ parameters: list[float],
+ mixer: str = "xy",
+ *,
+ phase_mode: str = "auto",
+) -> QProg:
+ """Build alternating cost/mixer layers; parameter order is gamma,beta per layer.
+
+ XY starts each task in a W state and applies adjacent exchange rotations.
+ Singleton domains receive no mixer, preserving their required bit value.
+ X starts in |+> and applies RX(2*beta) to every qubit as an ablation.
+ auto omits the identically zero exact-one penalty ONLY for XY. full keeps
+ the original phase for equivalence/resource audits. Scaling stays unchanged.
+ """
+ _check_model(model)
+ if mixer not in ("xy", "x"):
+ raise ValueError("mixer must be xy or x")
+ if not parameters or len(parameters) % 2 or not np.all(np.isfinite(parameters)):
+ raise ValueError("parameters must be finite gamma,beta pairs")
+ qubits = list(range(len(model.variables)))
+ circuit = QCircuit()
+ if mixer == "xy":
+ for domain in model.domains:
+ circuit << linear_w_state(list(domain))
+ else:
+ for qubit in qubits:
+ circuit << H(qubit)
+ if phase_mode not in ("auto", "full"):
+ raise ValueError("phase_mode must be auto or full")
+ phase_model = model
+ if mixer == "xy" and phase_mode == "auto":
+ phase_model = replace(
+ model,
+ offset=0,
+ linear=tuple(v.cost for v in model.variables),
+ quadratic=tuple(
+ (i, j, c)
+ for i, j, c in model.quadratic
+ if model.variables[i].task != model.variables[j].task
+ ),
+ )
+ operator = to_ising(phase_model, float(model.penalty))
+ for gamma, beta in zip(parameters[::2], parameters[1::2], strict=True):
+ phase, _ = pauli_z_operator_to_circuit(operator, qubits, gamma)
+ circuit << phase
+ if mixer == "xy":
+ for domain in model.domains:
+ for left, right in itertools.pairwise(domain):
+ circuit << iswap(left, right, 2 * beta)
+ else:
+ for qubit in qubits:
+ circuit << RX(qubit, 2 * beta)
+ program = QProg(len(qubits))
+ program << circuit
+ return program
+
+
+def circuit_probabilities(
+ model: Model,
+ parameters: list[float],
+ mixer: str = "xy",
+ *,
+ phase_mode: str = "auto",
+) -> np.ndarray:
+ """Simulate without measurement; qubit 0 is the least-significant bit."""
+ machine = CPUQVM()
+ machine.run(build_circuit(model, parameters, mixer, phase_mode=phase_mode), shots=1)
+ probabilities = np.abs(np.asarray(machine.result().get_state_vector())) ** 2
+ if len(probabilities) != 1 << len(model.variables):
+ raise RuntimeError("unexpected simulator statevector dimension")
+ return probabilities / probabilities.sum()
+
+
+def solve_qaoa(
+ model: Model,
+ seed: int = 7,
+ layers: int = 1,
+ shots: int = 512,
+ maxiter: int = 60,
+ restarts: int = 2,
+ mixer: str = "xy",
+ *,
+ phase_mode: str = "auto",
+) -> dict[str, Any]:
+ """Optimize exact expected QUBO energy, then sample the final quantum state.
+
+ Uses independent NumPy generators for parameter initialization and final
+ Born-distribution sampling because CPUQVM does not expose a portable seed.
+ No exact optimum, feasibility-filtered state space or classical repair enters
+ training. Only sampled bitstrings compete for the returned schedule.
+ """
+ started = perf_counter()
+ for name, value, lower, upper in (
+ ("seed", seed, 0, 2**32 - 1),
+ ("layers", layers, 1, 8),
+ ("shots", shots, 1, 1_000_000),
+ ("maxiter", maxiter, 6, 100_000),
+ ("restarts", restarts, 1, 100),
+ ):
+ if type(value) is not int or not lower <= value <= upper:
+ raise ValueError(f"{name} must be an integer in [{lower}, {upper}]")
+ if maxiter < 2 * layers + 2:
+ raise ValueError("maxiter must be at least 2 * layers + 2 for COBYLA")
+ if mixer not in ("xy", "x"):
+ raise ValueError("mixer must be xy or x")
+ if phase_mode not in ("auto", "full"):
+ raise ValueError("phase_mode must be auto or full")
+ if any(not domain for domain in model.domains):
+ return {
+ "status": "infeasible_domain",
+ "best": None,
+ "seed": seed,
+ "mixer": mixer,
+ "runtime_seconds": perf_counter() - started,
+ "circuit_evaluations": 0,
+ }
+ if not model.variables:
+ return {
+ "status": "trivial",
+ "best": evaluate(model, []),
+ "seed": seed,
+ "mixer": mixer,
+ "runtime_seconds": perf_counter() - started,
+ "circuit_evaluations": 0,
+ }
+ _check_model(model)
+ init_seed, sample_seed = np.random.SeedSequence(seed).spawn(2)
+ initializer = np.random.default_rng(init_seed)
+ sampler = np.random.default_rng(sample_seed)
+ indices = np.arange(1 << len(model.variables), dtype=np.int64)
+ energies = np.full(len(indices), model.offset, dtype=float)
+ for i, coefficient in enumerate(model.linear):
+ energies += coefficient * ((indices >> i) & 1)
+ for i, j, coefficient in model.quadratic:
+ energies += coefficient * ((indices >> i) & 1) * ((indices >> j) & 1)
+ best_loss = float("inf")
+ best_parameters: list[float] = []
+ best_probabilities = np.empty(0)
+ history = []
+
+ def loss(parameters: np.ndarray) -> float:
+ """Record a real simulator evaluation and retain the best parameters."""
+ nonlocal best_loss, best_parameters, best_probabilities
+ probabilities = circuit_probabilities(
+ model, parameters.tolist(), mixer, phase_mode=phase_mode
+ )
+ expected = float(probabilities @ energies)
+ history.append(expected)
+ if expected < best_loss:
+ best_loss = expected
+ best_parameters = parameters.tolist()
+ best_probabilities = probabilities
+ return expected / model.penalty
+
+ optimizer_runs = []
+ for _ in range(restarts):
+ initial = initializer.uniform(0.0, np.pi, size=2 * layers)
+ result = minimize(
+ loss,
+ initial,
+ method="COBYLA",
+ options={"maxiter": maxiter, "rhobeg": 0.5, "tol": 1e-5},
+ )
+ optimizer_runs.append(
+ {
+ "success": bool(result.success),
+ "message": str(result.message),
+ "evaluations": int(result.nfev),
+ }
+ )
+ counts = sampler.multinomial(shots, best_probabilities)
+ observed = [
+ (_bits(int(i), len(model.variables)), int(counts[i]))
+ for i in np.flatnonzero(counts)
+ ]
+ candidates = [evaluate(model, bits) for bits, _ in observed]
+ best = min(
+ candidates,
+ key=lambda row: (not row["feasible"], row["qubo_energy"], row["bits"]),
+ )
+ # These diagnostics use the input validator, not a classical optimal solution.
+ feasible_probability = 0.0
+ one_hot_probability = 0.0
+ for state_index in np.flatnonzero(best_probabilities > 1e-15):
+ i = int(state_index)
+ bits = _bits(i, len(model.variables))
+ if all(sum(bits[j] for j in domain) == 1 for domain in model.domains):
+ one_hot_probability += float(best_probabilities[i])
+ if evaluate(model, bits)["feasible"]:
+ feasible_probability += float(best_probabilities[i])
+ sampled_feasible = sum(
+ count
+ for row, (_, count) in zip(candidates, observed, strict=True)
+ if row["feasible"]
+ )
+ return {
+ "status": "feasible" if best["feasible"] else "no_feasible_sample",
+ "best": best,
+ "seed": seed,
+ "mixer": mixer,
+ "phase_mode": phase_mode,
+ "layers": layers,
+ "shots": shots,
+ "maxiter": maxiter,
+ "restarts": restarts,
+ "parameters": best_parameters,
+ "expected_energy": best_loss,
+ "initial_expected_energy": history[0],
+ "history": history,
+ "feasible_probability": feasible_probability,
+ "one_hot_probability": one_hot_probability,
+ "sampled_feasible_fraction": sampled_feasible / shots,
+ "counts": {"".join(map(str, bits[::-1])): count for bits, count in observed},
+ "circuit_evaluations": len(history),
+ "optimizer_runs": optimizer_runs,
+ "sampling": "seeded NumPy multinomial from CPUQVM Born probabilities",
+ "runtime_seconds": perf_counter() - started,
+ }
+
+
+def _check_model(model: Model) -> None:
+ if not 1 <= len(model.variables) <= MAX_QUBITS:
+ raise ValueError(
+ f"CPU simulation requires 1..{MAX_QUBITS} surviving candidates"
+ )
+ if any(not domain for domain in model.domains):
+ raise ValueError("cannot prepare an empty task domain")
+
+
+def _bits(index: int, size: int) -> list[int]:
+ return [(index >> i) & 1 for i in range(size)]
diff --git a/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/reduction.py b/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/reduction.py
new file mode 100644
index 00000000..0cc2b6f9
--- /dev/null
+++ b/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/reduction.py
@@ -0,0 +1,272 @@
+"""Lossless constraint propagation, components and auditable restoration."""
+
+from __future__ import annotations
+
+from collections import deque
+from collections.abc import Sequence
+from dataclasses import dataclass, replace
+from time import perf_counter
+from typing import Any
+
+import numpy as np
+
+from .model import Model, compile_qubo, evaluate
+from .quantum import MAX_QUBITS, solve_qaoa
+
+
+@dataclass(frozen=True)
+class Reduction:
+ """Lossless feasible-schedule map; indices always refer to the original model."""
+
+ source: Model
+ fixed: tuple[int, ...]
+ components: tuple[Model, ...]
+ mappings: tuple[tuple[int, ...], ...]
+ removals: tuple[dict[str, Any], ...]
+ infeasible_task: str | None
+ pruning: str = "singleton"
+
+ def audit(self) -> dict[str, Any]:
+ """Explain every deletion, fixed cost and component-to-original mapping."""
+ return {
+ "method": (
+ "arc consistency + singleton propagation"
+ " + disconnected conflict components"
+ if self.pruning == "arc"
+ else "singleton propagation + disconnected conflict components"
+ ),
+ "original_qubits": len(self.source.variables),
+ "fixed_variables": self.fixed,
+ "fixed_cost": sum(self.source.variables[i].cost for i in self.fixed),
+ "removals": self.removals,
+ "infeasible_task": self.infeasible_task,
+ "component_qubits": [len(m.variables) for m in self.components],
+ "max_component_qubits": max(map(len, self.mappings), default=0),
+ "component_to_original": self.mappings,
+ "components": [m.audit() for m in self.components],
+ }
+
+ def restore(self, assignments: Sequence[Sequence[int]]) -> dict[str, Any]:
+ """Reinsert fixed choices and validate all original task constraints."""
+ if self.infeasible_task is not None:
+ raise ValueError("cannot restore a proven infeasible reduction")
+ if len(assignments) != len(self.components):
+ raise ValueError("one bit vector per component is required")
+ bits = [0] * len(self.source.variables)
+ for i in self.fixed:
+ bits[i] = 1
+ for model, mapping, local in zip(
+ self.components, self.mappings, assignments, strict=True
+ ):
+ evaluate(model, local) # Validate dimensions and binary values.
+ for i, bit in zip(mapping, local, strict=True):
+ bits[i] = bit
+ return evaluate(self.source, bits)
+
+
+def _enforce_arc_consistency(
+ model: Model,
+ active: list[set[int]],
+ neighbours: dict[int, dict[int, tuple[str, ...]]],
+ removals: list[dict[str, Any]],
+) -> None:
+ """Run deterministic AC-3 and retain the full opposing domain as a witness."""
+ adjacent: dict[int, set[int]] = {t: set() for t in range(len(active))}
+ for i, j, _ in model.conflicts:
+ a, b = model.variables[i].task, model.variables[j].task
+ adjacent[a].add(b)
+ adjacent[b].add(a)
+ queue = deque((a, b) for a in adjacent for b in sorted(adjacent[a]))
+ queued = set(queue)
+ while queue:
+ a, b = queue.popleft()
+ queued.remove((a, b))
+ revised = False
+ for i in sorted(active[a]):
+ if any(j not in neighbours[i] for j in active[b]):
+ continue
+ removals.append(
+ {
+ "variable": i,
+ "rule": "no_support",
+ "against_task": model.problem.tasks[b].id,
+ "blockers": [
+ {"variable": j, "reasons": neighbours[i][j]}
+ for j in sorted(active[b])
+ ],
+ }
+ )
+ active[a].remove(i)
+ revised = True
+ if not active[a]:
+ return
+ if revised:
+ for other in sorted(adjacent[a] - {b}):
+ arc = (other, a)
+ if arc not in queued:
+ queue.append(arc)
+ queued.add(arc)
+
+
+def reduce_model(model: Model, *, pruning: str = "singleton") -> Reduction:
+ """Preserve every feasible schedule by propagating logically forced choices.
+
+ A singleton must be selected, hence all its conflicting candidates are
+ impossible. Optional pruning="arc" first removes choices incompatible with
+ every surviving choice of another task, using AC-3. Neither mode proves
+ global feasibility from nonempty domains. Then partition by surviving
+ forbidden pairs. No dominance rules or heuristic freezing occur.
+ """
+ if pruning not in ("singleton", "arc"):
+ raise ValueError("pruning must be singleton or arc")
+ active = [set(domain) for domain in model.domains]
+ neighbours: dict[int, dict[int, tuple[str, ...]]] = {
+ i: {} for i in range(len(model.variables))
+ }
+ for i, j, reasons in model.conflicts:
+ neighbours[i][j] = reasons
+ neighbours[j][i] = reasons
+ fixed: list[int] = []
+ removals: list[dict[str, Any]] = []
+ if pruning == "arc" and all(active):
+ _enforce_arc_consistency(model, active, neighbours, removals)
+ processed: set[int] = set()
+ while True:
+ empty = next((t for t, domain in enumerate(active) if not domain), None)
+ if empty is not None:
+ return Reduction(
+ model,
+ tuple(fixed),
+ (),
+ (),
+ tuple(removals),
+ model.problem.tasks[empty].id,
+ pruning,
+ )
+ task = next(
+ (t for t, d in enumerate(active) if len(d) == 1 and t not in processed),
+ None,
+ )
+ if task is None:
+ break
+ processed.add(task)
+ forced = min(active[task])
+ fixed.append(forced)
+ for other, reasons in sorted(neighbours[forced].items()):
+ ti = model.variables[other].task
+ if other in active[ti]:
+ active[ti].remove(other)
+ removals.append(
+ {
+ "variable": other,
+ "forced_by": forced,
+ "reasons": reasons,
+ }
+ )
+ remaining = set(range(len(active))) - processed
+ adjacency: dict[int, set[int]] = {t: set() for t in remaining}
+ for i, j, _ in model.conflicts:
+ a, b = model.variables[i].task, model.variables[j].task
+ if a in remaining and b in remaining and i in active[a] and j in active[b]:
+ adjacency[a].add(b)
+ adjacency[b].add(a)
+ components = []
+ mappings = []
+ while remaining:
+ pending = [min(remaining)]
+ tasks: set[int] = set()
+ while pending:
+ task = pending.pop()
+ if task in tasks:
+ continue
+ tasks.add(task)
+ pending.extend(sorted(adjacency[task] - tasks, reverse=True))
+ remaining -= tasks
+ ordered = sorted(tasks)
+ ids = {model.problem.tasks[t].id for t in ordered}
+ problem = replace(
+ model.problem,
+ tasks=tuple(
+ replace(
+ model.problem.tasks[t],
+ options=tuple(model.variables[i].option for i in sorted(active[t])),
+ )
+ for t in ordered
+ ),
+ precedence=tuple(
+ (a, b) for a, b in model.problem.precedence if a in ids and b in ids
+ ),
+ )
+ components.append(compile_qubo(problem))
+ mappings.append(tuple(i for t in ordered for i in sorted(active[t])))
+ return Reduction(
+ model,
+ tuple(fixed),
+ tuple(components),
+ tuple(mappings),
+ tuple(removals),
+ None,
+ pruning,
+ )
+
+
+def solve_reduced(
+ model: Model,
+ seed: int = 7,
+ layers: int = 1,
+ shots: int = 512,
+ maxiter: int = 60,
+ restarts: int = 2,
+ mixer: str = "xy",
+ *,
+ pruning: str = "singleton",
+) -> dict[str, Any]:
+ """Solve each exact component on CPU and restore; never fall back silently.
+
+ Each component receives its own deterministic training/sampling seed and
+ the stated shot budget. Independent component draws give product feasibility.
+ A component exceeding MAX_QUBITS is reported before any quantum execution.
+ Use pruning="arc" for lossless unsupported-candidate deletion before fixing.
+ """
+ started = perf_counter()
+ # Validate solver arguments even when propagation solves the entire problem.
+ empty = compile_qubo(replace(model.problem, tasks=(), precedence=()))
+ solve_qaoa(empty, seed, layers, shots, maxiter, restarts, mixer)
+ reduction = reduce_model(model, pruning=pruning)
+ result: dict[str, Any] = {
+ "seed": seed,
+ "mixer": mixer,
+ "reduction": reduction.audit(),
+ "best": None,
+ "components": [],
+ "circuit_evaluations": 0,
+ }
+ if reduction.infeasible_task is not None:
+ result["status"] = "infeasible_propagation"
+ elif any(len(m.variables) > MAX_QUBITS for m in reduction.components):
+ result["status"] = "resource_limit"
+ else:
+ seeds = np.random.SeedSequence(seed).spawn(len(reduction.components))
+ runs = [
+ solve_qaoa(
+ m, int(s.generate_state(1)[0]), layers, shots, maxiter, restarts, mixer
+ )
+ for m, s in zip(reduction.components, seeds, strict=True)
+ ]
+ best = reduction.restore([run["best"]["bits"] for run in runs])
+ result.update(
+ {
+ "status": ("feasible" if runs else "classical_propagation")
+ if best["feasible"]
+ else "no_feasible_sample",
+ "best": best,
+ "components": runs,
+ "circuit_evaluations": sum(r["circuit_evaluations"] for r in runs),
+ "feasible_probability": float(
+ np.prod([r["feasible_probability"] for r in runs])
+ ),
+ "total_shots": shots * len(runs),
+ }
+ )
+ result["runtime_seconds"] = perf_counter() - started
+ return result
diff --git a/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/report.py b/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/report.py
new file mode 100644
index 00000000..34abcc26
--- /dev/null
+++ b/pyqpanda-algorithm/pyqpanda_alg/LabScheduling/report.py
@@ -0,0 +1,184 @@
+"""End-to-end reports and compact, machine-readable CLI output."""
+
+from __future__ import annotations
+
+import hashlib
+import platform
+from importlib.metadata import version
+from math import prod
+from pathlib import Path
+from time import perf_counter
+from typing import Any
+
+import numpy as np
+
+from .classical import solve_exact
+from .metrics import circuit_resources, distribution_metrics
+from .milp import MAX_RAW_CANDIDATES, solve_milp, validate_assignment
+from .model import compile_qubo, evaluate
+from .problem import parse_problem
+from .quantum import circuit_probabilities, solve_qaoa
+from .reduction import solve_reduced
+
+
+def run_experiment(
+ path: str | Path,
+ seed: int = 7,
+ layers: int = 1,
+ shots: int = 512,
+ maxiter: int = 60,
+ restarts: int = 2,
+ mixer: str = "xy",
+ *,
+ reduce: bool = False,
+ pruning: str = "singleton",
+) -> dict[str, Any]:
+ """Solve a snapshot; report unavailable baseline budgets without losing results.
+
+ Optional arc pruning requires reduce=True. A skipped MILP contributes no
+ certificate; absolute_gap is unknown unless enumeration proves optimality.
+ """
+ if pruning not in ("singleton", "arc"):
+ raise ValueError("pruning must be singleton or arc")
+ if pruning != "singleton" and not reduce:
+ raise ValueError("arc pruning requires reduce=True (--reduce)")
+ started = perf_counter()
+ path = Path(path)
+ snapshot = path.read_bytes()
+ problem = parse_problem(snapshot.decode("utf-8"))
+ model = compile_qubo(problem)
+ quantum = (
+ solve_reduced(
+ model, seed, layers, shots, maxiter, restarts, mixer, pruning=pruning
+ )
+ if reduce
+ else solve_qaoa(model, seed, layers, shots, maxiter, restarts, mixer)
+ )
+ exact: dict[str, Any] = (
+ solve_exact(model)
+ if prod(map(len, model.domains)) <= 1_000_000
+ else {
+ "status": "budget_exceeded",
+ "best": None,
+ "combinations": prod(map(len, model.domains)),
+ "feasible_count": None,
+ }
+ )
+ raw_candidates = sum(len(task.options) for task in problem.tasks)
+ milp: dict[str, Any] = (
+ solve_milp(problem)
+ if raw_candidates <= MAX_RAW_CANDIDATES
+ else {
+ "status": "budget_exceeded",
+ "variables": raw_candidates,
+ "max_variables": MAX_RAW_CANDIDATES,
+ "reason": "raw candidate count exceeds the independent MILP budget",
+ "best": None,
+ "dual_bound": None,
+ "gap": None,
+ }
+ )
+ if exact["best"] and milp["status"] == "optimal":
+ if exact["best"]["objective"] != milp["best"]["objective"]:
+ raise RuntimeError("enumeration and raw-input MILP disagree")
+ if milp["status"] == "infeasible" and (
+ exact["best"] or quantum["best"] and quantum["best"]["feasible"]
+ ):
+ raise RuntimeError("raw-input MILP rejected a feasible witness")
+ if exact["status"] == "infeasible" and milp["best"]:
+ raise RuntimeError("enumeration rejected a raw-input MILP witness")
+ if quantum["best"] and quantum["best"]["feasible"]:
+ choices = []
+ for ti, task in enumerate(problem.tasks):
+ chosen = next(
+ v.option
+ for v, bit in zip(model.variables, quantum["best"]["bits"], strict=True)
+ if bit and v.task == ti
+ )
+ choices.append(task.options.index(chosen))
+ independent = validate_assignment(problem, choices)
+ if (
+ not independent["feasible"]
+ or independent["objective"] != quantum["best"]["objective"]
+ ):
+ raise RuntimeError("quantum schedule failed raw-input validation")
+ quantum["business_metrics"] = independent
+ if "parameters" in quantum:
+ quantum["resources"] = circuit_resources(model, quantum["parameters"], mixer)
+ quantum["distribution"] = distribution_metrics(
+ model, circuit_probabilities(model, quantum["parameters"], mixer)
+ )
+ uniform_started = perf_counter()
+ random = np.random.default_rng(seed)
+ uniform_best = None
+ feasible_samples = 0
+ if all(model.domains):
+ for _ in range(shots):
+ bits = [0] * len(model.variables)
+ for domain in model.domains:
+ bits[int(random.choice(domain))] = 1
+ candidate = evaluate(model, bits)
+ feasible_samples += candidate["feasible"]
+ if uniform_best is None or (
+ not candidate["feasible"],
+ candidate["qubo_energy"],
+ ) < (not uniform_best["feasible"], uniform_best["qubo_energy"]):
+ uniform_best = candidate
+ uniform = {
+ "best": uniform_best,
+ "shots": shots,
+ "seed": seed,
+ "feasible_probability": (
+ exact["feasible_count"] / exact["combinations"]
+ if exact["combinations"] and exact["feasible_count"] is not None
+ else 0.0
+ if exact["combinations"] == 0
+ else None
+ ),
+ "sampled_feasible_fraction": feasible_samples / shots,
+ "runtime_seconds": perf_counter() - uniform_started,
+ }
+ quantum_best = quantum["best"]
+ exact_best = exact["best"] or (
+ milp["best"] if milp["status"] == "optimal" else None
+ )
+ gap = (
+ quantum_best["objective"] - exact_best["objective"]
+ if quantum_best and quantum_best["feasible"] and exact_best
+ else None
+ )
+ if gap is not None and gap < 0:
+ raise RuntimeError(
+ "quantum result contradicts the independent exact certificate"
+ )
+ return {
+ "schema_version": 2,
+ "problem": problem.name,
+ "input_sha256": hashlib.sha256(snapshot).hexdigest(),
+ "environment": {
+ "python": platform.python_version(),
+ "platform": platform.system(),
+ **{
+ name: version(name)
+ for name in ("pyqpanda3", "pyqpanda_alg", "numpy", "scipy")
+ },
+ },
+ "model": model.audit(),
+ "quantum": quantum,
+ "exact": exact,
+ "milp": milp,
+ "uniform_one_hot": uniform,
+ "absolute_gap": gap,
+ "status": (
+ "infeasible"
+ if exact["status"] == "infeasible"
+ or milp["status"] == "infeasible"
+ or quantum["status"] == "infeasible_propagation"
+ else "resource_limit"
+ if quantum["status"] == "resource_limit"
+ else "feasible"
+ if quantum_best and quantum_best["feasible"]
+ else "no_feasible_sample"
+ ),
+ "runtime_seconds": perf_counter() - started,
+ }
diff --git a/test/LabScheduling/budget.test.py b/test/LabScheduling/budget.test.py
new file mode 100644
index 00000000..241c4306
--- /dev/null
+++ b/test/LabScheduling/budget.test.py
@@ -0,0 +1,117 @@
+"""Budget conservation, sample provenance and fair-control regression checks."""
+
+import importlib
+import json
+import sys
+from pathlib import Path
+
+import pytest
+from pyqpanda_alg.LabScheduling import compile_qubo, load_problem, reduce_model
+
+EXAMPLES = (
+ Path(__file__).resolve().parents[2] / "pyqpanda-algorithm/example/LabScheduling"
+)
+sys.path.insert(0, str(EXAMPLES))
+try:
+ budget = importlib.import_module("matched_budget")
+ summary = importlib.import_module("summarize_matched")
+finally:
+ sys.path.pop(0)
+
+
+without_time = summary.without_timing
+
+
+def test_allocation_conserves_budget_and_rejects_unfunded_components():
+ for total in (8, 16, 60, 128, 512):
+ for count in (1, 2, 3):
+ parts = budget.allocate(total, count)
+ assert sum(parts) == total
+ assert max(parts) - min(parts) <= 1
+ assert budget.allocate(512, 0) == []
+ assert budget.allocate(512, 3) == [171, 171, 170]
+ for args in ((0, 1), (2, 3), (60, 11, 6), (True, 1), (8, -1)):
+ with pytest.raises(ValueError):
+ budget.allocate(*args)
+
+
+def test_component_hit_probability_is_product_of_best_of_samples():
+ assert budget.joint_hit([0.2, 0.4], 5) == pytest.approx((1 - 0.8**3) * (1 - 0.6**2))
+ assert budget.joint_hit([], 8) == 1
+ assert budget.joint_hit([0.0, 1.0], 8) == 0
+
+
+def test_single_unchanged_component_has_identical_controls_and_replays():
+ model = compile_qubo(load_problem(EXAMPLES / "data/tradeoff.json"))
+ reduction = reduce_model(model)
+ first = budget.compare(model, reduction, 7)
+ second = budget.compare(model, reduction, 7)
+ assert without_time(first) == without_time(second)
+ paths = first["paths"]
+ assert without_time(paths["direct"]) == without_time(
+ paths["reduced"]["components"][0]
+ )
+ assert without_time(paths["uniform_direct"]) == without_time(
+ paths["uniform_reduced"]["components"][0]
+ )
+ assert first["exact_objective"] == 12
+
+
+def test_three_components_share_caps_and_all_selected_results_are_observed():
+ model = compile_qubo(load_problem(EXAMPLES / "data/corpus-v2/n5-s0-r0.json"))
+ reduction = reduce_model(model)
+ assert len(reduction.components) == 3
+ row = budget.compare(model, reduction, 7)
+ for name in ("reduced", "uniform_reduced"):
+ run = row["paths"][name]
+ assert run["shots"] == 512
+ assert run["circuit_evaluations"] <= 120
+ for component, allocation in zip(
+ run["components"], run["allocations"], strict=True
+ ):
+ assert sum(component["counts"].values()) == allocation["shots"]
+ key = "".join(map(str, component["best"]["bits"][::-1]))
+ assert component["counts"][key] > 0
+ restored = reduction.restore([r["best"]["bits"] for r in run["components"]])
+ assert restored == run["best"]
+ assert (
+ sum(
+ a["maxiter_per_restart"] * 2 for a in row["paths"]["reduced"]["allocations"]
+ )
+ == 120
+ )
+ limited = budget.components(reduction, 7, quantum=True, per_restart=10)
+ assert limited["status"] == "budget_insufficient"
+ assert limited["circuit_evaluations"] == limited["shots"] == 0
+
+
+def test_infeasible_domains_do_not_produce_fictitious_samples():
+ corpus = EXAMPLES / "data/corpus-v2"
+ model = next(
+ m
+ for m in (compile_qubo(load_problem(p)) for p in sorted(corpus.glob("n*.json")))
+ if any(not d for d in m.domains)
+ )
+ row = budget.compare(model, reduce_model(model), 0)
+ assert row["exact_objective"] is None
+ assert row["conditional_hit_curve"] == []
+ assert row["paths"]["uniform_direct"]["best"] is None
+ assert row["paths"]["uniform_direct"]["shots"] == 0
+ assert row["paths"]["reduced"]["status"] == "infeasible_propagation"
+
+
+def test_replay_ignores_only_timing_and_rejects_changed_samples(tmp_path):
+ original, replay = tmp_path / "original", tmp_path / "replay"
+ for directory, elapsed in ((original, 1), (replay, 2)):
+ directory.mkdir()
+ (directory / "provenance.json").write_text('{"seed": 7}')
+ (directory / "execution.json").write_text('{"paired_records": 1}')
+ (directory / "runs.jsonl").write_text(
+ json.dumps({"run": {"counts": {"01": 512}, "runtime_seconds": elapsed}})
+ + "\n"
+ )
+ summary.verify_replay(original, replay)
+ assert json.loads((original / "replay.json").read_text())["identical_except_timing"]
+ (replay / "runs.jsonl").write_text('{"run":{"counts":{"10":512}}}\n')
+ with pytest.raises(ValueError, match="beyond timing"):
+ summary.verify_replay(original, replay)
diff --git a/test/LabScheduling/budget_report.test.py b/test/LabScheduling/budget_report.test.py
new file mode 100644
index 00000000..24b1104a
--- /dev/null
+++ b/test/LabScheduling/budget_report.test.py
@@ -0,0 +1,106 @@
+"""Keep quantum evidence when the independent raw MILP exceeds its budget."""
+
+import json
+
+import pytest
+from pyqpanda_alg.LabScheduling.__main__ import main
+from pyqpanda_alg.LabScheduling.report import run_experiment
+
+
+def _problem(raw_count, tasks=1, available=True):
+ raw = {
+ "name": "raw options versus surviving quantum candidates",
+ "horizon": 3 * tasks,
+ "resources": [{"id": "r"}],
+ "tasks": [
+ {
+ "id": f"t{i}",
+ "group": f"g{i}",
+ "duration": 1,
+ "options": [
+ {"resource": "r", "start": 3 * i + j, "cost": j} for j in range(2)
+ ],
+ }
+ for i in range(tasks)
+ ],
+ }
+ raw["tasks"][0]["options"].extend(
+ {"resource": "r", "start": 100 + i, "cost": 0}
+ for i in range(raw_count - 2 * tasks)
+ )
+ if not available:
+ raw["resources"][0]["downtime"] = [[0, raw["horizon"]]]
+ return raw
+
+
+@pytest.mark.parametrize("raw_count", [2048, 2049])
+def test_raw_candidate_boundary_retains_quantum_and_exact_certificate(
+ tmp_path, raw_count
+):
+ path = tmp_path / "input.json"
+ path.write_text(json.dumps(_problem(raw_count)), encoding="utf-8")
+ result = run_experiment(path, shots=32, maxiter=6, restarts=1)
+ assert result["model"]["qubits"] == 2
+ assert len(result["model"]["pruned"]) == raw_count - 2
+ assert result["status"] == "feasible"
+ assert result["quantum"]["circuit_evaluations"] > 0
+ assert result["quantum"]["business_metrics"]["feasible"]
+ assert result["quantum"]["best"]["objective"] == 0
+ assert result["exact"]["best"]["objective"] == 0
+ assert result["absolute_gap"] == 0
+ if raw_count == 2048:
+ assert result["milp"]["status"] == "optimal"
+ assert result["milp"]["best"]["objective"] == 0
+ else:
+ assert result["milp"]["status"] == "budget_exceeded"
+ assert result["milp"]["variables"] == 2049
+ assert result["milp"]["max_variables"] == 2048
+ assert result["milp"]["best"] is None
+
+
+def test_no_exact_certificate_means_unknown_gap_not_zero(tmp_path, monkeypatch):
+ import pyqpanda_alg.LabScheduling.report as module
+
+ def forbidden_call(*args, **kwargs):
+ raise AssertionError("raw MILP must not be constructed above its budget")
+
+ monkeypatch.setattr(module, "solve_milp", forbidden_call)
+ path = tmp_path / "input.json"
+ path.write_text(json.dumps(_problem(2049, tasks=21)), encoding="utf-8")
+ result = run_experiment(path, reduce=True, shots=2, maxiter=6, restarts=1)
+ assert result["status"] == "feasible"
+ assert result["quantum"]["business_metrics"]["feasible"]
+ assert len(result["quantum"]["components"]) == 21
+ assert all(c["circuit_evaluations"] > 0 for c in result["quantum"]["components"])
+ assert result["exact"]["status"] == "budget_exceeded"
+ assert result["milp"]["status"] == "budget_exceeded"
+ assert all(result["milp"][key] is None for key in ("best", "dual_bound", "gap"))
+ assert result["absolute_gap"] is None
+ assert result["uniform_one_hot"]["feasible_probability"] is None
+
+
+def test_empty_domain_remains_infeasible_when_milp_is_skipped(tmp_path):
+ path = tmp_path / "input.json"
+ path.write_text(json.dumps(_problem(2049, available=False)), encoding="utf-8")
+ result = run_experiment(path, reduce=True, shots=2, maxiter=6, restarts=1)
+ assert result["status"] == "infeasible"
+ assert result["exact"]["status"] == "infeasible"
+ assert result["milp"]["status"] == "budget_exceeded"
+ assert result["quantum"]["circuit_evaluations"] == 0
+ assert result["absolute_gap"] is None
+
+
+def test_cli_saves_report_instead_of_treating_budget_as_bad_input(tmp_path, capsys):
+ source = tmp_path / "input.json"
+ output = tmp_path / "report.json"
+ source.write_text(json.dumps(_problem(2049)), encoding="utf-8")
+ before = source.read_bytes()
+ status = main(
+ [str(source), "--maxiter", "6", "--restarts", "1", "--output", str(output)]
+ )
+ assert status == 0
+ result = json.loads(capsys.readouterr().out)
+ assert result == json.loads(output.read_text(encoding="utf-8"))
+ assert result["status"] == "feasible"
+ assert result["milp"]["status"] == "budget_exceeded"
+ assert source.read_bytes() == before
diff --git a/test/LabScheduling/calendar_budget.test.py b/test/LabScheduling/calendar_budget.test.py
new file mode 100644
index 00000000..da32664d
--- /dev/null
+++ b/test/LabScheduling/calendar_budget.test.py
@@ -0,0 +1,164 @@
+"""Reject calendar-empty domains before quadratic MILP model construction."""
+
+import importlib
+import json
+from pathlib import Path
+
+import pytest
+from pyqpanda_alg.LabScheduling import Problem, solve_milp, validate_assignment
+
+milp_module = importlib.import_module("pyqpanda_alg.LabScheduling.milp")
+
+
+def _problem(start: int, cleanup: int, downtime: list[list[int]]) -> Problem:
+ return Problem.from_dict(
+ {
+ "name": "calendar-domain",
+ "horizon": 6,
+ "resources": [{"id": "r", "cleanup": cleanup, "downtime": downtime}],
+ "tasks": [
+ {
+ "id": "blocked",
+ "group": "g0",
+ "duration": 2,
+ "options": [{"resource": "r", "start": start, "cost": 0}],
+ },
+ {
+ "id": "other",
+ "group": "g1",
+ "duration": 1,
+ "options": [{"resource": "r", "start": 0, "cost": 0}],
+ },
+ ],
+ }
+ )
+
+
+@pytest.mark.parametrize(
+ "start, cleanup, downtime",
+ [(1, 0, [[2, 3]]), (4, 1, []), (0, 1, [[2, 3]])],
+ ids=["downtime-overlap", "cleanup-exceeds-horizon", "cleanup-overlaps-downtime"],
+)
+def test_calendar_infeasibility_skips_pairs_and_solver(
+ monkeypatch: pytest.MonkeyPatch,
+ start: int,
+ cleanup: int,
+ downtime: list[list[int]],
+) -> None:
+ """A raw calendar witness needs neither pair rows nor a solver invocation."""
+ problem = _problem(start, cleanup, downtime)
+ assert any(
+ row["kind"] == "calendar" and row["task"] == "blocked"
+ for row in validate_assignment(problem, [0, 0])["violations"]
+ )
+
+ def unnecessary(*args: object, **kwargs: object) -> None:
+ pytest.fail("calendar infeasibility must be checked before pairs and MILP")
+
+ monkeypatch.setattr(milp_module, "_incompatible", unnecessary)
+ monkeypatch.setattr(milp_module, "milp", unnecessary)
+ result = solve_milp(problem)
+ assert result["status"] == "infeasible"
+ assert result["infeasible_task"] == "blocked"
+ assert result["best"] is None and result["dual_bound"] is None
+ assert result["gap"] is None and result["constraints"] == 0
+ assert "solver_status" not in result
+
+
+def test_touching_calendar_boundary_still_runs_real_milp() -> None:
+ """Half-open downtime and cleanup boundaries must not remove a valid choice."""
+ problem = _problem(3, 1, [[2, 3]])
+ result = solve_milp(problem)
+ assert result["status"] == "optimal" and result["solver_status"] == 0
+ assert result["best"]["feasible"] and result["best"]["objective"] == 0
+
+
+def test_one_remaining_raw_option_preserves_actual_optimization() -> None:
+ """An unavailable cheap option must not hide a remaining feasible option."""
+ problem = Problem.from_dict(
+ {
+ "name": "mixed-calendar",
+ "horizon": 6,
+ "resources": [{"id": "r", "downtime": [[0, 2]]}],
+ "tasks": [
+ {
+ "id": "task",
+ "group": "group",
+ "duration": 1,
+ "options": [
+ {"resource": "r", "start": 0, "cost": 0},
+ {"resource": "r", "start": 2, "cost": 3},
+ ],
+ }
+ ],
+ }
+ )
+ result = solve_milp(problem)
+ assert result["status"] == "optimal" and result["solver_status"] == 0
+ assert result["best"]["choices"] == [1]
+ assert result["best"]["objective"] == 3
+
+
+def test_cli_keeps_large_calendar_infeasibility_report(
+ tmp_path: Path, capsys: pytest.CaptureFixture[str]
+) -> None:
+ """Many raw options with empty calendar domains still produce exit 3 and JSON."""
+ from pyqpanda_alg.LabScheduling.__main__ import main
+
+ data = {
+ "name": "large-calendar-empty",
+ "horizon": 2,
+ "resources": [{"id": "r", "downtime": [[0, 2]]}],
+ "tasks": [
+ {
+ "id": f"t{i}",
+ "group": f"g{i}",
+ "duration": 1,
+ "options": [{"resource": "r", "start": 0, "cost": 0}],
+ }
+ for i in range(512)
+ ],
+ }
+ source, output = tmp_path / "input.json", tmp_path / "report.json"
+ source.write_text(json.dumps(data), encoding="utf-8")
+ assert main([str(source), "--output", str(output)]) == 3
+ result = json.loads(output.read_text(encoding="utf-8"))
+ assert json.loads(capsys.readouterr().out) == result
+ assert result["status"] == "infeasible"
+ assert result["quantum"]["circuit_evaluations"] == 0
+ assert result["milp"]["variables"] == 512
+ assert result["milp"]["constraints"] == 0
+ assert result["milp"]["infeasible_task"] == "t0"
+ assert result["absolute_gap"] is None
+
+
+@pytest.mark.parametrize("blocked_start", [0, 1])
+def test_fixed_zero_candidates_need_no_pair_rows(blocked_start: int) -> None:
+ """Retain raw indices and the optimum while omitting bound-redundant rows."""
+ problem = Problem.from_dict(
+ {
+ "name": "fixed-zero-pairs",
+ "horizon": 6,
+ "resources": [{"id": "r", "downtime": [[0, 2]]}],
+ "tasks": [
+ {
+ "id": f"t{i}",
+ "group": f"g{i}",
+ "duration": 2,
+ "options": [
+ {"resource": "r", "start": blocked_start, "cost": 0},
+ {"resource": "r", "start": 2, "cost": 3 if i == 0 else 1},
+ {"resource": "r", "start": 4, "cost": 1 if i == 0 else 3},
+ ],
+ }
+ for i in range(2)
+ ],
+ }
+ )
+ result = solve_milp(problem)
+ assert result["status"] == "optimal" and result["variables"] == 6
+ assert result["best"]["choices"] == [2, 1]
+ assert result["best"]["objective"] == 2
+ assert validate_assignment(problem, [2, 1])["feasible"]
+ # Two exact-one rows and two incompatible pairs of available options.
+ assert result["constraints"] == 4
diff --git a/test/LabScheduling/cli.test.py b/test/LabScheduling/cli.test.py
new file mode 100644
index 00000000..9dbcaad4
--- /dev/null
+++ b/test/LabScheduling/cli.test.py
@@ -0,0 +1,90 @@
+"""CLI contract: reports, exit status, actual samples and no secret configuration."""
+
+import json
+import subprocess
+import sys
+from pathlib import Path
+
+import pytest
+from pyqpanda_alg.LabScheduling.__main__ import main
+
+DATA = (
+ Path(__file__).resolve().parents[2]
+ / "pyqpanda-algorithm/example/LabScheduling/data"
+)
+
+
+def test_one_command_cli_and_saved_report(tmp_path):
+ output = tmp_path / "nested" / "report.json"
+ process = subprocess.run(
+ [
+ sys.executable,
+ "-m",
+ "pyqpanda_alg.LabScheduling",
+ str(DATA / "simple.json"),
+ "--maxiter",
+ "25",
+ "--restarts",
+ "1",
+ "--output",
+ str(output),
+ ],
+ capture_output=True,
+ text=True,
+ timeout=30,
+ check=True,
+ )
+ report = json.loads(process.stdout)
+ assert report == json.loads(output.read_text(encoding="utf-8"))
+ assert report["status"] == "feasible"
+ assert report["absolute_gap"] == 0
+ assert (
+ report["quantum"]["best"]["objective"]
+ == report["exact"]["best"]["objective"]
+ == 5
+ )
+ assert len(report["input_sha256"]) == 64
+ assert report["environment"]["pyqpanda3"]
+ assert report["uniform_one_hot"]["feasible_probability"] == pytest.approx(4 / 9)
+
+
+def test_infeasible_exit_and_report(capsys):
+ status = main([str(DATA / "infeasible.json"), "--maxiter", "6", "--restarts", "1"])
+ assert status == 3
+ report = json.loads(capsys.readouterr().out)
+ assert report["status"] == "infeasible"
+ assert report["exact"]["best"] is None
+ assert report["quantum"]["status"] == "no_feasible_sample"
+ assert report["absolute_gap"] is None
+
+
+def test_missing_or_invalid_input_exit(tmp_path, capsys):
+ for path in [tmp_path / "missing.json", tmp_path / "bad.json"]:
+ if path.name == "bad.json":
+ path.write_text('{"name": "only"}', encoding="utf-8")
+ with pytest.raises(SystemExit) as exc:
+ main([str(path)])
+ assert exc.value.code == 2
+ assert "error:" in capsys.readouterr().err
+
+
+def test_finite_shots_miss_is_distinct_from_infeasibility(capsys):
+ status = main(
+ [
+ str(DATA / "simple.json"),
+ "--shots",
+ "1",
+ "--mixer",
+ "x",
+ "--maxiter",
+ "6",
+ "--restarts",
+ "1",
+ ]
+ )
+ report = json.loads(capsys.readouterr().out)
+ assert status == 4
+ assert report["status"] == "no_feasible_sample"
+ assert report["exact"]["status"] == "optimal"
+ assert report["quantum"]["best"]["objective"] is None
+ assert report["absolute_gap"] is None
diff --git a/test/LabScheduling/enhancement.test.py b/test/LabScheduling/enhancement.test.py
new file mode 100644
index 00000000..89be933d
--- /dev/null
+++ b/test/LabScheduling/enhancement.test.py
@@ -0,0 +1,429 @@
+"""Lossless reduction, independent raw MILP and real circuit equivalence."""
+
+from dataclasses import replace
+from itertools import product
+from pathlib import Path
+from random import Random
+from types import SimpleNamespace
+
+import numpy as np
+import pytest
+from pyqpanda_alg.LabScheduling import (
+ Problem,
+ circuit_probabilities,
+ compile_qubo,
+ evaluate,
+ load_problem,
+ reduce_model,
+ solve_exact,
+ solve_milp,
+ solve_reduced,
+ validate_assignment,
+)
+from pyqpanda_alg.LabScheduling.metrics import (
+ circuit_resources,
+ distribution_metrics,
+ hit_probability,
+)
+
+DATA = (
+ Path(__file__).resolve().parents[2]
+ / "pyqpanda-algorithm/example/LabScheduling/data"
+)
+
+
+def random_problem(seed):
+ rng = Random(seed)
+ tasks = []
+ for ti in range(rng.randint(0, 5)):
+ assignments = rng.sample(
+ [(r, s) for r in ("r0", "r1") for s in range(6)],
+ rng.randint(0 if seed % 9 == 0 else 1, 3),
+ )
+ tasks.append(
+ {
+ "id": f"t{ti}",
+ "group": f"g{rng.randrange(2)}",
+ "duration": rng.randint(1, 2),
+ "change_cost": rng.randrange(4),
+ "original": {"resource": "r0", "start": ti},
+ "options": [
+ {"resource": r, "start": s, "cost": rng.randrange(5)}
+ for r, s in assignments
+ ],
+ }
+ )
+ edges = [
+ [a["id"], b["id"]]
+ for a in tasks
+ for b in tasks
+ if a != b and rng.random() < 0.07
+ ]
+ return Problem.from_dict(
+ {
+ "name": f"case-{seed}",
+ "horizon": 7,
+ "resources": [
+ {"id": "r0", "cleanup": seed % 2, "downtime": [[0, 1]]},
+ {"id": "r1"},
+ ],
+ "tasks": tasks,
+ "precedence": edges,
+ }
+ )
+
+
+def feasible_vectors(model):
+ result = {}
+ for choice in product(*model.domains):
+ bits = [int(i in choice) for i in range(len(model.variables))]
+ row = evaluate(model, bits)
+ if row["feasible"]:
+ result[tuple(bits)] = row["objective"]
+ return result
+
+
+def test_one_hundred_instances_preserve_every_feasible_schedule_and_raw_milp_optimum():
+ for seed in range(100):
+ problem = random_problem(seed)
+ model = compile_qubo(problem)
+ original = feasible_vectors(model)
+ reduced = reduce_model(model)
+ restored = {}
+ if reduced.infeasible_task is None:
+ options = [list(feasible_vectors(m)) for m in reduced.components]
+ for choices in product(*options):
+ row = reduced.restore(choices)
+ assert row["feasible"], seed
+ restored[tuple(row["bits"])] = row["objective"]
+ local_cost = sum(
+ evaluate(m, b)["objective"]
+ for m, b in zip(reduced.components, choices, strict=True)
+ )
+ assert row["objective"] == local_cost + reduced.audit()["fixed_cost"]
+ assert restored == original, seed
+ milp = solve_milp(problem)
+ assert milp["status"] == ("optimal" if original else "infeasible"), seed
+ if original:
+ assert milp["best"]["objective"] == min(original.values()), seed
+
+
+@pytest.mark.parametrize("dataset", ["simple", "medium"])
+def test_full_and_reduced_xy_phase_match_for_thirty_real_cpu_parameter_sets(dataset):
+ model = compile_qubo(load_problem(DATA / f"{dataset}.json"))
+ rng = np.random.default_rng(721)
+ for layers in (1, 2, 3):
+ for _ in range(10):
+ parameters = rng.uniform(-3, 3, 2 * layers).tolist()
+ assert circuit_probabilities(model, parameters) == pytest.approx(
+ circuit_probabilities(model, parameters, phase_mode="full"), abs=1e-10
+ )
+ resources = circuit_resources(model, [0.3, 0.7])
+ assert resources["auto"]["cnot"] < resources["full"]["cnot"]
+ assert resources["auto"]["depth"] < resources["full"]["depth"]
+ assert (
+ circuit_resources(model, [0.3, 0.7], "x")["auto"]
+ == circuit_resources(model, [0.3, 0.7], "x")["full"]
+ )
+
+
+def test_mixed_singleton_domains_and_x_phase_unmodified():
+ p = load_problem(DATA / "simple.json")
+ p = replace(
+ p, tasks=(replace(p.tasks[0], options=(p.tasks[0].options[-1],)), p.tasks[1])
+ )
+ model = compile_qubo(p)
+ for mixer in ("xy", "x"):
+ assert circuit_probabilities(
+ model, [0.3, -0.9, 1.1, 0.7], mixer
+ ) == pytest.approx(
+ circuit_probabilities(
+ model, [0.3, -0.9, 1.1, 0.7], mixer, phase_mode="full"
+ ),
+ abs=1e-10,
+ )
+ with pytest.raises(ValueError, match="phase_mode"):
+ circuit_probabilities(model, [0.3, 0.7], phase_mode="bad")
+ from pyqpanda_alg.LabScheduling import solve_qaoa
+
+ with pytest.raises(ValueError, match="phase_mode"):
+ solve_qaoa(model, phase_mode="bad")
+
+
+def chain_problem():
+ return Problem.from_dict(
+ {
+ "name": "chain",
+ "horizon": 5,
+ "resources": [{"id": "r", "downtime": [[0, 1]]}],
+ "tasks": [
+ {
+ "id": f"t{i}",
+ "group": f"g{i}",
+ "duration": 1,
+ "original": {"resource": "r", "start": i},
+ "change_cost": i + 1,
+ "options": [
+ {"resource": "r", "start": s, "cost": 0} for s in (i, i + 1)
+ ],
+ }
+ for i in range(3)
+ ],
+ }
+ )
+
+
+def test_outage_cascades_through_unaffected_bookings_and_restores_cost():
+ model = compile_qubo(chain_problem())
+ reduced = reduce_model(model)
+ assert len(reduced.fixed) == 3
+ assert len(reduced.removals) == 2
+ assert reduced.components == ()
+ assert reduced.restore([])["objective"] == 6
+ result = solve_reduced(model)
+ assert result["status"] == "classical_propagation"
+ assert result["circuit_evaluations"] == 0
+ assert result["best"]["objective"] == 6
+ assert all(row["changed"] for row in result["best"]["schedule"])
+ with pytest.raises(ValueError, match="per component"):
+ reduced.restore([[0]])
+ with pytest.raises(ValueError, match="seed"):
+ solve_reduced(model, seed=-1)
+
+
+def test_reduction_infeasible_and_actual_component_sampling():
+ infeasible = compile_qubo(load_problem(DATA / "infeasible.json"))
+ assert solve_reduced(infeasible)["status"] == "infeasible_propagation"
+ with pytest.raises(ValueError, match="infeasible"):
+ reduce_model(infeasible).restore([])
+ model = compile_qubo(load_problem(DATA / "simple.json"))
+ result = solve_reduced(model, maxiter=20, restarts=1)
+ assert result["status"] == "feasible"
+ assert result["best"]["objective"] >= solve_exact(model)["best"]["objective"]
+ for run in result["components"]:
+ key = "".join(map(str, run["best"]["bits"][::-1]))
+ assert run["counts"][key] > 0
+
+
+def test_disconnected_components_respect_largest_component_budget():
+ p = chain_problem()
+ tasks = tuple(
+ replace(
+ p.tasks[1],
+ id=f"t{i}",
+ group=f"g{i}",
+ options=tuple(
+ replace(o, start=3 * i + j + 1)
+ for j, o in enumerate(p.tasks[1].options)
+ ),
+ )
+ for i in range(9)
+ )
+ model = compile_qubo(replace(p, horizon=40, tasks=tasks))
+ reduced = reduce_model(model)
+ assert reduced.audit()["original_qubits"] == 18
+ assert reduced.audit()["component_qubits"] == [2] * 9
+ result = solve_reduced(model, maxiter=6, restarts=1)
+ assert result["best"]["feasible"]
+ assert result["total_shots"] == 512 * 9
+ task = replace(
+ tasks[0],
+ options=tuple(replace(tasks[0].options[0], start=i + 1) for i in range(17)),
+ )
+ big = compile_qubo(replace(p, horizon=40, tasks=(task,)))
+ assert solve_reduced(big)["status"] == "resource_limit"
+
+
+def test_probability_diagnostics_ties_infeasibility_and_validation():
+ p = chain_problem()
+ model = compile_qubo(replace(p, tasks=(), precedence=()))
+ metrics = distribution_metrics(model, np.array([1.0]))
+ assert metrics["optimal_count"] == 1
+ assert metrics["shots_for_95_percent"] == 1
+ model = compile_qubo(load_problem(DATA / "infeasible.json"))
+ metrics = distribution_metrics(model, circuit_probabilities(model, [0.0, 0.0]))
+ assert metrics["optimal_probability"] == 0
+ assert metrics["shots_for_95_percent"] is None
+ model = compile_qubo(load_problem(DATA / "simple.json"))
+ metrics = distribution_metrics(model, circuit_probabilities(model, [0.0, 0.0]))
+ assert metrics["optimal_probability"] == pytest.approx(1 / 9)
+ assert metrics["uniform_optimal_probability"] == pytest.approx(1 / 9)
+ assert hit_probability(1 / 81, 512) == pytest.approx(0.998271204298638)
+ for p in (-1, 2, float("nan")):
+ with pytest.raises(ValueError):
+ hit_probability(p, 8)
+ with pytest.raises(ValueError):
+ hit_probability(0.2, 0)
+ for array in (np.array([1.0]), np.full(64, -1), np.full(64, np.nan), np.ones(64)):
+ with pytest.raises(ValueError):
+ distribution_metrics(model, array)
+
+
+def test_raw_validator_catches_unary_error_and_choice_shape():
+ problem = chain_problem()
+ assert not validate_assignment(problem, [0, 0, 0])["feasible"]
+ assert not validate_assignment(problem, [1, 0, 0])["feasible"]
+ assert validate_assignment(problem, [1, 1, 1])["changed_tasks"] == 3
+ for choices in ([], [99, 0, 0], [True, 0, 0]):
+ with pytest.raises(ValueError):
+ validate_assignment(problem, choices)
+ for limit in (0, -1, True, float("nan")):
+ with pytest.raises(ValueError):
+ solve_milp(problem, time_limit=limit)
+
+
+def test_milp_limit_keeps_status_separate_from_optimality(monkeypatch):
+ import importlib
+
+ module = importlib.import_module("pyqpanda_alg.LabScheduling.milp")
+ monkeypatch.setattr(
+ module,
+ "milp",
+ lambda *a, **kw: SimpleNamespace(
+ status=1,
+ x=None,
+ message="time limit",
+ mip_dual_bound=0,
+ mip_gap=None,
+ ),
+ )
+ result = solve_milp(chain_problem())
+ assert result["status"] == "limit"
+ assert result["best"] is None and result["dual_bound"] == 0
+ assert result["gap"] is None
+
+
+def test_tied_optima_and_greedy_dead_end():
+ from pyqpanda_alg.LabScheduling.classical import solve_greedy
+
+ p = chain_problem()
+ task = replace(p.tasks[1], original=None, change_cost=0)
+ model = compile_qubo(replace(p, tasks=(task,)))
+ metrics = distribution_metrics(model, np.array([0, 0.5, 0.5, 0]))
+ assert metrics["optimal_count"] == 2
+ assert metrics["optimal_probability"] == 1
+ assert solve_greedy(model)["best"]["objective"] == 0
+ infeasible = compile_qubo(load_problem(DATA / "infeasible.json"))
+ assert solve_greedy(infeasible)["status"] == "dead_end"
+
+
+def test_booking_csv_expands_windows_costs_and_preserves_invalid_candidates(tmp_path):
+ from pyqpanda_alg.LabScheduling.bookings import COLUMNS, import_bookings
+
+ path = tmp_path / "bookings.csv"
+ header = ",".join(COLUMNS) + "\n"
+ path.write_text(header + "a,g,1,r,0,r,0,2,1,2,3\n")
+ calendar = {
+ "name": "csv",
+ "horizon": 3,
+ "resources": [{"id": "r", "downtime": [[0, 1]]}],
+ }
+ raw = import_bookings(path, calendar)
+ assert [o["cost"] for o in raw["tasks"][0]["options"]] == [0, 3, 6]
+ assert len(compile_qubo(Problem.from_dict(raw)).pruned) == 1
+ invalid = [
+ ("bad-header\n", "headers"),
+ (header + "a,g\n", "missing"),
+ (header + "a,g,1,r,0,r,0,2,1,2,3,extra\n", "extra"),
+ (header + "a,g,1,r,0,r,0,2,0,2,3\n", "step"),
+ (header + "a,g,1,r,0,r,3,2,1,2,3\n", "earliest"),
+ (header + "a,g,1,r,0,r,0,2,1,-2,3\n", "integer"),
+ (header + "a,g,1,r,0,r,0,2,1,1000001,3\n", "1000000"),
+ (header + "a,g,1,r,0,r,0,256,1,2,3\n", "256"),
+ (header + "a,g,1,r,0,r|r,0,2,1,2,3\n", "duplicate"),
+ ]
+ for content, match in invalid:
+ path.write_text(content)
+ with pytest.raises(ValueError, match=match):
+ import_bookings(path, calendar)
+ with pytest.raises(ValueError, match="calendar"):
+ import_bookings(path, {"tasks": []})
+
+
+def test_reduced_report_and_independent_business_audit(tmp_path):
+ import json
+
+ from pyqpanda_alg.LabScheduling.bookings import import_bookings
+ from pyqpanda_alg.LabScheduling.report import run_experiment
+
+ calendar = json.loads((DATA / "bookings/outage.json").read_text())
+ raw = import_bookings(DATA / "bookings/chain.csv", calendar)
+ path = tmp_path / "chain.json"
+ path.write_text(json.dumps(raw))
+ report = run_experiment(path, reduce=True, maxiter=20, restarts=1)
+ assert report["status"] == "feasible"
+ assert report["quantum"]["business_metrics"]["changed_tasks"] == 3
+ assert report["milp"]["best"]["objective"] == 6
+ assert report["quantum"]["reduction"]["max_component_qubits"] == 4
+
+
+def test_large_exact_budget_is_reported_and_milp_certifies(tmp_path):
+ import json
+
+ from pyqpanda_alg.LabScheduling.report import run_experiment
+
+ raw = {
+ "name": "20 independent bookings",
+ "horizon": 61,
+ "resources": [{"id": "r"}],
+ "tasks": [
+ {
+ "id": f"t{i}",
+ "group": f"g{i}",
+ "duration": 1,
+ "options": [
+ {"resource": "r", "start": 3 * i + j, "cost": j} for j in range(2)
+ ],
+ }
+ for i in range(20)
+ ],
+ }
+ path = tmp_path / "large.json"
+ path.write_text(json.dumps(raw))
+ report = run_experiment(path, reduce=True, shots=2, maxiter=6, restarts=1)
+ assert report["exact"]["status"] == "budget_exceeded"
+ assert report["milp"]["status"] == "optimal"
+ assert report["uniform_one_hot"]["feasible_probability"] is None
+ assert report["status"] == "feasible"
+
+
+def test_milp_resource_budget_and_rejects_corrupted_incumbents(monkeypatch):
+ import importlib
+
+ module = importlib.import_module("pyqpanda_alg.LabScheduling.milp")
+ p = chain_problem()
+ one = replace(p, tasks=(replace(p.tasks[1], options=(p.tasks[1].options[0],)),))
+ oversized = replace(
+ one, tasks=tuple(replace(one.tasks[0], id=f"t{i}") for i in range(2049))
+ )
+ with pytest.raises(ValueError, match="2048"):
+ solve_milp(oversized)
+ for x, value, message in (
+ (np.array([0.5]), 1, "integral"),
+ (np.array([0]), 0, "exact-one"),
+ (np.array([1]), 999, "semantic"),
+ (None, None, "without an incumbent"),
+ ):
+ monkeypatch.setattr(
+ module,
+ "milp",
+ lambda *a, x=x, value=value, **kw: SimpleNamespace(
+ status=0, x=x, fun=value, message="test"
+ ),
+ )
+ with pytest.raises(RuntimeError, match=message):
+ solve_milp(one)
+ monkeypatch.setattr(
+ module,
+ "milp",
+ lambda *a, **kw: SimpleNamespace(
+ status=1,
+ x=np.array([1]),
+ fun=0,
+ message="limit with incumbent",
+ mip_dual_bound=0,
+ mip_gap=0,
+ ),
+ )
+ result = solve_milp(one)
+ assert result["status"] == "limit" and result["best"]["feasible"]
diff --git a/test/LabScheduling/evidence.test.py b/test/LabScheduling/evidence.test.py
new file mode 100644
index 00000000..4877deb9
--- /dev/null
+++ b/test/LabScheduling/evidence.test.py
@@ -0,0 +1,110 @@
+"""Independent business and corpus invariants for the second evaluation."""
+
+import hashlib
+import importlib.util
+import json
+from dataclasses import replace
+from pathlib import Path
+
+import pytest
+from pyqpanda_alg.LabScheduling import (
+ compile_qubo,
+ evaluate,
+ load_problem,
+ reduce_model,
+ solve_milp,
+ solve_reduced,
+ validate_assignment,
+)
+
+EXAMPLES = (
+ Path(__file__).resolve().parents[2] / "pyqpanda-algorithm/example/LabScheduling"
+)
+spec = importlib.util.spec_from_file_location("ablation", EXAMPLES / "ablation.py")
+ablation = importlib.util.module_from_spec(spec)
+spec.loader.exec_module(ablation)
+
+
+def test_frozen_heterogeneous_inputs_preserve_controls_and_all_feasible_schedules():
+ corpus = EXAMPLES / "data/corpus-v2"
+ manifest = json.loads((corpus / "manifest.json").read_text())
+ assert len(manifest["instances"]) == 36
+ assert (
+ hashlib.sha256((EXAMPLES / "make_corpus_v2.py").read_bytes()).hexdigest()
+ == manifest["generator_sha256"]
+ )
+ durations, cleanups, domains = set(), set(), set()
+ for record in manifest["instances"]:
+ path = corpus / record["file"]
+ assert hashlib.sha256(path.read_bytes()).hexdigest() == record["sha256"]
+ problem = load_problem(path)
+ control = replace(
+ problem, resources=tuple(replace(r, downtime=()) for r in problem.resources)
+ )
+ witness = validate_assignment(control, [0] * len(problem.tasks))
+ assert witness["feasible"] and witness["objective"] == 0
+ stages = ablation.audit_stages(problem)
+ oracle = solve_milp(problem)
+ assert (oracle["status"] == "optimal") == bool(stages["feasible_count"])
+ if oracle["best"]:
+ assert oracle["best"]["objective"] == stages["exact_objective"]
+ durations.update(t.duration for t in problem.tasks)
+ cleanups.update(r.cleanup for r in problem.resources)
+ domains.update(len(t.options) for t in problem.tasks)
+ assert durations == {1, 2, 3}
+ assert cleanups == {0, 1, 2}
+ assert domains == {2, 3, 4}
+
+
+def test_tradeoff_retains_all_three_decisions_and_nine_feasible_alternatives():
+ model = compile_qubo(load_problem(EXAMPLES / "data/tradeoff.json"))
+ reduction = reduce_model(model)
+ assert reduction.fixed == ()
+ assert [len(m.variables) for m in reduction.components] == [8]
+ choices = [evaluate(model, bits) for bits in ablation.feasible_vectors(model)]
+ assert len(choices) == 9
+ assert min(row["objective"] for row in choices) == 12
+ optimum = next(row for row in choices if row["objective"] == 12)
+ assert sum(row["changed"] for row in optimum["schedule"]) == 3
+ backup = min(
+ (
+ row
+ for row in choices
+ if any(r["resource"] == "backup" for r in row["schedule"])
+ ),
+ key=lambda r: r["objective"],
+ )
+ assert backup["objective"] == 14
+ assert sum(row["changed"] for row in backup["schedule"]) == 1
+ stages = ablation.audit_stages(model.problem)["stages"]
+ assert stages["raw_input"]["candidate_count"] == 9
+ assert (
+ stages["components_auto_phase"]["cnot"]
+ < stages["components_full_phase"]["cnot"]
+ )
+
+
+@pytest.mark.parametrize("seed", [0, 7, 19])
+def test_tradeoff_quantum_choices_are_actual_samples_and_raw_valid(seed):
+ model = compile_qubo(load_problem(EXAMPLES / "data/tradeoff.json"))
+ result = solve_reduced(model, seed=seed)
+ component = result["components"][0]
+ assert component["counts"]["".join(map(str, component["best"]["bits"][::-1]))] > 0
+ assert result["circuit_evaluations"] > 0
+ assert result["best"]["feasible"]
+ assert result["best"]["objective"] >= 12
+ choices = [
+ task.options.index(
+ next(
+ variable.option
+ for variable, bit in zip(
+ model.variables, result["best"]["bits"], strict=True
+ )
+ if bit and variable.task == ti
+ )
+ )
+ for ti, task in enumerate(model.problem.tasks)
+ ]
+ raw = validate_assignment(model.problem, choices)
+ assert raw["feasible"]
+ assert raw["objective"] == result["best"]["objective"]
diff --git a/test/LabScheduling/io.test.py b/test/LabScheduling/io.test.py
new file mode 100644
index 00000000..5a0d086d
--- /dev/null
+++ b/test/LabScheduling/io.test.py
@@ -0,0 +1,128 @@
+"""Input snapshot provenance and non-destructive report publication regressions."""
+
+import hashlib
+import json
+from pathlib import Path
+
+import pyqpanda_alg.LabScheduling.__main__ as cli
+import pyqpanda_alg.LabScheduling.report as reports
+import pytest
+from pyqpanda_alg.LabScheduling import load_problem, parse_problem
+
+DATA = (
+ Path(__file__).resolve().parents[2]
+ / "pyqpanda-algorithm/example/LabScheduling/data"
+)
+
+
+@pytest.mark.parametrize("alias", ["same_path", "symlink", "hardlink", "directory"])
+def test_output_aliases_rejected_before_training_without_changing_input(
+ tmp_path, monkeypatch, capsys, alias
+):
+ source = tmp_path / "input.json"
+ original = (DATA / "simple.json").read_bytes()
+ source.write_bytes(original)
+ output = source if alias == "same_path" else tmp_path / "output.json"
+ if alias == "symlink":
+ output.symlink_to(source)
+ elif alias == "hardlink":
+ output.hardlink_to(source)
+ elif alias == "directory":
+ output.mkdir()
+
+ def forbidden(*args, **kwargs):
+ pytest.fail("invalid output must be rejected before running the simulator")
+
+ monkeypatch.setattr(cli, "run_experiment", forbidden)
+ with pytest.raises(SystemExit) as error:
+ cli.main([str(source), "--output", str(output)])
+ assert error.value.code == 2
+ assert "output" in capsys.readouterr().err
+ assert source.read_bytes() == original
+
+
+@pytest.mark.parametrize("mutation", ["modify", "delete"])
+def test_report_hash_describes_the_solved_snapshot_even_if_input_changes(
+ tmp_path, monkeypatch, mutation
+):
+ source = tmp_path / "input.json"
+ original = (DATA / "simple.json").read_bytes().replace(b"\n", b"\r\n")
+ source.write_bytes(original)
+ real_solver = reports.solve_qaoa
+
+ def solve_then_change_file(*args, **kwargs):
+ result = real_solver(*args, **kwargs)
+ if mutation == "modify":
+ changed = json.loads(original)
+ changed["name"] = "modified after loading"
+ source.write_text(json.dumps(changed), encoding="utf-8")
+ else:
+ source.unlink()
+ return result
+
+ monkeypatch.setattr(reports, "solve_qaoa", solve_then_change_file)
+ report = reports.run_experiment(source, shots=2, maxiter=6, restarts=1)
+ assert report["problem"] == json.loads(original)["name"]
+ assert report["input_sha256"] == hashlib.sha256(original).hexdigest()
+ assert report["exact"]["best"]["objective"] == 5
+
+
+@pytest.mark.parametrize("failure", ["write", "replace"])
+def test_failed_report_write_preserves_previous_report_and_removes_temporary(
+ tmp_path, monkeypatch, capsys, failure
+):
+ source = tmp_path / "input.json"
+ source.write_text("input must survive", encoding="utf-8")
+ output = tmp_path / "report.json"
+ output.write_text("previous complete report", encoding="utf-8")
+ monkeypatch.setattr(cli, "run_experiment", lambda *a, **k: {"status": "feasible"})
+ if failure == "replace":
+
+ def reject_replace(*args, **kwargs):
+ raise OSError("simulated replacement failure")
+
+ monkeypatch.setattr(Path, "replace", reject_replace)
+ else:
+ real_temporary = cli.NamedTemporaryFile
+
+ def failing_temporary(*args, **kwargs):
+ stream = real_temporary(*args, **kwargs)
+ write = stream.write
+
+ def partial_write(text):
+ write(text[:5])
+ raise OSError("simulated full filesystem during write")
+
+ stream.write = partial_write
+ return stream
+
+ monkeypatch.setattr(cli, "NamedTemporaryFile", failing_temporary)
+ with pytest.raises(SystemExit) as error:
+ cli.main([str(source), "--output", str(output)])
+ assert error.value.code == 2
+ assert "simulated" in capsys.readouterr().err
+ assert source.read_text() == "input must survive"
+ assert output.read_text() == "previous complete report"
+ assert sorted(p.name for p in tmp_path.iterdir()) == ["input.json", "report.json"]
+
+
+def test_atomic_report_replacement_preserves_a_valid_output_symlink(tmp_path):
+ source = tmp_path / "input.json"
+ source.write_text("original input", encoding="utf-8")
+ target = tmp_path / "report.json"
+ target.write_text("old report", encoding="utf-8")
+ link = tmp_path / "report-link.json"
+ link.symlink_to(target)
+ cli._save_report(source, link, '{"status": "feasible"}')
+ assert link.is_symlink()
+ assert target.read_text() == '{"status": "feasible"}\n'
+ assert source.read_text() == "original input"
+ assert len(list(tmp_path.iterdir())) == 3
+
+
+def test_text_parser_preserves_file_loader_validation():
+ text = (DATA / "simple.json").read_text(encoding="utf-8")
+ assert parse_problem(text) == load_problem(DATA / "simple.json")
+ for invalid in ('{"name":"a","name":"b"}', '{"horizon":NaN}', "[]"):
+ with pytest.raises(ValueError):
+ parse_problem(invalid)
diff --git a/test/LabScheduling/model.test.py b/test/LabScheduling/model.test.py
new file mode 100644
index 00000000..db04890b
--- /dev/null
+++ b/test/LabScheduling/model.test.py
@@ -0,0 +1,206 @@
+"""Exhaustive semantic/QUBO equality and input-boundary regression checks."""
+
+import copy
+import json
+from itertools import product
+from pathlib import Path
+
+import pytest
+from pyqpanda_alg.LabScheduling import (
+ Problem,
+ compile_qubo,
+ evaluate,
+ load_problem,
+ solve_exact,
+)
+
+DATA = (
+ Path(__file__).resolve().parents[2]
+ / "pyqpanda-algorithm/example/LabScheduling/data"
+)
+
+
+def fixture_data():
+ return json.loads((DATA / "simple.json").read_text(encoding="utf-8"))
+
+
+def test_all_binary_energies_equal_independent_constraint_formula():
+ model = compile_qubo(load_problem(DATA / "simple.json"))
+ feasible_energies, infeasible_energies = [], []
+ for bits in product((0, 1), repeat=len(model.variables)):
+ checked = evaluate(model, bits)
+ assignment_penalty = sum(
+ (sum(bits[i] for i in domain) - 1) ** 2 for domain in model.domains
+ )
+ pair_count = sum(v["kind"] == "conflict" for v in checked["violations"])
+ assert model.energy(bits) == checked["raw_cost"] + model.penalty * (
+ assignment_penalty + pair_count
+ )
+ (feasible_energies if checked["feasible"] else infeasible_energies).append(
+ model.energy(bits)
+ )
+ assert min(infeasible_energies) > max(feasible_energies)
+ exact = solve_exact(model)
+ assert exact["best"]["objective"] == min(feasible_energies) == 5
+ assert exact["feasible_count"] == 4
+
+
+def test_medium_all_4096_states_and_exact_optimum():
+ model = compile_qubo(load_problem(DATA / "medium.json"))
+ assert len(model.variables) == 12
+ assert len(model.pruned) == 2
+ for bits in product((0, 1), repeat=12):
+ checked = evaluate(model, bits)
+ one_hot = sum(
+ (sum(bits[i] for i in domain) - 1) ** 2 for domain in model.domains
+ )
+ pairs = sum(v["kind"] == "conflict" for v in checked["violations"])
+ assert model.energy(bits) == checked["raw_cost"] + model.penalty * (
+ one_hot + pairs
+ )
+ exact = solve_exact(model)
+ assert exact["best"]["objective"] == 4
+ assert exact["best"]["violation_count"] == 0
+
+
+def test_cleanup_downtime_horizon_and_touching_intervals():
+ data = fixture_data()
+ # At start=1, occupation [1,4) includes cleanup and touches downtime [0,1).
+ data["tasks"] = [data["tasks"][0]]
+ data["tasks"][0]["options"].append(
+ {"resource": "spectrometer", "start": 7, "cost": 0}
+ )
+ model = compile_qubo(Problem.from_dict(data))
+ assert [v.option.start for v in model.variables] == [1, 3, 6]
+ assert [row["reasons"] for row in model.pruned] == [["downtime"], ["horizon"]]
+ data["resources"][0]["downtime"] = [[3, 4]]
+ model = compile_qubo(Problem.from_dict(data))
+ assert 1 not in [v.option.start for v in model.variables] # cleanup also blocked
+
+
+def test_pair_multiple_reasons_penalized_once_and_precedence_end_boundary():
+ data = fixture_data()
+ for task in data["tasks"]:
+ task["group"] = "same"
+ data["precedence"] = [["sample-A", "sample-B"]]
+ model = compile_qubo(Problem.from_dict(data))
+ bits = [1, 0, 0, 1, 0, 0]
+ result = evaluate(model, bits)
+ assert result["violation_count"] == 1
+ assert result["violations"][0]["reasons"] == ["resource", "group", "precedence"]
+ assert model.energy(bits) == result["raw_cost"] + model.penalty
+ # Separate resources: group/precedence allow immediate start at predecessor end.
+ data["resources"].append({"id": "other"})
+ data["tasks"][1]["options"] = [{"resource": "other", "start": 3, "cost": 0}]
+ model = compile_qubo(Problem.from_dict(data))
+ assert evaluate(model, [1, 0, 0, 1])["feasible"]
+
+
+def test_valid_but_infeasible_and_empty_domain_and_cycle():
+ model = compile_qubo(load_problem(DATA / "infeasible.json"))
+ assert solve_exact(model)["status"] == "infeasible"
+ data = fixture_data()
+ data["tasks"][0]["options"] = []
+ model = compile_qubo(Problem.from_dict(data))
+ assert solve_exact(model)["combinations"] == 0
+ assert solve_exact(model)["best"] is None
+ data = fixture_data()
+ data["precedence"] = [["sample-A", "sample-B"], ["sample-B", "sample-A"]]
+ assert solve_exact(compile_qubo(Problem.from_dict(data)))["status"] == "infeasible"
+
+
+def test_empty_problem_and_singleton_zero_cost():
+ data = {"name": "empty", "horizon": 1, "resources": [{"id": "r"}], "tasks": []}
+ model = compile_qubo(Problem.from_dict(data))
+ assert model.energy([]) == 0
+ assert solve_exact(model)["best"]["objective"] == 0
+ data["tasks"] = [
+ {
+ "id": "t",
+ "group": "g",
+ "duration": 1,
+ "options": [{"resource": "r", "start": 0, "cost": 0}],
+ }
+ ]
+ model = compile_qubo(Problem.from_dict(data))
+ assert model.penalty == 1
+ assert model.energy([1]) == 0
+ assert model.energy([0]) == 1
+
+
+def test_limits_penalty_and_decode_errors():
+ model = compile_qubo(load_problem(DATA / "simple.json"))
+ for penalty in [model.objective_bound, 0, -1, True, 2.5]:
+ with pytest.raises(ValueError, match="penalty"):
+ compile_qubo(model.problem, penalty=penalty)
+ for bits in [[], [0] * 7, [2] * 6]:
+ with pytest.raises(ValueError, match="binary"):
+ evaluate(model, bits)
+ with pytest.raises(ValueError, match="limit"):
+ solve_exact(model, max_combinations=1)
+ with pytest.raises(ValueError):
+ solve_exact(model, max_combinations=False)
+ assert compile_qubo(model.problem, penalty=20).penalty == 20
+
+
+@pytest.mark.parametrize(
+ "mutation",
+ [
+ lambda d: d.update(horizon=True),
+ lambda d: d.update(horizon=0),
+ lambda d: d.update(typo=1),
+ lambda d: d.update(resources=[]),
+ lambda d: d.update(tasks="bad"),
+ lambda d: d["tasks"][0].update(duration=-1),
+ lambda d: d["tasks"][0].update(duration=1.5),
+ lambda d: d["tasks"][0].update(group=" "),
+ lambda d: d["tasks"][0]["options"][0].update(cost=-1),
+ lambda d: d["tasks"][0]["options"][0].update(cost=float("nan")),
+ lambda d: d["tasks"][0]["options"][0].update(resource="missing"),
+ lambda d: d["tasks"][0]["options"].append(
+ copy.deepcopy(d["tasks"][0]["options"][0])
+ ),
+ lambda d: d["tasks"].append(copy.deepcopy(d["tasks"][0])),
+ lambda d: d["resources"].append(copy.deepcopy(d["resources"][0])),
+ lambda d: d["resources"][0].update(downtime=[[2, 2]]),
+ lambda d: d["resources"][0].update(downtime=[[0, 20]]),
+ lambda d: d["resources"][0].update(downtime=[[1]]),
+ lambda d: d.update(precedence=[["missing", "sample-B"]]),
+ lambda d: d.update(precedence=[["sample-A", "sample-A"]]),
+ lambda d: d.update(precedence=[["sample-A"]]),
+ lambda d: d["tasks"][0].pop("original"),
+ ],
+)
+def test_invalid_input(mutation):
+ data = fixture_data()
+ mutation(data)
+ with pytest.raises(ValueError):
+ Problem.from_dict(data)
+
+
+@pytest.mark.parametrize("text", ['{"name":"a","name":"b"}', '{"name":NaN}', "{bad"])
+def test_invalid_json(tmp_path, text):
+ path = tmp_path / "bad.json"
+ path.write_text(text, encoding="utf-8")
+ with pytest.raises(ValueError):
+ load_problem(path)
+
+
+def test_model_compilation_rejects_excessive_candidates_before_pair_expansion():
+ data = {
+ "name": "large",
+ "horizon": 300,
+ "resources": [{"id": "r"}],
+ "tasks": [
+ {
+ "id": "t",
+ "group": "g",
+ "duration": 1,
+ "options": [
+ {"resource": "r", "start": i, "cost": 0} for i in range(257)
+ ],
+ }
+ ],
+ }
+ with pytest.raises(ValueError, match="256"):
+ compile_qubo(Problem.from_dict(data))
diff --git a/test/LabScheduling/mypy.ini b/test/LabScheduling/mypy.ini
new file mode 100644
index 00000000..78d2bab1
--- /dev/null
+++ b/test/LabScheduling/mypy.ini
@@ -0,0 +1,9 @@
+[mypy]
+python_version = 3.12
+follow_imports = silent
+ignore_missing_imports = True
+
+# The binary bindings do not publish complete static type exports.
+[mypy-pyqpanda3.*]
+follow_imports = skip
+follow_imports_for_stubs = True
diff --git a/test/LabScheduling/pytest.ini b/test/LabScheduling/pytest.ini
new file mode 100644
index 00000000..caae6f69
--- /dev/null
+++ b/test/LabScheduling/pytest.ini
@@ -0,0 +1,3 @@
+[pytest]
+python_files = *.test.py
+addopts = -ra --import-mode=importlib
diff --git a/test/LabScheduling/quantum.test.py b/test/LabScheduling/quantum.test.py
new file mode 100644
index 00000000..f8b527ce
--- /dev/null
+++ b/test/LabScheduling/quantum.test.py
@@ -0,0 +1,179 @@
+"""Real CPUQVM tests for bit ordering, Hamiltonians, invariants and sampling."""
+
+from pathlib import Path
+
+import numpy as np
+import pytest
+from pyqpanda3.core import CPUQVM, QProg, X
+from pyqpanda_alg.LabScheduling import (
+ Problem,
+ build_circuit,
+ circuit_probabilities,
+ compile_qubo,
+ load_problem,
+ solve_qaoa,
+ to_ising,
+)
+
+DATA = (
+ Path(__file__).resolve().parents[2]
+ / "pyqpanda-algorithm/example/LabScheduling/data"
+)
+
+
+def small_model():
+ return compile_qubo(load_problem(DATA / "simple.json"))
+
+
+def test_simulator_little_endian_contract():
+ machine = CPUQVM()
+ machine.run(QProg(3) << X(0) << X(2), shots=1)
+ probabilities = np.abs(machine.result().get_state_vector()) ** 2
+ assert probabilities.argmax() == 5
+ assert machine.result().get_prob_dict()["101"] == pytest.approx(1)
+ machine.run(QProg(3) << X(0), shots=1)
+ assert np.abs(machine.result().get_state_vector()).argmax() == 1
+
+
+def test_ising_diagonal_matches_qubo_all_states_including_indices_above_9():
+ model = compile_qubo(load_problem(DATA / "medium.json"))
+ terms = to_ising(model).terms()
+ for index in range(1 << len(model.variables)):
+ bits = [(index >> i) & 1 for i in range(len(model.variables))]
+ energy = 0.0
+ for term in terms:
+ sign = 1
+ for pauli in term.paulis():
+ if pauli.is_Z():
+ sign *= 1 - 2 * bits[pauli.qbit()]
+ energy += sign * term.coef().real
+ assert energy == pytest.approx(model.energy(bits), abs=1e-10)
+
+
+@pytest.mark.parametrize("parameters", [[0.0, 0.0], [0.4, 0.7], [0.2, -0.5, 0.9, 1.1]])
+def test_xy_preserves_each_domain_and_probability_normalization(parameters):
+ model = small_model()
+ probabilities = circuit_probabilities(model, parameters)
+ assert probabilities.sum() == pytest.approx(1)
+ for index, probability in enumerate(probabilities):
+ if probability > 1e-12:
+ assert all(
+ sum((index >> i) & 1 for i in domain) == 1 for domain in model.domains
+ )
+ if parameters == [0.0, 0.0]:
+ assert np.count_nonzero(probabilities > 1e-12) == 9
+ assert probabilities[probabilities > 1e-12] == pytest.approx(np.full(9, 1 / 9))
+
+
+def test_x_initial_state_is_uniform_and_not_one_hot():
+ probabilities = circuit_probabilities(small_model(), [0.0, 0.0], "x")
+ assert probabilities == pytest.approx(np.full(64, 1 / 64))
+
+
+def test_phase_and_x_mixer_against_independent_dense_numpy_simulation():
+ model = small_model()
+ gamma, beta = 0.61, -0.32
+ state = np.full(64, 1 / 8, dtype=complex)
+ energies = np.array(
+ [model.energy([(i >> j) & 1 for j in range(6)]) for i in range(64)]
+ )
+ state *= np.exp(-1j * gamma * energies / model.penalty)
+ for qubit in range(6):
+ previous = state.copy()
+ for index in range(64):
+ state[index] = (
+ np.cos(beta) * previous[index]
+ - 1j * np.sin(beta) * previous[index ^ (1 << qubit)]
+ )
+ assert circuit_probabilities(model, [gamma, beta], "x") == pytest.approx(
+ np.abs(state) ** 2
+ )
+
+
+def test_fixed_seed_reproducibility_and_best_is_actually_sampled():
+ model = small_model()
+ first = solve_qaoa(model, seed=7, maxiter=25, restarts=1)
+ second = solve_qaoa(model, seed=7, maxiter=25, restarts=1)
+ assert first["counts"] == second["counts"]
+ assert first["parameters"] == pytest.approx(second["parameters"])
+ assert first["best"] == second["best"]
+ assert sum(first["counts"].values()) == first["shots"]
+ bitstring = "".join(map(str, first["best"]["bits"][::-1]))
+ assert first["counts"][bitstring] > 0
+ assert first["expected_energy"] <= first["initial_expected_energy"]
+ assert first["best"]["objective"] == 5
+
+
+def test_infeasible_not_mislabeled_as_quantum_certificate():
+ model = compile_qubo(load_problem(DATA / "infeasible.json"))
+ result = solve_qaoa(model, maxiter=6, restarts=1)
+ assert result["status"] == "no_feasible_sample"
+ assert result["best"]["objective"] is None
+ assert result["best"]["violation_count"] == 1
+ assert result["one_hot_probability"] == pytest.approx(1)
+
+
+def test_singleton_empty_domain_and_zero_task_boundaries():
+ data = {"name": "boundary", "horizon": 1, "resources": [{"id": "r"}], "tasks": []}
+ assert solve_qaoa(compile_qubo(Problem.from_dict(data)))["status"] == "trivial"
+ data["tasks"] = [{"id": "t", "group": "g", "duration": 1, "options": []}]
+ assert (
+ solve_qaoa(compile_qubo(Problem.from_dict(data)))["status"]
+ == "infeasible_domain"
+ )
+ data["tasks"][0]["options"] = [{"resource": "r", "start": 0, "cost": 0}]
+ model = compile_qubo(Problem.from_dict(data))
+ assert circuit_probabilities(model, [0.4, 0.7]) == pytest.approx([0, 1])
+ assert solve_qaoa(model, maxiter=6, restarts=1)["best"]["objective"] == 0
+
+
+@pytest.mark.parametrize(
+ "kwargs",
+ [
+ {"seed": -1},
+ {"seed": True},
+ {"shots": 0},
+ {"layers": 0},
+ {"layers": 9},
+ {"restarts": 0},
+ {"maxiter": 0},
+ {"mixer": "bad"},
+ ],
+)
+def test_invalid_solver_options(kwargs):
+ with pytest.raises(ValueError):
+ solve_qaoa(small_model(), **kwargs)
+
+
+def test_invalid_circuit_and_scale_and_qubit_budget():
+ model = small_model()
+ for params in [[], [1], [float("nan"), 0]]:
+ with pytest.raises(ValueError):
+ build_circuit(model, params)
+ with pytest.raises(ValueError):
+ build_circuit(model, [0, 0], "bad")
+ for scale in [0, -1, float("inf")]:
+ with pytest.raises(ValueError):
+ to_ising(model, scale)
+ data = {
+ "name": "large",
+ "horizon": 20,
+ "resources": [{"id": "r"}],
+ "tasks": [
+ {
+ "id": "t",
+ "group": "g",
+ "duration": 1,
+ "options": [
+ {"resource": "r", "start": i, "cost": 0} for i in range(17)
+ ],
+ }
+ ],
+ }
+ with pytest.raises(ValueError, match="1..16"):
+ solve_qaoa(compile_qubo(Problem.from_dict(data)))
+
+
+def test_cobyla_budget_is_not_silently_increased():
+ with pytest.raises(ValueError, match="COBYLA"):
+ solve_qaoa(small_model(), layers=4, maxiter=6)
diff --git a/test/LabScheduling/ruff.toml b/test/LabScheduling/ruff.toml
new file mode 100644
index 00000000..0df68154
--- /dev/null
+++ b/test/LabScheduling/ruff.toml
@@ -0,0 +1,5 @@
+target-version = "py311"
+line-length = 88
+
+[lint]
+select = ["E", "F", "I", "UP", "B"]
diff --git a/test/LabScheduling/sensitivity.test.py b/test/LabScheduling/sensitivity.test.py
new file mode 100644
index 00000000..bb1786ef
--- /dev/null
+++ b/test/LabScheduling/sensitivity.test.py
@@ -0,0 +1,176 @@
+"""Weight invariants, tied optima, retained misses and real CPU replay."""
+
+import copy
+import hashlib
+import importlib
+import json
+import sys
+from pathlib import Path
+
+import pytest
+from pyqpanda_alg.LabScheduling import Problem
+
+EXAMPLES = (
+ Path(__file__).resolve().parents[2] / "pyqpanda-algorithm/example/LabScheduling"
+)
+sys.path.insert(0, str(EXAMPLES))
+try:
+ sensitivity = importlib.import_module("sensitivity")
+ demo = importlib.import_module("tradeoff_demo")
+finally:
+ sys.path.pop(0)
+
+
+def base_input():
+ return json.loads((EXAMPLES / "data/tradeoff.json").read_text())
+
+
+def test_frozen_inputs_preserve_every_feasible_schedule_and_certify_switch():
+ base = base_input()
+ untouched = copy.deepcopy(base)
+ config = json.loads((EXAMPLES / "data/sensitivity.json").read_text())
+ assert config["weights"] == list(range(7))
+ assert config["seeds"] == [7, 19, 42]
+ assert (
+ hashlib.sha256((EXAMPLES / "data/tradeoff.json").read_bytes()).hexdigest()
+ == config["base_sha256"]
+ )
+ reference = None
+ for weight in config["weights"]:
+ raw = sensitivity.weighted_input(base, weight)
+ assert all(t["change_cost"] == weight for t in raw["tasks"])
+ reverted = copy.deepcopy(raw)
+ for task in reverted["tasks"]:
+ task["change_cost"] = 2
+ assert reverted == base
+ rows = sensitivity.feasible_schedules(Problem.from_dict(raw))
+ choices = [r["choices"] for r in rows]
+ assert len(choices) == 9
+ assert reference is None or choices == reference
+ reference = choices
+ for row in rows:
+ assert (
+ row["objective"]
+ == row["preference_cost"] + weight * row["changed_tasks"]
+ )
+ optimum = min(r["objective"] for r in rows)
+ assert optimum == min(6 + 3 * weight, 12 + weight)
+ optimal = [r["choices"] for r in rows if r["objective"] == optimum]
+ assert optimal == (
+ [[1, 1, 1]]
+ if weight < 3
+ else [[2, 0, 0]]
+ if weight > 3
+ else [[1, 1, 1], [2, 0, 0]]
+ )
+ assert base == untouched
+ for value in (-1, True, 1.5, 1_000_001):
+ with pytest.raises(ValueError, match="weight"):
+ sensitivity.weighted_input(base, value)
+
+
+def diagnostic_report(row, optimum):
+ # Deliberately synthetic diagnostic inputs; no quantum run is mocked.
+ return {
+ "status": "feasible",
+ "runtime_seconds": 1,
+ "absolute_gap": row["objective"] - optimum,
+ "quantum": {
+ "seed": 7,
+ "business_metrics": row,
+ "best": {
+ "feasible": True,
+ "objective": row["objective"],
+ "violation_count": 0,
+ },
+ },
+ }
+
+
+def test_accepts_both_tied_optima_and_retains_nonoptimal_sample():
+ rows = sensitivity.feasible_schedules(
+ Problem.from_dict(sensitivity.weighted_input(base_input(), 3))
+ )
+ optimal = [r for r in rows if r["objective"] == 15]
+ assert len(optimal) == 2
+ for row in optimal:
+ metrics = sensitivity.sample_metrics(diagnostic_report(row, 15), rows)
+ assert metrics["optimal"] and metrics["absolute_gap"] == 0
+ assert metrics["choices"] == row["choices"]
+ suboptimal = next(r for r in rows if r["objective"] > 15)
+ metrics = sensitivity.sample_metrics(diagnostic_report(suboptimal, 15), rows)
+ assert not metrics["optimal"] and metrics["absolute_gap"] > 0
+ assert metrics["objective"] == suboptimal["objective"]
+ altered = diagnostic_report(optimal[0], 15)
+ altered["quantum"]["business_metrics"] = {**optimal[0], "change_cost": 999}
+ with pytest.raises(ValueError, match="business audit"):
+ sensitivity.sample_metrics(altered, rows)
+
+
+@pytest.mark.parametrize(
+ "best", [None, {"feasible": False, "violation_count": 2, "objective": None}]
+)
+def test_sampling_failure_keeps_empty_business_fields(best):
+ rows = sensitivity.feasible_schedules(Problem.from_dict(base_input()))
+ report = {
+ "status": "no_feasible_sample",
+ "absolute_gap": None,
+ "runtime_seconds": 1,
+ "quantum": {"seed": 42, "best": best},
+ }
+ result = sensitivity.sample_metrics(report, rows)
+ assert not result["optimal"]
+ assert all(
+ result[k] is None
+ for k in (
+ "objective",
+ "choices",
+ "change_cost",
+ "changed_tasks",
+ "absolute_gap",
+ )
+ )
+
+
+def test_actual_twenty_one_cpu_runs_replay_and_reject_tampering(tmp_path, capsys):
+ first = sensitivity.run_sensitivity(tmp_path / "first")
+ second = sensitivity.run_sensitivity(
+ tmp_path / "second", verify_against=tmp_path / "first/results.json"
+ )
+ capsys.readouterr()
+ assert len(first["runs"]) == 21
+ assert json.loads((tmp_path / "second/replay.json").read_text())[
+ "identical_except_timing"
+ ]
+ for row in second["weights"]:
+ assert len(row["alternatives"]) == 9
+ assert len(row["samples"]) == 3
+ for run in first["runs"]:
+ for component in run["report"]["quantum"]["components"]:
+ key = "".join(map(str, component["best"]["bits"][::-1]))
+ assert component["counts"][key] > 0
+ # A different tied optimum is accepted by scoring, but is not an exact replay.
+ corrupted = copy.deepcopy(first)
+ corrupted["weights"][3]["samples"][0]["choices"] = next(
+ choice
+ for choice in first["weights"][3]["optimal_choices"]
+ if choice != first["weights"][3]["samples"][0]["choices"]
+ )
+ with pytest.raises(ValueError, match="beyond timing"):
+ sensitivity.verify_replay(tmp_path / "first/results.json", corrupted)
+ corrupted = copy.deepcopy(first)
+ corrupted["source_sha256"]["protocol"] = "changed"
+ with pytest.raises(ValueError, match="beyond timing"):
+ sensitivity.verify_replay(tmp_path / "first/results.json", corrupted)
+ assert (tmp_path / "first/summary.csv").read_text().count("\n") == 8
+ assert (tmp_path / "first/sensitivity.svg").is_file()
+
+
+def test_demo_rejects_replay_flag_without_sensitivity(monkeypatch, capsys):
+ monkeypatch.setattr(
+ sys, "argv", ["tradeoff_demo", "--verify-sensitivity", "missing.json"]
+ )
+ with pytest.raises(SystemExit) as error:
+ demo.main()
+ assert error.value.code == 2
+ assert "requires --sensitivity" in capsys.readouterr().err
diff --git a/test/LabScheduling/support.test.py b/test/LabScheduling/support.test.py
new file mode 100644
index 00000000..024a59a1
--- /dev/null
+++ b/test/LabScheduling/support.test.py
@@ -0,0 +1,288 @@
+"""Raw semantic equivalence, replayable deletion evidence and arc limitations."""
+
+import importlib
+import json
+import sys
+from dataclasses import replace
+from pathlib import Path
+from random import Random
+
+import pytest
+from pyqpanda_alg.LabScheduling import (
+ Problem,
+ compile_qubo,
+ load_problem,
+ reduce_model,
+ solve_exact,
+ solve_reduced,
+)
+from pyqpanda_alg.LabScheduling.__main__ import main
+from pyqpanda_alg.LabScheduling.report import run_experiment
+
+EXAMPLES = (
+ Path(__file__).resolve().parents[2] / "pyqpanda-algorithm/example/LabScheduling"
+)
+sys.path.insert(0, str(EXAMPLES))
+try:
+ support = importlib.import_module("support_pruning")
+finally:
+ sys.path.pop(0)
+
+
+def random_problem(seed):
+ rng = Random(seed)
+ tasks = []
+ for ti in range(rng.randrange(6)):
+ tasks.append(
+ {
+ "id": f"t{ti}",
+ "group": f"g{rng.randrange(2)}",
+ "duration": rng.randint(1, 2),
+ "change_cost": rng.randrange(5),
+ "original": {"resource": "r0", "start": ti},
+ "options": [
+ {"resource": r, "start": s, "cost": rng.randrange(5)}
+ for r, s in rng.sample(
+ [(r, s) for r in ("r0", "r1") for s in range(6)],
+ rng.randint(0 if seed % 9 == 0 else 1, 4),
+ )
+ ],
+ }
+ )
+ return Problem.from_dict(
+ {
+ "name": f"arc-{seed}",
+ "horizon": 7,
+ "resources": [
+ {"id": "r0", "cleanup": seed % 2, "downtime": [[0, 1]]},
+ {"id": "r1"},
+ ],
+ "tasks": tasks,
+ "precedence": [
+ [a["id"], b["id"]]
+ for a in tasks
+ for b in tasks
+ if a != b and rng.random() < 0.08
+ ],
+ }
+ )
+
+
+def slot_problem(tasks, starts, duration=1):
+ return Problem.from_dict(
+ {
+ "name": "shared slots",
+ "horizon": 10,
+ "resources": [{"id": "r"}],
+ "tasks": [
+ {
+ "id": f"t{i}",
+ "group": f"g{i}",
+ "duration": duration,
+ "options": [
+ {"resource": "r", "start": s, "cost": 0} for s in starts
+ ],
+ }
+ for i in range(tasks)
+ ],
+ }
+ )
+
+
+def test_two_hundred_raw_feasible_sets_costs_and_deletion_witnesses():
+ for seed in range(200):
+ support.audit_problem(random_problem(seed))
+
+
+def test_existing_v2_corpus_preserves_every_raw_feasible_schedule():
+ paths = sorted((EXAMPLES / "data/corpus-v2").glob("n*.json"))
+ assert len(paths) == 36
+ for path in paths:
+ support.audit_problem(load_problem(path))
+
+
+def test_support_cascade_crosses_resource_boundary_without_fixing_decisions():
+ model = compile_qubo(load_problem(EXAMPLES / "data/support-chain.json"))
+ old = reduce_model(model)
+ new = reduce_model(model, pruning="arc")
+ assert old.audit()["component_qubits"] == [18]
+ assert new.audit()["component_qubits"] == [12]
+ assert old.fixed == new.fixed == ()
+ assert len(new.removals) == 6
+ assert all(row["rule"] == "no_support" for row in new.removals)
+ # Some witnesses depend on earlier deletions, requiring backward re-queuing.
+ assert any(
+ len(row["blockers"])
+ < len(
+ model.domains[
+ next(
+ i
+ for i, t in enumerate(model.problem.tasks)
+ if t.id == row["against_task"]
+ )
+ ]
+ )
+ for row in new.removals
+ )
+ support.verify_removals(model, new)
+ audit = support.audit_problem(model.problem)
+ assert audit["feasible_count"] == 15
+ assert audit["exact_objective"] == 3
+ assert solve_reduced(model)["status"] == "resource_limit"
+ run = solve_reduced(model, pruning="arc", maxiter=10, restarts=1)
+ assert run["best"]["feasible"]
+ assert run["best"]["objective"] >= 3
+ for component in run["components"]:
+ key = "".join(map(str, component["best"]["bits"][::-1]))
+ assert component["counts"][key] > 0
+
+
+def test_detects_infeasibility_without_any_initial_singleton():
+ model = compile_qubo(slot_problem(2, [0, 1], duration=3))
+ assert reduce_model(model).infeasible_task is None
+ reduced = reduce_model(model, pruning="arc")
+ assert reduced.infeasible_task == "t0"
+ support.verify_removals(model, reduced)
+ result = solve_reduced(model, pruning="arc")
+ assert result["status"] == "infeasible_propagation"
+ assert result["circuit_evaluations"] == 0
+ assert result["components"] == [] and result["best"] is None
+ assert not support.audit_problem(model.problem)["feasible_count"]
+
+
+def test_pairwise_support_does_not_certify_global_feasibility():
+ problem = slot_problem(3, [0, 1])
+ model = compile_qubo(problem)
+ reduction = reduce_model(model, pruning="arc")
+ assert reduction.infeasible_task is None
+ assert not reduction.removals and reduction.audit()["component_qubits"] == [6]
+ assert solve_exact(model)["status"] == "infeasible"
+ run = solve_reduced(model, pruning="arc", maxiter=6, restarts=1)
+ assert run["status"] == "no_feasible_sample"
+ assert not run["best"]["feasible"]
+ support.audit_problem(problem)
+
+
+def test_empty_independent_and_forced_cases():
+ empty = compile_qubo(slot_problem(0, []))
+ assert solve_reduced(empty, pruning="arc")["best"]["objective"] == 0
+ no_options = compile_qubo(slot_problem(1, []))
+ assert (
+ solve_reduced(no_options, pruning="arc")["status"] == "infeasible_propagation"
+ )
+ p = slot_problem(2, [0, 1])
+ independent = replace(
+ p,
+ tasks=(
+ p.tasks[0],
+ replace(
+ p.tasks[1],
+ options=tuple(
+ replace(o, start=o.start + 5) for o in p.tasks[1].options
+ ),
+ ),
+ ),
+ )
+ assert support.audit_problem(independent)["modes"]["arc"]["component_qubits"] == [
+ 2,
+ 2,
+ ]
+ forced = replace(
+ p, tasks=(replace(p.tasks[0], options=(p.tasks[0].options[0],)), p.tasks[1])
+ )
+ assert len(support.audit_problem(forced)["modes"]["arc"]["fixed_variables"]) == 2
+ assert (
+ solve_reduced(compile_qubo(forced), pruning="arc")["circuit_evaluations"] == 0
+ )
+
+
+def test_rejects_invalid_modes_and_ignored_cli_option(capsys):
+ path = EXAMPLES / "data/simple.json"
+ model = compile_qubo(load_problem(path))
+ with pytest.raises(ValueError, match="pruning"):
+ reduce_model(model, pruning="unknown")
+ with pytest.raises(ValueError, match="pruning"):
+ run_experiment(path, reduce=True, pruning="unknown")
+ with pytest.raises(ValueError, match="requires"):
+ run_experiment(path, pruning="arc")
+ with pytest.raises(SystemExit) as error:
+ main([str(path), "--pruning", "arc"])
+ assert error.value.code == 2
+ assert "requires" in capsys.readouterr().err
+
+
+def test_arc_cli_report_replay_and_default_backward_compatibility(tmp_path, capsys):
+ path = EXAMPLES / "data/simple.json"
+ default = run_experiment(path, reduce=True, maxiter=6, restarts=1)
+ explicit = run_experiment(
+ path, reduce=True, pruning="singleton", maxiter=6, restarts=1
+ )
+ assert support.without_timing(default) == support.without_timing(explicit)
+ out = tmp_path / "report.json"
+ assert (
+ main(
+ [
+ str(path),
+ "--reduce",
+ "--pruning",
+ "arc",
+ "--maxiter",
+ "6",
+ "--restarts",
+ "1",
+ "--output",
+ str(out),
+ ]
+ )
+ == 0
+ )
+ report = json.loads(out.read_text())
+ assert json.loads(capsys.readouterr().out) == report
+ replay = run_experiment(path, reduce=True, pruning="arc", maxiter=6, restarts=1)
+ assert support.without_timing(report) == support.without_timing(
+ json.loads(json.dumps(replay))
+ )
+ assert report["quantum"]["business_metrics"]["feasible"]
+
+
+def test_deletion_verifier_rejects_partial_or_fabricated_support_witness():
+ model = compile_qubo(load_problem(EXAMPLES / "data/support-chain.json"))
+ reduction = reduce_model(model, pruning="arc")
+ row = reduction.removals[0]
+ for blockers, match in (
+ (row["blockers"][:-1], "entire live domain"),
+ ([{**b, "reasons": ["invented"]} for b in row["blockers"]], "forbidden pair"),
+ ):
+ changed = replace(
+ reduction, removals=({**row, "blockers": blockers}, *reduction.removals[1:])
+ )
+ with pytest.raises(ValueError, match=match):
+ support.verify_removals(model, changed)
+
+
+def test_evidence_command_creates_directories_and_replays_real_cpu_runs(
+ tmp_path, monkeypatch, capsys
+):
+ first, replay = tmp_path / "first", tmp_path / "replay"
+ monkeypatch.setattr(sys, "argv", ["support_pruning", "--output", str(first)])
+ support.main()
+ monkeypatch.setattr(
+ sys,
+ "argv",
+ [
+ "support_pruning",
+ "--output",
+ str(replay),
+ "--verify-against",
+ str(first / "results.json"),
+ ],
+ )
+ support.main()
+ capsys.readouterr()
+ assert json.loads((replay / "replay.json").read_text())["identical_except_timing"]
+ result = json.loads((first / "results.json").read_text())
+ assert len(result["instances"]) == 37
+ assert result["boundary_original"]["before_outage"]["objective"] == 0
+ assert not result["boundary_original"]["after_outage"]["feasible"]
+ assert result["boundary_default"]["status"] == "resource_limit"
+ assert [r["absolute_gap"] for r in result["boundary_arc"]] == [0, 0, 0]