solverpilot 0.1.0rc2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (239) hide show
  1. solverpilot-0.1.0rc2/BACKEND-CONTRACT-V0_1_0RC2.json +38 -0
  2. solverpilot-0.1.0rc2/CHANGELOG.md +121 -0
  3. solverpilot-0.1.0rc2/CONTRIBUTING.md +42 -0
  4. solverpilot-0.1.0rc2/KNOWN-LIMITATIONS.md +70 -0
  5. solverpilot-0.1.0rc2/LICENSE +202 -0
  6. solverpilot-0.1.0rc2/MANIFEST.in +30 -0
  7. solverpilot-0.1.0rc2/PKG-INFO +554 -0
  8. solverpilot-0.1.0rc2/PRE-PUBLIC-RELEASE-AUDIT-0.1.0rc2.json +30 -0
  9. solverpilot-0.1.0rc2/PRE-PUBLIC-RELEASE-VERIFICATION-0.1.0rc2.md +12 -0
  10. solverpilot-0.1.0rc2/PUBLIC-API-V0_1_0RC2.json +475 -0
  11. solverpilot-0.1.0rc2/README.md +478 -0
  12. solverpilot-0.1.0rc2/RELEASING.md +64 -0
  13. solverpilot-0.1.0rc2/SECURITY.md +42 -0
  14. solverpilot-0.1.0rc2/TRACK-P-MERGE-PROVENANCE.json +35 -0
  15. solverpilot-0.1.0rc2/docs/api/EXTENDED-MODELING-API.md +60 -0
  16. solverpilot-0.1.0rc2/docs/api/PUBLIC-API-v1.md +69 -0
  17. solverpilot-0.1.0rc2/docs/release/OWNER-PUBLICATION-DECISIONS.md +27 -0
  18. solverpilot-0.1.0rc2/docs/release/PRE-GITHUB-HARDENING.md +52 -0
  19. solverpilot-0.1.0rc2/docs/release/PRE-GITHUB-LICENSE-DECISION.md +13 -0
  20. solverpilot-0.1.0rc2/docs/release/README-CHECKLIST-0.1.0RC2.md +15 -0
  21. solverpilot-0.1.0rc2/docs/release/SOLVERPILOT-PUBLIC-DOCS-0.1.0RC2.md +22 -0
  22. solverpilot-0.1.0rc2/examples/01_lp_basic.py +26 -0
  23. solverpilot-0.1.0rc2/examples/02_milp_binary.py +28 -0
  24. solverpilot-0.1.0rc2/examples/03_qp_convex.py +27 -0
  25. solverpilot-0.1.0rc2/examples/04_choose_backend.py +27 -0
  26. solverpilot-0.1.0rc2/examples/05_infeasible.py +34 -0
  27. solverpilot-0.1.0rc2/examples/06_validation_diagnostics.py +38 -0
  28. solverpilot-0.1.0rc2/examples/07_reoptimization_session.py +30 -0
  29. solverpilot-0.1.0rc2/examples/08_semantic_model.py +28 -0
  30. solverpilot-0.1.0rc2/examples/09_conic_model.py +22 -0
  31. solverpilot-0.1.0rc2/examples/10_nlp_optional.py +22 -0
  32. solverpilot-0.1.0rc2/examples/11_minlp_optional.py +24 -0
  33. solverpilot-0.1.0rc2/examples/12_cp_reference.py +18 -0
  34. solverpilot-0.1.0rc2/examples/13_cp_sat_optional.py +21 -0
  35. solverpilot-0.1.0rc2/examples/14_persistent_session_optional.py +28 -0
  36. solverpilot-0.1.0rc2/examples/README.md +35 -0
  37. solverpilot-0.1.0rc2/pyproject.toml +89 -0
  38. solverpilot-0.1.0rc2/setup.cfg +4 -0
  39. solverpilot-0.1.0rc2/src/solverpilot/__init__.py +250 -0
  40. solverpilot-0.1.0rc2/src/solverpilot/_immutability.py +27 -0
  41. solverpilot-0.1.0rc2/src/solverpilot/_version.py +3 -0
  42. solverpilot-0.1.0rc2/src/solverpilot/applications/__init__.py +3 -0
  43. solverpilot-0.1.0rc2/src/solverpilot/applications/routing/__init__.py +19 -0
  44. solverpilot-0.1.0rc2/src/solverpilot/applications/routing/compile_milp.py +321 -0
  45. solverpilot-0.1.0rc2/src/solverpilot/applications/routing/diagnostics.py +78 -0
  46. solverpilot-0.1.0rc2/src/solverpilot/applications/routing/errors.py +14 -0
  47. solverpilot-0.1.0rc2/src/solverpilot/applications/routing/heuristics.py +167 -0
  48. solverpilot-0.1.0rc2/src/solverpilot/applications/routing/model.py +259 -0
  49. solverpilot-0.1.0rc2/src/solverpilot/applications/routing/reference.py +81 -0
  50. solverpilot-0.1.0rc2/src/solverpilot/applications/routing/solution.py +89 -0
  51. solverpilot-0.1.0rc2/src/solverpilot/applications/routing/timeline.py +79 -0
  52. solverpilot-0.1.0rc2/src/solverpilot/applications/routing/validation.py +169 -0
  53. solverpilot-0.1.0rc2/src/solverpilot/applications/tsp/__init__.py +41 -0
  54. solverpilot-0.1.0rc2/src/solverpilot/applications/tsp/compile_cp.py +121 -0
  55. solverpilot-0.1.0rc2/src/solverpilot/applications/tsp/compile_milp.py +139 -0
  56. solverpilot-0.1.0rc2/src/solverpilot/applications/tsp/distance.py +60 -0
  57. solverpilot-0.1.0rc2/src/solverpilot/applications/tsp/errors.py +17 -0
  58. solverpilot-0.1.0rc2/src/solverpilot/applications/tsp/heuristics.py +112 -0
  59. solverpilot-0.1.0rc2/src/solverpilot/applications/tsp/model.py +175 -0
  60. solverpilot-0.1.0rc2/src/solverpilot/applications/tsp/reference.py +121 -0
  61. solverpilot-0.1.0rc2/src/solverpilot/applications/tsp/solution.py +65 -0
  62. solverpilot-0.1.0rc2/src/solverpilot/applications/tsp/validation.py +92 -0
  63. solverpilot-0.1.0rc2/src/solverpilot/backends/__init__.py +51 -0
  64. solverpilot-0.1.0rc2/src/solverpilot/backends/_casadi_highs_worker.py +92 -0
  65. solverpilot-0.1.0rc2/src/solverpilot/backends/base.py +28 -0
  66. solverpilot-0.1.0rc2/src/solverpilot/backends/bundled_capi.py +910 -0
  67. solverpilot-0.1.0rc2/src/solverpilot/backends/casadi_conic.py +303 -0
  68. solverpilot-0.1.0rc2/src/solverpilot/backends/health.py +240 -0
  69. solverpilot-0.1.0rc2/src/solverpilot/backends/highspy_native.py +217 -0
  70. solverpilot-0.1.0rc2/src/solverpilot/backends/nlopt_native.py +237 -0
  71. solverpilot-0.1.0rc2/src/solverpilot/backends/osqp_native.py +297 -0
  72. solverpilot-0.1.0rc2/src/solverpilot/backends/protocol_v2.py +119 -0
  73. solverpilot-0.1.0rc2/src/solverpilot/backends/pyscipopt_native.py +200 -0
  74. solverpilot-0.1.0rc2/src/solverpilot/backends/registry.py +38 -0
  75. solverpilot-0.1.0rc2/src/solverpilot/backends/scipy_highs.py +138 -0
  76. solverpilot-0.1.0rc2/src/solverpilot/backends/scipy_highs_lp.py +195 -0
  77. solverpilot-0.1.0rc2/src/solverpilot/backends/scipy_slsqp_qp.py +133 -0
  78. solverpilot-0.1.0rc2/src/solverpilot/backends/scipy_vendored_highs_dev.py +363 -0
  79. solverpilot-0.1.0rc2/src/solverpilot/benchmark/__init__.py +23 -0
  80. solverpilot-0.1.0rc2/src/solverpilot/benchmark/acquire.py +199 -0
  81. solverpilot-0.1.0rc2/src/solverpilot/benchmark/baselines.py +70 -0
  82. solverpilot-0.1.0rc2/src/solverpilot/benchmark/bundle.py +37 -0
  83. solverpilot-0.1.0rc2/src/solverpilot/benchmark/campaign.py +150 -0
  84. solverpilot-0.1.0rc2/src/solverpilot/benchmark/environment.py +115 -0
  85. solverpilot-0.1.0rc2/src/solverpilot/benchmark/integrity.py +46 -0
  86. solverpilot-0.1.0rc2/src/solverpilot/benchmark/model.py +146 -0
  87. solverpilot-0.1.0rc2/src/solverpilot/benchmark/policy.py +182 -0
  88. solverpilot-0.1.0rc2/src/solverpilot/benchmark/registry.py +38 -0
  89. solverpilot-0.1.0rc2/src/solverpilot/benchmark/report.py +44 -0
  90. solverpilot-0.1.0rc2/src/solverpilot/benchmark/runner.py +516 -0
  91. solverpilot-0.1.0rc2/src/solverpilot/benchmark/slurm.py +55 -0
  92. solverpilot-0.1.0rc2/src/solverpilot/benchmark/specs.py +75 -0
  93. solverpilot-0.1.0rc2/src/solverpilot/benchmark/splits.py +181 -0
  94. solverpilot-0.1.0rc2/src/solverpilot/benchmark/summary.py +384 -0
  95. solverpilot-0.1.0rc2/src/solverpilot/benchmark/verify.py +142 -0
  96. solverpilot-0.1.0rc2/src/solverpilot/benchmark/worker.py +71 -0
  97. solverpilot-0.1.0rc2/src/solverpilot/bridges/__init__.py +19 -0
  98. solverpilot-0.1.0rc2/src/solverpilot/bridges/engine.py +44 -0
  99. solverpilot-0.1.0rc2/src/solverpilot/bridges/indicator.py +232 -0
  100. solverpilot-0.1.0rc2/src/solverpilot/bridges/registry.py +78 -0
  101. solverpilot-0.1.0rc2/src/solverpilot/bridges/transformation-tape.schema.json +53 -0
  102. solverpilot-0.1.0rc2/src/solverpilot/bridges/types.py +149 -0
  103. solverpilot-0.1.0rc2/src/solverpilot/bridges/validation.py +110 -0
  104. solverpilot-0.1.0rc2/src/solverpilot/capabilities/__init__.py +32 -0
  105. solverpilot-0.1.0rc2/src/solverpilot/capabilities/backend-capability-v2.schema.json +21 -0
  106. solverpilot-0.1.0rc2/src/solverpilot/capabilities/conformance.py +151 -0
  107. solverpilot-0.1.0rc2/src/solverpilot/capabilities/enums.py +27 -0
  108. solverpilot-0.1.0rc2/src/solverpilot/capabilities/manifest.py +19 -0
  109. solverpilot-0.1.0rc2/src/solverpilot/capabilities/ontology.py +73 -0
  110. solverpilot-0.1.0rc2/src/solverpilot/capabilities/requirements.py +37 -0
  111. solverpilot-0.1.0rc2/src/solverpilot/capabilities/resolve.py +30 -0
  112. solverpilot-0.1.0rc2/src/solverpilot/capabilities/v2.py +711 -0
  113. solverpilot-0.1.0rc2/src/solverpilot/cli/__init__.py +1 -0
  114. solverpilot-0.1.0rc2/src/solverpilot/cli/backend_health.py +77 -0
  115. solverpilot-0.1.0rc2/src/solverpilot/cli/benchmark.py +331 -0
  116. solverpilot-0.1.0rc2/src/solverpilot/cli/benchmark_worker.py +33 -0
  117. solverpilot-0.1.0rc2/src/solverpilot/cli/capabilities.py +65 -0
  118. solverpilot-0.1.0rc2/src/solverpilot/conic/__init__.py +11 -0
  119. solverpilot-0.1.0rc2/src/solverpilot/conic/backend.py +263 -0
  120. solverpilot-0.1.0rc2/src/solverpilot/conic/compiler.py +310 -0
  121. solverpilot-0.1.0rc2/src/solverpilot/conic/conformance.py +60 -0
  122. solverpilot-0.1.0rc2/src/solverpilot/conic/conic-ir-v1.schema.json +24 -0
  123. solverpilot-0.1.0rc2/src/solverpilot/conic/ir.py +299 -0
  124. solverpilot-0.1.0rc2/src/solverpilot/conic/validation.py +149 -0
  125. solverpilot-0.1.0rc2/src/solverpilot/cp/__init__.py +7 -0
  126. solverpilot-0.1.0rc2/src/solverpilot/cp/conformance.py +32 -0
  127. solverpilot-0.1.0rc2/src/solverpilot/cp/cp-ir-v1.schema.json +13 -0
  128. solverpilot-0.1.0rc2/src/solverpilot/cp/ir.py +170 -0
  129. solverpilot-0.1.0rc2/src/solverpilot/cp/model.py +143 -0
  130. solverpilot-0.1.0rc2/src/solverpilot/cp/ortools_backend.py +423 -0
  131. solverpilot-0.1.0rc2/src/solverpilot/cp/ortools_worker.py +75 -0
  132. solverpilot-0.1.0rc2/src/solverpilot/cp/reference.py +51 -0
  133. solverpilot-0.1.0rc2/src/solverpilot/cp/serialization.py +117 -0
  134. solverpilot-0.1.0rc2/src/solverpilot/cp/validate.py +83 -0
  135. solverpilot-0.1.0rc2/src/solverpilot/diagnose/__init__.py +33 -0
  136. solverpilot-0.1.0rc2/src/solverpilot/diagnose/infeasibility.py +463 -0
  137. solverpilot-0.1.0rc2/src/solverpilot/diagnose/model.py +87 -0
  138. solverpilot-0.1.0rc2/src/solverpilot/evaluation/__init__.py +53 -0
  139. solverpilot-0.1.0rc2/src/solverpilot/evaluation/metrics.py +150 -0
  140. solverpilot-0.1.0rc2/src/solverpilot/evaluation/oracle.py +288 -0
  141. solverpilot-0.1.0rc2/src/solverpilot/evaluation/proof.py +53 -0
  142. solverpilot-0.1.0rc2/src/solverpilot/evaluation/references.py +73 -0
  143. solverpilot-0.1.0rc2/src/solverpilot/evaluation/regret.py +281 -0
  144. solverpilot-0.1.0rc2/src/solverpilot/exceptions.py +34 -0
  145. solverpilot-0.1.0rc2/src/solverpilot/experimental/__init__.py +32 -0
  146. solverpilot-0.1.0rc2/src/solverpilot/extensions/__init__.py +56 -0
  147. solverpilot-0.1.0rc2/src/solverpilot/extensions/entrypoints.py +34 -0
  148. solverpilot-0.1.0rc2/src/solverpilot/extensions/errors.py +35 -0
  149. solverpilot-0.1.0rc2/src/solverpilot/extensions/manager.py +651 -0
  150. solverpilot-0.1.0rc2/src/solverpilot/extensions/manifest.py +232 -0
  151. solverpilot-0.1.0rc2/src/solverpilot/extensions/model.py +101 -0
  152. solverpilot-0.1.0rc2/src/solverpilot/extensions/versioning.py +136 -0
  153. solverpilot-0.1.0rc2/src/solverpilot/history/__init__.py +22 -0
  154. solverpilot-0.1.0rc2/src/solverpilot/history/errors.py +15 -0
  155. solverpilot-0.1.0rc2/src/solverpilot/history/model.py +129 -0
  156. solverpilot-0.1.0rc2/src/solverpilot/history/sqlite.py +651 -0
  157. solverpilot-0.1.0rc2/src/solverpilot/inspect/__init__.py +3 -0
  158. solverpilot-0.1.0rc2/src/solverpilot/inspect/fingerprint.py +199 -0
  159. solverpilot-0.1.0rc2/src/solverpilot/intelligence/__init__.py +36 -0
  160. solverpilot-0.1.0rc2/src/solverpilot/intelligence/errors.py +16 -0
  161. solverpilot-0.1.0rc2/src/solverpilot/intelligence/fingerprint.py +108 -0
  162. solverpilot-0.1.0rc2/src/solverpilot/intelligence/leakage.py +69 -0
  163. solverpilot-0.1.0rc2/src/solverpilot/intelligence/schema.py +314 -0
  164. solverpilot-0.1.0rc2/src/solverpilot/intelligence/shift.py +208 -0
  165. solverpilot-0.1.0rc2/src/solverpilot/io/__init__.py +41 -0
  166. solverpilot-0.1.0rc2/src/solverpilot/io/binary64.py +49 -0
  167. solverpilot-0.1.0rc2/src/solverpilot/io/csv.py +230 -0
  168. solverpilot-0.1.0rc2/src/solverpilot/io/errors.py +25 -0
  169. solverpilot-0.1.0rc2/src/solverpilot/io/hashing.py +111 -0
  170. solverpilot-0.1.0rc2/src/solverpilot/io/json.py +90 -0
  171. solverpilot-0.1.0rc2/src/solverpilot/io/mapping.py +195 -0
  172. solverpilot-0.1.0rc2/src/solverpilot/io/model.py +407 -0
  173. solverpilot-0.1.0rc2/src/solverpilot/io/numeric.py +108 -0
  174. solverpilot-0.1.0rc2/src/solverpilot/io/provenance.py +114 -0
  175. solverpilot-0.1.0rc2/src/solverpilot/io/result.py +45 -0
  176. solverpilot-0.1.0rc2/src/solverpilot/io/source.py +104 -0
  177. solverpilot-0.1.0rc2/src/solverpilot/io/strict_json.py +133 -0
  178. solverpilot-0.1.0rc2/src/solverpilot/minlp/__init__.py +6 -0
  179. solverpilot-0.1.0rc2/src/solverpilot/minlp/compiler.py +66 -0
  180. solverpilot-0.1.0rc2/src/solverpilot/minlp/conformance.py +34 -0
  181. solverpilot-0.1.0rc2/src/solverpilot/minlp/convexity.py +85 -0
  182. solverpilot-0.1.0rc2/src/solverpilot/minlp/ir.py +35 -0
  183. solverpilot-0.1.0rc2/src/solverpilot/minlp/minlp-ir-v1.schema.json +1 -0
  184. solverpilot-0.1.0rc2/src/solverpilot/minlp/orchestrator.py +220 -0
  185. solverpilot-0.1.0rc2/src/solverpilot/minlp/validation.py +28 -0
  186. solverpilot-0.1.0rc2/src/solverpilot/model/__init__.py +27 -0
  187. solverpilot-0.1.0rc2/src/solverpilot/model/compiler.py +1263 -0
  188. solverpilot-0.1.0rc2/src/solverpilot/model/errors.py +22 -0
  189. solverpilot-0.1.0rc2/src/solverpilot/model/expression.py +373 -0
  190. solverpilot-0.1.0rc2/src/solverpilot/model/model.py +716 -0
  191. solverpilot-0.1.0rc2/src/solverpilot/model/sets.py +60 -0
  192. solverpilot-0.1.0rc2/src/solverpilot/model/types.py +36 -0
  193. solverpilot-0.1.0rc2/src/solverpilot/nlp/__init__.py +7 -0
  194. solverpilot-0.1.0rc2/src/solverpilot/nlp/ad.py +166 -0
  195. solverpilot-0.1.0rc2/src/solverpilot/nlp/backend.py +113 -0
  196. solverpilot-0.1.0rc2/src/solverpilot/nlp/compiler.py +116 -0
  197. solverpilot-0.1.0rc2/src/solverpilot/nlp/conformance.py +58 -0
  198. solverpilot-0.1.0rc2/src/solverpilot/nlp/ir.py +70 -0
  199. solverpilot-0.1.0rc2/src/solverpilot/nlp/nlp-ir-v1.schema.json +1 -0
  200. solverpilot-0.1.0rc2/src/solverpilot/nlp/validation.py +60 -0
  201. solverpilot-0.1.0rc2/src/solverpilot/plan/__init__.py +33 -0
  202. solverpilot-0.1.0rc2/src/solverpilot/plan/model.py +79 -0
  203. solverpilot-0.1.0rc2/src/solverpilot/plan/planner.py +201 -0
  204. solverpilot-0.1.0rc2/src/solverpilot/plan/production.py +627 -0
  205. solverpilot-0.1.0rc2/src/solverpilot/plan/selective_lp.py +65 -0
  206. solverpilot-0.1.0rc2/src/solverpilot/problem/__init__.py +16 -0
  207. solverpilot-0.1.0rc2/src/solverpilot/problem/enums.py +20 -0
  208. solverpilot-0.1.0rc2/src/solverpilot/problem/hashing.py +88 -0
  209. solverpilot-0.1.0rc2/src/solverpilot/problem/linear.py +196 -0
  210. solverpilot-0.1.0rc2/src/solverpilot/problem/mps.py +447 -0
  211. solverpilot-0.1.0rc2/src/solverpilot/problem/quadratic.py +192 -0
  212. solverpilot-0.1.0rc2/src/solverpilot/reporting/__init__.py +27 -0
  213. solverpilot-0.1.0rc2/src/solverpilot/reporting/explain.py +327 -0
  214. solverpilot-0.1.0rc2/src/solverpilot/reporting/model.py +264 -0
  215. solverpilot-0.1.0rc2/src/solverpilot/reporting/render.py +55 -0
  216. solverpilot-0.1.0rc2/src/solverpilot/runtime/__init__.py +19 -0
  217. solverpilot-0.1.0rc2/src/solverpilot/runtime/auto.py +193 -0
  218. solverpilot-0.1.0rc2/src/solverpilot/runtime/budgeting.py +43 -0
  219. solverpilot-0.1.0rc2/src/solverpilot/runtime/executor.py +126 -0
  220. solverpilot-0.1.0rc2/src/solverpilot/runtime/portfolio.py +197 -0
  221. solverpilot-0.1.0rc2/src/solverpilot/runtime/result.py +72 -0
  222. solverpilot-0.1.0rc2/src/solverpilot/session/__init__.py +29 -0
  223. solverpilot-0.1.0rc2/src/solverpilot/session/conformance_v2.py +239 -0
  224. solverpilot-0.1.0rc2/src/solverpilot/session/mutations.py +115 -0
  225. solverpilot-0.1.0rc2/src/solverpilot/session/persistent-session-trace.schema.json +45 -0
  226. solverpilot-0.1.0rc2/src/solverpilot/session/persistent.py +491 -0
  227. solverpilot-0.1.0rc2/src/solverpilot/session/reuse.py +81 -0
  228. solverpilot-0.1.0rc2/src/solverpilot/session/session.py +236 -0
  229. solverpilot-0.1.0rc2/src/solverpilot/trace/__init__.py +3 -0
  230. solverpilot-0.1.0rc2/src/solverpilot/trace/schema.py +47 -0
  231. solverpilot-0.1.0rc2/src/solverpilot/validate/__init__.py +10 -0
  232. solverpilot-0.1.0rc2/src/solverpilot/validate/core.py +179 -0
  233. solverpilot-0.1.0rc2/src/solverpilot/validate/result.py +55 -0
  234. solverpilot-0.1.0rc2/src/solverpilot.egg-info/PKG-INFO +554 -0
  235. solverpilot-0.1.0rc2/src/solverpilot.egg-info/SOURCES.txt +237 -0
  236. solverpilot-0.1.0rc2/src/solverpilot.egg-info/dependency_links.txt +1 -0
  237. solverpilot-0.1.0rc2/src/solverpilot.egg-info/entry_points.txt +4 -0
  238. solverpilot-0.1.0rc2/src/solverpilot.egg-info/requires.txt +68 -0
  239. solverpilot-0.1.0rc2/src/solverpilot.egg-info/top_level.txt +1 -0
@@ -0,0 +1,38 @@
1
+ {
2
+ "milestone": "PRE_PUBLIC_0_1_0_RC2",
3
+ "notes": [
4
+ "Backend IDs remain stable across the SolverPilot pre-GitHub cleanup.",
5
+ "Verification-only adapters are never admitted to the default solving registry.",
6
+ "Availability of optional public backends remains environment-dependent.",
7
+ "The legacy optimind Python package is not shipped in SolverPilot 0.1.0rc2."
8
+ ],
9
+ "package_version": "0.1.0rc2",
10
+ "production_baseline_policy": {
11
+ "convex_qp": "osqp-native when available; otherwise scipy-slsqp-qp-bridge for non-proof intents",
12
+ "learned_lp_performance_routing": false,
13
+ "lp": "scipy-highs-ds",
14
+ "milp": "scipy-highs-bridge"
15
+ },
16
+ "schema": "solverpilot.backend_contract.v1",
17
+ "stable_backend_ids": {
18
+ "base_runtime": [
19
+ "scipy-highs-ds",
20
+ "scipy-highs-ipm",
21
+ "scipy-highs-bridge",
22
+ "scipy-slsqp-qp-bridge"
23
+ ],
24
+ "optional_public": [
25
+ "highspy-native",
26
+ "osqp-native",
27
+ "pyscipopt-native",
28
+ "nlopt-slsqp-native"
29
+ ],
30
+ "verification_only": [
31
+ "casadi-osqp-bridge",
32
+ "casadi-highs-bridge",
33
+ "casadi-cbc-bridge",
34
+ "bundled-osqp-capi",
35
+ "bundled-highs-capi"
36
+ ]
37
+ }
38
+ }
@@ -0,0 +1,121 @@
1
+ # Changelog
2
+
3
+ ## 0.1.0rc2 — Correctness and trust hardening
4
+
5
+ - canonicalizes every accepted QP Hessian to one symmetric matrix before hashing, validation, or backend translation; pairwise symmetry checks can no longer be relaxed by an unrelated large coefficient;
6
+ - replaces raw-scale convexity tolerance with PSD-preserving local congruence scaling so a huge positive coefficient cannot hide material negative curvature;
7
+ - makes conic bound/row feasibility componentwise and hardens PSD validation against the same global-scale masking failure;
8
+ - rejects non-finite semantic/NLP candidates, objective coefficients, invalid infinity directions in bounds, and non-finite validation tolerances;
9
+ - makes runtime and CP result payloads immutable snapshots so post-solve mutation cannot manufacture stronger proof claims or desynchronize a validated candidate from its report;
10
+ - makes reference-free benchmark/oracle success proof-aware, requires protocol/environment/instance identity, and rejects non-finite timing costs;
11
+ - records solver-reported objective values for native HiGHS/OSQP paths instead of validating a value recomputed from the same candidate;
12
+ - hardens final pre-public release engineering by replacing production `assert` invariants with explicit exceptions, adding destructive CP/MPS/proof regressions, expanding optional-integration qualification across macOS/Windows Python 3.12–3.14, and gating release qualification on static correctness, dependency audit, SBOM generation, and least-privilege artifact/SBOM attestation;
13
+ - supersedes the locally audited `0.1.0rc1` source artifact; public publication remains fail-closed pending exact-artifact external qualification.
14
+
15
+ ## 0.1.0rc1 — Integrated trust/application release candidate
16
+
17
+ - promotes the locally verified S2–S10 additive layers into a distinct prerelease version rather than overwriting the historical `0.0.40rc2` artifact;
18
+ - adds strict JSON/CSV ingestion and provenance, oracle/regret evaluation, versioned feature/OOD diagnostics, claim-safe reporting, explicit extension staging, TSP and CVRP/VRPTW application packs, and opt-in SQLite history;
19
+ - preserves the frozen 78-symbol top-level API by keeping new capabilities under explicit submodules;
20
+ - hardens cross-system trust boundaries around oracle comparability, report immutability, and independent optimality-proof issuance;
21
+ - retains learned LP performance routing as disabled and keeps public publication fail-closed pending exact-artifact external qualification.
22
+
23
+ ## 0.0.40rc2 — Trust and numerical hardening after Track P merge
24
+
25
+ - fail closed for unverified/unknown quadratic convexity at capability, inspection, planning, runtime, and guarded backend boundaries;
26
+ - use scale-aware PSD/symmetry checks and primal feasibility validation while continuing to report raw residuals;
27
+ - separate backend-reported optimality from independent primal/dual/gap/certificate evidence through `SolveResult.optimality_evidence`;
28
+ - strengthen CP IR referential/type invariants and make parent revalidation capable of revoking an isolated worker's proof flag;
29
+ - add an independent CP controller timeout;
30
+ - record NLP `log`/`sqrt`/division domain hazards and use deterministic finite initial-point search;
31
+ - distinguish solver-certified MINLP global proof scope from `independently_verified_global`;
32
+ - reject ambiguous multiple MPS RHS/RANGES/BOUNDS vectors instead of silently selecting one;
33
+ - constrain declared Python/runtime dependency ranges to the qualification line;
34
+ - isolate OR-Tools CP-SAT native solving in a subprocess and revalidate results in the parent process to avoid a verified HiGHS shared-library ABI collision.
35
+
36
+ - forward-ports the frozen Track P P0–P9 feature line onto the hardened SolverPilot rc8 codebase instead of overwriting M27–M33/release-hardening changes;
37
+ - adds the semantic modeling kernel, parameter compiler/cache, Capability Protocol 2.0, bridge/transformation-tape engine, persistent sessions, conic layer, smooth NLP/AD, certified convex binary MINLP orchestration, and CP/CP-SAT core;
38
+ - renames all live Track P Python modules/schema identifiers/metadata to the `solverpilot` namespace while preserving original OptiMind naming only in frozen history;
39
+ - keeps the M30-frozen 78-symbol top-level API unchanged; Track P APIs are canonical under explicit submodules;
40
+ - adds `conic`, `nlp`, `minlp`, and `cp` optional extras and the `solverpilot-capabilities` CLI;
41
+ - expands README, examples, API docs, and limitations around the exact guarantee boundaries of the merged functionality;
42
+ - retains the rejected learned LP performance selector as disabled; no new performance-ranking claim is introduced by this merge.
43
+
44
+ ## 0.0.36rc7 — Final pre-GitHub release cleanup
45
+
46
+ - removes the pre-public `optimind` compatibility package to eliminate nested-import class identity duplication;
47
+ - removes the internal `OptiMindError` compatibility alias from live source;
48
+ - makes release manifest/smoke validation derive current name/version/Python floor from `pyproject.toml`;
49
+ - derives RC API/backend snapshot filenames from the current prerelease version;
50
+ - makes release smoke fail if a legacy `optimind` namespace is shipped;
51
+ - moves historical M31/M32/M33 release helper scripts out of live `tools/`;
52
+ - refreshes pre-GitHub hardening/verification documentation.
53
+
54
+ ## 0.0.36rc6 — SolverPilot brand and package migration
55
+
56
+ - renames the public brand, distribution, CLI entry points, and canonical Python namespace to SolverPilot / `solverpilot`;
57
+ - records author/maintainer metadata;
58
+ - creates SolverPilot API/backend contract snapshots while preserving historical backend IDs;
59
+ - retains the old OptiMind naming only as historical research provenance.
60
+
61
+ ## 0.0.36rc5 — Apache-2.0 license decision
62
+
63
+ - adopts Apache License 2.0 (`Apache-2.0`);
64
+ - adds the root `LICENSE` and PEP 639 license metadata;
65
+ - keeps publication fail-closed pending final repository/service configuration.
66
+
67
+ ## 0.0.36rc4 — Pre-GitHub hardening
68
+
69
+ - fixes atomic benchmark reacquisition, download verification semantics, and relative verification paths;
70
+ - separates lightweight PR CI from manual exact-artifact release qualification;
71
+ - binds disabled publishing to an exact successful qualification run/commit;
72
+ - removes release binaries from the source tree and adds repository security/contribution policy files.
73
+
74
+ ## 0.0.36rc3 — M33 External CI & Publication Decision
75
+
76
+ - narrows intended 1.0 support to CPython 3.12–3.14 and adds Python 3.14 to the exact-artifact matrix;
77
+ - raises runtime floors to NumPy 2.2 and SciPy 1.15, with a dedicated minimum-dependency regression;
78
+ - runs compatibility cells inside isolated virtual environments;
79
+ - adds PyPA pip-audit runtime dependency checks and CycloneDX evidence;
80
+ - documents the release process per current Scientific Python/GitHub/PyPI security guidance;
81
+ - adds Dependabot for reviewed GitHub Action SHA updates and a disabled OIDC-only PyPI publication template;
82
+ - adds same-source reproducibility diagnostics;
83
+ - keeps public RC/1.0 authorization fail-closed until external execution and owner metadata complete.
84
+
85
+
86
+ ## 0.0.36rc2 — M32 External Compatibility & Supply-Chain Hardening
87
+
88
+ - preserves the M30/M31 frozen 78-symbol public API and backend IDs;
89
+ - changes CI to build-once/test-many using the exact release wheel;
90
+ - records resolver NumPy/SciPy versions and requires `pip check` in every compatibility cell;
91
+ - pins all external GitHub Actions to immutable full commit SHAs;
92
+ - adds build-provenance attestation support while leaving publication disabled;
93
+ - keeps public RC/1.0 fail-closed until the complete external matrix and owner publication metadata are available.
94
+
95
+
96
+ ## 0.0.36rc1 — M31 Technical Release Candidate Compatibility Checkpoint
97
+
98
+ - froze M30 public API/backend contract into M31 snapshots;
99
+ - added a fail-closed 3-OS x 4-Python compatibility workflow;
100
+ - added Python-3.10 grammar audit and current Linux/Python-3.13 execution evidence;
101
+ - separated upstream dependency-wheel availability from SolverPilot compatibility claims;
102
+ - recorded unresolved license/name/maintainer/URL owner decisions and public-brand collision risk;
103
+ - public 1.0 compatibility remains unauthorized until CI matrix execution.
104
+
105
+
106
+ ## 0.0.35 — M30 Release Consolidation
107
+
108
+ - Freeze a stable top-level public API for the 1.0 release line.
109
+ - Move milestone-specific evidence translators and the rejected selective-LP evaluator to `solverpilot.experimental`.
110
+ - Add a stable public exception hierarchy for backend availability, capability mismatch, and planner routing failures.
111
+ - Replace stale research-oriented README content with a product-facing scope/claim boundary.
112
+ - Add explicit release/provenance/API documentation and public-API manifest tests.
113
+ - Remove generated `egg-info`, bytecode caches, and stale root-level milestone clutter from the release source tree.
114
+ - Keep learned LP performance routing disabled after M24–M29 negative generalization evidence.
115
+
116
+ ## 0.0.34 — M29
117
+
118
+ - Value-of-information/feature-representation audit for LP DS/IPM selection.
119
+ - No feature family passed cross-cohort authorization; learned LP routing closed for the 1.0 line.
120
+
121
+ Earlier milestone detail is preserved under `docs/history/` and in the complete benchmark archive.
@@ -0,0 +1,42 @@
1
+ # Contributing
2
+
3
+ SolverPilot is still pre-1.0. Changes should preserve the project's fail-closed evidence standard: do not promote an unexecuted compatibility cell, skipped optional integration, or historical benchmark result into a current pass.
4
+
5
+ ## Development setup
6
+
7
+ ```bash
8
+ python -m pip install ".[test]"
9
+ python -m pytest
10
+ ```
11
+
12
+ For benchmark work:
13
+
14
+ ```bash
15
+ python -m pip install ".[benchmark]"
16
+ ```
17
+
18
+ For optional public solver integrations, install the relevant extra (`highs`, `osqp`, `scip`, `nlopt`, or `casadi`).
19
+
20
+ ## Pull requests
21
+
22
+ A pull request should:
23
+
24
+ - include regression tests for behavioral changes;
25
+ - keep public-status and evidence claims scoped to what the tests actually establish;
26
+ - preserve deterministic/provenance fields in benchmark artifacts;
27
+ - avoid adding generated wheels, sdists, caches, benchmark corpora, or credentials to the repository;
28
+ - update public API/release documentation when externally visible behavior changes.
29
+
30
+ Normal PR CI is intentionally smaller than release qualification. Cross-platform release claims come only from the manual exact-artifact qualification workflow.
31
+
32
+ ## API changes
33
+
34
+ The top-level public API was frozen before 1.0. Backward-compatible additions require explicit review; removals or semantic changes should not be slipped into cleanup work. `solverpilot.experimental` is not covered by the same compatibility promise.
35
+
36
+ ## Security
37
+
38
+ Follow `SECURITY.md`. Do not disclose suspected vulnerabilities in public issues or pull requests.
39
+
40
+ ## Contribution licensing
41
+
42
+ Unless explicitly stated otherwise, contributions intentionally submitted for inclusion in this project are provided under the Apache License 2.0, consistent with Section 5 of the license.
@@ -0,0 +1,70 @@
1
+ # Known Limitations — 0.1.0rc2
2
+
3
+ This file records real limitations and guarantee boundaries for the merged SolverPilot + Track P prerelease.
4
+
5
+
6
+ ## 0.1.0rc2 release-candidate boundaries
7
+
8
+ The S2–S10 migration layers are part of this prerelease source line, but the 78-symbol top-level API remains frozen. The new layers are intentionally submodule-scoped. Public release qualification still requires the exact-artifact GitHub matrix, including optional native integrations and artifact attestation before publication.
9
+
10
+ The learned solver selector remains disabled. OOD diagnostics are conservative shift indicators rather than calibrated probabilities. History persistence is opt-in plaintext SQLite and intentionally excludes raw solution vectors/problem arrays, but caller-provided metadata can still be sensitive. TSP/VRP exact reference solvers are exponential and intended only for small validation/oracle cases. Extension activation assumes caller-owned canonical registries are not mutated concurrently outside the manager during activation.
11
+
12
+ ## Validation tolerances
13
+
14
+ Candidate validation uses `ValidationTolerances` defaults with an absolute feasibility floor of `1e-7` plus an internal scale-aware relative term. Raw absolute residuals are still reported, and a warning records when a candidate is accepted only by the scale-aware criterion. High-level `solve()` / `solve_production()` does not yet expose a per-call validation-tolerance parameter, so users with domain-specific numerical requirements should still validate against their own tolerances.
15
+
16
+ ## Infeasible / unbounded status evidence
17
+
18
+ Candidate-bearing statuses are independently checked against canonical constraints, integrality, and objective consistency. `INFEASIBLE`, `UNBOUNDED`, and `INFEASIBLE_OR_UNBOUNDED` normally reflect backend termination unless independent certificate/diagnostic evidence is explicitly recorded.
19
+
20
+ ## Learned LP routing
21
+
22
+ Learned LP performance routing remains disabled. Track P does not change or override the M24–M29 negative generalization decision.
23
+
24
+ ## Conic boundary
25
+
26
+ SOC and RSOC representation/validation are supported, with a restricted verified linear-objective solve path. PSD representation/validation is supported, but generic PSD solving is not promoted as verified. Quadratic-objective conic solving also remains fail-closed without the necessary conformance evidence. Exponential/power/generalized-power cones are not implemented.
27
+
28
+ ## NLP boundary
29
+
30
+ Smooth continuous NLP is optional and uses the pinned CasADi verification path. Generic NLP results are local-optimal candidates only after independent primal/objective validation and KKT stationarity checks. SolverPilot does not claim global optimality for generic NLPs. Nonsmooth generic atoms such as arbitrary `abs/max/min` are not part of the current verified surface.
31
+
32
+ ## MINLP boundary
33
+
34
+ The current proof-aware MINLP layer supports a certified convex **binary-discrete** scope. General integer MINLP, nonconvex/global MINLP, nonlinear equalities, two-sided nonlinear constraints, and indicator+MINLP composition remain unsupported/fail-closed.
35
+
36
+ ## Constraint-programming boundary
37
+
38
+ OR-Tools CP-SAT is executed in a Python isolated-mode subprocess rather than loaded after the core HiGHS path in the same process. This is intentional: the verified Linux OR-Tools 9.15.6755 wheel and the SciPy/HiGHS path can expose incompatible HiGHS shared-library ABIs when loaded in the wrong order. The worker protocol binds the request/response to the SolverPilot version, exact OR-Tools version, request nonce, structural hash, and data hash. Worker results cross a strict JSON boundary and primal/objective data are revalidated in the parent process; backend optimality is preserved only when the worker status/proof metadata and parent checks are mutually consistent.
39
+
40
+ The reference CP backend is exhaustive and can return `unknown_state_limit` when its configured state budget would be exceeded. OR-Tools CP-SAT is optional and locked to version `9.15.6755` for the frozen P9 integration evidence; public cross-platform support still depends on the release qualification matrix.
41
+
42
+ ## Persistence / reoptimization
43
+
44
+ `PersistentSession` can select native patching only when exact granular capability evidence is runtime verified. Reuse is not guaranteed to be faster; Track P retained negative timing cases where a persistent solve was slower than a cold rebuild.
45
+
46
+ ## Cross-platform release status
47
+
48
+ Local Linux validation is not equivalent to public support. Linux/macOS/Windows support for Python 3.12–3.14 is promoted only after the manual exact-artifact release qualification workflow passes.
49
+
50
+ ## Optional integrations
51
+
52
+ Availability depends on third-party binary packages, bundled plugins, and platform support. An upstream wheel existing is not by itself SolverPilot integration evidence.
53
+
54
+ ## Historical 0.0.40rc2 core hardening semantics
55
+
56
+ - A `QuadraticProblem` may still be constructed with `convexity_status=UNKNOWN` for compatibility, but it is not eligible for convex-QP capability classification, planning, inspection, runtime execution, or guarded direct QP backend solving until convexity is confirmed.
57
+ - `PublicStatus.VALID_OPTIMAL` remains a compatibility status: it means the backend reported optimality and the canonical primal candidate validated. Inspect `SolveResult.optimality_evidence` for whether dual/gap/certificate evidence was independently verified.
58
+ - Linear/QP primal feasibility now uses an absolute numerical floor plus a scale-aware relative term internally. Large absolute residuals accepted only by the scale-aware criterion are surfaced as validation warnings.
59
+ - NLP IR records domain hazards for `log`, `sqrt`, and symbolic division when safety cannot be proved from declared bounds. Compilation remains compatible; the Ipopt bridge uses deterministic finite starting-point search, and final original-space validation remains authoritative.
60
+ - MINLP `globally_proven=True` is solver-certified within the compiler's convexity assumptions. `independently_verified_global` is a separate field and is currently false for the P8 orchestration path because SolverPilot does not reconstruct the complete end-to-end KKT/MILP proof chain independently.
61
+
62
+
63
+ ## Research benchmark cache security
64
+
65
+ Some scripts under `benchmarks/` consume locally generated Python pickle caches. These are trusted-development artifacts, not safe interchange files. Loading a pickle from an untrusted source can execute code. Public dataset acquisition and scientific evidence must use the hash/provenance-controlled acquisition path rather than accepting third-party pickle caches.
66
+
67
+
68
+ ## Local build reproducibility boundary
69
+
70
+ With a fixed `SOURCE_DATE_EPOCH`, the current local diagnostic wheel was byte-reproducible across two independent builds, while the sdist had identical member names and semantic file contents but not identical archive bytes. This local environment also does not provide the exact build-system versions pinned by `pyproject.toml`. Public-release reproducibility and exact build-backend qualification therefore remain GitHub release-qualification gates rather than locally certified properties.
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
@@ -0,0 +1,30 @@
1
+ include README.md
2
+ include LICENSE
3
+ include CHANGELOG.md
4
+ include SECURITY.md
5
+ include CONTRIBUTING.md
6
+ include KNOWN-LIMITATIONS.md
7
+ include RELEASING.md
8
+ include PUBLIC-API-V0_1_0RC2.json
9
+ include BACKEND-CONTRACT-V0_1_0RC2.json
10
+ include PRE-PUBLIC-RELEASE-AUDIT-0.1.0rc2.json
11
+ include PRE-PUBLIC-RELEASE-VERIFICATION-0.1.0rc2.md
12
+ include TRACK-P-MERGE-PROVENANCE.json
13
+ include docs/api/PUBLIC-API-v1.md
14
+ include docs/api/EXTENDED-MODELING-API.md
15
+ include docs/release/PRE-GITHUB-HARDENING.md
16
+ include docs/release/SOLVERPILOT-PUBLIC-DOCS-0.1.0RC2.md
17
+ include docs/release/README-CHECKLIST-0.1.0RC2.md
18
+ include docs/release/PRE-GITHUB-LICENSE-DECISION.md
19
+ include docs/release/OWNER-PUBLICATION-DECISIONS.md
20
+ prune docs/history
21
+ prune docs/research
22
+ prune docs/benchmarking
23
+ prune benchmarks
24
+ prune evidence
25
+ prune verification
26
+ prune tests
27
+ prune .github
28
+ prune tools
29
+ global-exclude __pycache__ *.py[cod] *.egg-info *.whl *.tar.gz *.zip
30
+ recursive-include examples *.py *.md